/* Actually — marketing + support + legal site. Dark, single visual world. */
:root {
  --bg: #060607;
  --bg-soft: #0d0d10;
  --surface: #151518;
  --surface-2: #1d1d21;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --muted: #9a9aa4;
  --muted-2: #6f6f79;
  --accent: #e61c24;
  --accent-bright: #ff4d52;
  --accent-ink: #ffffff;
  --good: #35c26b;
  --warn: #e6a53d;
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1080px;
  --font-display: "Syne", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; margin: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* Ambient glow */
.atmosphere {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 8%, rgba(230, 28, 36, 0.22), transparent 70%),
    radial-gradient(50% 40% at 12% 0%, rgba(230, 28, 36, 0.10), transparent 70%),
    linear-gradient(180deg, #0a0a0c 0%, var(--bg) 60%);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px;
  max-width: var(--maxw); margin: 0 auto;
  backdrop-filter: blur(14px);
}
.site-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(6, 6, 7, 0.6); border-bottom: 1px solid var(--line);
}
.nav-mark { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.nav-mark:hover { text-decoration: none; }
.nav-mark img { display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; padding: 8px 12px; border-radius: 999px; }
.nav-links a:hover { color: var(--text); text-decoration: none; background: var(--surface); }
.nav-cta {
  background: var(--accent); color: var(--accent-ink) !important;
  font-weight: 600; font-size: 15px; padding: 9px 18px; border-radius: 999px;
}
.nav-cta:hover { background: var(--accent-bright); text-decoration: none; }
@media (max-width: 560px) { .nav-links a.nav-plain { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 16px; padding: 14px 26px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--text); }

/* Hero */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 72px 0 64px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 600; color: var(--accent-bright); margin: 0 0 14px; }
.hero h1 { font-size: clamp(40px, 6.4vw, 68px); line-height: 1.02; font-weight: 800; }
.hero .lede { color: var(--muted); font-size: 19px; max-width: 30ch; margin: 20px 0 30px; }
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-sub { color: var(--muted-2); font-size: 14px; margin: 16px 0 0; }

/* Phone mock */
.hero-visual { display: flex; justify-content: center; }
.phone { position: relative; width: 260px; }
.phone-bezel { position: relative; background: #0a0a0c; border: 1px solid var(--line-strong); border-radius: 44px; padding: 14px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), inset 0 0 0 2px rgba(255,255,255,0.03); }
.island { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: #000; border-radius: 999px; padding: 8px 14px; min-width: 128px; box-shadow: 0 6px 20px rgba(0,0,0,0.6); }
.island-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: blink 1.4s ease-in-out infinite; }
.island-label { font-size: 13px; color: #e8e8ea; font-weight: 500; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.phone-screen { background: linear-gradient(180deg, #101013, #0b0b0d); border-radius: 32px; height: 456px; padding: 64px 20px 20px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.feed-line { height: 12px; border-radius: 6px; background: rgba(255,255,255,0.07); }
.feed-line-a { width: 82%; } .feed-line-b { width: 64%; } .feed-line-c { width: 72%; }
.verdict { margin-top: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 18px; display: flex; align-items: center; gap: 14px; }
.verdict-mark { width: 40px; height: 40px; color: var(--good); flex: none; }
.verdict p { margin: 0; font-weight: 700; font-family: var(--font-display); }
.verdict small { display: block; color: var(--muted); font-weight: 400; font-size: 13px; font-family: var(--font-body); }
.tap-caption { text-align: center; color: var(--muted-2); font-size: 13px; margin: 18px 0 0; letter-spacing: 0.04em; }
.tap-ripple { position: absolute; bottom: 26px; left: 50%; width: 46px; height: 46px; border: 2px solid rgba(230,28,36,0.5); border-radius: 50%; transform: translate(-50%, 60px); animation: ripple 2.4s ease-out infinite; }
.tap-ripple-delay { animation-delay: 1.2s; }
@keyframes ripple { 0% { opacity: 0.7; transform: translate(-50%, 60px) scale(0.5); } 100% { opacity: 0; transform: translate(-50%, 60px) scale(2.2); } }

/* Sections */
.section { padding: 64px 0; }
.section-head { max-width: 42ch; margin-bottom: 40px; }
.section h2 { font-size: clamp(28px, 4vw, 40px); }
.section-lede { color: var(--muted); font-size: 18px; margin: 12px 0 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; max-width: var(--maxw); margin-inline: auto; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step-num { font-family: var(--font-display); font-weight: 800; color: var(--accent-bright); font-size: 14px; letter-spacing: 0.1em; }
.steps h3 { font-size: 20px; margin: 14px 0 8px; }
.steps p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feature .ic { width: 44px; height: 44px; border-radius: 13px; background: rgba(230,28,36,0.14); color: var(--accent-bright); display: grid; place-items: center; margin-bottom: 16px; }
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; margin: 0 0 8px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

/* Privacy strip */
.privacy-strip { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; text-align: center; }
.privacy-strip h2 { font-size: clamp(26px, 3.6vw, 36px); }
.privacy-strip p { color: var(--muted); font-size: 18px; max-width: 56ch; margin: 14px auto 0; }

/* CTA */
.cta-final { text-align: center; padding: 80px 0; }
.cta-final h2 { font-size: clamp(30px, 4.6vw, 46px); }
.cta-final .section-lede { margin: 12px auto 28px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 32px; padding-bottom: 40px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-copy { color: var(--muted-2); font-size: 14px; width: 100%; margin: 0; }

/* Document pages (support / privacy / terms) */
.doc-hero { padding: 56px 0 20px; }
.doc-hero .eyebrow { margin-bottom: 10px; }
.doc-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.doc-hero .updated { color: var(--muted-2); font-size: 14px; margin: 14px 0 0; }
.doc { padding: 12px 0 64px; }
.doc-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.toc { position: sticky; top: 88px; font-size: 14.5px; }
.toc p { text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--muted-2); margin: 0 0 12px; }
.toc a { display: block; color: var(--muted); padding: 6px 0; }
.toc a:hover { color: var(--text); text-decoration: none; }
.prose { max-width: 68ch; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; scroll-margin-top: 88px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 26px 0 8px; font-family: var(--font-body); font-weight: 700; }
.prose p, .prose li { color: var(--muted); }
.prose p { margin: 0 0 14px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-bright); }
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 14px; padding: 16px 18px; margin: 0 0 20px; }
.callout p { margin: 0; color: var(--text); font-size: 15.5px; }

/* FAQ (support) */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-bright); font-size: 24px; font-weight: 400; flex: none; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 4px 22px; }
.faq .answer p, .faq .answer li { color: var(--muted); margin: 0 0 12px; }
.faq .answer ul, .faq .answer ol { padding-left: 20px; margin: 0 0 12px; }
.faq .answer li { margin-bottom: 6px; }

/* Contact card */
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; text-align: center; margin-top: 40px; }
.contact-card h2 { font-size: 26px; }
.contact-card p { color: var(--muted); margin: 10px auto 22px; max-width: 46ch; }
.contact-email { font-family: var(--font-display); font-size: 20px; font-weight: 700; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .hero .lede { max-width: none; }
  .hero-visual { order: -1; }
  .steps, .features { grid-template-columns: 1fr 1fr; }
  .doc-grid { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .steps, .features { grid-template-columns: 1fr; }
  .privacy-strip, .contact-card { padding: 28px; }
}
