:root {
  --bg: #0a0b0c;
  --panel: #141618;
  --border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --faint: rgba(255, 255, 255, 0.4);
  --cyan: #00dcce;
  --cyan-ink: #06201e;
}

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

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

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* soft cyan glow behind the top of the page */
body::before {
  content: '';
  position: fixed;
  top: -360px;
  left: 50%;
  width: 900px;
  height: 900px;
  max-width: 130vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px;
}
.wrap-wide {
  max-width: 1080px;
}

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

/* ---- header ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.brand:hover {
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: none;
}
.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}

/* ---- hero ---- */
.hero {
  padding: 58px 0 30px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 6.2vw, 60px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 .dim {
  color: var(--muted);
}
.hero p.lead {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
}

.cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #16181a;
  color: var(--text);
}
.store-badge:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.16);
}
.store-badge svg {
  width: 22px;
  height: 22px;
}
.store-badge .badge-copy {
  text-align: left;
  line-height: 1.15;
}
.store-badge .badge-small {
  display: block;
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.02em;
}
.store-badge .badge-big {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.cta-note {
  font-size: 13px;
  color: var(--faint);
}

/* ---- features ---- */
.features {
  padding: 42px 0 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px 23px;
}
.feature h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature p {
  font-size: 14.5px;
  color: var(--muted);
}
.feature .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  margin-right: 9px;
  vertical-align: middle;
}

/* ---- footer ---- */
.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding: 26px 0 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--faint);
}

/* ---- legal / long-form pages ---- */
.legal {
  padding: 14px 0 10px;
}
.legal .back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: 8px 0 26px;
}
.legal h1 {
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.legal .updated {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--faint);
}
.legal h2 {
  margin-top: 34px;
  font-size: 18px;
  font-weight: 700;
}
.legal p,
.legal li {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}
.legal ul {
  margin-top: 6px;
  padding-left: 20px;
}
.legal li {
  margin-top: 7px;
}
.legal strong {
  color: var(--text);
  font-weight: 600;
}
.legal a {
  text-decoration: underline;
}
.legal .intro {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted);
}

/* support quick-help cards */
.help-grid {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.help-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.help-card h3 {
  font-size: 15.5px;
  font-weight: 700;
}
.help-card p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* ---- contact form ---- */
.contact-card {
  margin-top: 24px;
  background: linear-gradient(180deg, rgba(0, 220, 206, 0.07), rgba(0, 220, 206, 0.015));
  border: 1px solid rgba(0, 220, 206, 0.2);
  border-radius: 20px;
  padding: 26px;
  max-width: 560px;
}
.contact-card p.sub {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--muted);
}
.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #16181a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 220, 206, 0.55);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.btn-submit {
  justify-self: start;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan-ink);
  background: var(--cyan);
  border: none;
  border-radius: 12px;
  padding: 13px 26px;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.05s ease;
}
.btn-submit:hover {
  opacity: 0.92;
}
.btn-submit:active {
  transform: scale(0.98);
}
.btn-submit:disabled {
  opacity: 0.55;
  cursor: default;
}
.form-status {
  font-size: 14px;
  min-height: 1px;
}
.form-status.ok {
  color: var(--cyan);
}
.form-status.err {
  color: #ff8d8d;
}
.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ---- responsive ---- */
@media (min-width: 720px) {
  .wrap {
    padding: 0 32px;
  }
  .site-header {
    padding: 30px 0 12px;
  }
  .hero {
    padding: 92px 0 48px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 52px;
  }
  .help-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal {
    padding-top: 22px;
  }
}

/* ---- header CTA ---- */
.header-cta {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--cyan-ink);
  background: var(--cyan);
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  transition: filter 0.13s ease;
}
.header-cta:hover { filter: brightness(1.07); text-decoration: none; }

/* Small screens: the three header items collide, so keep only the brand + the
   App Store CTA (Creator Program / Support live in the footer + mid-page band). */
@media (max-width: 560px) {
  .site-header { padding: 20px 0 10px; }
  .header-links { gap: 0; }
  .header-link { display: none; }
  .header-cta { font-size: 13px; padding: 9px 15px; }
  .creator-band { padding: 24px 22px; gap: 16px; }
  .creator-cta { width: 100%; text-align: center; }
}

/* ---- scroll reveals ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- hero product visual: live scan-card recreation ---- */
.scan-visual { margin: 64px auto 0; max-width: 560px; }
.scan-card {
  background: linear-gradient(180deg, #121516, #0d1010);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 26px 26px 22px;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
  text-align: left;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .scan-card { animation: none; } .reveal { transition: none; opacity: 1; transform: none; } }
.scan-head { display: flex; align-items: center; gap: 14px; }
.scan-logo { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255, 255, 255, 0.1); }
.scan-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.scan-title { font-size: 19px; font-weight: 800; margin-top: 2px; }
.scan-ring { position: relative; width: 84px; height: 84px; margin-left: auto; }
.scan-ring svg { width: 100%; height: 100%; }
.ring-arc { stroke-dasharray: 326.7; stroke-dashoffset: 326.7; transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s; }
.reveal.in .ring-arc { stroke-dashoffset: 35.9; } /* 89% of the circle */
.scan-ring-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
}
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 24px; }
@media (max-width: 560px) { .scan-grid { grid-template-columns: 1fr; } }
.scan-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 4px; }
.scan-row span { font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.78); }
.scan-row b { font-size: 15px; font-weight: 800; }
.scan-row .meter {
  grid-column: 1 / -1; display: block; height: 7px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.12); overflow: hidden; font-style: normal;
}
.scan-row .meter i {
  display: block; height: 100%; width: 0; border-radius: 4px; background: var(--cyan);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.reveal.in .meter i { width: var(--v); }

/* ---- section label ---- */
.section-label {
  display: block; text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}

/* ---- how it works ---- */
.how { padding: 84px 0 10px; }
.how-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.how-step {
  background: var(--panel); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px 24px 25px; transition: border-color 0.15s ease, background 0.15s ease;
}
.how-step:hover { border-color: rgba(255, 255, 255, 0.16); background: #16191b; }
.step-num { font-size: 13px; font-weight: 800; color: var(--faint); letter-spacing: 0.1em; }
.how-step h3 { font-size: 17px; font-weight: 700; margin: 10px 0 7px; }
.how-step p { font-size: 14.5px; color: var(--muted); }

/* ---- feature hover (cards already styled) ---- */
.feature { transition: border-color 0.15s ease, background 0.15s ease; }
.feature:hover { border-color: rgba(255, 255, 255, 0.16); background: #16191b; }

/* ---- creator band ---- */
.creator-band {
  margin-top: 70px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  background: var(--panel);
  border: 1px solid var(--border); border-radius: 22px; padding: 30px 32px;
}
.creator-logo { width: 52px; height: 52px; border-radius: 13px; border: 1px solid rgba(255, 255, 255, 0.12); }
.creator-copy { flex: 1; min-width: 240px; }
.creator-band h2 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.creator-band p { margin-top: 7px; font-size: 14.5px; color: var(--muted); max-width: 560px; }
.creator-cta {
  font-weight: 700; font-size: 14px; color: var(--cyan-ink); background: var(--cyan);
  padding: 13px 22px; border-radius: 12px; white-space: nowrap; transition: filter 0.13s ease;
}
.creator-cta:hover { filter: brightness(1.07); text-decoration: none; }

/* ---- trust ---- */
.trust { padding: 84px 0 20px; }
.trust-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
.trust-grid p {
  font-size: 14.5px; color: var(--muted); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px; background: var(--panel);
}
.trust-grid b { color: var(--text); font-weight: 700; display: block; margin-bottom: 4px; }

/* ---- footer brand ---- */
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); }

@media (min-width: 720px) {
  .how-grid { grid-template-columns: 1fr 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---- hero phone mockups ---- */
.phones { margin: 60px auto 0; display: flex; align-items: flex-end; justify-content: center; gap: 26px; }
.phone { display: block; filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.65)); }
.phone-main { width: min(340px, 60vw); animation: floaty 7s ease-in-out infinite; }
.phone-side { width: min(280px, 34vw); opacity: 0.94; animation: floaty 8s ease-in-out 0.8s infinite; }
@media (max-width: 640px) { .phone-side { display: none; } .phone-main { width: min(320px, 82vw); } }
