@font-face {
  font-family: 'Archivo Expanded';
  src: url('/assets/archivo-ExpandedExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo SemiExpanded';
  src: url('/assets/archivo-SemiExpandedBlack.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #060607;
  --surface: #131316;
  --surface-2: #1a1a1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f7f8;
  --text-2: rgba(235, 235, 245, 0.64);
  --text-3: rgba(235, 235, 245, 0.4);
  --ember-1: #ff8a3d;
  --ember-2: #ff5a1f;
  --ember-3: #f0206a;
  --accent: #ff6224;
  --volt: #d6ff3d;
  --ember: linear-gradient(120deg, var(--ember-1), var(--ember-2) 45%, var(--ember-3));
  --radius: 28px;
  --display: 'Archivo Expanded', 'SF Pro Display', system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
}
.skip:focus {
  left: 16px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Ambient ember light, the same bloom that sits behind every screen in the app */
.glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 900px;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 18% 0%, rgba(255, 90, 31, 0.34), transparent 70%),
    radial-gradient(45% 45% at 100% 8%, rgba(240, 32, 106, 0.2), transparent 70%);
  z-index: 0;
}

/* Nav: the floating capsule from the app's tab bar */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(var(--max), calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(19, 19, 22, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.nav-links {
  display: flex;
  gap: 2px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.2), box-shadow 0.2s, opacity 0.2s;
  font-family: var(--body);
}
.btn:active {
  transform: scale(0.97);
}
.btn-ember {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 10px 40px -12px rgba(255, 90, 31, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ember:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px -12px rgba(255, 90, 31, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}
.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 15px;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px 0 20px;
  border-radius: 18px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.store:hover {
  transform: translateY(-2px);
}
.store svg {
  width: 28px;
  height: 28px;
}
.store small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.store strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Scan-to-download tile, desktop only */
.qr {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-2);
}
.qr img {
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 900px), (hover: none) {
  .qr {
    display: none;
  }
}

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.pill b {
  background: var(--volt);
  color: #0b0b0e;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(44px, 8.4vw, 104px);
}
h2 {
  font-size: clamp(34px, 5.2vw, 64px);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--text-2);
  max-width: 620px;
  margin: 22px auto 0;
}
.grad {
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.volt {
  color: var(--volt);
}
.muted {
  color: var(--text-2);
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 40px;
  text-align: center;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-top: 26px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
}
.fine {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
}

.phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin: 70px auto 0;
  max-width: 980px;
  height: clamp(420px, 62vw, 700px);
}
.phones::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -40px;
  height: 180px;
  background: radial-gradient(50% 60% at 50% 50%, rgba(255, 90, 31, 0.45), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.phone {
  position: relative;
  width: clamp(190px, 29vw, 320px);
  aspect-ratio: 1320 / 2868;
  border-radius: clamp(30px, 4.6vw, 52px);
  padding: clamp(6px, 0.9vw, 10px);
  background: linear-gradient(160deg, #3a3a40, #121214 40%, #2a2a2e);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex: none;
}
.phone img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: clamp(24px, 3.8vw, 43px);
}
.phone.side {
  width: clamp(160px, 24vw, 270px);
  opacity: 0.9;
}
.phone.left {
  transform: translateX(22%) rotate(-7deg) translateY(4%);
  z-index: 1;
}
.phone.right {
  transform: translateX(-22%) rotate(7deg) translateY(4%);
  z-index: 1;
}
.phone.center {
  z-index: 2;
}

/* Marquee */
.marquee {
  margin-top: 90px;
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--display);
  font-size: 20px;
  color: var(--text-3);
  white-space: nowrap;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 44px;
  color: var(--accent);
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
section {
  position: relative;
  padding: 120px 0 0;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head h2 {
  margin-top: 16px;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 60%), var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.card p {
  color: var(--text-2);
  margin: 10px 0 0;
  font-size: 16px;
}
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 98, 36, 0.14);
  color: var(--accent);
  margin-bottom: 18px;
}
.card .icon svg {
  width: 22px;
  height: 22px;
}
.span-4 {
  grid-column: span 4;
}
.span-3 {
  grid-column: span 3;
}
.span-2 {
  grid-column: span 2;
}
.feature-shot {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: end;
  padding-bottom: 0;
}
.feature-shot .copy {
  align-self: center;
  padding-bottom: 30px;
}
.shot-crop {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 34px 34px 0 0;
  overflow: hidden;
  border: 6px solid #222226;
  border-bottom: 0;
  max-height: 420px;
  box-shadow: 0 -20px 60px -20px rgba(255, 90, 31, 0.35);
}
.shot-crop img {
  width: 100%;
}
.card.tall {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.card.tall .shot-crop {
  margin-top: 26px;
  max-height: 360px;
}
.card.glow-card {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(255, 90, 31, 0.28), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(240, 32, 106, 0.16), transparent 70%),
    var(--surface);
}
.stat {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-2);
}
.chip.on {
  background: var(--volt);
  color: #0b0b0e;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  counter-increment: step;
}
.step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 26px;
  top: 22px;
  font-family: var(--display);
  font-size: 44px;
  color: rgba(255, 255, 255, 0.06);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  display: flex;
  flex-direction: column;
}
.plan.pro {
  border: 1.5px solid rgba(255, 98, 36, 0.6);
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(255, 90, 31, 0.24), transparent 60%),
    var(--surface);
}
.price {
  font-family: var(--display);
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 18px;
}
.price small {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-2);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
  color: var(--text-2);
  font-size: 16px;
}
.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan li::before {
  content: '';
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f7f8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.plan.pro li::before {
  background-color: var(--volt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0b0e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}
.plan .btn {
  margin-top: auto;
}
.save {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--volt);
  color: #0b0b0e;
  letter-spacing: 0.02em;
}
.toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  margin: 0 auto 28px;
}
.toggle button {
  font: 600 15px var(--body);
  color: var(--text-2);
  background: transparent;
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.toggle button[aria-pressed='true'] {
  background: var(--ember);
  color: #fff;
}
.center {
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0 24px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: 26px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin: 0 0 22px;
  color: var(--text-2);
}

/* Final CTA */
.final {
  margin-top: 120px;
  border-radius: 40px;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 90% at 50% 120%, rgba(255, 90, 31, 0.55), transparent 70%),
    radial-gradient(40% 60% at 90% 0%, rgba(240, 32, 106, 0.3), transparent 70%),
    var(--surface);
  border: 1px solid var(--border);
}
.final img.mark {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  margin: 0 auto 28px;
  box-shadow: 0 20px 60px -10px rgba(255, 90, 31, 0.6);
}

/* Footer */
footer {
  padding: 60px 0 50px;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 14px;
}
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}
.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.foot a {
  text-decoration: none;
  color: var(--text-2);
}
.foot a:hover {
  color: var(--text);
}

/* Document pages (privacy, terms, support) */
.doc {
  position: relative;
  padding: 140px 0 0;
}
.doc .wrap {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.doc h1 {
  font-size: clamp(40px, 7vw, 68px);
  margin-top: 14px;
}
.doc .updated {
  color: var(--text-3);
  margin-top: 14px;
}
.doc h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 44px 0 10px;
}
.doc p,
.doc li {
  color: var(--text-2);
}
.doc ul {
  padding-left: 20px;
}
.doc a {
  color: var(--accent);
}

/* Support form */
.form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
}
.form input,
.form textarea,
.form select {
  font: 500 17px var(--body);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px 16px;
  width: 100%;
  appearance: none;
}
.form textarea {
  min-height: 150px;
  resize: vertical;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 98, 36, 0.18);
}
.hp {
  position: absolute;
  left: -9999px;
}
.status {
  min-height: 24px;
  font-weight: 600;
}
.status.ok {
  color: var(--volt);
}
.status.err {
  color: #ff6b6b;
}

/* Reveal on scroll */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .span-4,
  .span-3,
  .span-2 {
    grid-column: span 6;
  }
  .feature-shot {
    grid-template-columns: 1fr;
  }
  .feature-shot .copy {
    padding-bottom: 0;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 120px;
  }
  .phones {
    height: auto;
    margin-top: 50px;
  }
  .phone.side {
    display: none;
  }
  .phone.center {
    width: min(78vw, 320px);
  }
  section {
    padding-top: 90px;
  }
  .card {
    padding: 24px;
  }
  .final {
    padding: 64px 20px;
    border-radius: 30px;
  }
}
