/* =========================================================
   RELLY — Notion-inspired warm & playful landing
   Palette: pure white + warm white, coral CTA, yellow/pink/blue accents
   ========================================================= */

/* ---- TWK Lausanne (English primary) ---- */
@font-face { font-family: 'TWK Lausanne'; font-weight: 300; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-300.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-400.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 400; font-style: italic; font-display: swap; src: url('fonts/TWKLausanne-400Italic.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 500; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-500.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-600.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-700.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 800; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-800.ttf') format('truetype'); }
@font-face { font-family: 'TWK Lausanne'; font-weight: 900; font-style: normal; font-display: swap; src: url('fonts/TWKLausanne-900.ttf') format('truetype'); }

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-warm: #FBF7EE;      /* near-white warm paper */
  --bg-card: #ffffff;
  --bg-tint-y: #F4F0E4;    /* all tints muted to near-neutral */
  --bg-tint-p: #F4F0E4;
  --bg-tint-g: #F4F0E4;
  --bg-tint-b: #F4F0E4;
  --bg-tint-o: #F4F0E4;

  /* Text (warm near-blacks) */
  --ink: rgba(0, 0, 0, 0.95);
  --ink-2: rgba(0, 0, 0, 0.80);
  --ink-3: #615d59;         /* warm gray 500 */
  --ink-4: #a39e98;         /* warm gray 300 */

  /* Accents */
  --coral: #FF5A1F;         /* primary CTA */
  --coral-hot: #FF6B3D;
  --coral-deep: #D94A15;
  --sun: #FFB436;           /* yellow accent */
  --sun-soft: #FFD57A;
  --blush: #FF6FAE;         /* pink accent */
  --sky: #4C7FFF;           /* soft blue accent */
  --leaf: #37B86F;          /* success green */
  --plum: #391c57;          /* deep accent */

  /* Lines & shadows */
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);

  --shadow-sm:
    rgba(0,0,0,0.01) 0 1px 3px,
    rgba(0,0,0,0.02) 0 3px 7px,
    rgba(0,0,0,0.02) 0 7px 15px;
  --shadow:
    rgba(0,0,0,0.04) 0 4px 18px,
    rgba(0,0,0,0.027) 0 2px 7.8px,
    rgba(0,0,0,0.02) 0 0.8px 3px,
    rgba(0,0,0,0.01) 0 0.17px 1px;
  --shadow-lg:
    rgba(0,0,0,0.02) 0 1px 3px,
    rgba(0,0,0,0.03) 0 3px 7px,
    rgba(0,0,0,0.035) 0 7px 15px,
    rgba(0,0,0,0.04) 0 14px 28px,
    rgba(0,0,0,0.05) 0 23px 52px;
  --shadow-pop:
    0 8px 24px rgba(255, 90, 31, 0.18),
    0 2px 6px rgba(255, 90, 31, 0.12);

  /* Radii */
  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* Fonts */
  --font-body: 'TWK Lausanne', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing */
  --pad-x: clamp(20px, 5vw, 80px);
  --pad-section: clamp(80px, 10vw, 140px);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  font-feature-settings: "lnum", "locl";
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, button, label {
  word-break: keep-all;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

button { font-family: inherit; cursor: pointer; }
button:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

strong, b { font-weight: 700; }

::selection { background: var(--sun); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
}
.skip-link:focus { left: 20px; top: 20px; }

/* ----------- TYPO helpers ----------- */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
  max-width: 18ch;
}
.h2--xl {
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.h2__accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.h3 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}

.lede {
  color: var(--ink-3);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  max-width: 56ch;
}
.lede b { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}

/* ----------- BADGE ----------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px 6px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  margin-bottom: 26px;
  letter-spacing: -0.005em;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.45);
  animation: pulse 2s var(--ease) infinite;
}
.badge--sale s {
  color: var(--ink-4);
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  margin-right: 2px;
}
.badge--sale b {
  color: var(--coral);
  font-weight: 800;
  margin-left: 2px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}
@keyframes pulseYellow {
  0% { box-shadow: 0 0 0 0 rgba(251, 250, 45, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(251, 250, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 250, 45, 0); }
}

/* ----------- NAV ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.wordmark__mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wordmark__mark::before {
  content: "R";
  color: white;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
  font-family: var(--font-body);
}
.wordmark__dot {
  display: none;
}
.wordmark--lg { font-size: 34px; }
.wordmark--lg .wordmark__mark { width: 40px; height: 40px; border-radius: 9px; }
.wordmark--lg .wordmark__mark::before { font-size: 22px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin-left: 16px;
  flex: 1;
}
.nav-links a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover {
  background: var(--bg-warm);
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
}

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: var(--r);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: scale(0.96); }

.btn--primary {
  background: var(--coral);
  color: white;
  box-shadow: none;
}
.btn--primary:hover {
  background: var(--coral-hot);
  transform: translateY(-1px);
  box-shadow: none;
}
.btn--primary:active {
  background: var(--coral-deep);
  transform: translateY(0) scale(0.97);
  box-shadow: none;
}

.btn--ghost {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--bg-warm);
  border-color: var(--line-strong);
}

.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: var(--r-md); }
.btn--xl { padding: 18px 28px; font-size: 16px; border-radius: var(--r-md); }
.btn--full { width: 100%; }

.btn--sale {
  position: relative;
  overflow: visible;
}
.btn__flag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--ink);
  color: white;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 8px 18px rgba(0,0,0,0.14);
  transform: rotate(6deg);
  animation: flagPulse 2.4s var(--ease) infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes flagPulse {
  0%, 100% { transform: rotate(6deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.08); }
}

.btn--play { gap: 10px; padding-left: 8px; padding-right: 14px; }
.play-icon {
  width: 32px; height: 32px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon__triangle {
  width: 0; height: 0;
  border-left: 9px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 3px;
}
.play-length {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  padding-left: 8px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}

/* ----------- HERO (Variant D — Playful Notion) ----------- */
.hero {
  position: relative;
  padding: clamp(80px, 8vw, 112px) clamp(24px, 5vw, 64px) clamp(80px, 8vw, 112px);
  overflow: hidden;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* hero palette overrides — quiet, granola-like, near-white warm bg */
.hero .hero__eyebrow-dot {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: none;
  animation: none;
}
.hero .hero__eyebrow-pill {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  color: var(--ink-2);
  font-weight: 500;
}
.hero > * { position: relative; z-index: 1; }
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
}

/* Eyebrow pill */
.hero__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: -0.005em;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero__content { max-width: 620px; margin: 0 auto; }
}

/* Typing keyboard demo — subtle supporting visual, centered at top */
.kbd-demo {
  position: relative;
  max-width: 560px;
  margin: 0 auto 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
  transform: scale(0.82);
  transform-origin: center top;
  opacity: 0.92;
}

/* (burst flash removed) */

.kbd-demo__bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 8px 18px rgba(0,0,0,0.06);
  min-width: 220px;
  max-width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.kbd-demo.is-fading .kbd-demo__bubble {
  opacity: 0;
  transform: translateY(-6px);
}
.kbd-demo__avatar {
  width: 28px; height: 28px;
  background: #3A4252;
  color: #E8E3D9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0;
}
.kbd-demo__text {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-height: 20px;
  white-space: pre;
}
.kbd-demo__cursor {
  display: inline-block;
  width: 1.5px;
  height: 16px;
  background: var(--ink);
  margin-left: 1px;
  animation: cursorBlink 1.1s steps(2) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.kbd.kbd--demo {
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  padding: 0;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.kbd--demo .kbd-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}
/* Stagger rows to simulate a typing keyboard shape */
.kbd--demo .kbd-row--2 { padding-left: clamp(14px, 1.8vw, 22px); }
.kbd--demo .kbd-row--3 { padding-left: clamp(28px, 3.6vw, 44px); }
.kbd--demo .kbd-row--space { margin-top: 4px; }

.kbd--demo .key {
  --size: clamp(34px, 4.6vw, 46px);
  width: var(--size);
  height: var(--size);
  background: #EFEBE3;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  color: #3A3530;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 2px rgba(0,0,0,0.04),
    0 2px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s var(--ease), background 0.15s var(--ease), box-shadow 0.2s;
  user-select: none;
  will-change: transform, opacity;
}
.kbd--demo .key--space {
  width: clamp(180px, 28vw, 280px);
  height: clamp(28px, 3.4vw, 34px);
  border-radius: 7px;
}

/* Press highlight when a letter is being typed */
.kbd--demo .key.is-pressed {
  background: #D9D2C4;
  transform: translateY(2px) scale(0.96);
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    inset 0 1px 2px rgba(0,0,0,0.12);
  color: #2A2520;
}

/* Soft disperse — all keys drift together, uniformly, fade a touch */
.kbd-demo.is-shattering .kbd--demo .key {
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg)) !important;
  opacity: 0.28 !important;
  transition: transform 1.6s cubic-bezier(0.33, 0.9, 0.4, 1), opacity 1.6s ease-out !important;
  animation: none !important;
}

/* Reform — snap back gently, together */
.kbd-demo.is-reforming .kbd--demo .key {
  transform: translate(0, 0) rotate(0deg) !important;
  opacity: 1 !important;
  transition: transform 0.7s cubic-bezier(0.3, 1, 0.4, 1), opacity 0.7s ease-out !important;
  animation: none !important;
}

/* Mobile: keyboard shrinks proportionally (handled by clamp) */
@media (max-width: 600px) {
  .kbd--demo .key { --size: clamp(26px, 8vw, 34px); }
  .kbd--demo .kbd-row { gap: 4px; }
  .kbd--demo { gap: 4px; }
  .kbd-demo { gap: 20px; }
  .kbd-demo__bubble { min-width: 200px; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.45);
  animation: pulse 2s var(--ease) infinite;
}

.hero__note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Chat bubbles below CTA — Relly stays INK DARK (not coral) to protect CTA hierarchy */
.hero__chat {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  align-items: flex-start;
  text-align: left;
}
.chat-bubble {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transform: rotate(-1.2deg);
  transition: transform 0.3s var(--ease);
}
.chat-bubble:hover { transform: rotate(0); }
.chat-bubble small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  background: var(--bg-warm);
  padding: 2px 7px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.chat-bubble--rel {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  align-self: flex-end;
  transform: rotate(1deg);
  box-shadow: var(--shadow);
}
.chat-bubble--rel:hover { transform: rotate(0); }
.chat-bubble--rel small {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.hero__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 20px;
  word-break: keep-all;
  max-width: 18ch;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-size: 1.04em;
}
.hero__title-accent {
  position: relative;
  display: inline-block;
  color: var(--coral);
}
.hero__squiggle {
  position: absolute;
  left: 0; right: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.2em;
  color: var(--sun);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: squiggleDraw 1.2s var(--ease) 0.7s forwards;
}
@keyframes squiggleDraw {
  to { stroke-dashoffset: 0; }
}

.hero__sub {
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 32px;
  font-weight: 400;
}
.hero__sub b, .hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.hero__cta-note {
  font-size: 12.5px;
  color: var(--ink-4);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .hero__cta { justify-content: flex-start; }
}

/* Product preview card (granola-style) */
.hero__preview {
  position: relative;
  z-index: 1;
}
.preview-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.08),
    0 40px 80px -20px rgba(0,0,0,0.10);
  overflow: hidden;
}
.preview-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #FAF8F4;
}
.preview-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c, #ddd);
  flex-shrink: 0;
}
.preview-card__title {
  margin-left: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.preview-card__rec {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.preview-card__rec > span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E84C3D;
  animation: pulse 1.8s ease-in-out infinite;
}
.preview-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.preview-line {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  align-items: baseline;
}
.preview-line__who {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 44px;
  padding-top: 2px;
}
.preview-line__text {
  color: var(--ink);
  letter-spacing: -0.005em;
}
.preview-line--relly .preview-line__who {
  color: var(--coral);
}
.preview-line--relly .preview-line__text {
  color: var(--ink-2);
}
.preview-tasks {
  margin-top: 8px;
  padding: 14px 16px;
  background: #FAF8F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-task {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.preview-task em {
  font-style: normal;
  color: var(--ink-4);
  font-size: 11.5px;
  letter-spacing: 0.01em;
}
.preview-task__check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink-4);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview-task--done .preview-task__check {
  background: var(--leaf);
}
.preview-task__spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255, 90, 31, 0.18);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}
.preview-task--live { color: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Alternative hero scene (illustrated meeting) ---- */
.hero__scene { position: relative; }
.hero__scene .preview-card,
.hero__scene .preview-toast,
.hero__scene .preview-artifact { display: none; }

.hero__scene .bubble {
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
}

.scene {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.scene__room {
  position: relative;
  width: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(255, 180, 54, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #FFFCF5 0%, #F3ECDD 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px 24px 14px 14px;
  overflow: visible;
  padding: 28px 24px 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 20px 60px -20px rgba(0,0,0,0.08);
}
.scene__people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  padding-bottom: 12px;
}
.seat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.seat__bubble {
  position: relative;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 10px 22px -8px rgba(0,0,0,0.12);
  max-width: 100%;
  letter-spacing: -0.008em;
  text-align: left;
}
.seat__bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background: white;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
  border-radius: 0 0 2px 0;
}
.seat__bubble mark {
  background: rgba(255, 180, 54, 0.26);
  color: inherit;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 500;
}
.seat__bubble--marco { transform: rotate(-0.8deg); }
.seat__bubble--lena  { transform: rotate(0.8deg); }
.seat__bubble--jun   { transform: rotate(-0.4deg); }

/* table bar (horizontal strip connecting the 3 seats) */
.scene__table {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin: 0 -4px -6px;
}
.scene__table-line {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: linear-gradient(90deg, transparent, #D1BD9A 18%, #D1BD9A 82%, transparent);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.scene__mic {
  position: relative;
  width: 22px;
  height: 22px;
  z-index: 2;
}
.scene__table-label {
  position: absolute;
  right: 16px;
  bottom: -16px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scene__mic-dot {
  position: absolute;
  inset: 7px;
  background: var(--ink);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.35);
}
.scene__mic-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  opacity: 0.5;
  animation: micRing 2.2s ease-out infinite;
}
.scene__mic-ring--2 { animation-delay: 1.1s; }
@keyframes micRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3.6); opacity: 0;   }
}

/* person avatar (used inside .seat) */
.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.person__head {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 -3px 0 rgba(0,0,0,0.1),
    inset 0 2px 0 rgba(255,255,255,0.3),
    0 3px 8px rgba(0,0,0,0.1);
  font-family: var(--font-body);
  letter-spacing: 0;
}
.person__body {
  width: 62px;
  height: 20px;
  background: var(--c);
  opacity: 0.9;
  border-radius: 34px 34px 6px 6px;
  margin-top: -6px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.25);
}
.person__name {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Relly proactive bubble — the focal point, sits BELOW the room */
.hero__scene .bubble--relly {
  position: relative;
  margin-top: 18px;
  max-width: none;
  width: 100%;
  padding: 18px 20px 20px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 90, 31, 0.18), transparent 50%),
    linear-gradient(180deg, #1C1814 0%, #0E0C0A 100%);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    0 20px 50px -12px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 3;
  transform: none;
}
.bubble--relly::before { display: none; }
.bubble--relly::after {
  /* tail pointing up to the scene */
  content: "";
  position: absolute;
  top: -7px;
  left: 34px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #1C1814 0%, #1C1814 50%, transparent 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
  border-radius: 2px;
}
.bubble__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bubble__rel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--coral);
  letter-spacing: -0.01em;
}
.bubble__rel-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55);
  animation: earPulse 1.6s ease-out infinite;
}
.bubble__rel-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bubble__line {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.008em;
}
.bubble__line b {
  color: white;
  font-weight: 600;
  background: rgba(255, 90, 31, 0.2);
  padding: 1px 5px;
  border-radius: 4px;
}
.bubble__ask {
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.008em;
}
.bubble__ask em {
  font-family: var(--font-serif);
  font-style: italic;
  color: white;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.015em;
}
.bubble__ask-q {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 6px;
  vertical-align: 1px;
}

@media (max-width: 600px) {
  .scene__room { aspect-ratio: 1.1 / 1; max-height: 340px; }
  .person__head { width: 38px; height: 38px; font-size: 12px; }
  .person__body { width: 52px; height: 16px; }
  .bubble { font-size: 12px; max-width: 150px; padding: 7px 11px; }
  .bubble__rel-badge { font-size: 15px; }
  .bubble__line { font-size: 14px; }
  .bubble__ask { font-size: 13.5px; }
}

/* keep old preview styles around for potential toggle */
.hero__preview {
  position: relative;
  perspective: 1200px;
}
.preview-card {
  transform: rotate(-0.4deg);
  position: relative;
  z-index: 2;
}

/* -- Speakers row -- */
.preview-speakers {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #FFFDF9;
  flex-wrap: wrap;
  align-items: center;
}
.speaker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid transparent;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
}
.speaker__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c, #ddd);
  color: rgba(0,0,0,0.7);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.speaker__avatar--relly {
  background: var(--ink);
  color: var(--coral);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
}
.speaker__name { font-weight: 600; color: var(--ink-2); }
.speaker__body {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.speaker--active {
  background: rgba(255, 180, 54, 0.14);
  border-color: rgba(255, 180, 54, 0.3);
  color: var(--ink);
}
.speaker--active .speaker__name { color: var(--ink); }
.speaker__wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.speaker__wave span {
  width: 2px;
  background: var(--coral);
  border-radius: 1px;
  animation: waveBar 1s ease-in-out infinite;
}
.speaker__wave span:nth-child(1) { animation-delay: 0s;   height: 30%; }
.speaker__wave span:nth-child(2) { animation-delay: 0.12s; height: 55%; }
.speaker__wave span:nth-child(3) { animation-delay: 0.24s; height: 80%; }
.speaker__wave span:nth-child(4) { animation-delay: 0.36s; height: 95%; }
.speaker__wave span:nth-child(5) { animation-delay: 0.48s; height: 65%; }
.speaker__wave span:nth-child(6) { animation-delay: 0.6s;  height: 45%; }
.speaker__wave span:nth-child(7) { animation-delay: 0.72s; height: 25%; }
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(1); }
}
.speaker--relly {
  margin-left: auto;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.92);
}
@media (max-width: 600px) {
  .speaker--relly { margin-left: 0; }
}
.speaker--relly .speaker__name { color: #fff; }
.speaker__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.ear-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55);
  animation: earPulse 1.6s ease-out infinite;
}
@keyframes earPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.6); }
  80%  { box-shadow: 0 0 0 8px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}

/* -- Live caption -- */
.preview-caption {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--line);
  background: #FFFFFF;
}
.preview-caption__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.preview-caption__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.008em;
  font-weight: 400;
}
.preview-caption__text mark {
  background: rgba(255, 180, 54, 0.25);
  color: inherit;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 500;
}
.preview-caption__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--ink);
  vertical-align: -0.15em;
  margin-left: 2px;
  animation: cursorBlink 1.1s steps(2) infinite;
}

/* -- Paradigm divider -- */
.preview-paradigm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFFDF9 0%, #FAF6EE 100%);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.preview-paradigm__arrow {
  color: var(--coral);
  font-weight: 700;
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(2px); }
}
.preview-paradigm__label {
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
.preview-paradigm__label b {
  color: var(--ink);
  font-weight: 600;
}
.preview-paradigm__time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.03em;
}

/* -- Parallel execution stream -- */
.preview-stream {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stream-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #FAF8F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 0;
}
.stream-item--live {
  background: #FFF9F1;
  border-color: rgba(255, 90, 31, 0.18);
}
.stream-item--done {
  opacity: 0.92;
}
.stream-item__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.stream-item__icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-2);
  flex-shrink: 0;
}
.stream-item__icon--slides { color: var(--coral); }
.stream-item__icon--web    { color: var(--sky); }
.stream-item__icon--done {
  background: rgba(55, 184, 111, 0.12);
  border-color: rgba(55, 184, 111, 0.25);
  color: var(--leaf);
}
.stream-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stream-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.008em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stream-item__meta {
  font-weight: 400;
  color: var(--ink-4);
  letter-spacing: 0;
}
.stream-item__bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.stream-item__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral-hot), var(--coral));
  border-radius: 2px;
  position: relative;
}
.stream-item__bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: barShimmer 1.6s linear infinite;
}
@keyframes barShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%);  }
}
.stream-item__state {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-3);
}
.stream-item__state--live {
  background: rgba(255, 90, 31, 0.12);
  color: var(--coral);
}
.stream-item__state--done {
  background: rgba(55, 184, 111, 0.12);
  color: var(--leaf);
}
.stream-item__spinner {
  width: 10px; height: 10px;
  border: 1.5px solid rgba(255, 90, 31, 0.22);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.preview-card__icon {
  margin-right: 6px;
  font-size: 13px;
  filter: grayscale(0.2);
}
.preview-card__attendees {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #FFFDF9;
  font-size: 12.5px;
  color: var(--ink-3);
}
.preview-avatars {
  display: inline-flex;
  align-items: center;
}
.preview-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c, #ddd);
  border: 2px solid #FFFDF9;
  color: rgba(0,0,0,0.65);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  margin-left: -6px;
  font-family: var(--font-body);
}
.preview-avatar:first-child { margin-left: 0; }
.preview-avatar--relly {
  background: var(--ink);
  color: var(--coral);
  font-family: var(--font-serif);
  font-style: italic;
}
.preview-attendees__text {
  flex: 1;
  min-width: 0;
  letter-spacing: -0.005em;
}
.preview-dim { color: var(--ink-4); margin: 0 2px; }
.preview-relly { color: var(--coral); font-weight: 600; }
.preview-attendees__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--leaf);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.preview-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(55, 184, 111, 0.5);
  animation: pulse 1.8s ease-in-out infinite;
}
.preview-line {
  gap: 12px;
}
.preview-line__time {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-4);
  padding-top: 2px;
  min-width: 34px;
}
.preview-line__who {
  min-width: 40px;
}
.preview-line__text mark {
  background: rgba(255, 180, 54, 0.22);
  color: inherit;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 500;
}
.preview-line--relly .preview-line__text mark {
  background: rgba(255, 90, 31, 0.14);
}

/* tasks */
.preview-tasks {
  gap: 6px;
  padding: 12px 14px;
}
.preview-tasks__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.preview-tasks__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-tasks__count {
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: -0.005em;
}
.preview-task {
  padding: 6px 0;
}
.preview-task__name {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-weight: 500;
  color: var(--ink);
}
.preview-task__meta {
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 400;
  letter-spacing: 0;
}
.preview-task__status {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.04);
}
.preview-task__status--done {
  color: var(--leaf);
  background: rgba(55, 184, 111, 0.1);
}
.preview-task__status--live {
  color: var(--coral);
  background: rgba(255, 90, 31, 0.1);
}

/* floating toast */
.preview-toast {
  position: absolute;
  top: -20px;
  right: -36px;
  display: flex;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 18px 40px -10px rgba(0,0,0,0.18);
  max-width: 260px;
  transform: rotate(1.6deg);
  z-index: 2;
}
.preview-toast__icon {
  width: 24px; height: 24px;
  background: rgba(55, 184, 111, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview-toast__title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.preview-toast__meta {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 1px;
  letter-spacing: -0.005em;
}

/* output artifact — peeks from BEHIND the main card at bottom-left */
.preview-artifact {
  position: absolute;
  bottom: -56px;
  left: -110px;
  width: 200px;
  padding: 12px 14px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 22px 44px -14px rgba(0,0,0,0.14);
  transform: rotate(-3.6deg);
  z-index: 1;
}
.preview-artifact__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.preview-artifact__kind {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.preview-artifact__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.preview-artifact__chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  align-items: end;
  height: 72px;
  padding: 4px 0;
}
.preview-bar {
  background: linear-gradient(180deg, #DCD3C2 0%, #C8BDA8 100%);
  border-radius: 3px 3px 1px 1px;
  height: var(--h, 30%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  font-family: var(--font-mono);
  font-size: 0;
}
.preview-bar span {
  position: absolute;
  bottom: -14px;
  font-size: 8.5px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}
.preview-bar--hot {
  background: linear-gradient(180deg, var(--coral-hot) 0%, var(--coral) 100%);
}
.preview-artifact__foot {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
}
.preview-artifact__delta {
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.005em;
}
.preview-artifact__src {
  font-family: var(--font-mono);
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .preview-toast { right: 8px; top: -12px; }
  .preview-artifact { left: 8px; bottom: -16px; width: 200px; }
  .preview-card { transform: none; }
}

/* trust row */
.hero__trust-row {
  grid-column: 1 / -1;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.hero__trust-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trust-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 9999px;
  letter-spacing: -0.005em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 960px) {
  .hero__trust-row { align-items: flex-start; text-align: left; }
  .hero__trust-logos { justify-content: flex-start; }
}

/* ---------- Countdown ---------- */
.countdown {
  margin: 28px 0 36px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  max-width: 100%;
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.06), transparent 40%);
  pointer-events: none;
}
.countdown__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.countdown__icon {
  display: inline-flex;
  animation: tickTock 1.6s ease-in-out infinite;
  transform-origin: 50% 65%;
  font-size: 16px;
  line-height: 1;
}
@keyframes tickTock {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}
.countdown__grid {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.countdown__num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
  min-width: 1.7ch;
  text-align: center;
}
.countdown__lbl {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
}
.countdown__colon {
  color: var(--ink-4);
  font-size: 18px;
  font-weight: 700;
  padding: 0 2px;
  animation: colonBlink 1s ease-in-out infinite;
}
@keyframes colonBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.countdown__end {
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.countdown--expired .countdown__num { color: var(--ink-4); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.hero__trust .mono {
  color: var(--ink-4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-3);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.trust-logos span:hover { opacity: 1; }

/* ---------- HERO KEYBOARD (above title) ---------- */
.hero__kbd {
  position: relative;
  margin: 0 0 32px;
  padding: 20px 16px 16px;
  background:
    radial-gradient(ellipse at 50% 50%, white, var(--bg-warm));
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 520px;
  overflow: visible;
}
.hero__kbd .kbd {
  position: static;
  padding: 0;
  gap: 4px;
}
.hero__kbd .kbd .key {
  --size: clamp(20px, 2.6vw, 28px);
  font-size: clamp(9px, 1vw, 11px);
}
.hero__kbd .kbd-row { gap: 4px; }
.hero__kbd .replay {
  position: absolute;
  bottom: -14px; right: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.hero__kbd .replay:hover { transform: translateY(-1px); }
.hero__kbd::before {
  content: "타이핑은 끝났습니다 ━━━━";
  position: absolute;
  top: -10px; left: 20px;
  background: var(--bg);
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* ---------- HERO STAGE (photo only, always visible) ---------- */
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, white, var(--bg-warm));
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stage--photo {
  border-radius: var(--r-xl);
}
.scene-photo.scene-photo--static {
  opacity: 1;
  visibility: visible;
  transition: none;
}
.scene-photo.scene-photo--static .bubble {
  opacity: 1;
  transform: rotate(var(--rot, -2deg)) translateY(0) scale(1);
}
.scene-photo.scene-photo--static .bubble--center {
  transform: translateX(-50%) rotate(var(--rot, -1deg)) translateY(0) scale(1);
}
.scene-photo.scene-photo--static .bubble--relly.bubble--center {
  animation: rellyBobCenter 3.4s ease-in-out infinite 0.8s;
}
.stage__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 180, 54, 0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 111, 174, 0.18), transparent 40%);
  pointer-events: none;
}
.stage__shadow {
  position: absolute;
  bottom: 8%;
  left: 10%; right: 10%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.18), transparent 70%);
  filter: blur(8px);
}

/* Caption shown while keyboard is shattered */
.stage__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: clamp(20px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease-bouncy), visibility 0s linear 0.6s;
  pointer-events: none;
}
.stage__caption.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s, 0.1s, 0s;
}
.stage__caption-mark {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  height: 28px;
}
.stage__caption-mark span {
  width: 4px;
  background: var(--coral);
  border-radius: 2px;
  animation: waveBar 1.1s ease-in-out infinite;
}
.stage__caption-mark span:nth-child(1) { height: 40%; }
.stage__caption-mark span:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.stage__caption-mark span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.stage__caption-mark span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.stage__caption-mark span:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.stage__caption-line {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.1;
}
.stage__caption-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--coral);
  letter-spacing: -0.01em;
}

/* Keyboard */
.kbd {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(3px, 0.7vw, 6px);
  padding: clamp(20px, 4vw, 40px);
  transition: opacity 0.6s var(--ease);
}
.kbd.shattered { pointer-events: none; }
.kbd-row {
  display: flex;
  gap: clamp(3px, 0.7vw, 6px);
  justify-content: center;
}
.key {
  --size: clamp(22px, 3.6vw, 34px);
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(10px, 1.2vw, 13px);
  color: var(--ink-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 0 rgba(0,0,0,0.08),
    0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), background 0.3s;
  will-change: transform, opacity;
  user-select: none;
}
.key--sm { --size: calc(clamp(22px, 3.6vw, 34px) * 0.9); font-size: 10px; }
.key--wide { width: calc(var(--size) * 1.4); }
.key--wide1 { width: calc(var(--size) * 1.3); }
.key--wide2 { width: calc(var(--size) * 1.45); }
.key--wide3 { width: calc(var(--size) * 1.45); }
.key--wide4 { width: calc(var(--size) * 1.6); }
.key--space { width: calc(var(--size) * 6); background: #FAFAFA; }

/* Idle float animation */
.kbd:not(.shattered) .key {
  animation: keyFloat 5s var(--ease) infinite;
  animation-delay: calc(var(--i, 0) * 40ms);
}
@keyframes keyFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-2px) rotate(-0.5deg); }
}

/* Shatter — only "--keep" keys remain; all others disappear. Remaining keys at uniform size. */
.kbd.shattered .key {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease-out;
}
.kbd.shattered .key.key--keep {
  animation: keyScatterDrift 7s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 140ms);
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg));
  opacity: 0.55;
  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.4s ease-out;
}
@keyframes keyScatterDrift {
  0%, 100% {
    transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translate(calc(var(--tx, 0) + 3px), calc(var(--ty, 0) - 3px)) rotate(calc(var(--rot, 0deg) + 1.5deg));
  }
}

/* Real scene (photo + floating bubbles) */
.scene-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease) 0.4s, visibility 0s linear 0.4s;
}
.scene-photo.visible {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s, 0s;
}
.scene-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.05);
}
.scene-photo__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(255, 249, 242, 0.25)),
    linear-gradient(180deg, rgba(255, 249, 242, 0) 40%, rgba(255, 249, 242, 0.45));
  pointer-events: none;
}
.scene-photo__tint--light {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(255, 249, 242, 0.5));
}

/* Inline scenes (used in how-it-works) */
.scene-photo--inline {
  position: relative;
  opacity: 1;
  visibility: visible;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: rotate(-1.2deg);
  transition: transform 0.4s var(--ease);
}
.scene-photo--inline:hover { transform: rotate(0); }
.how--reverse .scene-photo--inline { transform: rotate(1.2deg); }
.how--reverse .scene-photo--inline:hover { transform: rotate(0); }

/* ----- Speech bubbles ----- */
.bubble {
  position: absolute;
  background: #ffffff;
  border: none;
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.10);
  max-width: 260px;
  transform: rotate(var(--rot, -2deg)) translateY(14px) scale(0.9);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.7s var(--ease-bouncy);
  transition-delay: var(--delay, 0s);
}
.scene-photo.visible .bubble,
.scene-photo--inline .bubble {
  opacity: 1;
  transform: rotate(var(--rot, -2deg)) translateY(0) scale(1);
}
/* When inline, bubble is visible by default but still benefits from reveal on scroll */
.scene-photo--inline .bubble { transition-delay: 0s; }

.bubble p {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.15px;
}
.bubble__who {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #a3b0bb;
  margin-bottom: 6px;
  letter-spacing: -0.11px;
}

/* Bubble positions */
.bubble--tl { top: 8%; left: 6%; --rot: -2.5deg; }
.bubble--tr { top: 10%; right: 6%; --rot: 2.5deg; }
.bubble--ml { top: 45%; left: 4%; --rot: -2deg; }
.bubble--br { bottom: 34%; right: 6%; --rot: 2.5deg; }
.bubble--bl { bottom: 10%; left: 6%; --rot: -1.5deg; }
.bubble--center {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(var(--rot, -1deg));
  --rot: -1deg;
}
.bubble--lower {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%) rotate(var(--rot, 0deg));
  --rot: 0deg;
}
.scene-photo.visible .bubble--center {
  transform: translateX(-50%) rotate(var(--rot, -1deg)) translateY(0) scale(1);
}
.scene-photo.visible .bubble--lower {
  transform: translateX(-50%) rotate(var(--rot, 0deg)) translateY(0) scale(1);
}

.bubble--sm { max-width: 220px; padding: 12px 16px; }
.bubble--sm p { font-size: 14px; }

/* Person bubbles (white) */
.bubble--person {
  background: white;
  color: var(--ink);
}

/* Relly bubble (black + yellow accent) */
.bubble--relly {
  background: #000000;
  border: none;
  color: #ffffff;
  max-width: 340px;
  padding: 16px 20px 18px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.18);
  --rot: -1deg;
  animation: rellyBob 3.4s ease-in-out infinite;
  animation-delay: 1.4s;
}
.bubble--relly .bubble__who { color: #fbfa2d; font-weight: 600; letter-spacing: -0.11px; }
.bubble--relly p { color: #ffffff; font-weight: 400; }
.bubble--relly.bubble--center {
  transform: translateX(-50%) rotate(-1deg) translateY(14px) scale(0.9);
}
.scene-photo.visible .bubble--relly.bubble--center {
  animation: rellyBobCenter 3.4s ease-in-out infinite 1.8s;
}
@keyframes rellyBob {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-4px); }
}
@keyframes rellyBobCenter {
  0%, 100% { transform: translateX(-50%) rotate(-1deg) translateY(0) scale(1); }
  50% { transform: translateX(-50%) rotate(0deg) translateY(-6px) scale(1); }
}

.bubble__avatar {
  width: 18px; height: 18px;
  background: #fbfa2d;
  color: #000000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0;
}
.bubble__wave {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 10px;
  margin-left: 4px;
}
.bubble__wave span {
  display: inline-block;
  width: 2px;
  background: white;
  border-radius: 1px;
  animation: waveBar 1.1s ease-in-out infinite;
}
.bubble__wave span:nth-child(2) { animation-delay: 0.12s; }
.bubble__wave span:nth-child(3) { animation-delay: 0.22s; }
.bubble__wave span:nth-child(4) { animation-delay: 0.35s; }
.bubble__wave span:nth-child(5) { animation-delay: 0.48s; }
.bubble__wave span:nth-child(6) { animation-delay: 0.6s; }
.bubble__wave span:nth-child(7) { animation-delay: 0.72s; }
.bubble__wave span:nth-child(8) { animation-delay: 0.88s; }

.bubble__live {
  margin-left: auto;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'TWK Lausanne', sans-serif;
  letter-spacing: -0.11px;
}

.bubble__voice-wave {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 32px;
  margin: 10px 0 8px;
}
.bubble__voice-wave span {
  flex: 1;
  background: #fbfa2d;
  border-radius: 1px;
  animation: waveBar 1.2s ease-in-out infinite;
}
.bubble__voice-wave span:nth-child(3n) { animation-delay: 0.12s; }
.bubble__voice-wave span:nth-child(5n) { animation-delay: 0.28s; }
.bubble__voice-wave span:nth-child(7n) { animation-delay: 0.42s; }
.bubble__voice-wave span:nth-child(11n) { animation-delay: 0.66s; }

.bubble__quote {
  font-family: 'TWK Lausanne', sans-serif;
  font-style: normal;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.44;
  color: #ffffff;
  letter-spacing: -0.15px;
}
.bubble__exec {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.11px;
  text-transform: none;
}
.exec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fbfa2d;
  box-shadow: 0 0 0 0 rgba(251, 250, 45, 0.5);
  animation: pulseYellow 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Listening indicator (scene 01) */
.listening-dot {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: none;
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.16),
    0 12px 30px rgba(0, 0, 0, 0.20);
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.13px;
  animation: rellyBobCenter2 3.2s ease-in-out infinite 0.5s;
}
@keyframes rellyBobCenter2 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-5px); }
}
.listening-dot__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fbfa2d;
  box-shadow: 0 0 0 0 rgba(251, 250, 45, 0.5);
  animation: pulseYellow 1.4s var(--ease) infinite;
}
.listening-dot__bars {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 12px;
}
.listening-dot__bars span {
  width: 2px;
  background: #fbfa2d;
  border-radius: 1px;
  animation: waveBar 1.1s ease-in-out infinite;
}
.listening-dot__bars span:nth-child(2) { animation-delay: 0.1s; }
.listening-dot__bars span:nth-child(3) { animation-delay: 0.2s; }
.listening-dot__bars span:nth-child(4) { animation-delay: 0.3s; }
.listening-dot__bars span:nth-child(5) { animation-delay: 0.4s; }

/* Notification cards (scene 03) */
.notif {
  position: absolute;
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  background: #000000;
  border: none;
  border-radius: 22px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.22);
  min-width: 220px;
  max-width: 280px;
  transform: rotate(var(--rot, -2deg));
  animation: notifBob 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.notif--tr { top: 10%; right: 6%; --rot: 2deg; --delay: 0s; }
.notif--ml { top: 42%; left: 6%; --rot: -2deg; --delay: 1s; }
.notif--bl { bottom: 8%; right: 10%; --rot: 1.5deg; --delay: 2s; }
@keyframes notifBob {
  0%, 100% { transform: rotate(var(--rot, -2deg)) translateY(0); }
  50% { transform: rotate(calc(var(--rot, -2deg) * 0.3)) translateY(-4px); }
}
.notif__icon { flex-shrink: 0; }
.notif__icon .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fbfa2d;
  color: #000000;
  border-radius: 50%;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
.notif__body { flex: 1; min-width: 0; }
.notif__body b {
  display: block;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.13px;
  margin-bottom: 3px;
  line-height: 1.3;
}
.notif__body span {
  display: block;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.11px;
  line-height: 1.4;
}
.notif__when {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.11px;
  flex-shrink: 0;
  padding-top: 3px;
}
.meeting__card {
  width: 100%;
  max-width: 420px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.8s var(--ease-bouncy) 1s;
}
.meeting.visible .meeting__card { transform: translateY(0); }
.meeting__head {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
}
.rec__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #E53E3E;
  animation: pulse 1.4s var(--ease) infinite;
  box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.5);
}
.meeting__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
}
.meeting__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tx {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.tx b {
  display: inline-block;
  min-width: 46px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 6px;
}
.tx--relly {
  background: var(--bg-tint-o);
  padding: 10px 12px;
  border-radius: var(--r);
  position: relative;
}
.tx--relly b { color: var(--coral); }
.tx__wave {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 12px;
  margin-right: 6px;
  vertical-align: middle;
}
.tx__wave span {
  display: inline-block;
  width: 2px;
  background: var(--coral);
  border-radius: 1px;
  animation: waveBar 1.2s ease-in-out infinite;
}
.tx__wave span:nth-child(2n) { animation-delay: 0.15s; }
.tx__wave span:nth-child(3n) { animation-delay: 0.3s; }
.tx__wave span:nth-child(5n) { animation-delay: 0.5s; }
@keyframes waveBar {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}
.tx--system {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-tint-g);
  color: #116530;
  border-radius: var(--r-pill);
}

.replay {
  position: absolute;
  bottom: 16px; right: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s;
}
.replay:hover { transform: translateY(-2px); background: var(--bg-warm); }

/* ----------- SECTIONS ----------- */
.section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
}
.section--warm { background: var(--bg-warm); }
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section__inner--narrow { max-width: 880px; }
.section__head {
  margin-bottom: 64px;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.section__head--center .h2 { margin-left: auto; margin-right: auto; }
.section__head--center .lede { margin-left: auto; margin-right: auto; }
.section__head .lede { margin-top: 20px; }

/* ----------- PROBLEM SECTION (Figma 20:549) ----------- */
#problem {
  background: #fcfdff;
  padding: 120px 64px;
}
#problem .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#problem .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: none;
  text-align: left;
}
#problem .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#problem .h2 > .h2__line {
  display: block;
}
#problem .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}
#problem .lede {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
}

.ghost-grid {
  display: flex;
  gap: 26px;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 900px) { .ghost-grid { flex-direction: column; } }

.gcard {
  flex: 1 0 0;
  min-width: 0;
  background: #f5f8ff;
  border: none;
  border-radius: 28px;
  padding: 28px 40px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.gcard:hover {
  transform: translateY(-4px);
}
.gcard__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.gcard__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.gcard__icon {
  width: 40px;
  height: 40px;
  display: block;
  transform-origin: bottom;
  animation: iconBob 3s ease-in-out infinite;
}
.gcard:nth-child(2) .gcard__icon { animation-delay: 0.3s; }
.gcard:nth-child(3) .gcard__icon { animation-delay: 0.6s; }
@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}
.gcard__title {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: normal;
  letter-spacing: -0.21px;
  color: #000000;
  margin: 0;
}
.gcard__body {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: #a3b0bb;
  margin: 0;
}
.gcard__sample {
  background: #fcfdff;
  border: none;
  border-radius: 22px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 13px;
  letter-spacing: -0.13px;
  line-height: normal;
}
.sample__q {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 500;
  color: #4e606e;
  font-style: normal;
  font-size: 13px;
}
.sample__a {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 300;
  color: #a3b0bb;
  font-style: normal;
  font-size: 13px;
}

/* ----------- HOW IT WORKS (Figma 20:577) ----------- */
#how {
  background: #f5f8ff;
  padding: 120px 64px;
}
#how .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#how .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: none;
  width: 100%;
  text-align: left;
}
#how .section__head .eyebrow {
  align-self: flex-start;
  background: #ffffff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#how .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#how .h2 > .h2__line { display: block; }
#how .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}
#how .lede {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
}
.how {
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  width: 100%;
}
.how__media, .how__copy { flex: 1 0 0; min-width: 0; }
.how--reverse .how__media { order: 2; }
.how--reverse .how__copy { order: 1; }
@media (max-width: 900px) {
  .how, .how--reverse { flex-direction: column; gap: 32px; }
  .how--reverse .how__media, .how--reverse .how__copy { order: initial; }
}
.how__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how__copy .h3 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.34;
  letter-spacing: -0.76px;
  color: #000000;
  margin: 0;
}
.scene-placeholder {
  background: #ffffff;
  border: 1.5px dashed rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.scene-placeholder__emoji {
  font-size: 28px;
  line-height: 1;
  color: #000000;
}
.scene-placeholder__label {
  font-family: 'Inter', 'TWK Lausanne', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.88px;
  white-space: nowrap;
}
.how__copy p {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
}
.how__copy p b { font-weight: 600; color: #000000; }

/* Mini UI cards used in how-section */
.ui-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.4s var(--ease);
}
.ui-card:hover { transform: rotate(0deg) scale(1.02); }
.how--reverse .ui-card { transform: rotate(1.2deg); }
.how--reverse .ui-card:hover { transform: rotate(0) scale(1.02); }

.ui-card__head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.ui-card__head .ui-card__title { margin-left: 10px; }
.ui-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.ui-card__sub {
  display: block;
  font-size: 11px;
  color: var(--ink-4);
  font-family: var(--font-mono);
}
.ui-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink-4);
}
.ui-dot--red { background: #FF6058; }
.ui-dot--yellow { background: #FFBE2E; }
.ui-dot--green { background: #29C840; }

.ui-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ui-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.ui-card__body p b {
  display: inline-block;
  min-width: 56px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}
.listening {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-tint-o);
  border-radius: var(--r);
  color: var(--coral) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  align-self: flex-start;
}
.listening__bars {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 14px;
}
.listening__bars span {
  width: 3px;
  background: var(--coral);
  border-radius: 1px;
  animation: waveBar 1.1s ease-in-out infinite;
}
.listening__bars span:nth-child(2) { animation-delay: 0.1s; }
.listening__bars span:nth-child(3) { animation-delay: 0.2s; }
.listening__bars span:nth-child(4) { animation-delay: 0.3s; }
.listening__bars span:nth-child(5) { animation-delay: 0.4s; }

.avatar {
  width: 28px; height: 28px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.voice {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 50px;
}
.voice__wave span {
  flex: 1;
  background: var(--coral);
  border-radius: 2px;
  animation: waveBar 1.4s ease-in-out infinite;
}
.voice__wave span:nth-child(3n) { animation-delay: 0.15s; }
.voice__wave span:nth-child(5n) { animation-delay: 0.32s; }
.voice__wave span:nth-child(7n) { animation-delay: 0.48s; }
.voice__wave span:nth-child(11n) { animation-delay: 0.7s; }
.voice__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
}

.delivery {
  list-style: none;
  padding: 0;
  margin: 0;
}
.delivery li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
}
.delivery li:first-child { border-top: 0; }
.delivery b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.delivery span {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
  display: block;
}
.delivery .when {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  white-space: nowrap;
}
.check {
  width: 22px; height: 22px;
  background: var(--bg-tint-g);
  color: var(--leaf);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.pill--green { background: rgba(0, 0, 0, 0.04); color: var(--ink-3); }
.pill--blue  { background: rgba(0, 0, 0, 0.04); color: var(--ink-3); }

/* ----------- FEATURES (Figma 20:608) ----------- */
#features {
  background: #fcfdff;
  padding: 120px 64px;
}
#features .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#features .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: none;
  width: 100%;
  text-align: left;
}
#features .section__head .eyebrow {
  align-self: flex-start;
  background: #f5f8ff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#features .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#features .h2 > .h2__line { display: block; }
#features .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

.fcard {
  background: #f5f8ff;
  border: none;
  border-radius: 28px;
  padding: 28px 40px;
  box-shadow: none;
  transition: transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 218px;
  box-sizing: border-box;
}
.fcard:hover { transform: translateY(-4px); }
.fcard__icon {
  width: 40px;
  height: 40px;
  display: block;
  transition: transform 0.3s var(--ease-bouncy);
}
.fcard:hover .fcard__icon { transform: scale(1.1) rotate(-6deg); }
.fcard__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fcard h3 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.21px;
  color: #000000;
  margin: 0;
}
.fcard p {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: #a3b0bb;
  margin: 0;
}
.fcard p b { color: #000000; font-weight: 600; }

/* ----------- USE CASES (Figma 20:638) ----------- */
#use-cases {
  background: #f5f8ff;
  padding: 120px 64px;
}
#use-cases .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#use-cases .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: none;
  width: 100%;
  text-align: left;
}
#use-cases .section__head .eyebrow {
  align-self: flex-start;
  background: #ffffff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#use-cases .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#use-cases .h2 > .h2__line { display: block; }
#use-cases .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}

.uc-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.uc {
  display: flex;
  gap: 60px;
  align-items: center;
}
.uc__img, .uc__text { flex: 1 0 0; min-width: 0; }
.uc--reverse .uc__img { order: 2; }
.uc--reverse .uc__text { order: 1; }
@media (max-width: 900px) {
  .uc, .uc--reverse { flex-direction: column; gap: 32px; align-items: stretch; }
  .uc--reverse .uc__img, .uc--reverse .uc__text { order: initial; }
  .uc__img, .uc__text { flex: 0 0 auto; width: 100%; }
  .uc__img { aspect-ratio: 4 / 3; height: auto; }
}

.uc__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: transform 0.4s var(--ease);
}
.uc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.uc__img:hover img { transform: scale(1.05); }

.uc__sticker {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  background: white;
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: rotate(-3deg);
  transition: transform 0.3s var(--ease-bouncy);
}
.uc__img:hover .uc__sticker { transform: rotate(0) scale(1.05); }
.sticker--yellow,
.sticker--pink,
.sticker--green,
.sticker--orange { background: white; color: var(--ink); }

.uc__text { display: flex; flex-direction: column; gap: 24px; }
.uc__text h3 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.76px;
  color: #000000;
  margin: 0;
}
.uc__text p {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
}
.uc__text p b { color: #000000; font-weight: 600; }

/* ----------- TESTIMONIALS (Figma 20:696) ----------- */
#testimonials {
  background: #fcfdff;
  padding: 120px 64px;
}
#testimonials .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#testimonials .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: none;
  width: 100%;
  text-align: center;
  align-items: center;
}
#testimonials .section__head .eyebrow {
  background: #f5f8ff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#testimonials .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  white-space: nowrap;
}
#testimonials .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}

.quote-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (max-width: 900px) { .quote-grid { flex-direction: column; } }

.quote {
  flex: 1 0 0;
  min-width: 0;
  background: #f5f8ff;
  border: 1px solid #f5f8ff;
  border-radius: 28px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: none;
  transition: transform 0.3s var(--ease);
}
.quote:hover { transform: translateY(-4px); }
.quote p {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-size: 21px;
  line-height: 1.44;
  font-weight: 300;
  letter-spacing: -0.21px;
  color: #000000;
  text-align: center;
  margin: 0;
}
.quote p b { font-weight: 500; color: #000000; }
.quote footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  background: #fcfdff;
  border-radius: 22px;
  border: none;
}
.quote__person {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1;
}
.quote__person img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.quote cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  gap: 6px;
  min-width: 0;
}
.quote cite b {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4e606e;
  letter-spacing: -0.13px;
  white-space: nowrap;
}
.quote cite span {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #a3b0bb;
  letter-spacing: -0.13px;
}
.quote__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* ----------- PRICING (Figma 20:726) ----------- */
#pricing {
  background: #fcfdff;
  padding: 120px 80px;
}
#pricing .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#pricing .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: none;
  width: 100%;
  text-align: center;
  align-items: center;
}
#pricing .section__head .eyebrow {
  background: #f5f8ff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#pricing .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#pricing .h2 > .h2__line { display: block; }
#pricing .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}
#pricing .lede {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
  text-align: center;
}

.plan-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 900px) {
  .plan-grid { flex-direction: column; }
}

.plan {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 28px;
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.plan--studio { background: #4caef8; }
.plan__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  border-radius: 28px;
}
.plan__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.plan__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
.plan__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.plan__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.plan__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.plan__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 22px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #000000;
  white-space: nowrap;
}
.plan__badge--sale { background: #fbfa2d; }
.plan__badge--enterprise {
  background: #fcfdff;
  align-self: flex-start;
}
.plan__return {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fbfa2d;
  white-space: nowrap;
}

.plan__price {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  align-self: flex-start;
}
.plan__amount {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -1.68px;
  color: #fbfa2d;
}
.plan__amount--dark { color: #000000; }
.plan__unit {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}

.plan__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.plan__pitch {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.44;
  letter-spacing: -0.17px;
  color: #a3b0bb;
  margin: 0;
}

.plan__features {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ffffff;
  border-radius: 22px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.plan__feature {
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan__check {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.plan__feature span {
  flex: 1;
  min-width: 0;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: #000000;
}

.plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 0;
  border-radius: 22px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: normal;
  letter-spacing: -0.21px;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.plan__cta:hover { transform: translateY(-1px); }
.plan__cta img { width: 20px; height: 20px; display: block; }
.plan__cta--yellow {
  background: #fbfa2d;
  color: #000000;
}
.plan__cta--black {
  background: #000000;
  color: #fbfa2d;
}

.plan--command {
  background: #f5f8ff;
  border: 1px solid #000000;
}
.plan--command .plan__content { justify-content: space-between; }
.plan--command .plan__top { align-items: flex-start; }
.plan--command .plan__features {
  background: rgba(255, 255, 255, 0.92);
  border-color: #ffffff;
}

/* ----------- FAQ (Figma 20:802) ----------- */
#faq {
  background: #f5f8ff;
  padding: 120px 80px;
}
#faq .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#faq .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: none;
  width: 100%;
  text-align: left;
  align-items: flex-start;
}
#faq .section__head .eyebrow {
  background: #ffffff;
  border: none;
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.13px;
  margin-bottom: 0;
}
#faq .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
#faq .h2 > .h2__line { display: block; }
#faq .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.faq__item {
  background: #fcfdff;
  border: 1px solid transparent;
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  transition: background 0.2s var(--ease);
}
.faq__item[open] {
  background: rgba(255, 255, 255, 0.92);
  border-color: #ffffff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 40px;
  cursor: pointer;
  list-style: none;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.21px;
  line-height: normal;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
/* Single-icon rotation: + rotates one full spin (360°) + 45° so it
   lands as × on open. Smoother than swapping two <img>s. */
.faq__icon--close { display: none; }
.faq__item .faq__icon--plus {
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq__item[open] .faq__icon--plus {
  transform: rotate(405deg);
}
.faq__body {
  padding: 0 40px 28px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: #a3b0bb;
  animation: faqOpen 0.3s var(--ease);
}
.faq__body p { margin: 0; }
.faq__body b { color: #000000; font-weight: 600; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ----------- FINAL CTA ----------- */
/* ----------- FINAL CTA (Figma 20:845) ----------- */
.cta {
  position: relative;
  background: #fcfdff;
  padding: 140px 80px;
  overflow: hidden;
}
.cta .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.cta__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 800px;
  max-width: 100%;
  margin-bottom: 0;
}
.cta__head .eyebrow {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: 'Inter', 'TWK Lausanne', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0;
  margin-bottom: 0;
}
.cta__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin: 0;
  text-align: center;
  max-width: none;
  letter-spacing: -2.16px;
}
.cta__title-line {
  display: block;
  font-family: 'Inter', 'TWK Lausanne', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.95);
}
.cta__title-line--script {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  color: #ff5a1f;
}
.cta__head .lede {
  font-family: 'Inter', 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #615d59;
  text-align: center;
  margin: 0;
  max-width: none;
}

.cta__form {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  width: 560px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow:
    0 23px 52px 0 rgba(0, 0, 0, 0.05),
    0 4px 18px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  box-sizing: border-box;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.field__num {
  font-family: 'JetBrains Mono', monospace;
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 400;
}
.field__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
}
.field input, .field select {
  width: 100%;
  padding: 16px 20px;
  background: #fbf7ee;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.9);
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.field input::placeholder { color: rgba(0, 0, 0, 0.35); }
.field select { color: rgba(0, 0, 0, 0.35); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: #ff5a1f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.1);
  color: rgba(0, 0, 0, 0.9);
}

.cta__submit {
  width: 100%;
  padding: 20px;
  background: #ff5a1f;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.cta__submit:hover { background: #e64c10; }

.cta__fine {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #a39e98;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}
.cta__fine a { color: #a39e98; text-decoration: underline; }

.cta__done {
  display: none;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: var(--bg-tint-g);
  border: 1px solid var(--leaf);
  border-radius: var(--r);
}
.cta__form.sent .cta__done { display: flex; }
.cta__form.sent button,
.cta__form.sent .field,
.cta__form.sent .cta__fine { display: none; }
.cta__done-icon {
  width: 36px; height: 36px;
  background: var(--leaf);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.cta__done div { display: flex; flex-direction: column; gap: 2px; }
.cta__done b { font-size: 15px; color: #0E4720; }
.cta__done span { font-size: 13px; color: #265E35; }
.cta__done a { color: #0E4720; font-weight: 600; text-decoration: underline; }

/* ----------- FOOTER (Figma 20:873) ----------- */
.footer {
  background: #ffffff;
  color: #4e606e;
  padding: 64px 80px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 900px) { .footer__inner { flex-direction: column; gap: 32px; } }

.footer__brand {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  color: #000000;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 160px;
  flex-shrink: 0;
}
.footer__head {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.16px;
  margin-bottom: 8px;
  text-transform: none;
  line-height: normal;
}
.footer__col a {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4e606e;
  letter-spacing: -0.15px;
  line-height: 1.5;
  transition: color 0.2s;
  text-decoration: none;
}
.footer__col a:hover { color: #000000; }

/* ----------- FLOATING LAUNCH NOTICE ----------- */
.launch {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fcfdff;
  border: 1px solid #000000;
  border-radius: 22px;
  max-width: calc(100vw - 40px);
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(30px) rotate(-2deg) scale(0.9);
  animation:
    launchPopIn 0.8s var(--ease-bouncy) 1.6s forwards,
    launchBob 5s ease-in-out 2.4s infinite;
}
@keyframes launchPopIn {
  to { opacity: 1; transform: translateY(0) rotate(-1.5deg) scale(1); }
}
@keyframes launchBob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-5px) rotate(-0.5deg); }
}
.launch.is-dismissed {
  animation: launchPopOut 0.4s var(--ease) forwards;
  pointer-events: none;
}
@keyframes launchPopOut {
  to { opacity: 0; transform: translateY(20px) rotate(-1.5deg) scale(0.85); }
}
.launch__main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.launch__rocket {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  animation: rocketLaunch 3.2s ease-in-out infinite;
}
@keyframes rocketLaunch {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-6px) rotate(-6deg); }
}
.launch__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  letter-spacing: -0.13px;
  line-height: normal;
}
.launch__title {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
}
.launch__sub {
  display: inline-flex;
  gap: 4px;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.launch__sub-dim { color: #a3b0bb; }
.launch__sub-strong { color: #4e606e; }
.launch__cta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  background: #fbfa2d;
  color: #000000;
  border-radius: 52px;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 8px 0 #fbfa2d;
  transition: transform 0.2s var(--ease);
}
.launch__cta:hover { transform: translateY(-1px); }
.launch__cta-arrow {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.2s var(--ease);
}
.launch__cta:hover .launch__cta-arrow { transform: translateX(2px); }
.launch__dismiss {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px; height: 18px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  padding: 0;
  line-height: 1;
}
.launch__dismiss svg {
  width: 8px;
  height: 8px;
  display: block;
}
.launch:hover .launch__dismiss,
.launch:focus-within .launch__dismiss { opacity: 1; transform: scale(1); }
@media (max-width: 600px) {
  .launch { bottom: 16px; right: 16px; left: 16px; max-width: calc(100vw - 32px); }
  .launch__sub { display: none; }
  /* Hover doesn't exist on mobile — the X must be permanently visible
     and touch-target sized (min ~28px hit area). */
  .launch__dismiss {
    opacity: 1;
    transform: scale(1);
    width: 26px;
    height: 26px;
    top: -8px;
    right: -8px;
  }
  .launch__dismiss svg { width: 10px; height: 10px; }
}

/* ----------- REVEAL ANIMATIONS ----------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   HERO SHOT — granola-style single product screenshot
   quiet, static, confident. no cartoons, no motion clutter.
   ========================================================== */
.hero__shot {
  position: relative;
  width: 100%;
}
.shot {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 8px 24px -8px rgba(0, 0, 0, 0.06),
    0 24px 60px -20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  font-family: var(--font-body);
}
.shot__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: #FAFAF8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.shot__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}
.shot__dot:nth-child(1) { background: #E6E4E0; }
.shot__dot:nth-child(2) { background: #E6E4E0; }
.shot__dot:nth-child(3) { background: #E6E4E0; }
.shot__title {
  margin-left: 10px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: -0.008em;
}
.shot__chrome-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.shot__chrome-live > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37B86F;
}

/* video call tiles */
.shot__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  background: #0A0908;
  padding: 3px;
}
.shot__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1A1715;
  overflow: hidden;
  border-radius: 4px;
}
.shot__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot__tile-name {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 7px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.shot__tile-mic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #37B86F;
  color: white;
}
.shot__tile-mic--relly { background: var(--coral); }

.shot__tile-ring {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  border: 2px solid transparent;
}
.shot__tile--speaking .shot__tile-ring {
  border-color: #37B86F;
}
.shot__tile--relly.shot__tile--speaking .shot__tile-ring {
  border-color: var(--coral);
}

/* Relly tile — abstract, no face, distinct dark treatment */
.shot__tile--relly {
  background: #0E0C0A;
}
.shot__tile-relly-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(255, 90, 31, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(255, 180, 54, 0.18) 0%, transparent 70%),
    linear-gradient(135deg, #1A1512 0%, #0A0907 100%);
}
.shot__tile-relly-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot__tile-relly-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.shot__tile-relly-wave span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--coral-hot), var(--coral));
  animation: rellyWave 1s ease-in-out infinite;
}
.shot__tile-relly-wave span:nth-child(1) { animation-delay: 0s;   height: 40%; }
.shot__tile-relly-wave span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.shot__tile-relly-wave span:nth-child(3) { animation-delay: 0.2s; height: 95%; }
.shot__tile-relly-wave span:nth-child(4) { animation-delay: 0.3s; height: 80%; }
.shot__tile-relly-wave span:nth-child(5) { animation-delay: 0.4s; height: 95%; }
.shot__tile-relly-wave span:nth-child(6) { animation-delay: 0.5s; height: 60%; }
.shot__tile-relly-wave span:nth-child(7) { animation-delay: 0.6s; height: 35%; }
@keyframes rellyWave {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

.shot__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* live captions — feels like overheard conversation, not a chat box */
.shot__captions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 2px 2px;
}
.shot__cap {
  display: grid;
  grid-template-columns: 36px 58px 1fr;
  gap: 12px;
  align-items: baseline;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.shot__cap:nth-last-child(2) { opacity: 0.75; }
.shot__cap--live { opacity: 1; }
.shot__cap-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}
.shot__cap-who {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.shot__cap--relly .shot__cap-who {
  color: var(--coral);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}
.shot__cap-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.shot__cap--relly .shot__cap-text {
  color: var(--ink);
}
.shot__cap--relly em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.04em;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.shot__work {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shot__work-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 6px;
}
.shot__work-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.shot__work-count {
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: -0.005em;
}
.shot__work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shot__work-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 4px;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.008em;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.shot__work-item:first-child { border-top: none; }
.shot__work-state {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  justify-self: center;
}
.shot__work-item--done .shot__work-state {
  background: #37B86F;
}
.shot__work-item--live .shot__work-state {
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}
.shot__work-meta {
  font-size: 12.5px;
  color: var(--ink-4);
  font-weight: 400;
  letter-spacing: -0.005em;
}

@media (max-width: 960px) {
  .shot__body { padding: 20px 20px 22px; gap: 18px; }
  .shot__transcript { padding: 14px 16px; }
  .shot__line { grid-template-columns: 50px 1fr; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   Momo Signature — script font
   ========================================================= */
@font-face {
  font-family: 'Momo Signature';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/MomoSignature-Regular.ttf') format('truetype');
}

/* =========================================================
   NAV V2 — Figma node 20:486 (floating pill)
   ========================================================= */
.nav-v2 {
  position: fixed;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 100;
}
.nav-v2__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ffffff;
  border-radius: 104px;
  padding: 8px 8px 8px 36px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-v2__wordmark {
  padding-right: 10px;
}
.nav-v2__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.nav-v2__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.nav-v2__arrow svg { display: block; }
.nav-v2__arrow--dl { color: #aaaaaa; margin-right: 3px; }
.nav-v2__arrow--ur { color: #000000; margin-left: 2px; }
.nav-v2__brand { letter-spacing: -0.015em; }
.nav-v2__brand { color: inherit; }

.nav-v2__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.nav-v2__links a {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.nav-v2__cta {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #fff53c;
  padding: 12px 20px;
  border-radius: 52px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-v2__cta:hover { transform: translateY(-1px); }

/* =========================================================
   COMPARE — competitor table (above Pricing)
   ========================================================= */
/* ----------- COMPARE (Figma 37:2) ----------- */
#compare {
  background: #f5f8ff;
  padding: 120px 64px;
}
#compare .section__inner {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
#compare .section__head {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: none;
  width: 100%;
  text-align: center;
  align-items: center;
}
#compare .h2 {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -1.242px;
  color: #d5def0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#compare .h2 > .h2__line { display: block; }
#compare .h2__accent {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-style: normal;
  color: #4caef8;
  letter-spacing: -0.92px;
}
#compare .lede {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: -0.17px;
  color: #4e606e;
  max-width: none;
  margin: 0;
  text-align: center;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: none;
}
.compare__head,
.compare__row {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.compare__head {
  background: #fcfdff;
  border-radius: 28px;
  overflow: hidden;
}
.compare__body {
  background: #fcfdff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}
.compare__cell {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  min-height: 60px;
}
.compare__head .compare__cell { min-height: 60px; }
.compare__body .compare__cell { min-height: 64px; }
.compare__cell--label {
  flex: 0 0 420px;
  justify-content: flex-start;
  padding: 0 26px;
  font-family: 'TWK Lausanne', sans-serif;
}
.compare__head .compare__cell--label {
  font-size: 15px;
  font-weight: 500;
  color: #a3b0bb;
  letter-spacing: -0.15px;
  line-height: 1.5;
}
.compare__body .compare__cell--label {
  font-size: 13px;
  font-weight: 500;
  color: #4e606e;
  letter-spacing: 0.52px;
  text-transform: uppercase;
}
.compare__cell--vs {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4e606e;
  letter-spacing: 0.52px;
  text-transform: uppercase;
}
.compare__cell--brand {
  background: #fbfa2d;
}
.compare__head .compare__cell--brand {
  border-radius: 22px;
}
.compare__body .compare__row:first-child .compare__cell--brand {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.compare__body .compare__row:last-child .compare__cell--brand {
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}
.compare__wordmark {
  display: inline-flex;
  align-items: center;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}
.compare__arrow {
  color: #aaaaaa;
  font-size: 22px;
  line-height: 1;
}
.compare__wordmark .compare__arrow + * { margin-left: 2px; }
.compare__check {
  width: 30px;
  height: 30px;
  display: block;
}
.compare__dash {
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #d5def0;
  line-height: 1;
}
.compare__maybe {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f8ff;
  color: #4e606e;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.13px;
  font-style: normal;
}

@media (max-width: 900px) {
  .compare__cell--label { flex: 0 0 240px; padding: 0 14px; }
  .compare__head .compare__cell--label { font-size: 13px; }
  .compare__check { width: 22px; height: 22px; }
  .compare__wordmark { font-size: 18px; }
}

/* =========================================================
   HERO V2 — Figma node 20:500 (exact)
   ========================================================= */
.hero-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 168px 64px 132px;
  max-width: none;
  margin: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-v2__bg img {
  position: absolute;
  left: -2%;
  top: 0;
  width: 104%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  will-change: transform;
  animation: cloudDrift 28s ease-in-out infinite;
}
@keyframes cloudDrift {
  0%   { transform: translate3d(-0.6%, 0, 0); }
  50%  { transform: translate3d(0.6%, 0, 0); }
  100% { transform: translate3d(-0.6%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2__bg img { animation: none; }
}
.hero-v2__content,
.hero-v2__shot { position: relative; z-index: 1; }

/* ------- LEFT: content ------- */
.hero-v2__content {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero-v2__text {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}
.hero-v2__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  line-height: 1.04;
}
.hero-v2__line {
  margin: 0;
  width: 100%;
}
.hero-v2__line--sans {
  font-family: 'TWK Lausanne', 'Pretendard Variable', -apple-system, sans-serif;
  font-weight: 500;
  font-size: 56px;
  color: #ffffff;
  letter-spacing: -1.12px;
  line-height: 1.04;
}
.hero-v2__line--script {
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-size: 76px;
  color: #fbfa2d;
  letter-spacing: -1.52px;
  line-height: 1.04;
}
.hero-v2__sub {
  font-family: 'TWK Lausanne', 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: -0.19px;
  line-height: 1.44;
  margin: 0;
}
.hero-v2__sub br { line-height: 1.44; }

.hero-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: #fbfa2d;
  border-radius: 104px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -0.19px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.2s var(--ease);
}

/* ------- RIGHT: shot ------- */
.hero-v2__shot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 32px;
  width: 576px;
  isolation: isolate;
  flex-shrink: 0;
}

.hero-v2__tiles {
  display: flex;
  isolation: isolate;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: -32px;
  padding-right: 46px;
  width: 100%;
  z-index: 2;
}
.hero-v2__tile-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 204.6px;
  height: 191.834px;
  margin-right: -46px;
  flex-shrink: 0;
  position: relative;
}
.hero-v2__tile-wrap--1 { z-index: 3; }
.hero-v2__tile-wrap--2 { z-index: 2; }
.hero-v2__tile-wrap--3 { z-index: 1; }
/* Shadow lives on wrapper so mask on tile doesn't clip it */
.hero-v2__tile-wrap {
  filter: drop-shadow(0 8px 16px rgba(7, 25, 38, 0.18));
}

.hero-v2__tile {
  position: relative;
  width: 183px;
  height: 168px;
  padding: 16px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* iOS-style squircle (continuous corners) via SVG superellipse mask */
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M 50,0 C 72,0 87,2 93.5,8 C 98,14 100,26 100,50 C 100,74 98,86 93.5,92 C 87,98 72,100 50,100 C 28,100 13,98 6.5,92 C 2,86 0,74 0,50 C 0,26 2,14 6.5,8 C 13,2 28,0 50,0 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M 50,0 C 72,0 87,2 93.5,8 C 98,14 100,26 100,50 C 100,74 98,86 93.5,92 C 87,98 72,100 50,100 C 28,100 13,98 6.5,92 C 2,86 0,74 0,50 C 0,26 2,14 6.5,8 C 13,2 28,0 50,0 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero-v2__dot,
.hero-v2__tile-bg,
.hero-v2__tile-img { border-radius: 0; }
.hero-v2__tile-img { overflow: hidden; }
.hero-v2__tile-wrap--1 .hero-v2__tile { transform: rotate(8deg); }
.hero-v2__tile-wrap--2 .hero-v2__tile { transform: rotate(-8deg); }
.hero-v2__tile-wrap--3 .hero-v2__tile { transform: rotate(8deg); }

/* Relly tile — dot canvas */
.hero-v2__tile--relly {
  background: #000000;
}
.hero-v2__dot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  border-radius: 28px;
}

/* Marco tile — image fill */
.hero-v2__tile--marco {
  padding: 0;
}
.hero-v2__tile-bg {
  position: absolute;
  inset: 0;
  background: #f0ede8;
  border-radius: 28px;
}
.hero-v2__tile-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
}
.hero-v2__tile--marco .hero-v2__tile-img img {
  position: absolute;
  left: -44.53%;
  top: -3.67%;
  width: 174.27%;
  height: 140.69%;
  max-width: none;
  display: block;
}

/* Lena tile */
.hero-v2__tile--lena .hero-v2__tile-img img {
  position: absolute;
  left: -43.75%;
  top: -15.2%;
  width: 179.98%;
  height: 145.3%;
  max-width: none;
  display: block;
}

/* Tile badges — Figma: H 18, padding 3/6, gap 6, clip content */
.hero-v2__tile-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 3px 6px;
  border-radius: 74px;
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: -0.11px;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
}
.hero-v2__tile-badge--relly {
  background: #fbfa2d;
  font-weight: 500;
}
.hero-v2__tile-badge--lena {
  background: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* ------- Log body ------- */
.hero-v2__log {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ffffff;
  border-radius: 22px;
  padding: 46px 32px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}
.hero-v2__row {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-v2__row--relly {
  align-items: flex-start;
}
.hero-v2__row--relly .hero-v2__meta {
  margin-top: 1px;
}
.hero-v2__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 102px;
  flex-shrink: 0;
}
.hero-v2__time {
  width: 38px;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #a3b0bb;
  letter-spacing: -0.11px;
  flex-shrink: 0;
}
.hero-v2__who {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 74px;
  background: rgba(255, 255, 255, 0.7);
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.1;
  color: #000;
  letter-spacing: -0.11px;
  box-sizing: border-box;
  white-space: nowrap;
}
.hero-v2__who--relly {
  background: #fbfa2d;
  font-weight: 500;
}
.hero-v2__msg {
  flex: 1 0 0;
  min-width: 0;
  font-family: 'TWK Lausanne', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  letter-spacing: -0.075px;
  line-height: 1.44;
  margin: 0;
}
.hero-v2__msg--relly {
  font-weight: 500;
  color: #000;
  line-height: 1.44;
}

/* ---- Responsive: Nav + Hero ---- */

/* Tablet-ish: shrink hero a bit, nav unchanged */
@media (max-width: 1280px) {
  .hero-v2 { padding: 140px 48px 100px; gap: 32px; }
  .hero-v2__line--sans { font-size: 50px; letter-spacing: -1.35px; }
  .hero-v2__line--script { font-size: 66px; letter-spacing: -1.3px; }
  .hero-v2__shot { width: 500px; }
  .hero-v2__tile-wrap { width: 180px; height: 170px; margin-right: -40px; }
  .hero-v2__tile { width: 160px; height: 148px; }
}

/* Tablet: stack into single column, keep nav pill but shrink links */
@media (max-width: 960px) {
  .nav-v2 { top: 14px; left: 14px; right: 14px; }
  .nav-v2__pill { padding: 6px 6px 6px 24px; gap: 16px; }
  .nav-v2__wordmark { font-size: 20px; }
  .nav-v2__links { gap: 22px; }
  .nav-v2__links a { font-size: 14px; }
  .nav-v2__cta { padding: 10px 16px; font-size: 14px; }

  .hero-v2 {
    flex-direction: column;
    padding: 120px 24px 80px;
    gap: 48px;
    align-items: stretch;
  }
  .hero-v2__content {
    flex: 0 0 auto;
    align-items: flex-start;
  }
  .hero-v2__shot {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    align-self: center;
  }
  .hero-v2__line--sans { font-size: 42px; letter-spacing: -1.1px; }
  .hero-v2__line--script { font-size: 58px; letter-spacing: -1.15px; }
  .hero-v2__text { gap: 28px; }
  .hero-v2__title { gap: 16px; }
  .hero-v2__sub { font-size: 17px; }
  .hero-v2__sub br { display: none; }
  .hero-v2__cta { font-size: 17px; padding: 14px 22px; }

  /* shot right-side becomes centered row */
  .hero-v2__tiles {
    padding-right: 0;
    justify-content: center;
    margin-bottom: -30px;
  }
  .hero-v2__tile-wrap {
    width: 170px;
    height: 175px;
    margin-right: -36px;
  }
  .hero-v2__tile { width: 155px; height: 152px; }
  .hero-v2__log { padding: 28px; }
  .hero-v2__meta { width: 100px; gap: 14px; }
  .hero-v2__msg { font-size: 14px; }
}

/* Mobile: hide nav links, only pill + brand + CTA */
@media (max-width: 720px) {
  .nav-v2__links { display: none; }
  .nav-v2__pill { padding: 6px 6px 6px 18px; justify-content: space-between; }
  .nav-v2__wordmark { font-size: 18px; }

  .hero-v2 { padding: 96px 20px 64px; gap: 40px; }
  .hero-v2__line--sans { font-size: 34px; letter-spacing: -0.9px; }
  .hero-v2__line--script { font-size: 48px; letter-spacing: -0.95px; }
  .hero-v2__text { gap: 22px; }
  .hero-v2__title { gap: 12px; }
  .hero-v2__sub { font-size: 15px; letter-spacing: -0.15px; }
  .hero-v2__cta { font-size: 16px; padding: 13px 20px; }

  .hero-v2__shot { padding-bottom: 24px; }
  .hero-v2__tiles {
    margin-bottom: -24px;
    padding-right: 0;
  }
  .hero-v2__tile-wrap {
    width: 130px;
    height: 135px;
    margin-right: -26px;
  }
  .hero-v2__tile {
    width: 118px;
    height: 117px;
    border-radius: 22px;
    padding: 10px;
  }
  .hero-v2__tile-badge {
    font-size: 10px;
    padding: 2px 5px;
  }
  .hero-v2__dot { border-radius: 22px; }
  .hero-v2__log {
    padding: 20px;
    border-radius: 18px;
    gap: 12px;
  }
  .hero-v2__row { gap: 12px; }
  .hero-v2__meta { width: 86px; gap: 10px; }
  .hero-v2__time { font-size: 10px; width: 36px; }
  .hero-v2__who { font-size: 10px; padding: 2px 5px; }
  .hero-v2__msg { font-size: 13px; letter-spacing: -0.13px; }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-v2 { padding: 84px 16px 48px; }
  .hero-v2__line--sans { font-size: 28px; }
  .hero-v2__line--script { font-size: 40px; }
  .hero-v2__tile-wrap {
    width: 108px;
    height: 115px;
    margin-right: -22px;
  }
  .hero-v2__tile { width: 100px; height: 100px; }
}

/* =========================================================
   HERO V2 — Entrance animations + micro-interactions
   ========================================================= */

/* cloud: static — drift was clipping on the right edge */

/* Title line entrance — stagger fade + rise */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Script line rises *and* gets a subtle hand-drawn wobble */
@keyframes scriptRise {
  0%   { opacity: 0; transform: translateY(30px) rotate(-1.5deg); }
  60%  { opacity: 1; transform: translateY(-3px) rotate(0.4deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-v2__line {
  opacity: 0;
  animation: heroRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-v2__title-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Round-robin wave: tighter 0.6s phase offset between lines */
.hero-v2__title-group--1 .hero-v2__line:nth-child(1) {
  animation:
    heroRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.10s forwards,
    floatLineWave 8s ease-in-out 2s infinite;
}
.hero-v2__title .hero-v2__line--script {
  animation:
    scriptRise 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s forwards,
    floatLineWave 8s ease-in-out 2.96s infinite;
  transform-origin: left center;
  display: inline-block;
}
.hero-v2__title-group--2 .hero-v2__line {
  animation:
    heroRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.56s forwards,
    floatLineWave 8s ease-in-out 3.6s infinite;
}

@keyframes floatLineWave {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, 3px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2__title .hero-v2__line { animation-iteration-count: 1 !important; }
}

.hero-v2__sub {
  opacity: 0;
  animation: heroRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.72s forwards;
}
.hero-v2__cta {
  opacity: 0;
  animation: heroRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.88s forwards;
}

/* Tiles drop-in from above with rotation settle */
@keyframes tileDrop1 {
  from { opacity: 0; transform: rotate(20deg) translateY(-60px) scale(0.9); }
  to   { opacity: 1; transform: rotate(8deg) translateY(0) scale(1); }
}
@keyframes tileDrop2 {
  from { opacity: 0; transform: rotate(-20deg) translateY(-70px) scale(0.9); }
  to   { opacity: 1; transform: rotate(-8deg) translateY(0) scale(1); }
}
@keyframes tileDrop3 {
  from { opacity: 0; transform: rotate(20deg) translateY(-80px) scale(0.9); }
  to   { opacity: 1; transform: rotate(8deg) translateY(0) scale(1); }
}
.hero-v2__tile-wrap--1 .hero-v2__tile {
  animation: tileDrop1 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}
.hero-v2__tile-wrap--2 .hero-v2__tile {
  animation: tileDrop2 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s both;
}
.hero-v2__tile-wrap--3 .hero-v2__tile {
  animation: tileDrop3 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

/* Log card fade-up */
@keyframes logRise {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-v2__log {
  opacity: 0;
  animation: logRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 1.35s forwards;
}

/* Log rows stagger reveal (type-in feel) */
@keyframes rowReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-v2__row {
  opacity: 0;
  animation: rowReveal 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-v2__log .hero-v2__row:nth-child(1) { animation-delay: 1.55s; }
.hero-v2__log .hero-v2__row:nth-child(2) { animation-delay: 1.78s; }
.hero-v2__log .hero-v2__row:nth-child(3) { animation-delay: 2.05s; }

/* Relly row highlight pulse (finishes the sequence) */
@keyframes rellyBadgePop {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 245, 60, 0.6); }
  50%  { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(255, 245, 60, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 245, 60, 0); }
}
.hero-v2__row--relly .hero-v2__who--relly {
  animation: rellyBadgePop 1.6s ease-out 2.4s both;
}

/* Hero CTA — subtle scale + yellow halo glow + "Good choice!" bubble */
.hero-v2__cta {
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 245, 60, 0);
  transition:
    background-color 0.2s var(--ease),
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s var(--ease);
}
.hero-v2__cta:hover {
  transform: scale(1.015);
  background-color: #ffe91f;
  box-shadow:
    0 0 32px rgba(255, 245, 60, 0.7),
    0 0 64px rgba(255, 245, 60, 0.35);
}
.hero-v2__cta:active {
  transform: scale(0.97);
  background-color: #f8d700;
  transition-duration: 0.08s;
}
.hero-v2__cta::before {
  content: "Good choice!";
  position: absolute;
  top: -22px;
  left: calc(100% - 86px);
  background: #ffffff;
  border: 1.5px solid #000;
  color: #000;
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  padding: 3px 11px 5px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.4) rotate(-4deg);
  transform-origin: bottom left;
  pointer-events: none;
  transition:
    opacity 0.18s var(--ease),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}
.hero-v2__cta:hover::before {
  opacity: 1;
  transform: scale(1) rotate(8deg);
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2__cta:hover { background-color: #ffe91f; }
}

/* Nav CTA — calm lift, text brighten. No shadows. */
.nav-v2__cta:hover {
  background-color: #0f0f0f;
  color: #fff700;
}
.nav-v2__cta:active {
  transform: scale(0.97);
  transition-duration: 0.08s;
}

/* Relly tile hover — class-based so mouse-leave animates back smoothly */
.hero-v2__tile-wrap--1 {
  position: relative;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-v2__tile-wrap--1:hover {
  transform: translateY(-14px);
  z-index: 10;
}
/* Relly tile transform is driven by Web Animations API (see script.js) */

/* Relly badge — continuous bounce pulse while hovered */
.hero-v2__tile-badge--relly {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-v2__tile-wrap--1 .hero-v2__tile.is-hovering .hero-v2__tile-badge--relly {
  animation: rellyBadgeBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
@keyframes rellyBadgeBounce {
  0%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(255, 245, 60, 0.5); }
  50%      { transform: scale(1.15) rotate(-3deg); box-shadow: 0 0 0 6px rgba(255, 245, 60, 0); }
}

/* "Hi!" speech bubble on Relly hover */
.hero-v2__tile-wrap--1::before {
  content: "Hi!";
  position: absolute;
  top: 4px;
  right: -6px;
  background: #fff53c;
  border: 2px solid #000;
  padding: 4px 14px 6px;
  border-radius: 999px;
  font-family: 'Momo Signature', 'Caveat', cursive;
  font-size: 28px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.3) rotate(-12deg);
  transform-origin: bottom left;
  pointer-events: none;
  z-index: 60;
  transition:
    opacity 0.2s var(--ease),
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-v2__tile-wrap--1:hover::before {
  opacity: 1;
  transform: scale(1) rotate(10deg) translate(12px, -12px);
}

/* Nav wordmark — arrows handed to and from Relly. Brand stays still. */
.nav-v2__arrow {
  display: inline-block;
  will-change: transform, opacity;
}

/* ↙ gray = an endless stream of arrows HANDED TO Relly */
@keyframes arrowHandedIn {
  0%   { transform: translate(10px, -10px); opacity: 0; }          /* next arrow outside */
  22%  { transform: translate(0, 0);         opacity: 1; }          /* arrived */
  62%  { transform: translate(0, 0);         opacity: 1; }          /* shown */
  82%  { transform: translate(-4px, 4px) scale(0.7); opacity: 0; }  /* absorbed */
  100% { transform: translate(10px, -10px); opacity: 0; }           /* next begins */
}
.nav-v2__arrow--dl {
  animation: arrowHandedIn 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* ↗ black = an endless stream of arrows HANDED FROM Relly */
@keyframes arrowHandedOut {
  0%   { transform: translate(-6px, 6px); opacity: 0; }  /* emerging from brand */
  22%  { transform: translate(0, 0);      opacity: 1; }  /* at rest position */
  62%  { transform: translate(0, 0);      opacity: 1; }  /* shown */
  82%  { transform: translate(10px, -10px); opacity: 0; } /* flown out */
  100% { transform: translate(-6px, 6px); opacity: 0; }  /* next begins */
}
.nav-v2__arrow--ur {
  animation: arrowHandedOut 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  animation-delay: 1.2s;
}

/* Hover on wordmark — freeze the loop and reveal both arrows fully */
.nav-v2__wordmark:hover .nav-v2__arrow--dl,
.nav-v2__wordmark:hover .nav-v2__arrow--ur {
  animation: none;
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .nav-v2__arrow--dl,
  .nav-v2__arrow--ur {
    animation: none !important;
  }
}

/* Nav CTA — clean (no sweep, no shadow) */
.nav-v2__cta { position: relative; }

/* Nav links — yellow dot indicator on hover */
.nav-v2__links a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s var(--ease);
}
.nav-v2__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff53c;
  transform: translate(-50%, -6px) scale(0);
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.2s var(--ease);
}
.nav-v2__links a:hover {
  color: rgba(0, 0, 0, 1);
}
.nav-v2__links a:hover::after {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-v2__bg img,
  .hero-v2__line,
  .hero-v2__sub,
  .hero-v2__cta,
  .hero-v2__tile-wrap--1 .hero-v2__tile,
  .hero-v2__tile-wrap--2 .hero-v2__tile,
  .hero-v2__tile-wrap--3 .hero-v2__tile,
  .hero-v2__log,
  .hero-v2__row,
  .nav-v2__arrow--ur,
  .nav-v2__arrow--dl,
  .hero-v2__row--relly .hero-v2__who--relly {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero-v2__tile-wrap--1 .hero-v2__tile { transform: rotate(8deg); }
  .hero-v2__tile-wrap--2 .hero-v2__tile { transform: rotate(-8deg); }
  .hero-v2__tile-wrap--3 .hero-v2__tile { transform: rotate(8deg); }
}

/* =========================================================
   MOBILE RESPONSIVE FIXES
   ========================================================= */
/* Safety: prevent horizontal body overflow from decorative absolute
   elements (scene-photo notifs etc.) */
html, body { overflow-x: hidden; }

@media (max-width: 720px) {
  /* --- Section padding: tighten so content fits narrow viewports --- */
  #problem,
  #how,
  #features,
  #use-cases,
  #testimonials,
  #compare,
  #pricing,
  #faq { padding: 80px 20px; }

  /* --- Ghost cards (Why does every meeting leave homework behind?) ---
     Fix: `.gcard { flex: 1 0 0 }` collapses card height to 0 in column flex,
     clipping body content. Force content-size. */
  .ghost-grid { height: auto; gap: 20px; }
  .gcard {
    flex: 0 0 auto;
    padding: 28px 28px;
    gap: 22px;
  }
  .gcard__head { gap: 16px; }
  .gcard__title { font-size: 20px; }
  .gcard__body { font-size: 14px; }

  /* --- Testimonials headline "We can't go back" ---
     Fix: `#testimonials .h2` is `font-size: 46px; white-space: nowrap;
     display: flex` — 한 줄에 46px로 박혀서 모바일에서 통째로 오버플로우. */
  #testimonials .h2 {
    font-size: 34px;
    letter-spacing: -0.9px;
    white-space: normal;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  /* --- Comparison table ---
     Fit all 5 columns in the mobile viewport (no scroll), no arrow icons
     in the brand column (just "relly" text, centered). */
  .compare { overflow: visible; padding-bottom: 0; }
  .compare__head,
  .compare__row { min-width: 0; }
  .compare__cell { padding: 0 4px; min-height: 56px; }
  .compare__head .compare__cell,
  .compare__body .compare__cell { min-height: 56px; }
  .compare__cell--label {
    flex: 0 0 130px;
    padding: 0 12px;
    justify-content: flex-start;
    overflow: hidden;
  }
  .compare__cell--label > * { min-width: 0; word-break: break-word; }
  .compare__head .compare__cell--label { font-size: 12px; line-height: 1.25; }
  .compare__body .compare__cell--label {
    font-size: 10px;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }
  .compare__cell--vs {
    font-size: 10px;
    letter-spacing: 0.2px;
  }
  /* Hide decorative arrows on mobile — just show "relly" wordmark.
     Also kill the 10px padding-right from `.nav-v2__wordmark` base rule
     that was pushing text off-center. */
  .compare__logo .nav-v2__arrow { display: none; }
  .compare__wordmark,
  .compare__logo.nav-v2__wordmark {
    font-size: 14px;
    gap: 0;
    padding: 0;
    justify-content: center;
  }
  .compare__check { width: 18px; height: 18px; }
  .compare__dash { font-size: 14px; }
  .compare__maybe { font-size: 10px; padding: 3px 6px; letter-spacing: 0; }
  /* Header relly pill: fully rounded.
     Body relly column: one continuous shape — only top of first row
     and bottom of last row rounded, middle rows sharp so they merge. */
  .compare__head .compare__cell--brand { border-radius: 14px; }
  .compare__body .compare__row:first-child .compare__cell--brand {
    border-radius: 14px 14px 0 0;
  }
  .compare__body .compare__row:last-child .compare__cell--brand {
    border-radius: 0 0 14px 14px;
  }

  /* --- Headline typography (h2 consistency on mobile) ---
     Keep accents together and scale down fonts so 3-line titles don't
     split mid-phrase ("half / price" etc). */
  .h2__accent { white-space: nowrap; }
  #problem .h2,
  #how .h2,
  #features .h2,
  #use-cases .h2,
  #pricing .h2,
  #faq .h2,
  #compare .h2 {
    font-size: 38px;
    letter-spacing: -1.02px;
    line-height: 1.08;
  }
  #problem .h2__accent,
  #how .h2__accent,
  #features .h2__accent,
  #use-cases .h2__accent,
  #pricing .h2__accent,
  #faq .h2__accent,
  #compare .h2__accent {
    letter-spacing: -0.76px;
  }

  /* --- How section: match .how__media width to .how__copy ---
     `.how` uses `align-items: center` — in column-stacked mobile the
     media shrinks to its content width (~300px) while copy takes full
     343px. Force stretch. */
  .how { align-items: stretch; }
  .how__media, .how__copy { width: 100%; }

  /* .uc fix applied at 900px breakpoint (see main .uc rule) */

  /* --- Footer padding parity ---
     Footer uses 80px horizontal padding baked in — way too much for
     mobile. Match the 20px used across sections. */
  .footer { padding: 48px 20px; }
  .footer__col { width: 100%; }

  /* --- Body text / subheadings mobile scale ---
     h3 at 38px and descriptions at 17px looked oversized on 375px.
     Bring them down to mobile-appropriate sizes. */
  .lede,
  #problem .lede,
  #how .lede,
  #features .lede,
  #compare .lede,
  #pricing .lede,
  #faq .lede {
    font-size: 15px;
    line-height: 1.52;
    letter-spacing: -0.15px;
  }

  /* How section per-article subheading */
  .how__copy .h3 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.52px;
  }
  .how__copy p { font-size: 15px; line-height: 1.55; }
  .how { gap: 24px; }
  .how__copy { gap: 16px; }

  /* Use-cases per-card subheading */
  .uc__text h3 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.52px;
  }
  .uc__text p { font-size: 15px; line-height: 1.55; }
  .uc__text { gap: 12px; }
  .uc { gap: 20px; }

  /* Testimonials quote body */
  .quote p { font-size: 16px; line-height: 1.5; letter-spacing: -0.16px; }
  .quote { padding: 28px 24px; }

  /* FAQ */
  .faq__item summary { padding: 22px 24px; font-size: 17px; letter-spacing: -0.17px; }
  .faq__body { padding: 0 24px 22px; font-size: 14px; line-height: 1.55; }
  .faq__icon { width: 20px; height: 20px; }

  /* Eyebrow label consistency */
  .eyebrow { font-size: 12px; padding: 7px 12px; }
}

@media (max-width: 420px) {
  .how__copy .h3,
  .uc__text h3 { font-size: 24px; letter-spacing: -0.48px; }
  .faq__item summary { font-size: 16px; padding: 20px 22px; }
  .faq__body { padding: 0 22px 20px; }
  .quote p { font-size: 15px; }

  /* --- Pricing plans ---
     Fix 1: `.plan { flex: 1 0 0 }` collapses card height in column flex
     (same bug as `.gcard`) — force content-size.
     Fix 2: `.plan__header` has two nowrap children (badge + "Returns to $40
     after public launch, June 2026") that force the plan to ~500px wide,
     so content gets clipped by `overflow: hidden`. Wrap the header and
     shrink type for mobile. */
  .plan {
    flex: 0 0 auto;
    padding: 28px 22px 22px;
    gap: 28px;
    border-radius: 24px;
  }
  .plan__content { gap: 28px; }
  .plan__top { gap: 24px; }
  .plan__header { flex-wrap: wrap; gap: 8px; }
  .plan__badge { font-size: 12px; padding: 5px 10px; }
  .plan__return { font-size: 13px; white-space: normal; line-height: 1.4; }
  .plan__amount { font-size: 44px; letter-spacing: -1.32px; }
  .plan__unit { font-size: 14px; }
  .plan__pitch { font-size: 15px; }
  .plan__features { padding: 18px 20px; gap: 8px; border-radius: 18px; }
  .plan__feature span { font-size: 14px; letter-spacing: -0.14px; line-height: 1.45; }
  .plan__check { width: 18px; height: 18px; }
  .plan__cta { font-size: 17px; padding: 15px 0; gap: 8px; border-radius: 18px; }
  .plan__cta img { width: 18px; height: 18px; }
}

/* --- How-it-works scene-photo (overlapping bubbles/notifs) ---
   On desktop the scene is a photo with bubbles/notifs positioned
   absolutely over it. Mobile photo is only ~343×257px — bubbles
   (max-width 340px) and notifs (280px) overlap and clip.
   Fix: break the aspect-ratio frame, stack img + overlays as a vertical
   column so each card sits on its own line. */
@media (max-width: 720px) {
  .scene-photo--inline {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: none;
    border-radius: 0;
  }
  .how--reverse .scene-photo--inline { transform: none; }
  .scene-photo--inline:hover,
  .how--reverse .scene-photo--inline:hover { transform: none; }
  .scene-photo--inline > img {
    position: relative;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    order: 0;
  }
  .scene-photo--inline .scene-photo__tint { display: none; }
  /* Listening-dot floats over the bottom-left of the photo on mobile.
     Scene-photo--inline is relative; img is 200px tall at top of the
     stack — pin the dot to sit on the image's lower-left corner. */
  .scene-photo--inline { position: relative; }
  .scene-photo--inline .listening-dot {
    position: absolute;
    top: 156px;
    left: 16px;
    right: auto;
    bottom: auto;
    transform: none !important;
    animation: none !important;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  }
  .scene-photo--inline .bubble,
  .scene-photo--inline .notif {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none !important;
    max-width: 100%;
    width: 100%;
    margin: 0;
    opacity: 1;
    animation: none !important;
    order: 2;
  }
  .scene-photo--inline .bubble--sm { max-width: 100%; }
  .scene-photo--inline .bubble--relly { max-width: 100%; padding: 18px 20px 20px; }
  /* Voice-wave inside Relly bubble can bloat height — cap it */
  .scene-photo--inline .bubble__voice-wave {
    max-height: 44px;
    overflow: hidden;
  }
  /* squircle.js applies a clip-path based on the element's bounding box
     at scan time. On mobile the bubbles resize (relative, 100% width) but
     the inline clip-path is stale — it crops content and also cuts the
     box-shadow, making shadows look broken. Drop clip-path here; plain
     border-radius is enough and keeps shadows intact. */
  .scene-photo--inline .bubble,
  .scene-photo--inline .notif { clip-path: none !important; }
  .scene-photo--inline .bubble { overflow: visible; }
}

@media (max-width: 420px) {
  #problem,
  #how,
  #features,
  #use-cases,
  #testimonials,
  #compare,
  #pricing,
  #faq { padding: 64px 16px; }
  .footer { padding: 40px 16px; }
  #problem .h2,
  #how .h2,
  #features .h2,
  #use-cases .h2,
  #pricing .h2,
  #faq .h2,
  #compare .h2 {
    font-size: 32px;
    letter-spacing: -0.86px;
  }
  #testimonials .h2 { font-size: 28px; letter-spacing: -0.76px; }

  .gcard { padding: 24px 22px; gap: 18px; }
  .gcard__title { font-size: 19px; letter-spacing: -0.19px; }

  .compare__cell--label { flex: 0 0 110px; padding: 0 10px; }
  .compare__head .compare__cell--label,
  .compare__body .compare__cell--label { font-size: 10px; }
  .compare__cell--vs { font-size: 9px; }
  .compare__wordmark { font-size: 13px; }

  .plan { padding: 24px 18px 20px; }
  .plan__amount { font-size: 38px; letter-spacing: -1.14px; }
  .plan__badge { font-size: 11px; }
  .plan__return { font-size: 12px; }
  .plan__cta { font-size: 16px; padding: 14px 0; }
}
