/* -----------------------------
   Base + Reset
------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--honey-2); outline-offset: 3px; }

/* -----------------------------
   Theme Variables (Honey palette)
------------------------------*/
:root{
  --bg: #0f0c08;
  --bg-elev: #16120D;
  --text: #F5F4F2;
  --muted: #C9C6C1;

  --honey-1: #F59E0B;
  --honey-2: #FFB703;
  --honey-3: #FFD166;
  --honey-4: #FF8F00;

  --accent: #FFAC33;
  --border: rgba(255,255,255,0.12);
  --border-strong: rgba(255,179,71,0.28);

  --container: min(1120px, 92vw);

  --shadow-1: 0 8px 24px rgba(0,0,0,0.28);
  --shadow-2: 0 16px 40px rgba(0,0,0,0.4);

  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  background:
    radial-gradient(42vmax 36vmax at 12% 8%, rgba(255, 179, 71, 0.11), transparent 60%),
    radial-gradient(38vmax 34vmax at 88% 18%, rgba(255, 220, 130, 0.07), transparent 60%),
    radial-gradient(48vmax 42vmax at 70% 90%, rgba(255, 153, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #0f0c08 0%, #0c0906 100%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.06;
  z-index: -1;
}

/* -----------------------------
   Utilities
------------------------------*/
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 40px); }
.section-head .headline { margin-top: 10px; }
.section-head .subhead { margin-top: 14px; }

.eyebrow {
  display: inline-block;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .75rem;
  color: var(--honey-3);
}

.headline {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 80;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(2.1rem, 1.6rem + 2.4vw, 4.2rem);
  margin: 0;
}

.subhead {
  font-size: clamp(1.02rem, 0.95rem + .35vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(90deg, var(--honey-2) 0%, var(--honey-3) 50%, #FFF2C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

@keyframes reveal-anim {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; transform: translateY(0); }
@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-anim linear forwards;
    animation-timeline: view();
    animation-range: entry 5% cover 15%;
  }
}

/* -----------------------------
   Header / Navigation
------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(15, 12, 8, 0.78);
  border-bottom: 1px solid rgba(255, 179, 71, 0.14);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(10, 7, 4, 0.9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 179, 71, 0.22);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1.1rem;
}
.brand img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 179, 71, 0.22));
}
.brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  color: var(--text);
}
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}
.nav-menu a:not(.btn) {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.86);
  transition: color .2s ease, background .2s ease;
  font-weight: 500;
  font-size: 0.94rem;
  display: block;
}
.nav-menu a:not(.btn):hover {
  color: #fff;
  background: rgba(255, 179, 71, 0.1);
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(18, 14, 10, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}
.dropdown a:hover {
  background: rgba(255, 179, 71, 0.12);
  color: var(--honey-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.btn-honey {
  color: #241a0a;
  background: linear-gradient(180deg, var(--honey-2), var(--honey-1));
  border: 1px solid rgba(255, 210, 90, 0.55);
  box-shadow: 0 10px 24px rgba(255, 160, 0, 0.22);
}
.btn-honey::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, rgba(255,255,255,0.4) 100%);
  transform: translateX(-100%);
  transition: transform .6s ease;
  mix-blend-mode: soft-light;
}
.btn-honey:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(255, 170, 0, 0.28); }
.btn-honey:hover::after { transform: translateX(0); }
.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.slide-actions, .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 179, 71, 0.25);
  background: rgba(255, 179, 71, 0.08);
  z-index: 51;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--honey-3);
  position: relative;
  border-radius: 2px;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--honey-3);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle .bar::before { transform: translateY(-7px); }
.nav-toggle .bar::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .bar::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar::after { transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(17, 14, 10, 0.96);
    border: 1px solid rgba(255, 179, 71, 0.22);
    box-shadow: var(--shadow-2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu .btn-ghost {
    margin-top: 8px;
    width: 100%;
  }
  .has-dropdown { width: 100%; }
  .has-dropdown > a {
    pointer-events: none;
    padding: 6px 12px 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--honey-3);
    opacity: 0.75;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 179, 71, 0.04);
    border: 1px solid rgba(255, 179, 71, 0.12);
    box-shadow: none;
    margin-bottom: 6px;
  }
}

/* -----------------------------
   Hero
------------------------------*/
.hero {
  position: relative;
  min-height: 92dvh;
  display: grid;
  place-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero--compact { min-height: 56dvh; padding: 120px 0 48px; }
.hero--home {
  min-height: 100dvh;
  align-items: stretch;
  place-items: stretch;
  padding: 0;
}
.honey-shape {
  position: absolute;
  width: clamp(180px, 20vw, 360px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 30% 30%, rgba(255,197,61,0.12), rgba(255,162,0,0.06) 40%, transparent 60%),
              conic-gradient(from 0deg, rgba(255,198,66,0.2), rgba(255,153,0,0.14), rgba(255,210,100,0.16), rgba(255,198,66,0.2));
  filter: blur(18px) saturate(115%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  opacity: 0.45;
  pointer-events: none;
  animation: floaty 16s ease-in-out infinite;
}
.honey-shape.one { top: 10%; left: -6%; }
.honey-shape.two { bottom: -10%; right: -6%; animation-delay: 1.2s; }
.honey-shape.three { top: 20%; right: 10%; width: clamp(140px, 16vw, 300px); animation-delay: 2.4s; opacity: 0.3; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-inner {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.hero-panel {
  padding: clamp(40px, 6vw, 72px) clamp(22px, 4vw, 56px);
  text-align: center;
}
.hero-panel .subhead { max-width: 720px; margin: 16px auto 0; }
.hero-panel .hero-actions { justify-content: center; margin-top: 28px; }
.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 4px 12px rgba(255, 179, 71, 0.25));
}

/* Home full-bleed hero */
.home-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
}
.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-media video,
.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.55) 0%, rgba(15,12,8,0.35) 35%, rgba(15,12,8,0.88) 78%, rgba(15,12,8,0.98) 100%),
    radial-gradient(60% 50% at 70% 40%, rgba(255,179,71,0.14), transparent 70%);
}
.home-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 72px;
  max-width: 820px;
}
.home-hero-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 3vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 10px;
}
.home-hero-brand .tag {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 600;
  color: var(--honey-3);
  letter-spacing: -0.01em;
}
.home-hero .headline {
  font-size: clamp(1.55rem, 1.25rem + 1.4vw, 2.35rem);
  font-weight: 600;
  max-width: 680px;
  margin-top: 22px;
}
.home-hero .subhead {
  max-width: 560px;
  margin-top: 14px;
}
.home-hero .hero-actions { margin-top: 28px; }

/* Product page full-bleed visual hero */
.product-hero--visual {
  position: relative;
  min-height: 70dvh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
}
.product-hero--visual .product-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product-hero--visual .product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.product-hero--visual .product-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.62) 0%, rgba(15,12,8,0.28) 32%, rgba(15,12,8,0.9) 76%, rgba(15,12,8,0.98) 100%),
    radial-gradient(55% 45% at 65% 35%, rgba(255,179,71,0.12), transparent 70%);
}
.product-hero--visual .product-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 56px;
  max-width: 780px;
}
.product-hero--visual .product-hero-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 1.9rem + 2.6vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.product-hero--visual .headline {
  font-size: clamp(1.45rem, 1.2rem + 1.2vw, 2.15rem);
  font-weight: 600;
  max-width: 640px;
  margin-top: 20px;
}
.product-hero--visual .subhead {
  max-width: 540px;
  margin-top: 14px;
}
.product-hero--visual .hero-actions { margin-top: 26px; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: 28px;
}
@media (max-width: 760px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-block h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  margin: 0 0 10px;
  color: var(--honey-3);
}
.audience-block p {
  margin: 0 0 12px;
  color: var(--muted);
}
.audience-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}
.audience-block li + li { margin-top: 6px; }

/* -----------------------------
   Industries / Proof / About home
------------------------------*/
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr; }
}
.industry {
  padding: 22px 0 8px;
  border-top: 1px solid rgba(255,179,71,0.28);
}
.industry h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--honey-3);
  margin: 0 0 8px;
}
.industry p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.proof-tile {
  grid-column: span 2;
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.proof-tile:hover {
  border-color: var(--border-strong);
  background: rgba(255,179,71,0.06);
  transform: translateY(-2px);
}
.proof-tile.featured { grid-column: span 3; }
.proof-tile h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--text);
}
.proof-tile p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.proof-tile .link-hint {
  display: inline-block;
  margin-top: 12px;
  color: var(--honey-3);
  font-size: 0.9rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-tile,
  .proof-tile.featured { grid-column: span 1; }
}
@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
}

.founder-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: 8px;
}
@media (max-width: 800px) {
  .founder-band { grid-template-columns: 1fr; }
}

/* -----------------------------
   Services / Process
------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: 26px;
}
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color .2s ease, background .2s ease;
}
.service:hover {
  border-color: rgba(255,200,70,0.3);
  background: rgba(255,179,71,0.05);
}
.service .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,199,0,0.14);
  border: 1px solid rgba(255,199,0,0.28);
  margin-bottom: 12px;
  color: var(--honey-3);
  font-size: 1.1rem;
}
.service .icon img { width: 22px; height: 22px; }
.service h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 1rem + .35vw, 1.3rem);
  color: var(--honey-3);
}
.service p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: 28px;
}
@media (max-width: 1000px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
}
.step {
  text-align: left;
  padding: 18px 4px 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.step .hex {
  width: 36px;
  height: 36px;
  margin: 0 0 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--honey-2), var(--honey-1));
  color: #2a1d08;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}
.step h4 {
  margin: 0 0 6px;
  font-weight: 700;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  font-size: 1.02rem;
}
.step p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}

/* -----------------------------
   Product page patterns
------------------------------*/
.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}
.feature-list li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--honey-2);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
}

.shot-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.shot-strip--six {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .shot-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .shot-strip,
  .shot-strip--six { grid-template-columns: 1fr 1fr; }
}
.shot {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0806;
}
.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}
.shot figcaption {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.shot-feature {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0806;
}
.shot-feature img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #0a0806;
}
.shot-feature figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

.placeholder-shot {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255,179,71,0.08), transparent 50%),
    #12100c;
  border: 1px dashed rgba(255,179,71,0.25);
  border-radius: var(--radius-md);
}
.placeholder-shot strong {
  display: block;
  color: var(--honey-3);
  margin-bottom: 6px;
}

.status-note {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,179,71,0.25);
  border-radius: var(--radius-sm);
  color: var(--honey-3);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,179,71,0.06);
}

.cta-band {
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.cta-band .headline {
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-band .subhead {
  max-width: 640px;
  margin: 0 auto 24px;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.privacy-pills span {
  background: rgba(255,199,0,0.1);
  color: var(--honey-3);
  padding: 8px 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  border: 1px solid rgba(255,199,0,0.2);
}

.legal-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}
.legal-panel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.8rem);
  margin: 10px 0 12px;
}
.legal-panel p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 18px;
}
.legal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.week-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 720px) {
  .week-cards { grid-template-columns: 1fr; }
}
.week-card {
  padding: 28px;
}
.week-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--honey-3);
  margin: 0 0 12px;
}
.week-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.stack-row span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.about-visual video,
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.bio-block h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.bio-block .role {
  color: var(--honey-3);
  font-weight: 600;
  margin: 0 0 14px;
}
.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}
@media (max-width: 640px) {
  .capability-list { grid-template-columns: 1fr; }
}
.capability-list li {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}
.capability-list strong {
  display: block;
  color: var(--honey-3);
  margin-bottom: 6px;
  font-family: 'Fraunces', Georgia, serif;
}
.capability-list span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--honey-3);
  margin: 28px 0 12px;
}
.prose p, .prose li {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.notice {
  background: rgba(255,199,0,0.08);
  border-left: 3px solid var(--honey-2);
  padding: 16px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
}
.notice p { margin: 0; color: var(--text); font-weight: 500; }

/* -----------------------------
   Contact
------------------------------*/
.contact-card {
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.contact-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 3rem 2rem;
}

/* -----------------------------
   Footer
------------------------------*/
.site-footer {
  padding: 48px 0 36px;
  background: linear-gradient(180deg, rgba(255,190,60,0.05), rgba(0,0,0,0) 45%), #0d0b08;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  color: var(--muted);
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-tagline {
  color: var(--text);
  font-size: 1.02rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
.footer-copy { margin: 0; }
.footer-col h5 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--muted);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--honey-3); }

@media (prefers-reduced-motion: reduce) {
  .honey-shape { animation: none; }
  .btn-honey::after { display: none; }
  .reveal { animation: none !important; }
}
