:root {
  --paper: #fff9f2;
  --paper-2: #f3eee8;
  --ink: #1c1921;
  --ink-soft: #635f6c;
  --ink-mute: #a39eae;
  --line: #efe8e0;
  --white: #ffffff;
  --pick: #7c4dff;
  --due: #ff5252;
  --due-soft: #ffebee;
  --soon: #ff9100;
  --soon-soft: #fff3e0;
  --later-soft: #f3e5f5;
  --ready: #00bfa5;
  --ready-soft: #e0f2f1;
  --grad: linear-gradient(9deg, #ff6b6b 25%, #e040fb 50%, #7c4dff 75%);
  --shadow: 0 8px 10px rgba(224, 64, 251, 0.07);
  --shadow-lg: 0 40px 80px rgba(28, 25, 33, 0.18);
  --radius: 16px;
  --font-display: "Outfit", "Helvetica Neue", sans-serif;
  --font-sans: "DM Sans", "Helvetica Neue", sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--pick); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
}

p { margin: 0; }

.wrap { width: min(1180px, calc(100% - 2.4rem)); margin: 0 auto; }
.wrap-narrow { width: min(42rem, calc(100% - 2.4rem)); margin: 0 auto; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="late"].in { transition-delay: 0.12s; }
[data-reveal="last"].in { transition-delay: 0.24s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.mark {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  background: var(--grad);
  display: block;
  flex: none;
}

.links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 650;
}
.links a { color: var(--ink-soft); }
.links a:hover { color: var(--ink); text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 52px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-pick { background: var(--grad); color: #fff; box-shadow: 0 12px 28px rgba(124, 77, 255, 0.28); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.btn-sm { min-height: 42px; padding: 8px 16px; font-size: 14px; }
.nav-cta { color: #fff !important; }

.hero {
  position: relative;
  padding: 1.2rem 0 3.5rem;
  isolation: isolate;
}

.mesh {
  position: absolute;
  inset: -10% -20% auto;
  height: 70%;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 107, 107, 0.35), transparent 42%),
    radial-gradient(circle at 75% 20%, rgba(124, 77, 255, 0.32), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(224, 64, 251, 0.22), transparent 38%);
  filter: blur(8px);
  z-index: -1;
  animation: mesh 16s ease-in-out infinite alternate;
}

@keyframes mesh {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.06); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.4rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pick);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ready);
  box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(0, 191, 165, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.94;
  margin-bottom: 1.15rem;
}

.lede { color: var(--ink-soft); font-size: 1.18rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }
.hero-note { margin-top: 1.05rem; color: var(--ink-mute); font-size: 0.92rem; }

.phone-stage {
  perspective: 1200px;
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-lg);
  width: 210px;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite;
}
.float-card.one { top: 8%; left: 0; }
.float-card.two { bottom: 12%; right: 0; animation-delay: -2s; }
.float-card b { display: block; font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 0.2rem; }
.float-card span { color: var(--ink-soft); font-size: 0.78rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone {
  position: relative;
  width: 300px;
  background: #0d0b10;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
}

.phone-screen {
  display: none;
  background: var(--paper);
  border-radius: 30px;
  overflow: hidden;
  min-height: 580px;
}
.phone-screen.on { display: block; }

.notch {
  width: 108px;
  height: 24px;
  background: #0d0b10;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}

.phone-city {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper-2);
  padding: 4px 8px;
  border-radius: 999px;
}

.composer, .mini-card, .mini-merge {
  margin: 0 12px 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.composer { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.mini-card h3, .mini-merge h3 { font-size: 13px; margin-bottom: 4px; }
.mini-meta { display: flex; gap: 6px; margin-bottom: 6px; }
.why { font-size: 11.5px; color: var(--ink-soft); line-height: 1.35; }
.mini-merge { background: linear-gradient(180deg, #faf5ff, #fff); outline: 1.5px solid #eadbff; }
.save { color: var(--ready); font-weight: 700; font-size: 11.5px; margin-top: 4px; }

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
}
.chip.due { background: var(--due-soft); color: var(--due); }
.chip.soon { background: var(--soon-soft); color: var(--soon); }
.chip.later { background: var(--later-soft); color: var(--pick); }
.chip.ready { background: var(--ready-soft); color: var(--ready); }

.plan-btn {
  margin: 4px 12px 16px;
  background: var(--grad);
  color: #fff;
  text-align: center;
  border-radius: 22px;
  padding: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
}
.demo-tabs button {
  border: 0;
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
}
.demo-tabs button.on { background: var(--ink); color: #fff; }

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-weight: 700;
  color: var(--ink-mute);
  font-size: 0.92rem;
}
.marquee-track span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 3.2rem 0 0;
}
.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
}
.stat p { color: var(--ink-soft); font-size: 0.95rem; }

.section { padding: 5.2rem 0; }
.section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.section .lede { margin-bottom: 2.3rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.step {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  min-height: 210px;
}
.num {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); }

.band {
  background: #120f16;
  color: #fff;
  padding: 5.4rem 0;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
  background: var(--grad);
  filter: blur(80px);
  opacity: 0.28;
}
.band h2, .band .kicker { position: relative; }
.band h2 { color: #fff; }
.band .lede { color: rgba(255,255,255,0.7); position: relative; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }

.route {
  width: 100%;
  height: auto;
  display: block;
}
.route .line {
  fill: none;
  stroke: url(#routeGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 3.2s ease forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.quote {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.45rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.quote strong { display: block; margin-bottom: 0.5rem; font-family: var(--font-display); font-size: 1.05rem; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature {
  background: var(--white);
  border-radius: 20px;
  padding: 1.45rem 1.35rem;
  box-shadow: var(--shadow);
}
.feature .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad);
  margin-bottom: 0.9rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feature p { color: var(--ink-soft); }

.cities {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.8rem;
}
.city {
  border-radius: 22px;
  min-height: 170px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--ink) center/cover;
  position: relative;
  overflow: hidden;
}
.city.live { background: linear-gradient(160deg, #2a1540, #7c4dff); min-height: 360px; grid-row: span 2; }
.city.us { background: linear-gradient(160deg, #1c1921, #635f6c); }
.city.in { background: linear-gradient(160deg, #3b0d2a, #ff6b6b); }
.city b { font-family: var(--font-display); font-size: 1.35rem; }
.city span { opacity: 0.85; font-size: 0.9rem; }

.cta-shell {
  background: var(--grad);
  border-radius: 32px;
  padding: 3.4rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-shell h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 0.7rem; }
.cta-shell .lede { color: rgba(255,255,255,0.88); margin: 0 auto 1.6rem; }
.cta-shell .btn-ghost { border-color: transparent; }

.faq { display: grid; gap: 0.75rem; }
details {
  background: var(--white);
  border-radius: 16px;
  padding: 1.05rem 1.2rem;
  box-shadow: var(--shadow);
}
summary { font-family: var(--font-display); font-weight: 800; cursor: pointer; }
details p { color: var(--ink-soft); margin-top: 0.55rem; }

.site-footer {
  margin-top: auto;
  background: #0d0b10;
  color: rgba(255,255,255,0.68);
  padding: 3.4rem 0 1.5rem;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.site-footer .brand { color: #fff; margin-bottom: 0.7rem; }
.site-footer h3 {
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer a { color: rgba(255,255,255,0.68); display: block; margin: 0.4rem 0; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.6rem; }
.legal-page .meta { color: var(--ink-soft); margin-bottom: 1.6rem; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 0.55rem; }
.legal-page p + p, .legal-page ul { margin-top: 0.75rem; }
.legal-page ul { padding-left: 1.2rem; color: var(--ink-soft); }
.legal-page li { margin: 0.35rem 0; }

.hide-mobile { display: flex; }

@media (max-width: 900px) {
  .hero-grid, .split, .steps, .features, .foot-grid, .stats, .cities { grid-template-columns: 1fr; }
  .city.live { min-height: 220px; grid-row: auto; }
  .hero { padding-top: 0.6rem; }
  .phone-stage { min-height: 0; margin-top: 1rem; }
  .float-card { display: none; }
  .hide-mobile { display: none; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .mesh, .marquee-track, .float-card, .pulse, .route .line, [data-reveal] {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
