/* ============================================================
   clockwidgets landing — styles
   Liquid-glass-ish surface language on a warm apartment-wall hero.
   ============================================================ */

/* ---- reset + base ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #1a120a;
  color: #1a1410;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

/* CJK rendering — keep glass headlines crisp at large sizes */
html[lang="ja"], html[lang="ko"], html[lang="zh"] {
  font-family: "Space Grotesk", "Hiragino Sans", "Yu Gothic", "Noto Sans CJK JP",
               "Noto Sans CJK KR", "Noto Sans CJK SC", -apple-system, system-ui, sans-serif;
}

/* Google Fonts are loaded via <link rel="stylesheet"> in each HTML
   <head> (with preconnect) — kept out of CSS to avoid the serial
   request @import would force. */

/* ============================================================
   FLOATING NAV
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(1080px, calc(100vw - 32px));
  padding: 8px 10px 8px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 9999px;
  background: rgba(255, 248, 232, 0.16);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 0.5px solid rgba(255,255,255,0.30);
  box-shadow:
    0 8px 30px -8px rgba(40, 20, 8, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.30);
  color: #fff;
}
.nav__brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500;
}
.nav__links a {
  padding: 8px 14px; border-radius: 99px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.nav__links a:hover { background: rgba(255,255,255,0.12); }
.nav__right { display: flex; align-items: center; gap: 8px; }
.nav__cta {
  appearance: none; border: none; cursor: pointer;
  padding: 10px 18px; border-radius: 9999px;
  background: linear-gradient(180deg, #ffffff 0%, #efe7d6 100%);
  color: #1a1410;
  font-size: 14px; font-weight: 700; letter-spacing: -0.2px;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.8);
}
/* ── Language picker (dropdown) ── */
.lang-picker { position: relative; }
.lang-picker__current {
  appearance: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px 6px 10px; border-radius: 9999px;
  background: rgba(0,0,0,0.42);
  border: 0.5px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  transition: background 0.18s;
}
.lang-picker__current:hover { background: rgba(0,0,0,0.55); }
.lang-picker__globe { display: inline-flex; opacity: 0.95; }
.lang-picker__chev {
  transition: transform 0.2s ease;
  opacity: 0.8;
}
.lang-picker--open .lang-picker__chev { transform: rotate(180deg); }

.lang-picker__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 220px;
  padding: 6px;
  border-radius: 18px;
  /* Solid dark surface — no backdrop blur lightening the panel and
     washing out the labels. Subtle inner highlight keeps it glassy. */
  background: #1a120a;
  background-image:
    linear-gradient(180deg, rgba(255, 220, 150, 0.06) 0%, transparent 30%),
    radial-gradient(ellipse at 30% 0%, rgba(217, 119, 87, 0.10) 0%, transparent 60%);
  border: 0.5px solid rgba(255, 216, 122, 0.22);
  box-shadow:
    0 18px 50px -12px rgba(0, 0, 0, 0.70),
    0 4px 14px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.10);
  display: none;
  z-index: 200;
  max-height: 70vh; overflow-y: auto;
}
.lang-picker--open .lang-picker__menu { display: block; }

.lang-picker__option {
  appearance: none; border: none; cursor: pointer;
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: transparent; color: #f6efe1;
  font-family: inherit;
  font-size: 14.5px; font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.lang-picker__option:hover { background: rgba(255, 216, 122, 0.10); color: #fff; }
.lang-picker__option[aria-current="true"] {
  background: linear-gradient(135deg, rgba(255, 232, 163, 0.22) 0%, rgba(199, 123, 31, 0.18) 100%);
  color: #fff;
  box-shadow: inset 0 0 0 0.5px rgba(255, 232, 163, 0.32);
}
.lang-picker__option[aria-current="true"]::before {
  content: '✓'; font-size: 12px; color: #ffd87a;
  margin-right: 4px;
  text-shadow: 0 0 6px rgba(255, 200, 100, 0.4);
}
.lang-picker__option-name { flex: 1; min-width: 0; }
.lang-picker__option-code {
  font-size: 10.5px; letter-spacing: 1px; font-weight: 700;
  color: rgba(246, 239, 225, 0.50);
}
.lang-picker__option[aria-current="true"] .lang-picker__option-code {
  color: #ffd87a;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav__hamburger {
  display: none;
  appearance: none; border: none; cursor: pointer;
  padding: 8px 10px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.30);
  border: 0.5px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  transition: background 0.18s, transform 0.2s ease;
}
.nav__hamburger:hover { background: rgba(0, 0, 0, 0.50); }
.nav[data-menu="open"] .nav__hamburger {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 760px) {
  .nav__hamburger { display: inline-flex; }
  .nav { padding: 8px 8px 8px 16px; }

  /* Nav links become a slide-down drawer beneath the pill — they stay
     in the DOM (crawler-visible) but hide off-screen until the user or
     a bot opens the menu. */
  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 22px;
    background: #1a120a;
    background-image:
      linear-gradient(180deg, rgba(255, 220, 150, 0.06) 0%, transparent 30%),
      radial-gradient(ellipse at 30% 0%, rgba(217, 119, 87, 0.10) 0%, transparent 60%);
    border: 0.5px solid rgba(255, 216, 122, 0.22);
    box-shadow:
      0 18px 50px -12px rgba(0, 0, 0, 0.70),
      inset 0 1px 0 rgba(255,255,255,0.10);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 90;
  }
  .nav[data-menu="open"] .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__links a {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 15.5px;
    color: #f6efe1;
    text-shadow: none;
  }
  .nav__links a:hover {
    background: rgba(255, 216, 122, 0.10);
    color: #fff;
  }
}

@media (max-width: 480px) {
  /* On phones the hero CTA already says "Get the app" — drop the nav copy of it */
  .nav .nav__cta { display: none; }
  .nav__brand { font-size: 15px; }
}

/* ============================================================
   HERO — the apartment wall
   ============================================================ */
.hero {
  position: relative; width: 100%;
  min-height: clamp(640px, 100vh, 820px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255, 220, 150, 0.72) 0%, rgba(255, 220, 150, 0) 50%),
    radial-gradient(ellipse at 90% 80%, rgba(60, 30, 10, 0.18) 0%, rgba(60, 30, 10, 0) 55%),
    linear-gradient(135deg, #f7ecd2 0%, #ead7b4 55%, #dec39a 100%);
}

/* sun patch */
.hero__sun {
  position: absolute; left: -8%; top: 4%;
  width: 55%; height: 78%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 230, 170, 0.55) 0%, transparent 60%);
  filter: blur(28px);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* picture rail */
.hero__rail {
  position: absolute; left: 0; right: 0; top: 12%;
  height: 6px;
  background: linear-gradient(180deg, #d7b87a 0%, #d7b87a 50%, rgba(0,0,0,0.18) 100%);
  box-shadow: 0 3px 8px -4px rgba(40, 20, 8, 0.30);
  opacity: 0.6;
}

/* floor + baseboard at the bottom */
.hero__floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 12%;
  display: flex; flex-direction: column;
}
.hero__baseboard {
  height: 22px;
  background: linear-gradient(180deg, #f3ecdc 0%, #f3ecdc 65%, #c9b48b 100%);
  border-bottom: 1px solid #c9b48b;
  box-shadow: 0 -2px 6px -2px rgba(0,0,0,0.12);
}
.hero__parquet {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #7a5630 0%, #5a3e22 100%);
}
.hero__parquet::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.10) 0 1px, transparent 1px 24px);
  opacity: 0.65;
}
.hero__parquet::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(180deg, rgba(255,230,180,0.25), transparent);
}

/* corner vignette */
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(20,12,5,0.25) 100%);
  pointer-events: none;
}

/* spotlight behind headline */
.hero__spotlight {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: 46%; aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, rgba(30,16,6,0.55) 0%, rgba(30,16,6,0.25) 40%, transparent 70%);
  filter: blur(34px);
  pointer-events: none;
}

/* widgets-hung-on-wall layout */
.wall {
  position: relative; width: 100%; height: 100%;
  min-height: clamp(640px, 100vh, 820px);
}

.frame {
  position: absolute;
  filter: drop-shadow(0 20px 28px rgba(60, 30, 8, 0.28)) drop-shadow(0 4px 10px rgba(60, 30, 8, 0.18));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
  cursor: pointer;
}
.frame:hover {
  transform: translateY(-4px) rotate(var(--rot, 0deg));
  filter: drop-shadow(0 30px 36px rgba(60, 30, 8, 0.32)) drop-shadow(0 6px 14px rgba(60, 30, 8, 0.20));
}
.frame { transform: rotate(var(--rot, 0deg)); }

/* Four hung widgets — desktop positions in % so they scale */
.frame--terminal { left: 6%;  top: 22%; --rot: -0.5deg; }
.frame--nixie    { left: 67%; top: 18%; --rot: 0.4deg;  }
.frame--analog   { left: 5%;  top: 56%; --rot: 0.6deg;  }
.frame--editorial{ left: 70%; top: 54%; --rot: -0.4deg; }

@media (max-width: 1100px) {
  .frame--terminal { left: 4%;  top: 20%; }
  .frame--nixie    { left: 62%; top: 16%; }
  .frame--analog   { left: 4%;  top: 60%; }
  .frame--editorial{ left: 64%; top: 58%; }
}
/* Tablet / large phone — hide analog + editorial, shrink the two corner tiles */
@media (max-width: 760px) {
  .frame--editorial, .frame--analog { display: none; }
  .frame--terminal { left: 3%;  top: 11%; }
  .frame--nixie    { left: auto; right: 3%; top: 11%; }
  .tile--terminal { width: 150px; height: 150px; padding: 12px 14px; }
  .tile--terminal .time { font-size: 46px; }
  .tile--terminal .row, .tile--terminal .meta { font-size: 11.5px; }
  .tile--nixie    { width: 160px; height: 160px; }
  .tile--nixie .digits { font-size: 50px; }
}
/* Phone — only one tile, top-right */
@media (max-width: 520px) {
  .frame--nixie { display: none; }
  .frame--terminal { left: auto; right: 3%; top: 9%; }
  .tile--terminal { width: 128px; height: 128px; padding: 10px 12px; }
  .tile--terminal .time { font-size: 38px; }
  .tile--terminal .row, .tile--terminal .meta { font-size: 10.5px; }
}

/* ---- widget tiles (the "art") ---- */
.tile {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 -1px 0 rgba(0,0,0,0.10) inset;
}
.tile--sm { width: 170px; height: 170px; }
.tile--md { width: 200px; height: 200px; }

/* Terminal — green phosphor */
.tile--terminal {
  width: 178px; height: 178px;
  background: radial-gradient(ellipse at 50% 30%, #0e2a14 0%, #050a06 100%);
  font-family: "VT323", monospace;
  color: #7eff8a;
  text-shadow: 0 0 6px rgba(126,255,138,0.7), 0 0 14px rgba(126,255,138,0.3);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px 16px;
}
.tile--terminal .row { display: flex; gap: 6px; align-items: center; font-size: 13px; opacity: 0.8; }
.tile--terminal .dot { width: 6px; height: 6px; border-radius: 50%; background: #7eff8a; box-shadow: 0 0 4px #7eff8a; }
.tile--terminal .time { font-size: 56px; line-height: 1; letter-spacing: 1px; text-align: center; margin: auto 0; }
.tile--terminal .meta { font-size: 13px; display: flex; justify-content: space-between; opacity: 0.75; }

/* Nixie — gold-orange gradient with chunky digits */
.tile--nixie {
  width: 200px; height: 200px;
  background:
    radial-gradient(ellipse at 30% 25%, #fff5d9 0%, #f3c886 30%, #d97757 65%, #6b2c14 100%);
  font-family: "Big Shoulders Display", "Space Grotesk", sans-serif;
  color: #1a0a04;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.tile--nixie .digits {
  font-weight: 900; font-size: 64px; line-height: 0.9; letter-spacing: -2px;
  text-shadow: 0 2px 0 rgba(255,255,255,0.35), 0 6px 14px rgba(60,20,4,0.35);
}
.tile--nixie .badge {
  position: absolute; top: 12px; right: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px; letter-spacing: 1.5px; font-weight: 800;
  padding: 4px 9px; border-radius: 99px;
  background: linear-gradient(135deg, #ffe8a3 0%, #f7b54c 60%, #c87b1f 100%);
  color: #3a1f08;
  box-shadow: 0 2px 6px rgba(60,40,8,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Analog dial — paper face with hands */
.tile--analog {
  width: 188px; height: 188px;
  background: radial-gradient(ellipse at 35% 30%, #fffdf6 0%, #f0e6cf 60%, #d9c89a 100%);
  display: flex; align-items: center; justify-content: center;
}
.tile--analog svg { width: 80%; height: 80%; }

/* Editorial — cream serif italic */
.tile--editorial {
  width: 178px; height: 178px;
  background: linear-gradient(160deg, #fff5e3 0%, #f3deb3 100%);
  font-family: "DM Serif Display", "Instrument Serif", serif;
  font-style: italic; color: #2a1408;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 18px;
}
.tile--editorial .time { font-size: 46px; line-height: 1; letter-spacing: -1px; }
.tile--editorial .sub { font-family: "Space Grotesk", sans-serif; font-style: normal; font-size: 11px; letter-spacing: 3px; margin-top: 12px; opacity: 0.55; text-transform: uppercase; }

/* ============================================================
   HEADLINE PLATE — sits over the wall
   ============================================================ */
.hero__headline-wrap {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: min(540px, 92vw);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  z-index: 10;
  pointer-events: none;
}
.eyebrow-pill {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.20);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 0.5px solid rgba(255,255,255,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 14px -4px rgba(40,20,8,0.3);
  font-size: 10.5px; letter-spacing: 2.8px; font-weight: 700; color: #fff;
  text-shadow: 0 1px 3px rgba(40, 20, 8, 0.5);
}
.eyebrow-pill .pulse {
  width: 5px; height: 5px; border-radius: 50%;
  background: #7eff8a; box-shadow: 0 0 6px #7eff8a;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.95; letter-spacing: -2px;
  color: #fff;
  filter: drop-shadow(0 6px 18px rgba(20, 10, 4, 0.65)) drop-shadow(0 2px 6px rgba(20, 10, 4, 0.55));
}
.hero h1 .brand { color: #fff5d9; }
.hero__sub {
  margin: 0; max-width: 420px;
  font-size: 14px; line-height: 1.5; font-weight: 500;
  color: rgba(255, 248, 232, 0.94);
  text-shadow: 0 2px 12px rgba(40, 20, 8, 0.65);
}

/* CTA dock at bottom */
.cta-dock {
  position: absolute;
  left: 50%; bottom: clamp(40px, 8%, 80px);
  transform: translateX(-50%);
  z-index: 12;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cta-dock__pill {
  padding: 14px;
  display: flex; align-items: center; gap: 10px;
  border-radius: 28px;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  border: 0.5px solid rgba(255,255,255,0.32);
  box-shadow:
    0 14px 36px -10px rgba(20, 10, 4, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.cta-dock__foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: rgba(255, 248, 232, 0.85);
  text-shadow: 0 1px 8px rgba(40, 20, 8, 0.45);
}
.cta-dock__foot .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.75); }

.store-badge {
  appearance: none; border: none; padding: 0; background: transparent;
  border-radius: 16px; transition: transform 0.2s, opacity 0.2s;
  font-family: inherit;
  text-decoration: none;
}
a.store-badge { cursor: pointer; }
a.store-badge:active { transform: scale(0.97); }

.store-badge__inner {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 16px; border-radius: 16px;
  background: linear-gradient(180deg, #0e0d10 0%, #1a181c 100%);
  color: #fff; min-width: 188px;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* "Coming soon" variant — non-interactive, subtle dim, a tiny flag chip */
.store-badge--soon { opacity: 0.94; cursor: default; }
.store-badge--soon .store-badge__inner {
  background: linear-gradient(180deg, #0e0d10 0%, #1a181c 60%, #221a14 100%);
  border: 0.5px solid rgba(255, 216, 122, 0.18);
}
/* "Coming soon to / App Store" text styled with a subtle gold accent on the
   top line, so the badge reads as not-yet-available at a glance. */
.store-badge--soon .store-badge__top { color: #f7b54c; }
.store-badge__icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.store-badge__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.store-badge__top { font-size: 9px; letter-spacing: 0.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.store-badge__bot { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; margin-top: 3px; }

@media (max-width: 520px) {
  .cta-dock {
    width: calc(100% - 24px);
    bottom: 24px;
  }
  .cta-dock__pill {
    flex-direction: column;
    width: 100%;
    padding: 10px;
    gap: 8px;
  }
  .store-badge { width: 100%; }
  .store-badge__inner { min-width: 0; width: 100%; padding: 10px 18px 10px 14px; }
  .store-badge__bot { font-size: 16px; }
  .cta-dock__foot { font-size: 11.5px; padding: 0 16px; text-align: center; }
  .hero__sub { font-size: 13.5px; padding: 0 8px; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero__headline-wrap { top: 44%; gap: 12px; }
  .eyebrow-pill { font-size: 9.5px; letter-spacing: 2px; padding: 6px 12px; }
}

/* ============================================================
   PAGE SURFACE (below the fold) — warm cream
   ============================================================ */
.surface {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 220, 150, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #f6efe1 0%, #ecdebd 100%);
}

/* section header */
.section-header { text-align: center; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section-header__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 4px; font-weight: 700;
  color: #c64a3f;
  margin-bottom: 14px;
}
.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.6;
}
.section-header h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0; letter-spacing: -1.5px;
  color: #1a1410;
}
.section-header__sub {
  margin-top: 20px; margin-bottom: 0;
  font-size: 17px; line-height: 1.5; font-weight: 500;
  color: rgba(26, 20, 16, 0.65);
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
  padding: 100px 24px 40px;
}
.features__grid {
  max-width: 1080px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .features__grid { grid-template-columns: 1fr; } }
.feature-card {
  background: rgba(255, 255, 255, 0.55);
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px -16px rgba(60, 40, 8, 0.25);
}
.feature-card h3 {
  margin: 0 0 8px;
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 22px; letter-spacing: -0.5px; color: #1a1410;
}
.feature-card p {
  margin: 0; font-size: 14.5px; line-height: 1.55;
  color: rgba(26, 20, 16, 0.72);
}
.feature-card .ico {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffe8a3 0%, #f7b54c 60%, #c87b1f 100%);
  color: #3a1f08; font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 80px 24px 100px; }
.pricing__card-wrap {
  position: relative; max-width: 520px;
  margin: 64px auto 0; border-radius: 32px;
}
.pricing__halo {
  position: absolute; inset: -14px; border-radius: 38px;
  background: radial-gradient(ellipse at 30% 20%, #f3c886 0%, #d97757 40%, #c47a3a 80%);
  opacity: 0.85; filter: blur(14px); z-index: 0;
}
.pricing__card {
  position: relative; z-index: 1;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  border-radius: 28px;
  background: rgba(255, 248, 232, 0.18);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.35);
  box-shadow:
    0 30px 60px -20px rgba(60, 30, 8, 0.40),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.billing-row {
  appearance: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px 16px 18px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 0.5px 0 rgba(255,255,255,0.18);
  transition: background 0.2s, box-shadow 0.2s;
  font-family: inherit;
  color: #fff;
}
.billing-row[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 100%);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.9);
  color: #1a1410;
}
.billing-row .radio {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: all 0.2s;
}
.billing-row[aria-pressed="true"] .radio {
  border-color: #1a1410; background: #fff;
}
.billing-row .radio::after {
  content: ''; width: 11px; height: 11px; border-radius: 50%;
  background: transparent; transition: background 0.2s;
}
.billing-row[aria-pressed="true"] .radio::after { background: #1a1410; }

.billing-row__label { flex: 1; min-width: 0; }
.billing-row__label-row { display: flex; align-items: center; gap: 8px; }
.billing-row__name {
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.billing-row[aria-pressed="true"] .billing-row__name { text-shadow: none; }
.billing-row__save {
  padding: 3px 8px; border-radius: 99px;
  background: linear-gradient(135deg, #ffe8a3 0%, #f3c886 60%, #d4a942 100%);
  color: #3a1f08;
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(60,40,8,0.30), inset 0 1px 0 rgba(255,255,255,0.7);
  white-space: nowrap;
}
.billing-row__sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  margin-top: 2px;
}
.billing-row[aria-pressed="true"] .billing-row__sub { color: rgba(26,20,16,0.55); text-shadow: none; }

.billing-row__price { text-align: right; flex-shrink: 0; }
.billing-row__amount {
  font-size: 19px; font-weight: 700; letter-spacing: -0.4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.billing-row[aria-pressed="true"] .billing-row__amount { text-shadow: none; }
.billing-row__period {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.billing-row[aria-pressed="true"] .billing-row__period { color: rgba(26,20,16,0.55); text-shadow: none; }

.pricing__divider {
  height: 0.5px; background: rgba(255,255,255,0.22);
  margin: 8px 4px;
}
.pricing__includes-label {
  padding: 0 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  margin-bottom: 12px; text-transform: uppercase;
}
.pricing__includes {
  list-style: none; padding: 0 4px; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing__includes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.pricing__includes svg { flex-shrink: 0; margin-top: 4px; }

.pricing__cta-wrap {
  margin-top: 10px; padding: 0 4px;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing__cta {
  appearance: none; border: none; cursor: pointer;
  width: 100%; padding: 16px 24px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #ffffff 0%, #efe7d6 100%);
  color: #0a0a18;
  font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 8px 22px -6px rgba(60,40,8,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  font-family: inherit;
}
.pricing__cta-sub {
  font-size: 11.5px; text-align: center;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 60px 24px 80px; }
.faq__list {
  max-width: 760px; margin: 56px auto 0;
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.faq__list::before {
  content: ''; position: absolute; inset: -10% -8%; border-radius: 80px;
  background: radial-gradient(ellipse, rgba(217, 119, 87, 0.22) 0%, transparent 70%);
  filter: blur(40px); z-index: 0;
}
.faq__item {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}
.faq__head {
  appearance: none; border: none; background: transparent;
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; color: #1a1410;
  font-family: inherit;
}
.faq__q {
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.3px;
}
.faq__toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(26,20,16,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #1a1410;
  font-size: 18px; font-weight: 300; line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__body {
  max-height: 0; opacity: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease;
}
.faq__item[open] .faq__body {
  max-height: 320px; opacity: 1;
  padding: 0 24px 22px 24px;
}
.faq__a {
  margin: 0; font-size: 14.5px; line-height: 1.55;
  color: rgba(26,20,16,0.72);
  max-width: 580px;
}

/* ============================================================
   BIG-CTA FOOTER
   ============================================================ */
.foot-cta {
  padding: 40px 24px 80px;
}
.foot-cta__card {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  border-radius: 40px; padding: 80px 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #d97757 0%, #f3c886 55%, #fff5d9 100%);
  box-shadow: 0 30px 80px -30px rgba(60, 30, 8, 0.45);
}
.foot-cta__blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.foot-cta__blob--1 { left: 10%; top: 10%; width: 40%; height: 70%; background: rgba(255,200,140,0.45); }
.foot-cta__blob--2 { right: 12%; bottom: -10%; width: 45%; height: 80%; background: rgba(217,119,87,0.55); }
.foot-cta__blob--3 { left: 60%; top: 20%; width: 30%; height: 40%; background: rgba(255,255,255,0.4); filter: blur(60px); }

.foot-cta__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.foot-cta__eyebrow {
  font-size: 11px; letter-spacing: 4px; font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.foot-cta__title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -2px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(40, 20, 8, 0.45);
}
.foot-cta__sub {
  margin: 0; max-width: 520px;
  font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(40, 20, 8, 0.35);
}
.foot-cta .cta-dock__pill {
  margin-top: 16px;
  background: rgba(255,255,255,0.20);
}

/* ============================================================
   FINEPRINT FOOTER
   ============================================================ */
.fineprint {
  max-width: 1080px; margin: 0 auto;
  padding: 32px 24px 60px;
  border-top: 0.5px solid rgba(26, 20, 16, 0.12);
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  font-size: 12px;
  color: rgba(26,20,16,0.55);
}
.fineprint__left { display: flex; align-items: center; gap: 10px; }
.fineprint__links { display: flex; gap: 24px; flex-wrap: wrap; }
.fineprint a:hover { color: #1a1410; text-decoration: underline; }
.fineprint__credit {
  color: rgba(26, 20, 16, 0.75);
  text-decoration: underline;
  text-decoration-color: rgba(198, 74, 63, 0.45);
  text-underline-offset: 3px;
}
.fineprint__credit:hover {
  color: #c64a3f;
  text-decoration-color: #c64a3f;
}

/* ============================================================
   LEGAL PAGES (privacy / terms / 404)
   ============================================================ */

/* Light-theme nav variant for legal pages (no dark wall behind) */
.nav--legal {
  background: rgba(255, 255, 255, 0.55);
  border: 0.5px solid rgba(26, 20, 16, 0.10);
  color: #1a1410;
  box-shadow:
    0 8px 30px -10px rgba(60, 30, 8, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
.nav--legal .nav__brand { color: #1a1410; text-shadow: none; }
.nav--legal .lang-picker__current {
  background: rgba(26, 20, 16, 0.06);
  border-color: rgba(26, 20, 16, 0.10);
  color: #1a1410;
}
.nav--legal .lang-picker__current:hover {
  background: rgba(26, 20, 16, 0.10);
}

.legal {
  max-width: 720px; margin: 0 auto;
  padding: 140px 24px 80px;
  font-size: 15.5px; line-height: 1.65;
  color: #1a1410;
}
.legal__updated {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(26,20,16,0.55);
  margin-bottom: 14px;
}
.legal h1 {
  margin: 0 0 28px;
  font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: -1.5px;
  color: #1a1410;
}
.legal h2 {
  margin: 40px 0 10px;
  font-size: 21px; font-weight: 700; letter-spacing: -0.4px;
}
.legal p { margin: 0 0 14px; color: rgba(26,20,16,0.85); }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; color: rgba(26,20,16,0.85); }
.legal a { color: #c64a3f; text-decoration: underline; text-underline-offset: 3px; }
.legal__placeholder {
  background: rgba(217,119,87,0.10);
  border-left: 3px solid #c64a3f;
  padding: 14px 18px;
  border-radius: 4px;
  margin: 14px 0;
  font-size: 13.5px;
  color: rgba(26,20,16,0.85);
}
.legal__note {
  font-size: 13.5px;
  color: rgba(26,20,16,0.65);
  font-style: italic;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(26, 20, 16, 0.10);
}
.legal__body { margin-top: 8px; }
.legal__back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 40px;
  font-size: 14px; font-weight: 500;
  color: #c64a3f;
}
.legal__back:hover { text-decoration: underline; }

body.legal-page { background: #f6efe1; }
