/* ═══════════════════════════════════════════════════════
   JUSTATEIT — Visual Design System
   Intentional. Layered. Bespoke.
   ═══════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  /* Core palette (Crisp & Cool) */
  --cream: #FFFFFF;
  --cream-warm: #FFFFFF;
  --parchment: #FFFFFF;
  --midnight: #09090B;
  --surface: #FFFFFF;

  /* Accent system (Cobalt Blue) */
  --accent: #C49A6C;
  --accent-warm: #B0885E;
  --accent-glow: rgba(196, 154, 108, 0.12);
  --accent-soft: rgba(196, 154, 108, 0.06);

  /* Neutrals */
  --ink: rgba(9, 9, 11, 0.85);
  --ink-muted: rgba(9, 9, 11, 0.45);
  --ink-faint: rgba(9, 9, 11, 0.12);
  --ink-ghost: rgba(9, 9, 11, 0.04);

  /* Vivid tech tones */
  --ochre: #10B981;
  /* Emerald */
  --sage: #06B6D4;
  /* Cyan */
  --clay: #8B5CF6;
  /* Purple */
  --espresso: #1E293B;
  /* Slate */

  /* Type scale */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Shadows — layered depth system */
  --shadow-sm:
    0 1px 2px rgba(12, 10, 9, 0.05),
    0 2px 6px rgba(12, 10, 9, 0.03);
  --shadow-md:
    0 2px 4px rgba(12, 10, 9, 0.04),
    0 4px 12px rgba(12, 10, 9, 0.05),
    0 12px 28px rgba(12, 10, 9, 0.04);
  --shadow-lg:
    0 4px 8px rgba(12, 10, 9, 0.04),
    0 8px 24px rgba(12, 10, 9, 0.06),
    0 24px 48px rgba(12, 10, 9, 0.08),
    0 48px 96px rgba(12, 10, 9, 0.05);
  --shadow-xl:
    0 8px 16px rgba(12, 10, 9, 0.06),
    0 16px 32px rgba(12, 10, 9, 0.08),
    0 32px 64px rgba(12, 10, 9, 0.1),
    0 64px 128px rgba(12, 10, 9, 0.06);

  /* Glass surface tokens */
  --glass-border: rgba(12, 10, 9, 0.06);
  --glass-border-hover: rgba(12, 10, 9, 0.12);
  --glass-bg: rgba(250, 248, 244, 0.6);
  --glass-bg-hover: rgba(250, 248, 244, 0.85);
  --glass-radius: 20px;
  --glass-radius-sm: 14px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--midnight);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
}

strong {
  font-weight: 600;
}

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

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   FILM GRAIN — Texture overlay
   ═══════════════════════════════════════════════════════ */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════ */

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(12, 10, 9, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: width 0.35s var(--ease-out-expo),
    height 0.35s var(--ease-out-expo),
    border-color 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-follower.active {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transform: translate(-50%, -50%);
}



/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  margin: 1rem 2rem;
  backdrop-filter: blur(24px) saturate(1.4);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(2);
  -webkit-backdrop-filter: blur(24px) saturate(2);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(9, 9, 11, 0.05);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: none;
}

.nav-logo-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 3px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(196, 154, 108, 0.06), 0 0 20px var(--accent-glow);
  }
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--ink-faint);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
  cursor: none;
}

.nav-cta:hover {
  background: var(--midnight);
  color: var(--cream);
  border-color: var(--midnight);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) 2rem clamp(2rem, 6vh, 4rem);
  position: relative;
  overflow: hidden;
  /* Multi-stop background — vivid, structured gradient base */
  background:
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(196, 154, 108, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
}

/* Ambient orbs — soft warm light blobs */
.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  filter: blur(32px);
  will-change: transform;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.hero-orb--warm {
  width: 600px;
  height: 600px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(176, 136, 94, 0.6) 0%, transparent 65%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.hero-orb--cool {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, transparent 65%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.hero-orb--accent {
  width: 350px;
  height: 350px;
  top: 25%;
  right: 12%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.5) 0%, transparent 65%);
  border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  gap: 4rem;
  z-index: 10;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  text-align: left;
  flex: 1;
  max-width: 600px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-app-mockup {
  max-width: 380px;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 40px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  transform: rotateY(-10deg) rotateZ(2deg) scale(0.95);
  transition: all 1s var(--ease-out-expo);
  animation: heroScrollFloat 7s ease-in-out infinite;
}

@keyframes heroScrollFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(-10deg) rotateZ(2deg) scale(0.95);
  }

  50% {
    transform: translateY(-20px) rotateY(-10deg) rotateZ(2deg) scale(0.95);
  }
}

.hero-visual:hover .hero-app-mockup {
  animation-play-state: paused;
  transform: translateY(0) rotateY(0deg) rotateZ(0deg) scale(1.02);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1rem, 4vh, 2.5rem);
  transform-origin: left;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-eyebrow-text {
  color: var(--accent);
  font-size: 0.6rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, min(8vw, 10vh), 7.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: clamp(1rem, 3vh, 2rem);
  max-width: 900px;
  color: var(--midnight);
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-word {
  display: inline-block;
  margin-right: 0.2em;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-title-italic {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 clamp(1.5rem, 4vh, 3rem) 0;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 0;
}

/* Asymmetric meta — pinned to edges */
.hero-meta-float {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 2.5rem;
  color: var(--ink-muted);
}

.hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-block--right {
  text-align: right;
}

.hero-meta-label {
  font-size: 0.5rem;
  opacity: 0.5;
  letter-spacing: 0.2em;
}

.hero-meta-value {
  font-size: 0.7rem;
  color: var(--midnight);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-breath 2.5s ease-in-out infinite;
}

@keyframes scroll-breath {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

.hero-scroll-text {
  font-size: 0.5rem;
  opacity: 0.3;
  letter-spacing: 0.25em;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 100px;
  cursor: none;
  transition: all 0.45s var(--ease-out-expo);
  position: relative;
}

.btn-primary {
  background: var(--midnight);
  color: var(--cream);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(12, 10, 9, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(12, 10, 9, 0.15);
}

.btn-primary svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--midnight);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow:
    0 2px 8px rgba(196, 154, 108, 0.2),
    0 8px 24px rgba(196, 154, 108, 0.15),
    0 0 0 1px rgba(196, 154, 108, 0.3);
}

.btn-accent:hover {
  background: var(--accent-warm);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(196, 154, 108, 0.25),
    0 16px 40px rgba(196, 154, 108, 0.2),
    0 0 0 1px rgba(196, 154, 108, 0.35);
}

.btn-large {
  padding: 1.15rem 2.5rem;
  font-size: 0.72rem;
  gap: 1rem;
}

.btn-large svg {
  flex-shrink: 0;
}

.btn-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text-small {
  font-size: 0.52rem;
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.btn-text-large {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: var(--font-sans);
}

/* ═══════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════ */

.ticker-section {
  padding: 2rem 2.5rem;
  overflow: hidden;
  background: transparent;
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  will-change: transform;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ticker-wrap:last-child {
  margin-bottom: 0;
}

.ticker-reverse .ticker {
  animation-direction: reverse;
}

.ticker {
  display: inline-flex;
  animation: ticker-slide 35s linear infinite;
  will-change: transform;
}

@keyframes ticker-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 1.5rem;
  font-weight: 500;
  color: var(--midnight);
  opacity: 0.6;
}

.ticker-item--accent {
  color: var(--accent);
  opacity: 1;
}

.ticker-sep {
  padding: 0 0.5rem;
  font-size: 0.4rem;
  opacity: 0.2;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   SECTION TAG (shared)
   ═══════════════════════════════════════════════════════ */

.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  color: var(--ink-muted);
}

.section-tag-num {
  color: var(--accent);
  font-size: 0.7rem;
}

.section-tag-line {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════
   SHOWCASE — Full Viewport Horizontal Scroll
   ═══════════════════════════════════════════════════════ */

.showcase {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.showcase-track {
  display: flex;
  width: fit-content;
  will-change: transform;
}

/* ─── Shared Panel ─── */
.sc-panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem;
}

.sc-panel-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

/* Shared typography */
.sc-label {
  display: block;
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.sc-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.sc-heading em {
  color: var(--accent);
}

.sc-heading--large {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.sc-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 420px;
}

.sc-body--light {
  color: rgba(255, 255, 255, 0.5);
}

.sc-body--light em {
  color: var(--accent-warm);
}

.sc-tags {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sc-tags span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--ink-faint);
  border-radius: 100px;
  color: var(--ink-muted);
}

/* ─── Layouts ─── */
.sc-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sc-layout-split--reverse {
  direction: rtl;
}

.sc-layout-split--reverse>* {
  direction: ltr;
}

.sc-layout-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-layout-centered .sc-body {
  max-width: 500px;
}

.sc-layout-bottom {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  max-width: 500px;
}

/* ─── Panel 0: Intro ─── */
.sc-panel--intro {
  background:
    radial-gradient(ellipse 50% 30% at 90% 10%, var(--accent-soft) 0%, transparent 50%),
    var(--cream);
}

.sc-panel--intro .sc-panel-inner {
  max-width: 800px;
}

.sc-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.sc-intro-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 440px;
}

.sc-intro-arrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent);
  opacity: 0.6;
  animation: arrow-pulse 2s ease-in-out infinite;
}

.sc-intro-arrow span {
  font-size: 0.6rem;
  color: var(--ink-muted);
}

@keyframes arrow-pulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(12px);
    opacity: 1;
  }
}

/* ─── Panel 1: Timeline — Giant number + split ─── */
.sc-panel--timeline {
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.sc-giant-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(20rem, 40vw, 45rem);
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 10, 9, 0.04);
  pointer-events: none;
  z-index: 1;
}

.sc-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-hero-glyph--timeline {
  width: 100%;
  max-width: 320px;
  color: var(--accent);
  opacity: 0.8;
}

.sc-text-side {
  max-width: 480px;
}

/* ─── Panel 2: Ratings — Dark inverted ─── */
.sc-panel--ratings {
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(196, 154, 108, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(44, 24, 16, 0.6) 0%, transparent 50%),
    var(--midnight);
  color: var(--cream);
}

.sc-panel--ratings .sc-label {
  color: rgba(255, 255, 255, 0.3);
}

.sc-panel--ratings .sc-heading {
  color: var(--cream);
}

.sc-panel--ratings .sc-heading em {
  color: var(--accent-warm);
}

.sc-ratings-star {
  margin-bottom: 2rem;
}

.sc-star-glyph {
  width: 80px;
  height: 80px;
  color: var(--accent);
  opacity: 0.5;
}

.sc-detail-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.sc-detail-chip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 120px;
}

.sc-detail-chip-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
}

.sc-detail-bar {
  height: 3px;
  background: rgba(9, 9, 11, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.sc-detail-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  border-radius: 4px;
  transition: width 1.5s var(--ease-out-expo);
}

/* ─── Panel 3: Flavor Tags — Typographic explosion ─── */
.sc-panel--flavors {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(196, 154, 108, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.sc-flavor-cloud {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 10%;
  pointer-events: none;
  z-index: 1;
}

.sc-flavor-word {
  font-family: var(--font-serif);
  font-weight: 700;
  opacity: 0.06;
  line-height: 1;
  white-space: nowrap;
}

.sc-fw-1 {
  font-size: clamp(4rem, 10vw, 9rem);
  transform: rotate(-8deg);
}

.sc-fw-2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  transform: rotate(3deg) translateY(-2rem);
}

.sc-fw-3 {
  font-size: clamp(5rem, 12vw, 10rem);
  transform: rotate(2deg);
}

.sc-fw-4 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-style: italic;
  transform: rotate(-5deg) translateY(3rem);
}

.sc-fw-5 {
  font-size: clamp(4.5rem, 9vw, 8rem);
  transform: rotate(6deg);
}

.sc-fw-6 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: italic;
  transform: rotate(-3deg) translateX(2rem);
}

.sc-fw-7 {
  font-size: clamp(4rem, 8vw, 7rem);
  transform: rotate(4deg) translateY(-1rem);
}

/* ─── Panel 4: Share — Split with profile mockup ─── */
.sc-panel--share {
  background:
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.sc-visual-side--card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-app-screenshot {
  max-width: 340px;
  width: 100%;
  height: auto;
  transition: all 0.7s var(--ease-out-expo);
  transform: rotate(-1.5deg) scale(0.98);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.sc-visual-side:hover .sc-app-screenshot,
.sc-visual-side--card:hover .sc-app-screenshot {
  transform: rotate(0) translateY(-8px) scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.sc-layout-split--reverse .sc-app-screenshot {
  transform: rotate(1.5deg) scale(0.98);
}

.sc-layout-split--reverse .sc-visual-side:hover .sc-app-screenshot,
.sc-layout-split--reverse .sc-visual-side--card:hover .sc-app-screenshot {
  transform: rotate(0) translateY(-8px) scale(1.02);
}

/* ─── Panel 5: Photo — Immersive warm gradient ─── */
.sc-panel--photo {
  background:
    radial-gradient(ellipse 70% 70% at 70% 30%, rgba(196, 154, 108, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(16, 185, 129, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--parchment) 0%, #FFFFFF 100%);
}

.sc-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255, 255, 255, 0.4) 100%);
  pointer-events: none;
}

.sc-camera-icon {
  margin-bottom: 2rem;
  color: var(--accent);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════
   THE WHY — Immersive Dark Section
   ═══════════════════════════════════════════════════════ */

.why-section {
  padding: 12rem 0;
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Mesh gradient background */
.why-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(196, 154, 108, 0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(16, 185, 129, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, #1a1412 100%);
  filter: blur(24px);
  mix-blend-mode: color-dodge;
  opacity: 0.6;
}

.why-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}

.why-section .section-tag {
  color: rgba(255, 255, 255, 0.25);
}

.why-text-reveal {
  margin-bottom: 4rem;
}

.why-paragraph {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.why-paragraph .char {
  display: inline;
  opacity: 0.06;
  transition: opacity 0.15s;
}

.why-paragraph .char.revealed {
  opacity: 1;
}

.why-paragraph em {
  color: var(--accent-warm);
  font-weight: 700;
  font-size: 1em;
  display: inline;
  transition: font-size 0.5s var(--ease-out-expo);
}

.why-paragraph em.emphasis-grow {
  font-size: 1.35em;
}

.why-paragraph strong {
  color: var(--accent-warm);
  font-weight: 800;
  font-size: 1em;
  display: inline;
  transition: font-size 0.5s var(--ease-out-expo);
}

.why-paragraph strong.emphasis-grow {
  font-size: 1.45em;
}

/* Stats — inline accent row */
.why-stats {
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-stat {
  opacity: 0;
  transform: translateY(30px);
}

.why-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.why-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════════════
   CAPABILITIES — Horizontal Strips
   ═══════════════════════════════════════════════════════ */

.capabilities {
  padding: 10rem 0;
  position: relative;
  background:
    radial-gradient(ellipse 40% 40% at 10% 80%, var(--accent-soft) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.capabilities-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 5rem;
}

.cap-strips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cap-strip {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 2.5rem;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  cursor: none;
  /* Soft Depth treatment */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius-sm);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.5s var(--ease-out-expo),
    border-color 0.4s,
    transform 0.5s var(--ease-out-expo),
    background 0.4s;
}

.cap-strip:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  transform: translateY(-3px);
}

/* Hover accent line */
.cap-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.5s var(--ease-out-expo);
}

.cap-strip:hover::before {
  height: 100%;
}

.cap-strip:first-child {
  border-top: none;
}

.cap-strip-idx {
  font-size: 0.65rem;
  color: var(--accent);
  opacity: 0.7;
  padding-top: 0.1rem;
}

.cap-strip-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: baseline;
}

.cap-strip-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.cap-strip:hover .cap-strip-name {
  color: var(--accent);
}

.cap-strip-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.cap-strip-desc em {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   MANIFESTO — Pinned Scroll
   ═══════════════════════════════════════════════════════ */

.manifesto {
  height: 100vh;
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, var(--cream-warm) 0%, var(--cream) 100%);
}

.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}

.manifesto-line {
  position: relative;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.manifesto-line em {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */

.cta-section {
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(196, 154, 108, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
}

.cta-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  filter: blur(24px);
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.cta-orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.6) 0%, transparent 65%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.cta-orb--2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, transparent 65%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  /* Contained card with depth */
  background:
    linear-gradient(165deg, rgba(250, 248, 244, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 5rem 4rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    var(--shadow-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  margin-bottom: 2.5rem;
  background: rgba(196, 154, 108, 0.04);
  box-shadow:
    0 0 0 4px var(--accent-glow),
    0 2px 8px rgba(196, 154, 108, 0.08);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.cta-title em {
  color: var(--accent);
}

.cta-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto 3rem;
}

.cta-actions {
  margin-bottom: 2rem;
}

.cta-actions--soon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cta-appstore-img {
  width: 220px;
  height: auto;
  opacity: 0.85;
  filter: grayscale(90%) contrast(1.1);
  transition: all 0.4s var(--ease-out-expo);
  border-radius: 12px;
}

.cta-actions--soon:hover .cta-appstore-img {
  opacity: 1;
  filter: grayscale(0%) contrast(1.0);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(12, 10, 9, 0.15);
}

.cta-soon-tape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background:
    linear-gradient(rgba(255, 204, 0, 0.9), rgba(255, 204, 0, 0.9)) padding-box,
    repeating-linear-gradient(-45deg,
      rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9) 10px,
      rgba(255, 204, 0, 0.9) 10px, rgba(255, 204, 0, 0.9) 20px) border-box;

  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: none;
  border-right: none;
  color: #111;
  font-weight: 900;
  padding: 2px 110px;
  letter-spacing: 0.4em;
  font-size: 0.60rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.1);
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-divider-line {
  width: 60px;
  height: 1px;
  background: var(--ink-faint);
}

.cta-divider-text {
  font-size: 0.6rem;
  color: var(--ink-muted);
}

.cta-form {
  margin-bottom: 1.5rem;
}

.cta-input-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--midnight);
  outline: none;
  cursor: none;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-input::placeholder {
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 4px var(--accent-glow),
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.cta-message {
  margin-top: 1rem;
  font-size: 0.7rem;
  min-height: 1.2em;
  transition: all 0.3s;
  text-align: center;
}

.cta-message.success {
  color: #16a34a;
}

.cta-message.error {
  color: #dc2626;
}

.cta-footnote {
  font-size: 0.6rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER — Bold, Editorial, MIRA-inspired
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--midnight);
  padding: 3rem;
  position: relative;
}

.footer-card {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(165deg, #1a1714 0%, #111010 40%, #0e0c0b 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-glow), 0 0 12px var(--accent-glow);
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  max-width: 280px;
  transition: border-color 0.4s;
}

.footer-contact:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-contact-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
}

.footer-contact-email {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: none;
  transition: color 0.3s;
}

.footer-contact-email:hover {
  color: var(--accent-warm);
}

.footer-contact-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* Navigation Column */
.footer-nav-col,
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.3rem;
}

.footer-col-title {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
  display: block;
  line-height: 1.4;
}

.footer-link:hover {
  color: var(--cream);
  transform: translateX(4px);
}

/* Social links with icons */
.footer-link-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-link-social svg {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  flex-shrink: 0;
}

.footer-link-social:hover svg {
  color: var(--cream);
}

.footer-philosophy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
  margin-top: 0.75rem;
  max-width: 220px;
}

/* Giant Watermark — the hero of the footer */
.footer-watermark {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
  padding-bottom: 1rem;
  line-height: 0.85;
  text-align: center;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 15%,
      rgba(0, 0, 0, 0.8) 40%,
      rgba(0, 0, 0, 1) 55%,
      rgba(0, 0, 0, 0.6) 80%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 15%,
      rgba(0, 0, 0, 0.8) 40%,
      rgba(0, 0, 0, 1) 55%,
      rgba(0, 0, 0, 0.6) 80%,
      transparent 100%);
}

.footer-watermark-text {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.85;
  display: block;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.12) 35%,
      rgba(255, 255, 255, 0.04) 70%,
      transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}

/* Bottom copyright bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-follower,
  .cursor-dot {
    display: none;
  }

  .grain {
    opacity: 0.2;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-meta-float {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  /* Horizontal scroll panels — content adjusts */
  .sc-panel {
    padding: 2rem 1.5rem;
  }

  .sc-layout-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sc-layout-split--reverse {
    direction: ltr;
  }

  .sc-layout-bottom {
    position: relative;
    bottom: auto;
    left: auto;
  }

  .sc-giant-num {
    font-size: 12rem;
  }

  .sc-heading--large {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .sc-detail-row {
    flex-direction: column;
    gap: 1rem;
  }

  .sc-flavor-cloud {
    display: none;
  }

  .cap-strip-body {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .why-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-input-group {
    flex-direction: column;
  }

  .footer {
    padding: 1.5rem;
  }

  .footer-card {
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-contact {
    max-width: 100%;
  }

  .footer-watermark-text {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════
   WAITLIST MODAL
   ═══════════════════════════════════════════════════════ */

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.waitlist-modal.is-active {
  pointer-events: auto;
  opacity: 1;
}

.wl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wl-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--cream);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 24px 64px rgba(12, 10, 9, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
  opacity: 0;
  overflow: hidden;
}

.waitlist-modal.is-active .wl-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Subtle gradient mesh in background of modal */
.wl-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 154, 108, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.wl-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(12, 10, 9, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--midnight);
  transition: background 0.3s, transform 0.3s;
  z-index: 10;
}

.wl-close:hover {
  background: rgba(12, 10, 9, 0.1);
  transform: rotate(90deg);
}

.wl-body,
.wl-success {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wl-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.65rem;
  color: var(--ink-muted);
}

.wl-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--midnight);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.wl-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wl-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(12, 10, 9, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  color: var(--midnight);
  outline: none;
  transition: all 0.3s;
}

.wl-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.wl-submit {
  width: 100%;
  justify-content: center;
}

/* Success State */
.wl-success-icon {
  width: 64px;
  height: 64px;
  background: #16a34a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}

.wl-success-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.wl-success-desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════
   FEATURES COMBINED SECTION & APP STORE SOON BADGE
   ═══════════════════════════════════════════════════════ */

.features-section {
  padding: 8rem 0;
  position: relative;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.btn-appstore {
  position: relative;
  overflow: hidden;
  opacity: 0.8;
  cursor: not-allowed;
}

.construction-tape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: repeating-linear-gradient(45deg,
      #FDE047,
      #FDE047 10px,
      #000000 10px,
      #000000 20px);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 4px 0;
  z-index: 10;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════
   HORIZONTAL SCROLL ARCHITECTURE
   ═══════════════════════════════════════════════════════ */

body {
  /* overflow-x: hidden; removed to allow native vertical scroll */
}

.master-track {
  display: flex;
  height: 100vh;
  width: max-content;
  will-change: transform;
}

.master-panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  flex-shrink: 0;
  padding: 0 8vw;
  overflow: hidden;
}

.master-panel--hero {
  width: 100vw;
  padding: 120px 5vw 0;
  align-items: flex-start;
  justify-content: center;
}

.master-panel--ticker {
  width: max-content;
  padding: 0 4vw;
  border: none;
}

.master-panel--showcase {
  width: max-content;
  padding: 0;
  display: flex;
}

.master-panel--features {
  width: max-content;
}

.master-panel--manifesto {
  width: 60vw;
  justify-content: center;
}

.master-panel--cta {
  width: 80vw;
}

.master-panel--footer {
  width: auto;
  min-width: 60vw;
}

.features-section {
  padding: 0;
}

.features-inner {
  display: flex;
  gap: 6rem;
  align-items: center;
  max-width: none;
}

.cap-strips {
  display: flex;
  flex-direction: row;
  height: auto;
  gap: 2rem;
  margin-left: 2rem;
}

.cap-strip {
  width: 320px;
  flex-shrink: 0;
  border-bottom: none;
  border-left: 1px solid var(--parchment);
  padding: 0 0 0 1.5rem;
}

.ticker-section {
  display: flex;
  flex-direction: row;
  width: auto;
  padding: 0;
  border-top: none;
  border-bottom: none;
  height: 100vh;
}

.ticker-wrap {
  writing-mode: vertical-rl;
  text-orientation: sideways-right;
  border-top: none;
  border-bottom: none;
  border-left: 1px solid var(--parchment);
  border-right: 1px solid var(--parchment);
  padding: 0 1.5rem;
  height: 100vh;
  width: auto;
}