/* ============================================
   KINDLE BY DAYKO
   Brand: Mairaj's Coral + Cream + Geist + Bricolage
   ============================================ */

:root {
  /* CORAL PALETTE (Mairaj's Dayko_Brand_New.pptx) */
  --coral: #F87171;
  --coral-deep: #E85A5A;
  --coral-soft: #FBA5A5;
  --coral-tint: #FDD8D8;
  --cream: #FFF7F4;
  --cream-soft: #FCEEE9;
  --ink: #18191D;
  --ink-soft: #2A2C32;
  --ink-mute: rgba(24, 25, 29, 0.62);
  --ink-faint: rgba(24, 25, 29, 0.38);
  --ink-line: rgba(24, 25, 29, 0.08);
  --ink-line-strong: rgba(24, 25, 29, 0.16);

  /* Dark variants */
  --bg-dark: #161113;
  --bg-dark-elevated: #221A1C;
  --light-on-dark: #FFF7F4;
  --light-on-dark-dim: rgba(255, 247, 244, 0.62);
  --light-on-dark-mute: rgba(255, 247, 244, 0.38);
  --line-on-dark: rgba(255, 247, 244, 0.08);
  --line-on-dark-strong: rgba(255, 247, 244, 0.16);

  /* Type */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Geist', -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', monospace;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

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

/* ============================================
   CURSOR
   ============================================ */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s var(--ease);
}
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid var(--coral-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--coral-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hover { transform: translate(-50%, -50%) scale(1.8); border-color: var(--ink); background: rgba(248, 113, 113, 0.1); }

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body, a, button { cursor: auto; }
}

/* Grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 999;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(255, 247, 244, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(232, 90, 90, 0.25);
}
.logo-text {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-by {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-mute);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--coral-deep); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% -20%, var(--coral-tint), transparent 50%),
    radial-gradient(ellipse at 0% 100%, var(--cream-soft), transparent 60%),
    var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  top: -200px; right: -200px;
  opacity: 0.4;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  bottom: -100px; left: -100px;
  opacity: 0.5;
  animation-delay: -7s;
}
.orb-3, .orb-4 { opacity: 0.35; }
.orb-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  top: -200px; right: -200px;
}
.orb-4 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--coral-deep), transparent 70%);
  bottom: -100px; left: 10%;
  animation-delay: -10s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.4;
}

.hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-text { animation: fadeUp 0.8s var(--ease-out) both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--ink-line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-mute);
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.badge-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title span { display: block; }
.hero-title em { color: var(--coral-deep); }

.grad {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.grad::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q 10 0 20 3 T 40 3' stroke='%23E85A5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: 40px 6px;
  background-repeat: repeat-x;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-mute);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border: 1px solid var(--ink-line-strong);
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover { background: white; border-color: var(--ink); }
.play-icon {
  font-size: 9px;
  color: var(--coral-deep);
  width: 22px; height: 22px;
  background: var(--coral-tint);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-num {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.meta-divider {
  width: 1px;
  height: 24px;
  background: var(--ink-line-strong);
}

/* Hero device */
.hero-device {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}
.device-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(232, 90, 90, 0.25)) drop-shadow(0 0 40px rgba(248, 113, 113, 0.15));
  position: relative;
  z-index: 2;
}
.device-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(248, 113, 113, 0.4), transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--ink-line-strong);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(24, 25, 29, 0.12);
  z-index: 3;
  max-width: 240px;
  animation: floatCard 8s ease-in-out infinite;
}
.float-1 {
  top: 18%;
  left: -6%;
  animation-delay: 0s;
}
.float-2 {
  bottom: 22%;
  right: -8%;
  animation-delay: -4s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 600;
}
.fc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.fc-desc {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* Ticker */
.ticker {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.4);
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: ticker 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SHARED
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-label.light { color: var(--light-on-dark-mute); }
.section-label.light .label-num { background: rgba(255, 247, 244, 0.08); border-color: rgba(255, 247, 244, 0.15); color: var(--coral); }
.label-num {
  padding: 3px 8px;
  background: var(--cream-soft);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  color: var(--coral-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 32px;
}
.section-title em { color: var(--coral-deep); }
.section-title.light { color: var(--light-on-dark); }
.section-title.light em { color: var(--coral-soft); }

.section-sub {
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.55;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem { padding: 140px 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-card {
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  transition: all 0.3s var(--ease);
}
.problem-card:hover {
  border-color: var(--coral-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 90, 90, 0.08);
}
.card-icon {
  font-size: 32px;
  color: var(--coral-deep);
  margin-bottom: 20px;
  width: 56px; height: 56px;
  background: var(--coral-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 140px 0;
  background: var(--cream-soft);
  position: relative;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-card {
  padding: 40px 32px;
  background: white;
  border: 1px solid var(--ink-line);
  border-radius: 24px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.how-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral-soft);
  box-shadow: 0 16px 48px rgba(232, 90, 90, 0.1);
}
.how-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--coral-deep);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}
.how-icon {
  font-size: 48px;
  color: var(--coral-deep);
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--coral-tint), white);
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.how-desc {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 24px;
}
.how-desc strong { color: var(--ink); font-weight: 600; }
.how-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.how-tags span {
  padding: 5px 10px;
  background: var(--cream-soft);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-mute);
}

/* ============================================
   FEATURES
   ============================================ */
.features { padding: 140px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-tile {
  padding: 28px;
  background: white;
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.feature-tile:hover {
  border-color: var(--coral-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 90, 90, 0.08);
}
.feature-tile.big {
  grid-column: span 2;
}
.feature-tile.dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.feature-tile.dark p { color: var(--light-on-dark-dim); }
.feature-tile.dark .tile-icon {
  background: rgba(248, 113, 113, 0.15);
  color: var(--coral-soft);
}

.tile-icon {
  font-size: 24px;
  color: var(--coral-deep);
  margin-bottom: 16px;
  width: 44px; height: 44px;
  background: var(--coral-tint);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-tile h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.feature-tile p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

.tile-visual { margin-top: 20px; }
.capture-anim {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.capture-blob {
  padding: 9px 14px;
  background: var(--cream-soft);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink);
  animation: blobBob 3s ease-in-out infinite;
}
.blob-2 { animation-delay: 0.5s; }
.blob-3 { animation-delay: 1s; }
@keyframes blobBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.brief-mock {
  margin-top: 18px;
  padding: 14px;
  background: var(--cream-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brief-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.brief-tag {
  padding: 3px 8px;
  background: white;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--coral-deep);
  flex-shrink: 0;
}

.privacy-mock {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 247, 244, 0.05);
  border: 1px solid rgba(255, 247, 244, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--light-on-dark-dim);
}
.privacy-row strong { color: var(--cream); font-weight: 600; }
.privacy-row .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.good { background: #6EE7B7; box-shadow: 0 0 8px #6EE7B7; }
.dot.bad { background: var(--coral); box-shadow: 0 0 8px var(--coral); }

/* ============================================
   SCREENS
   ============================================ */
.screens {
  padding: 140px 0 100px;
  background: var(--cream-soft);
  overflow: hidden;
}

.screens-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.screen-card {
  display: flex;
  flex-direction: column;
}
.screen-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.screen-frame {
  background: linear-gradient(180deg, var(--coral-tint), var(--cream));
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--ink-line);
  transition: all 0.4s var(--ease);
  aspect-ratio: 9 / 19;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.screen-card:hover .screen-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 90, 90, 0.15);
}
.screen-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.screen-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.screen-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who { padding: 140px 0; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.who-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 4px;
  background: var(--coral-deep);
  border-radius: 0 0 4px 0;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.who-card:hover {
  border-color: var(--coral-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 90, 90, 0.08);
}
.who-card:hover::before { transform: translateY(0); }

.who-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.who-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* ============================================
   PRIVACY
   ============================================ */
.privacy {
  padding: 140px 0;
  background: var(--bg-dark);
  color: var(--light-on-dark);
  position: relative;
  overflow: hidden;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy-lead {
  font-size: 18px;
  color: var(--light-on-dark-dim);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.55;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--light-on-dark-dim);
  line-height: 1.55;
}
.privacy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px; height: 22px;
  background: var(--coral);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}
.privacy-list strong { color: var(--cream); font-weight: 600; }

.privacy-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vault {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vault-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(248, 113, 113, 0.4);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.vault-ring-2 {
  inset: 30px;
  border: 1px dashed rgba(248, 113, 113, 0.25);
  animation: rotate 20s linear infinite reverse;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.vault-core {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(248, 113, 113, 0.5);
  z-index: 2;
}
.vault-core img {
  width: 80px; height: 80px;
  border-radius: 20px;
}
.vault-label {
  position: absolute;
  padding: 8px 14px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream);
  white-space: nowrap;
  z-index: 3;
}
.vault-label-1 { top: -5%; left: -5%; }
.vault-label-2 { top: 15%; right: -25%; }
.vault-label-3 { bottom: 15%; left: -20%; }
.vault-label-4 { bottom: -5%; right: -10%; color: var(--coral-soft); border-color: rgba(248, 113, 113, 0.3); }

/* ============================================
   WISHLIST
   ============================================ */
.wishlist {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0F0B0C 100%);
  color: var(--light-on-dark);
  position: relative;
  overflow: hidden;
}
.wishlist-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wishlist .container { position: relative; }

.wishlist-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.wishlist .section-label { justify-content: center; }
.wishlist-sub {
  font-size: 17px;
  color: var(--light-on-dark-dim);
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.55;
}

.slot-progress {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.slot-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--light-on-dark-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.slot-label strong { color: var(--coral); font-weight: 600; }
.slot-bar {
  height: 6px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark);
  border-radius: 100px;
  overflow: hidden;
}
.slot-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep));
  border-radius: 100px;
  transition: width 1s var(--ease-out);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.5);
}

.waitlist-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 247, 244, 0.03);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.step-indicator {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--light-on-dark-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-on-dark);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: block;
  margin-bottom: 16px;
}
.field-label {
  display: block;
  font-size: 13px;
  color: var(--light-on-dark-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.field-label em {
  color: var(--light-on-dark-mute);
  font-size: 12px;
  font-weight: 400;
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 10px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s var(--ease);
  cursor: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23FFF7F4' stroke-opacity='0.6' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.check-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 10px;
  cursor: none;
  transition: all 0.2s var(--ease);
  font-size: 13px;
  color: var(--cream);
}
.check-tile:hover { border-color: var(--coral-soft); }
.check-tile input { display: none; }
.check-tile:has(input:checked) {
  background: rgba(248, 113, 113, 0.15);
  border-color: var(--coral);
  color: var(--coral-soft);
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 7px 14px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 100px;
  cursor: none;
  font-size: 12px;
  transition: all 0.2s var(--ease);
  color: var(--cream);
}
.chip:hover { border-color: var(--coral-soft); }
.chip input { display: none; }
.chip:has(input:checked) {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
  font-weight: 500;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.radio-tile {
  padding: 12px 14px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 10px;
  cursor: none;
  transition: all 0.2s var(--ease);
  font-size: 13px;
  color: var(--cream);
  text-align: center;
}
.radio-tile:hover { border-color: var(--coral-soft); }
.radio-tile input { display: none; }
.radio-tile:has(input:checked) {
  background: rgba(248, 113, 113, 0.15);
  border-color: var(--coral);
  color: var(--coral-soft);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark);
  border-radius: 10px;
  font-size: 13px;
  color: var(--light-on-dark-dim);
  margin-bottom: 12px;
  cursor: none;
  transition: all 0.2s var(--ease);
}
.consent:hover { border-color: var(--line-on-dark-strong); }
.consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  cursor: none;
  accent-color: var(--coral);
  flex-shrink: 0;
}
.consent strong { color: var(--cream); }

.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.btn-next, .btn-submit {
  padding: 13px 24px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  margin-left: auto;
}
.btn-next:hover, .btn-submit:hover {
  background: var(--coral);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-submit {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  color: white;
}

.btn-back {
  padding: 13px 20px;
  background: transparent;
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 100px;
  color: var(--light-on-dark-dim);
  font-size: 14px;
  transition: all 0.2s var(--ease);
}
.btn-back:hover { color: var(--cream); border-color: var(--cream); }

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-mark {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  animation: spin 1s var(--ease-out);
  box-shadow: 0 12px 32px rgba(248, 113, 113, 0.4);
}
.success-mark img { width: 100%; height: 100%; }
@keyframes spin {
  from { transform: rotate(-180deg) scale(0); opacity: 0; }
  to { transform: rotate(0) scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.success-position {
  font-size: 17px;
  color: var(--light-on-dark-dim);
  margin-bottom: 8px;
}
.success-position strong {
  color: var(--coral);
  font-family: var(--font-mono);
  font-weight: 600;
}
.success-desc {
  font-size: 14px;
  color: var(--light-on-dark-mute);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.success-share {
  padding-top: 32px;
  border-top: 1px solid var(--line-on-dark);
}
.success-share p {
  font-size: 14px;
  color: var(--light-on-dark-dim);
  margin-bottom: 16px;
}
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.share-btn {
  padding: 9px 16px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--cream);
  transition: all 0.2s var(--ease);
}
.share-btn:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-on-dark);
  background: #0A0708;
  color: var(--light-on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--light-on-dark-dim);
  line-height: 1.55;
  margin-top: 16px;
  max-width: 280px;
}
.link-inline {
  color: var(--coral);
  border-bottom: 1px dotted var(--coral);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--light-on-dark-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--light-on-dark-dim);
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 13px;
  color: var(--light-on-dark-mute);
}
.footer-legal {
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-device { height: 560px; }
  .float-card { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tile.big { grid-column: span 2; }
  .screens-strip { grid-template-columns: repeat(3, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid { grid-template-columns: 1fr; gap: 60px; }
  .privacy-visual { height: 380px; }
}

@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 100px 20px 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-meta { flex-direction: column; gap: 10px; padding: 16px; }
  .meta-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-tile.big { grid-column: auto; }
  .screens-strip { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .waitlist-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .radio-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .vault-label-2 { right: -10%; }
  .vault-label-3 { left: -5%; }
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px !important; }
  .hero-device { height: 460px; }
  .screens-strip { grid-template-columns: 1fr; }
}
