/* Gastronaut Labs — parent-company home (DRAFT, not deployed)
   Built from Gastronaut_Labs_Brand_Strategy_Guide.pdf v1.0.
   Light/warm system: cream primary, navy trust, orange energy, lilac spark.
   Type: Fraunces (display) · Space Grotesk (wordmark/UI) · Source Sans 3 (body).
   The page frames GL as the parent; SPOT + SupperBoard are tabs (products in orbit). */

:root {
  /* Palette (guide §Color) — usage ~45% cream / 30% navy / 18% orange / 5% lilac / 2% peach */
  --space: #0B1F3A;      /* Deep Space — primary dark / text */
  --orange: #FF6B2C;     /* Launch Orange — action / energy */
  --cream: #FFF7EA;      /* Warm Cream — primary light */
  --lilac: #7C5CFC;      /* Lilac Spark — personality accent (≈ SPOT purple) */
  --peach: #FFE9DB;      /* Pantry Peach — soft supporting field */
  --space-72: rgba(11, 31, 58, 0.72);
  --space-55: rgba(11, 31, 58, 0.55);
  --space-40: rgba(11, 31, 58, 0.40);
  --line: rgba(11, 31, 58, 0.14);
  --line-strong: rgba(11, 31, 58, 0.24);
  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --ui: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --nav-h: 66px;
  --measure: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--space);
  background: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(124, 92, 252, 0.24); }

.container { width: 100%; max-width: var(--measure); margin: 0 auto; padding: 0 24px; }

/* Type utilities */
.kicker {
  font-family: var(--ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
}
.display {
  font-family: var(--display); font-weight: 900; line-height: 1.0;
  letter-spacing: -0.02em; font-variation-settings: "opsz" 144;
}
.serif-em { font-family: var(--display); font-style: italic; font-weight: 500; }

/* The G-mark: portal ring + orbit ellipse + G monogram (no satellite dot, per guide) */
.gmark { width: 34px; height: 34px; color: var(--space); flex: none; }
.gmark .ring { fill: none; stroke: currentColor; stroke-width: 6; }
.gmark .orbit { fill: none; stroke: var(--orange); stroke-width: 5; }
.gmark .mono { fill: currentColor; font-family: var(--ui); font-weight: 700; }

.wordmark { font-family: var(--ui); font-weight: 700; letter-spacing: -0.01em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ui); font-weight: 600; font-size: 15px;
  border: none; border-radius: 999px; padding: 13px 24px; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--cream); }
.btn-primary:hover { background: #ff7d45; transform: translateY(-1px); }
.btn-ink { background: var(--space); color: var(--cream); }
.btn-ink:hover { background: #143056; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--space); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--space); transform: translateY(-1px); }

/* ---- Nav / masthead ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 247, 234, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 11px; color: var(--space); }
.nav-brand .gmark { width: 30px; height: 30px; }
.nav-brand .wordmark { font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.navlink {
  font-family: var(--ui); font-weight: 500; font-size: 13px;
  letter-spacing: 0.02em; color: var(--space-72); position: relative; padding-bottom: 3px;
}
.nav-links a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .26s ease;
}
.nav-links a.navlink:hover { color: var(--space); }
.nav-links a.navlink:hover::after { transform: scaleX(1); }
.nav-links .btn { padding: 9px 18px; font-size: 13px; }
@media (max-width: 760px) { .nav-links a.navlink { display: none; } }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding: 76px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 48px; align-items: center; }
.hero .kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero .kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lilac); }
.hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(46px, 7.4vw, 88px); line-height: 0.94; letter-spacing: -0.03em; font-variation-settings: "opsz" 144; }
.hero h1 .amp { color: var(--orange); }
.hero .lede { font-size: clamp(17px, 2.1vw, 20px); color: var(--space-72); max-width: 44ch; margin: 24px 0 32px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-family: var(--ui); font-size: 13px; color: var(--space-55); letter-spacing: 0.01em; }

/* Orbit graphic — the products in orbit around the GL portal */
.orbit-art { position: relative; display: flex; justify-content: center; }
.orbit-svg { width: 100%; max-width: 460px; height: auto; overflow: visible; }
.orbit-svg .portal-ring { fill: none; stroke: var(--space); }
.orbit-svg .portal-fill { fill: var(--peach); }
.orbit-svg .orbit-path { fill: none; stroke: var(--orange); stroke-width: 2.5; opacity: 0.9; }
.orbit-svg .orbit-path.soft { stroke: var(--lilac); opacity: 0.5; stroke-dasharray: 4 6; }
.orbit-svg .node-spot { fill: var(--lilac); }
.orbit-svg .node-supper { fill: var(--cream); stroke: var(--orange); stroke-width: 2.5; }
.orbit-svg .node-label { font-family: var(--ui); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; fill: var(--space); text-transform: uppercase; }
.orbit-svg .node-label.dim { fill: var(--space-55); }
.orbit-svg .g-center { font-family: var(--ui); font-weight: 700; fill: var(--space); }
@media (prefers-reduced-motion: no-preference) {
  .orbit-spin { transform-box: fill-box; transform-origin: center; animation: orbitspin 40s linear infinite; }
  @keyframes orbitspin { to { transform: rotate(360deg); } }
}

/* ---- Section frame -------------------------------------------------------- */
.section { padding: 90px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head .kicker { display: block; margin-bottom: 14px; }
.section-head h2 { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 4.6vw, 50px); line-height: 1.02; letter-spacing: -0.02em; font-variation-settings: "opsz" 120; }
.section-head p { color: var(--space-72); font-size: 18px; margin-top: 16px; max-width: 52ch; }

/* ---- Products (the tabs) -------------------------------------------------- */
.products { background: var(--peach); }
.tabs { display: block; }
/* the radios drive everything; hide them but keep them focusable */
.tabradio { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.tabbar { display: inline-flex; gap: 6px; padding: 6px; background: rgba(11,31,58,0.05); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 34px; flex-wrap: wrap; }
.tab {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--ui); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  color: var(--space-72); padding: 10px 20px; border-radius: 999px; transition: background .2s, color .2s, box-shadow .2s;
}
.tab .soon { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px; }
.tab .tdot { width: 8px; height: 8px; border-radius: 50%; }
.tab .tdot.spot { background: var(--lilac); }
.tab .tdot.supper { background: var(--orange); }
.tabradio:focus-visible + .tabbar .tab,
.tab:hover { color: var(--space); }
/* active states */
#tab-spot:checked ~ .tabbar label[for="tab-spot"],
#tab-supper:checked ~ .tabbar label[for="tab-supper"] { background: var(--cream); color: var(--space); box-shadow: 0 4px 14px rgba(11,31,58,0.10); }
/* panels */
.panel { display: none; animation: fadein .4s ease both; }
#tab-spot:checked ~ .panels .panel-spot { display: block; }
#tab-supper:checked ~ .panels .panel-supper { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .panel { animation: none; } }

.panel-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.prod-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ui); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 18px; }
.prod-badge .swatch { width: 12px; height: 12px; border-radius: 50%; }
.prod-badge .swatch.spot { background: var(--lilac); }
.prod-badge .swatch.supper { background: var(--orange); }
.prod-badge .tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--space-55); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.panel h3 { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 4.2vw, 46px); line-height: 1.0; letter-spacing: -0.02em; font-variation-settings: "opsz" 120; }
.panel .prod-sig { font-family: var(--display); font-style: italic; font-weight: 500; color: var(--lilac); font-size: clamp(18px, 2.4vw, 22px); display: block; margin-top: 10px; }
.panel p.prod-lede { color: var(--space-72); font-size: 17px; max-width: 46ch; margin: 18px 0 24px; }
.prod-points { list-style: none; display: grid; gap: 12px; margin: 0 0 26px; }
.prod-points li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 15.5px; color: var(--space-72); }
.prod-points li b { color: var(--space); font-weight: 600; }
.prod-points .pt-ic { color: var(--lilac); margin-top: 2px; }
.prod-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* SupperBoard (coming soon) panel visual */
.supper-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; aspect-ratio: 1 / 1; max-width: 380px; margin: 0 auto; border-radius: 28px; background: var(--cream); border: 1px solid var(--line); }
.supper-visual .plateo { width: 150px; height: auto; }
.supper-visual .cap { font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--space-55); }

/* Notify form (shared Google-Form waitlist) */
.notify { display: flex; gap: 10px; max-width: 420px; }
.notify input[type="email"] {
  flex: 1; min-width: 0; font-family: var(--body); font-size: 15px; color: var(--space);
  background: var(--cream); border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 12px 18px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.notify input[type="email"]::placeholder { color: var(--space-40); }
.notify input[type="email"]:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,44,0.16); }
.notify .thanks { display: none; }
.notify.done input, .notify.done .btn { display: none; }
.notify.done .thanks { display: block; font-family: var(--display); font-style: italic; font-size: 18px; color: var(--orange); }

/* ---- The SPOT phone (product visual, SPOT's own dark UI on the cream page) - */
.spot-plate { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.spot-plate .cap { font-family: var(--ui); font-size: 12px; letter-spacing: 0.04em; color: var(--space-55); text-align: center; }
.spot-plate .cap b { color: var(--lilac); font-weight: 700; }
.phone {
  position: relative; width: 236px; max-width: 74vw; border-radius: 42px; padding: 9px;
  background: linear-gradient(180deg, #84848c, #5c5c64);
  box-shadow: 0 30px 60px rgba(11,31,58,0.28), inset 0 0 0 3px #0a0a0c;
  transform: rotate(-2deg);
}
.phone-screen { border-radius: 33px; overflow: hidden; background: linear-gradient(155deg, #2A2450 0%, #1F1D2B 46%, #131019 100%); box-shadow: 0 0 0 4px #0a0a0c; aspect-ratio: 1320 / 2868; }
.phone-notch { width: 72px; height: 20px; background: #060608; border-radius: 999px; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); z-index: 2; }
.pcream { color: #F5F0E8; }
.wl-bar { display: flex; align-items: center; justify-content: space-between; padding: 38px 13px 9px; }
.wl-place { display: flex; align-items: center; gap: 6px; font-family: "Fraunces", serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #A89DF8; }
.wl-place .pin { width: 10px; height: 12px; background: #7B6CF6; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; clip-path: polygon(50% 100%, 0 38%, 100% 38%); position: relative; }
.wl-meta { font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 10px; color: #8b8799; }
.wl-hero { position: relative; height: 116px; margin: 0 11px; border-radius: 14px; overflow: hidden; }
.wl-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wl-hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,22,0) 30%, rgba(15,12,22,0.9) 100%); }
.wl-hero .cap { position: absolute; left: 12px; right: 12px; bottom: 11px; }
.wl-hero .k { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #ECEAFF; }
.wl-hero .t { font-family: "Fraunces", serif; font-weight: 900; font-size: 18px; line-height: 1.04; margin-top: 3px; color: #fff; }
.wl-days { display: flex; align-items: center; gap: 6px; padding: 11px 13px 5px; }
.wl-day { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 10.5px; color: #8b8799; padding: 5px 11px; border-radius: 20px; border: 1px solid rgba(245,240,232,0.14); }
.wl-day.on { color: #F5F0E8; background: rgba(123,108,246,0.2); border-color: rgba(123,108,246,0.42); }
.wl-weather { margin-left: auto; font-family: "Space Grotesk", sans-serif; font-size: 10px; color: #c9c5d4; }
.wl-timeline { padding: 7px 13px 0; }
.wl-stop { display: grid; grid-template-columns: 12px 1fr; gap: 11px; }
.wl-rail { display: flex; justify-content: center; padding-top: 13px; }
.wl-dot { width: 9px; height: 9px; border-radius: 50%; background: #7B6CF6; box-shadow: 0 0 0 3px rgba(123,108,246,0.24); }
.wl-card { background: rgba(245,240,232,0.05); border: 1px solid rgba(245,240,232,0.12); border-radius: 13px; padding: 10px 12px; }
.wl-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.wl-time { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 11px; color: #c9c5d4; }
.wl-kind { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #A89DF8; background: rgba(123,108,246,0.16); border: 1px solid rgba(123,108,246,0.3); border-radius: 20px; padding: 3px 8px; }
.wl-name { font-family: "Fraunces", serif; font-weight: 700; font-size: 16px; margin: 4px 0 3px; color: #F5F0E8; }
.wl-note { font-size: 11.5px; line-height: 1.42; color: #c9c5d4; font-family: "Source Sans 3", sans-serif; }
.wl-leg { padding: 6px 0 6px 22px; font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: 10px; color: #8b8799; }
.wl-leg .li { font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #A89DF8; margin-right: 6px; }

/* ---- SupperBoard (real brand: a warm family cookbook, remastered) ---------- */
:root {
  --sb-cream: #F4EAD6; --sb-surface: #F7F0E1; --sb-tomato: #CE4A26;
  --sb-avocado: #6C7538; --sb-butter: #E4A63A; --sb-espresso: #3D2B1B; --sb-berry: #7A4A5C;
}
/* the SupperBoard panel wears SupperBoard's palette, not the GL accents */
.panel-supper .prod-badge .swatch.supper { background: var(--sb-tomato); }
.panel-supper .prod-sig { color: var(--sb-tomato); }
.panel-supper .prod-points .pt-ic { color: var(--sb-tomato); }
.panel-supper .btn-primary { background: var(--sb-tomato); color: var(--sb-cream); }
.panel-supper .btn-primary:hover { background: #d8552f; }
.panel-supper .notify input[type="email"]:focus { border-color: var(--sb-tomato); box-shadow: 0 0 0 3px rgba(206,74,38,0.16); }

.sb-plate { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.sb-plate .cap { font-family: var(--ui); font-size: 12px; letter-spacing: 0.04em; color: var(--space-55); text-align: center; }
.sb-plate .cap b { color: var(--sb-tomato); font-weight: 700; }
.phone-screen.sb { background: var(--sb-cream); }

.sb-app { padding: 40px 11px 12px; }
.sb-head { display: flex; align-items: center; justify-content: space-between; padding: 0 3px 11px; }
.sb-brand { display: flex; align-items: center; gap: 6px; }
.sb-daisy { width: 17px; height: 17px; flex: none; }
.sb-word { font-family: "Fraunces", serif; font-weight: 900; font-size: 15px; color: var(--sb-espresso); letter-spacing: -0.01em; font-variation-settings: "opsz" 40; }
.sb-plus { width: 22px; height: 22px; border-radius: 50%; background: var(--sb-tomato); color: var(--sb-cream); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; line-height: 1; }

/* hero recipe card — a 70s cookbook badge on a cream card */
.sb-hero { border: 1px solid rgba(61,43,27,0.14); background: var(--sb-surface); border-radius: 16px; padding: 15px 12px 13px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.sb-badge { position: relative; width: 108px; height: 108px; flex: none; }
.sb-badge .sunburst { position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--sb-espresso); background: repeating-conic-gradient(from 8deg, var(--sb-butter) 0deg 15deg, var(--sb-surface) 15deg 30deg); }
.sb-badge .food { position: absolute; inset: 0; }
.sb-hero .meta { text-align: center; }
.sb-hero .k { font-family: var(--ui); font-weight: 600; font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sb-avocado); }
.sb-hero .t { font-family: "Fraunces", serif; font-weight: 900; font-size: 22px; line-height: 1.0; color: var(--sb-espresso); margin-top: 2px; font-variation-settings: "opsz" 60; }

/* Le Sous Chef "Pick for me" row */
.sb-pick { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 10px 11px; border-radius: 15px; background: linear-gradient(95deg, var(--sb-tomato), var(--sb-berry)); color: #fff; }
.sb-chef { width: 30px; height: 30px; flex: none; }
.sb-pick .txt { flex: 1; min-width: 0; }
.sb-pick .pt { font-family: "Fraunces", serif; font-weight: 700; font-size: 14px; line-height: 1.1; }
.sb-pick .ps { font-family: -apple-system, "Source Sans 3", sans-serif; font-size: 10.5px; opacity: 0.92; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-pick .dice { font-size: 13px; opacity: 0.92; }

/* two saved recipe tiles (bottom of the home screen) */
.sb-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.sb-tile { border-radius: 13px; border: 1px solid rgba(61,43,27,0.12); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.sb-tile.a { background: radial-gradient(circle at 50% 42%, #f0d38f, var(--sb-surface)); }
.sb-tile.b { background: radial-gradient(circle at 50% 42%, #d8b6a0, #efe4d2); }
.sb-tile .food { width: 58%; height: 58%; }

/* ---- Studio: value pillars ------------------------------------------------ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar { background: var(--cream); border: 1px solid var(--line); border-radius: 20px; padding: 26px 22px; position: relative; }
.pillar .pn { font-family: var(--display); font-weight: 900; font-size: 16px; color: var(--orange); font-variation-settings: "opsz" 30; }
.pillar h3 { font-family: var(--ui); font-weight: 700; font-size: 17px; margin: 14px 0 8px; letter-spacing: -0.01em; }
.pillar p { color: var(--space-72); font-size: 14.5px; }

/* ---- The name: gas·tro·naut (etymology + character equation) -------------- */
.etymology { background: var(--peach); }
.ety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ety-def .kicker { display: block; margin-bottom: 14px; }
.ety-def h2 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.01em; font-variation-settings: "opsz" 120; }
.ety-def .pron { font-family: var(--ui); font-size: 14px; color: var(--space-55); margin-top: 8px; letter-spacing: 0.02em; }
.ety-def .def { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.6vw, 26px); color: var(--orange); margin: 16px 0; font-variation-settings: "opsz" 60; }
.ety-def .ety-body { color: var(--space-72); font-size: 17px; line-height: 1.7; max-width: 46ch; }
.ety-def .ety-body b { color: var(--space); font-weight: 600; }
.ety-def .ety-body b.ex { color: var(--orange); }
.ety-eq { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.eq-item { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 118px; }
.eq-item svg { width: 104px; height: auto; display: block; }
.eq-item figcaption { font-family: var(--ui); font-weight: 600; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--space-55); }
.eq-op { font-family: var(--display); font-weight: 900; font-size: 38px; color: var(--orange); line-height: 1; }
.ety-note { margin-top: 42px; text-align: center; font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(17px, 2.2vw, 21px); color: var(--space-72); max-width: 62ch; margin-left: auto; margin-right: auto; font-variation-settings: "opsz" 60; }
.ety-note .wink { color: var(--space-55); }
@media (prefers-reduced-motion: no-preference) {
  .eq-a svg { animation: bob 3.4s ease-in-out infinite; }
  .eq-b svg { animation: bob 3.4s ease-in-out infinite .5s; }
  .eq-c svg { animation: bob 3.4s ease-in-out infinite 1s; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
}
@media (max-width: 860px) { .ety-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Hero: centered intro with the name integrated, CTAs last */
.hero.hero-center { padding: 78px 0 42px; }
.hero.hero-center::before { background: radial-gradient(58% 42% at 50% 0%, rgba(123,108,246,0.16), transparent 70%); }
.hero-center .container { max-width: 820px; text-align: center; }
.hero-center h1 { margin: 18px auto 0; }
.hero-center .lede { margin: 22px auto 0; }
.hero-center .hero-cta { justify-content: center; margin-top: 30px; }
.name-inline { margin: 32px auto 4px; max-width: 60ch; padding-top: 28px; border-top: 1px solid var(--line); }
.name-inline .ni-kicker { display: inline-block; margin-bottom: 12px; }
.ni-word { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -0.01em; font-variation-settings: "opsz" 100; }
.ni-pron { font-family: var(--ui); font-weight: 500; font-size: 14px; color: var(--space-55); margin-left: 8px; letter-spacing: 0.02em; }
.ni-def { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(18px, 2.4vw, 24px); color: var(--orange); margin: 8px 0 12px; font-variation-settings: "opsz" 60; }
.ni-body { color: var(--space-72); font-size: 16.5px; line-height: 1.7; }
.ni-body b { color: var(--space); font-weight: 600; }
.ni-body b.ex { color: var(--orange); }

/* Character equation band: smaller, scroll-assembled via --eq (eq.js) */
.equation-band { background: var(--peach); padding: 54px 0 58px; text-align: center; }
.eq2 { display: inline-flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.eq2 .c { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 92px; will-change: transform, opacity; }
.eq2 .c svg { width: 78px; height: auto; display: block; }
.eq2 .c figcaption { font-family: var(--ui); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--space-55); }
.eq2 .op { font-family: var(--display); font-weight: 900; font-size: 32px; color: var(--orange); line-height: 1; }
.eq-caption { margin: 34px auto 0; max-width: 60ch; font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(16px, 2vw, 20px); color: var(--space-72); font-variation-settings: "opsz" 60; }
.eq-caption .wink { color: var(--space-55); }
@media (prefers-reduced-motion: no-preference) {
  .eq2 .c-a { transform: translateX(calc((var(--eq, 1) - 1) * 40px)); opacity: calc(var(--eq, 1) * 1.5); }
  .eq2 .c-b { transform: translateX(calc((1 - var(--eq, 1)) * 40px)); opacity: calc(var(--eq, 1) * 1.5); }
  .eq2 .op  { opacity: calc((var(--eq, 1) - 0.25) * 1.8); }
  .eq2 .c-c { transform: scale(calc(0.55 + var(--eq, 1) * 0.45)); opacity: calc((var(--eq, 1) - 0.35) * 2); }
}
@media (max-width: 560px) { .eq2 { gap: 10px; } .eq2 .c { width: 78px; } .eq2 .c svg { width: 66px; } }

/* ---- Approach (studio focus: in-house iOS, travel + food) ------------------ */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trio .pillar { padding: 30px 26px; }
.trio .pic { width: 40px; height: 40px; color: var(--orange); margin-bottom: 18px; }
.trio .pillar h3 { font-family: var(--display); font-weight: 900; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 8px; font-variation-settings: "opsz" 48; }
.trio .pillar p { font-size: 15px; }
@media (max-width: 900px) { .trio { grid-template-columns: 1fr; } }

/* ---- Origin ("how we got to Gastronaut Labs") ----------------------------- */
.origin { background: var(--peach); }
.origin-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.origin .rail .kicker { display: block; margin-bottom: 16px; }
.origin .lead { font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(23px, 3.1vw, 34px); line-height: 1.16; letter-spacing: -0.01em; color: var(--space); font-variation-settings: "opsz" 72; }
.origin .body p { color: var(--space-72); font-size: 17.5px; line-height: 1.7; }
.origin .body p + p { margin-top: 18px; }
.origin .body p b { color: var(--space); font-weight: 600; }
.origin .body .close { font-family: var(--display); font-style: italic; color: var(--orange); font-size: 20px; margin-top: 22px; }
@media (max-width: 900px) { .origin-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ---- Studio: architecture (Now / Next / Then) ----------------------------- */
.arch { background: var(--space); color: var(--cream); }
.arch .section-head h2 { color: var(--cream); }
.arch .section-head p { color: rgba(255,247,234,0.72); }
.arch .kicker { color: var(--orange); }
.arch-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.arch-track::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 14px, transparent 14px 24px); opacity: 0.5; }
.arch-step { position: relative; }
.arch-node { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--space); border: 2px solid var(--orange); margin-bottom: 20px; position: relative; z-index: 1; }
.arch-node .gmark { width: 30px; height: 30px; color: var(--cream); }
.arch-node.now { background: var(--lilac); border-color: var(--lilac); }
.arch-when { font-family: var(--ui); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.arch-step h3 { font-family: var(--display); font-weight: 900; font-size: 26px; margin: 6px 0 4px; font-variation-settings: "opsz" 60; }
.arch-step .role { font-family: var(--ui); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,247,234,0.55); margin-bottom: 8px; }
.arch-step p { color: rgba(255,247,234,0.78); font-size: 15px; }
.arch-step.pending h3, .arch-step.pending .arch-when { opacity: 0.7; }

/* ---- Studio: promise + Plateo band --------------------------------------- */
.promise { background: var(--lilac); color: var(--cream); }
.promise .container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: center; }
.promise .plateo { width: 200px; height: auto; justify-self: center; }
.promise blockquote { font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(26px, 4.2vw, 46px); line-height: 1.06; letter-spacing: -0.01em; font-variation-settings: "opsz" 120; }
.promise .attrib { margin-top: 18px; font-family: var(--ui); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,247,234,0.8); }

/* ---- Footer --------------------------------------------------------------- */
.footer { background: var(--space); color: var(--cream); padding: 56px 0 44px; }
.footer .top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,247,234,0.14); }
.footer-brand { display: flex; align-items: center; gap: 11px; color: var(--cream); }
.footer-brand .gmark { width: 30px; height: 30px; color: var(--cream); }
.footer-brand .wordmark { font-size: 18px; }
.footer .blurb { margin-top: 14px; max-width: 34ch; color: rgba(255,247,234,0.68); font-size: 14px; }
.footer .tag { margin-top: 14px; font-family: var(--display); font-style: italic; color: var(--orange); font-size: 17px; }
.footer .col h4 { font-family: var(--ui); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,247,234,0.55); margin-bottom: 14px; }
.footer .col a, .footer .col span.muted { display: block; font-family: var(--ui); font-size: 14px; color: rgba(255,247,234,0.85); margin-bottom: 10px; }
.footer .col a:hover { color: var(--orange); }
.footer .col span.muted { color: rgba(255,247,234,0.45); }
.footer .col .soonpill { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(255,107,44,0.4); border-radius: 999px; padding: 2px 7px; margin-left: 6px; }
.footer .bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; flex-wrap: wrap; }
.footer .bottom .fine { font-family: var(--ui); font-size: 12px; color: rgba(255,247,234,0.5); }
.footer .bottom .endorse { font-family: var(--ui); font-size: 12px; color: rgba(255,247,234,0.7); }

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .panel-grid { grid-template-columns: 1fr; gap: 36px; }
  .promise .container { grid-template-columns: 1fr; text-align: center; }
  .promise .plateo { order: -1; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .arch-track { grid-template-columns: 1fr; gap: 30px; }
  .arch-track::before { display: none; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .pillars { grid-template-columns: 1fr; }
  .notify { flex-direction: column; }
  .footer .top { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 56px; }
}

.morelink { display: block; margin-top: 8px; color: var(--lilac); font-family: var(--ui); font-weight: 600; font-size: 13px; }
.morelink:hover { color: var(--orange); }
