/* ============================
   Nova — Landing pages shared CSS
   ============================ */
:root {
  --coral:  #E8543A;
  --coralDk:#B83C24;
  --ink:    #1A1A1A;
  --ink2:   #3A3A3F;
  --ink3:   #7A7A82;
  --line:   #E6E1D6;
  --cream:  #FAF7F1;
  --cream2: #F4EFE6;
  --lilac:  #B594F5;
  --lilacDk:#8B6FC9;
  --amber:  #F2B441;
  --green:  #1F8A5B;
  --midnight: #1B1F4D;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.5;
  scroll-behavior: smooth;
}
::selection { background: var(--coral); color: #fff; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.6px; text-transform: uppercase; font-size: 11px; font-weight: 500; }
.grotesk { font-family: 'Space Grotesk', sans-serif; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }

/* ===== ANIMATIONS ===== */
@keyframes float-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes bounce-stamp {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-30px,30px) scale(0.95); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"].in { transition-delay: .08s; }
.reveal[data-delay="2"].in { transition-delay: .16s; }
.reveal[data-delay="3"].in { transition-delay: .24s; }
.reveal[data-delay="4"].in { transition-delay: .32s; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.78);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(250, 247, 241, 0.92); }
.nav.dark { background: rgba(26, 26, 26, 0.78); border-bottom-color: transparent; }
.nav.dark.scrolled { background: rgba(26, 26, 26, 0.92); border-bottom-color: rgba(255,255,255,0.08); }
.nav.dark .nav-links a, .nav.dark .nav-cta .link { color: rgba(255,255,255,0.75); }
.nav.dark .nav-links a:hover, .nav.dark .nav-cta .link:hover { color: #fff; }
.nav-inner { display: flex; align-items: center; gap: 40px; height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo-mark { width: 26px; height: 26px; transition: transform .4s cubic-bezier(.4,1.6,.4,1); }
.logo:hover .logo-mark { transform: rotate(45deg); }
.logo-text { font-family: 'JetBrains Mono', monospace; font-size: 19px; font-weight: 700; letter-spacing: -0.5px; }
.logo-text .dot { color: var(--coral); }
.nav.dark .logo-text { color: #fff; }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a { color: var(--ink2); font-size: 14px; font-weight: 500; transition: color .15s; position: relative; padding: 4px 0; }
.nav-links a.active { color: var(--ink); }
.nav.dark .nav-links a.active { color: #fff; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .link { color: var(--ink); font-size: 14px; font-weight: 600; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border-radius: 12px; border: none; font-size: 14px; font-weight: 600;
  transition: transform .12s cubic-bezier(.4,1.6,.4,1), box-shadow .2s, background .2s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 8px 24px rgba(232,84,58,0.25); }
.btn-coral:hover { background: var(--coralDk); box-shadow: 0 14px 36px rgba(232,84,58,0.35); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.2); }
.btn-lilac { background: var(--lilac); color: #1a1230; box-shadow: 0 10px 26px rgba(181,148,245,0.3); }
.btn-lilac:hover { box-shadow: 0 16px 40px rgba(181,148,245,0.45); }
.btn-white { background: #fff; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn-lg { padding: 16px 24px; font-size: 16px; border-radius: 14px; }
.nav-hamburger { display: none; width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line); background: transparent; align-items: center; justify-content: center; }

/* ===== HERO ===== */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero.compact { padding: 64px 0 64px; }
.hero-blob {
  position: absolute; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  filter: blur(120px); opacity: 0.5;
  animation: blob-drift 16s ease-in-out infinite;
}
.hero-blob.b1 { top: -200px; right: -150px; background: radial-gradient(circle, rgba(232,84,58,0.35), transparent 60%); }
.hero-blob.b2 { bottom: -250px; left: -200px; background: radial-gradient(circle, rgba(181,148,245,0.25), transparent 60%); animation-delay: -8s; animation-duration: 22s; }
.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-grid.center { grid-template-columns: 1fr; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-grid.center .lead { margin-left: auto; margin-right: auto; }
.hero-grid.center .hero-ctas { justify-content: center; }

.eyebrow { color: var(--coral); margin-bottom: 18px; letter-spacing: 2.4px; display: inline-flex; align-items: center; gap: 8px;
  animation: float-up .8s cubic-bezier(.2,.7,.3,1) both;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 3px; background: var(--coral);
  animation: pulse-ring 1.6s ease-out infinite; position: relative;
}
.eyebrow.lilac { color: var(--lilac); }
.eyebrow.lilac::before { background: var(--lilac); }

.hero h1, .hero-h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 600; letter-spacing: -3.6px; line-height: 0.93; margin: 0; color: var(--ink);
  animation: float-up 1s cubic-bezier(.2,.7,.3,1) both; animation-delay: .1s;
}
.hero h1 .accent {
  color: var(--coral); position: relative; display: inline-block;
  background: linear-gradient(120deg, var(--coral) 0%, #FF7A5C 25%, var(--coral) 50%, #FF7A5C 75%, var(--coral) 100%);
  background-size: 200% auto;
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 14px;
  background: rgba(232,84,58,0.18); border-radius: 4px; z-index: -1; transform: skewX(-6deg);
}
.hero h1 .accent.lilac {
  background: linear-gradient(120deg, var(--lilac) 0%, #D4BAFF 50%, var(--lilac) 100%);
  background-size: 200% auto;
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .accent.lilac::after { background: rgba(181,148,245,0.22); }
.hero .lead { font-size: 19px; color: var(--ink2); margin: 28px 0 32px; max-width: 540px; line-height: 1.55;
  animation: float-up 1s cubic-bezier(.2,.7,.3,1) both; animation-delay: .2s; }
.hero.dark .lead { color: rgba(255,255,255,0.75); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 0;
  animation: float-up 1s cubic-bezier(.2,.7,.3,1) both; animation-delay: .3s; }

.hero.dark { background: var(--ink); color: #fff; }
.hero.dark h1, .hero.dark .hero-h1 { color: #fff; }
.hero.dark .hero-blob.b1 { background: radial-gradient(circle, rgba(181,148,245,0.4), transparent 60%); }
.hero.dark .hero-blob.b2 { background: radial-gradient(circle, rgba(232,84,58,0.2), transparent 60%); }

/* Phone mockup */
.hero-phone { position: relative; animation: float-up 1.2s cubic-bezier(.2,.7,.3,1) both; animation-delay: .35s; }
.hero-phone::before {
  content: ''; position: absolute; inset: -80px;
  background: radial-gradient(circle, rgba(232,84,58,0.18), transparent 60%);
  filter: blur(40px); z-index: -1;
}
.phone {
  width: 360px; height: 720px; border-radius: 44px; position: relative;
  background: #000; padding: 11px; margin: 0 auto;
  box-shadow: 0 60px 120px rgba(232,84,58,0.18), 0 30px 60px rgba(0,0,0,0.25);
  animation: float-y 6s ease-in-out infinite;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--cream); position: relative;
}
.phone .island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; border-radius: 13px; background: #000; z-index: 20; }
.phone-statusbar { position: absolute; top: 0; left: 0; right: 0; height: 44px;
  display: flex; justify-content: space-between; align-items: flex-end; padding: 0 22px 8px;
  color: var(--ink); font-size: 13px; font-weight: 600; z-index: 10; }
.phone-content { position: absolute; inset: 44px 0 0; padding: 16px 20px; }
.phone-app-header { display: flex; justify-content: space-between; align-items: center; }
.phone-app-header .greet { font-size: 11px; color: var(--ink3); font-weight: 600; }
.phone-app-header .place { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -0.5px; margin-top: 2px; }
.phone-app-header .avatar { width: 36px; height: 36px; border-radius: 18px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }

.loyalty-card {
  margin-top: 18px; padding: 16px; border-radius: 20px;
  background: var(--coral); color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 14px 30px rgba(232,84,58,0.3);
}
.loyalty-card .mark { position: absolute; right: -10px; top: -18px; opacity: 0.12;
  animation: rotate-slow 30s linear infinite; }
.loyalty-card .label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; opacity: 0.85; letter-spacing: 0.6px; text-transform: uppercase; }
.loyalty-card .title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.6px; margin-top: 2px; }
.loyalty-card .progress { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; background: rgba(0,0,0,0.2); padding: 4px 8px; border-radius: 999px; }
.loyalty-row { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 14px; position: relative; z-index: 1; }
.stamp { aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,0.18);
  border: 1.5px dashed rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center;
  color: var(--coral); font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.stamp.full { background: #fff; border: none; animation: bounce-stamp .6s cubic-bezier(.4,1.6,.4,1) both; }
.stamp.full:nth-child(1) { animation-delay: .8s; }
.stamp.full:nth-child(2) { animation-delay: .92s; }
.stamp.full:nth-child(3) { animation-delay: 1.04s; }
.stamp.full:nth-child(4) { animation-delay: 1.16s; }
.stamp.full:nth-child(5) { animation-delay: 1.28s; }
.stamp.full:nth-child(6) { animation-delay: 1.4s; }
.stamp.full:nth-child(7) { animation-delay: 1.52s; }
.stamp.full::after { content: '★'; font-size: 14px; }

.phone-cards-mini { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mini-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  animation: float-up .8s cubic-bezier(.2,.7,.3,1) both;
}
.mini-card:nth-child(1) { animation-delay: 1.6s; }
.mini-card:nth-child(2) { animation-delay: 1.75s; }
.mini-card .avatar { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; }
.mini-card .meta { flex: 1; min-width: 0; }
.mini-card .meta .n { font-size: 12px; font-weight: 600; }
.mini-card .meta .s { font-size: 10px; color: var(--ink3); font-family: 'JetBrains Mono', monospace; }
.mini-card .pill { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; }

.phone-notif {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 10px;
  z-index: 2; animation: float-up 1s cubic-bezier(.2,.7,.3,1) both;
}
.phone-notif .dot { width: 28px; height: 28px; border-radius: 14px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; font-size: 14px; }
.phone-notif .text .t { font-size: 12px; font-weight: 700; }
.phone-notif .text .s { font-size: 10px; color: var(--ink3); font-family: 'JetBrains Mono', monospace; }
.phone-notif.left  { top: 110px; left: -60px;
  animation-delay: 1.2s, 0s; animation-name: float-up, float-y; animation-duration: 1s, 5s;
  animation-iteration-count: 1, infinite; animation-fill-mode: both; }
.phone-notif.right { bottom: 90px; right: -50px;
  animation-delay: 1.4s, 0s; animation-name: float-up, float-y; animation-duration: 1s, 6s;
  animation-iteration-count: 1, infinite; animation-fill-mode: both; animation-direction: normal, alternate; }

/* ===== EARLY BADGE ===== */
.early-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 6px 14px 6px 6px;
  border-radius: 999px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  margin-bottom: 18px;
  animation: float-up .8s cubic-bezier(.2,.7,.3,1) both;
}
.early-badge .pip { background: var(--coral); color: #fff; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.hero.dark .early-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 80px 0; }
.section.dark { background: var(--ink); color: #fff; overflow: hidden; }
.section.dark .dark-blob {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  filter: blur(140px); opacity: 0.4;
  animation: blob-drift 20s ease-in-out infinite;
}
.section.dark .dark-blob.b1 { top: -100px; right: -100px; background: rgba(181,148,245,0.6); }
.section.dark .dark-blob.b2 { bottom: -200px; left: -150px; background: rgba(232,84,58,0.3); animation-delay: -10s; }
.section-eyebrow { color: var(--coral); margin-bottom: 16px; }
.section.dark .section-eyebrow { color: var(--lilac); }
.section h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  letter-spacing: -2.4px; line-height: 1; margin: 0 0 20px; color: var(--ink); }
.section.dark h2 { color: #fff; }
.section .lead { font-size: 17px; color: var(--ink2); max-width: 640px; margin: 0 0 56px; line-height: 1.55; }
.section.dark .lead { color: rgba(255,255,255,0.7); }

/* Steps grid */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 36px; position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s;
  overflow: hidden;
}
.step::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,84,58,0.08), transparent 60%);
  transition: opacity .4s;
}
.step:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: rgba(232,84,58,0.25); }
.step:hover::before { opacity: 1; }
.step.coral { background: var(--coral); color: #fff; border: none; box-shadow: 0 20px 50px rgba(232,84,58,0.2); }
.step.coral:hover { box-shadow: 0 30px 70px rgba(232,84,58,0.35); }
.step.coral::before { display: none; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 64px; letter-spacing: -3px; line-height: 0.9; color: var(--coral); margin-bottom: 24px; opacity: 0.95; }
.step.coral .step-num { color: rgba(255,255,255,0.4); }
.step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.6px; margin: 0 0 10px; }
.step p { font-size: 14px; color: var(--ink2); margin: 0; line-height: 1.55; }
.step.coral p { color: rgba(255,255,255,0.88); }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: transform .4s cubic-bezier(.4,1.6,.4,1);
}
.step:hover .step-icon { transform: rotate(-8deg) scale(1.08); }
.step.coral .step-icon { background: rgba(0,0,0,0.18); }
.step-deco { position: absolute; right: 24px; top: 24px; opacity: 0.1; pointer-events: none;
  animation: rotate-slow 40s linear infinite;
}

/* ===== ROUTE CARDS (home page) ===== */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route {
  position: relative; padding: 36px; border-radius: 28px;
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; min-height: 480px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
}
.route:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.route.coral { background: var(--coral); color: #fff; border: none; box-shadow: 0 20px 50px rgba(232,84,58,0.2); }
.route.coral:hover { box-shadow: 0 36px 80px rgba(232,84,58,0.35); }
.route.ink { background: var(--ink); color: #fff; border: none; }
.route.ink:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
.route .for-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.2px; opacity: 0.6; margin-bottom: 16px; text-transform: uppercase; }
.route .for-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; background: var(--cream);
}
.route.coral .for-icon, .route.ink .for-icon { background: rgba(255,255,255,0.12); }
.route h3 { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 600; letter-spacing: -1.2px; line-height: 1.05; margin: 0 0 14px; }
.route p { font-size: 15px; line-height: 1.55; margin: 0 0 24px; opacity: 0.85; flex: 1; }
.route ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.route ul li { font-size: 13px; display: flex; gap: 10px; align-items: flex-start; opacity: 0.9; }
.route ul li::before { content: '+'; font-family: 'JetBrains Mono', monospace; font-weight: 700; opacity: 0.5; flex: 0 0 auto; }
.route .go { display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; padding: 12px 16px; border-radius: 12px;
  background: var(--ink); color: #fff;
  align-self: flex-start; transition: gap .2s;
}
.route.coral .go { background: #fff; color: var(--coral); }
.route.ink .go { background: var(--lilac); color: #1a1230; }
.route:hover .go { gap: 14px; }
.route .deco {
  position: absolute; right: -40px; bottom: -40px; opacity: 0.06;
  animation: rotate-slow 40s linear infinite; pointer-events: none;
}

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card { background: #fff; border: 1.5px solid var(--line); border-radius: 32px; padding: 40px; position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.price-card.featured { background: var(--ink); color: #fff; border: none; box-shadow: 0 24px 50px rgba(0,0,0,0.15); }
.price-card.featured::before {
  content: ''; position: absolute; inset: 0; border-radius: 32px;
  background: linear-gradient(135deg, rgba(232,84,58,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.price-card.featured:hover { box-shadow: 0 36px 80px rgba(0,0,0,0.25); }
.price-card.featured .tier { color: rgba(255,255,255,0.7); }
.price-card.featured .price { color: #fff; }
.price-card.featured .feature { color: rgba(255,255,255,0.85); }
.price-card .badge-pop { position: absolute; top: -14px; right: 32px;
  background: var(--coral); color: #fff; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.6px;
  box-shadow: 0 8px 20px rgba(232,84,58,0.4);
  animation: float-y 3s ease-in-out infinite;
}
.price-card .tier { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.price-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-card .price { font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 600; letter-spacing: -3.5px; line-height: 1; color: var(--ink); }
.price-card .per { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink3); }
.price-card.featured .per { color: rgba(255,255,255,0.6); }
.price-card .desc { font-size: 14px; color: var(--ink2); margin: 10px 0 26px; }
.price-card.featured .desc { color: rgba(255,255,255,0.7); }
.price-card hr { border: 0; border-top: 1px solid var(--line); margin: 0 0 24px; }
.price-card.featured hr { border-color: rgba(255,255,255,0.15); }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.feature { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.4; }
.feature .ck { color: var(--green); flex: 0 0 auto; margin-top: 1px; }
.price-card.featured .feature .ck { color: var(--lilac); }
.price-cta { display: block; width: 100%; padding: 16px; border-radius: 14px;
  text-align: center; font-size: 14px; font-weight: 700; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.price-cta:hover { transform: translateY(-2px); }
.price-cta.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.price-cta.ghost:hover { background: var(--ink); color: #fff; }
.price-cta.coral { background: var(--coral); color: #fff; box-shadow: 0 12px 30px rgba(232,84,58,0.3); }
.price-cta.coral:hover { box-shadow: 0 16px 40px rgba(232,84,58,0.45); }
.pricing-note {
  margin: 56px auto 0; max-width: 760px;
  background: var(--coral); color: #fff; border-radius: 24px; padding: 28px 36px;
  display: flex; gap: 28px; align-items: center; position: relative; overflow: hidden;
  box-shadow: 0 24px 50px rgba(232,84,58,0.22);
}
.pricing-note::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.08); animation: rotate-slow 30s linear infinite;
}
.pricing-note-math { font-family: 'Space Grotesk', sans-serif; font-size: 64px; font-weight: 600; letter-spacing: -2.5px; line-height: 1; flex: 0 0 auto; position: relative; z-index: 1; }
.pricing-note-text { font-size: 14px; line-height: 1.5; position: relative; z-index: 1; }
.pricing-note-text .mono { color: rgba(255,255,255,0.75); }

/* Callout */
.callout {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 40px;
  display: flex; gap: 28px; align-items: center; margin-top: 56px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  transition: transform .4s, box-shadow .4s;
}
.callout:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.callout .icon { width: 60px; height: 60px; border-radius: 16px; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(232,84,58,0.3);
}
.callout h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.5px; margin: 0 0 6px; }
.callout p { font-size: 14px; color: var(--ink2); margin: 0; line-height: 1.55; }

/* Creators bullets */
.creators-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.creators-bullets { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.creators-bullet { display: flex; gap: 18px; align-items: flex-start; padding: 14px; border-radius: 14px; transition: background .3s; }
.creators-bullet:hover { background: rgba(255,255,255,0.03); }
.creators-bullet .num { width: 44px; height: 44px; border-radius: 12px;
  background: rgba(181,148,245,0.16); color: var(--lilac);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; flex: 0 0 auto;
  transition: transform .3s cubic-bezier(.4,1.6,.4,1);
}
.creators-bullet:hover .num { transform: rotate(-6deg) scale(1.06); }
.creators-bullet h4 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; letter-spacing: -0.4px; margin: 0 0 4px; color: #fff; }
.creators-bullet p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }

.creators-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px; padding: 36px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.creators-form::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,148,245,0.2), transparent 70%);
  pointer-events: none;
}
.creators-form h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.6px; margin: 0 0 6px; position: relative; color: #fff; }
.creators-form .form-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0 0 26px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; position: relative; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 500; }
.form-input, .form-textarea {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 13px 14px; color: #fff;
  font-family: inherit; font-size: 14px; outline: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--lilac); background: rgba(181,148,245,0.06); transform: translateY(-1px); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-submit {
  background: var(--lilac); color: #1a1230; border: none;
  width: 100%; padding: 16px; border-radius: 14px;
  font-size: 14px; font-weight: 700; margin-top: 8px; position: relative;
  transition: filter .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 14px 30px rgba(181,148,245,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(181,148,245,0.5); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 14px; line-height: 1.5; text-align: center; position: relative; }

/* CTA Banner */
.cta-banner { padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner-inner {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a2e 100%);
  border-radius: 36px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner-inner::before {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,58,0.3), transparent 60%);
  filter: blur(60px); animation: blob-drift 18s ease-in-out infinite;
}
.cta-banner-inner::after {
  content: ''; position: absolute; bottom: -200px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,148,245,0.2), transparent 60%);
  filter: blur(60px); animation: blob-drift 22s ease-in-out infinite reverse;
}
.cta-banner h2 { color: #fff; position: relative; margin: 0 auto 16px; max-width: 800px; }
.cta-banner .lead { color: rgba(255,255,255,0.75); margin: 0 auto 36px; position: relative; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 26px; margin-bottom: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(232,84,58,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.3px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 500;
  color: var(--coral); transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 14px 0 0; }

/* ===== APP STORE BUTTONS ===== */
.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px;
  background: var(--ink); color: #fff; border-radius: 14px;
  transition: transform .2s, box-shadow .2s;
}
.app-store:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.2); }
.app-store .lbl { line-height: 1.1; }
.app-store .lbl .small { font-size: 10px; opacity: 0.7; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.6px; text-transform: uppercase; }
.app-store .lbl .big { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: -0.4px; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer .logo-text { color: #fff; }
.footer p.tag { font-size: 14px; max-width: 320px; margin: 16px 0 24px; line-height: 1.55; }
.footer .socials { display: flex; gap: 10px; }
.footer .soc-btn { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer .soc-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.footer h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .15s, transform .15s; display: inline-block; }
.footer ul a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom .made { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .nav-inner { height: 60px; gap: 12px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta .link { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1, .hero-h1 { font-size: 48px; letter-spacing: -2px; }
  .hero .lead { font-size: 16px; margin: 20px 0 24px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .phone { width: 320px; height: 640px; }
  .phone-notif { display: none; }
  .section { padding: 72px 0; }
  .section h2 { font-size: 38px; letter-spacing: -1.6px; }
  .section .lead { margin-bottom: 36px; font-size: 16px; }
  .steps, .routes { grid-template-columns: 1fr; }
  .step { padding: 28px; }
  .step-num { font-size: 48px; margin-bottom: 16px; }
  .route { min-height: auto; padding: 28px; }
  .route h3 { font-size: 24px; }
  .pricing { grid-template-columns: 1fr; }
  .price-card { padding: 28px; }
  .price-card .price { font-size: 52px; }
  .pricing-note { flex-direction: column; align-items: flex-start; padding: 24px; text-align: left; }
  .pricing-note-math { font-size: 48px; }
  .creators-grid { grid-template-columns: 1fr; gap: 40px; }
  .creators-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .callout { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cta-banner-inner { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .phone { width: 280px; height: 580px; transform: scale(0.95); transform-origin: top center; }
}
