:root {
  --bg: #000000;
  --surface: #151515;
  --surface-2: #1c1c1e;
  --surface-3: #202022;
  --text: #ffffff;
  --muted: #929296;
  --muted-2: #65656a;
  --line: rgba(255,255,255,.13);
  --blue: #0a84ff;
  --green: #30d158;
  --red: #ff453a;
  --orange: #ff9f0a;
  --max: 1120px;
  --app: 780px;
  --reading: 760px;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: rgba(10,132,255,.32); }

.skip-link {
  position: fixed; left: 10px; top: 10px; z-index: 999;
  transform: translateY(-180%); padding: 10px 14px; border-radius: 999px;
  background: #fff; color: #000; text-decoration: none; font-weight: 700;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }
.app-width, .reading { width: min(calc(100% - 44px), var(--app)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.88);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.nav { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 18px; font-weight: 730; letter-spacing: -.02em; }
.brand-mark { width: 29px; height: 29px; border-radius: 8px; overflow: hidden; background: #fff; display: grid; place-items: center; }
.brand-mark img { width: 92%; height: 92%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 10px; border-radius: 11px; color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 630; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }

.mini-label { margin: 0 0 20px; color: var(--muted); font-size: 13px; font-weight: 760; letter-spacing: .03em; text-transform: uppercase; }
.display, .page-title, .section-title { margin: 0; color: #fff; font-weight: 760; letter-spacing: -.045em; }
.display { font-size: clamp(48px, 7.2vw, 76px); line-height: 1.02; }
.page-title { font-size: clamp(46px, 6.4vw, 68px); line-height: 1.03; }
.section-title { font-size: clamp(40px, 5.4vw, 58px); line-height: 1.06; }
.final-display { font-size: clamp(54px, 8vw, 82px); }
.hero-sub { margin: 26px 0 0; color: var(--muted); font-size: clamp(21px, 2.8vw, 28px); line-height: 1.35; letter-spacing: -.016em; }
.lead { margin: 20px 0 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 23px); line-height: 1.45; letter-spacing: -.014em; }

.hero { padding: 88px 0 84px; }
.app-screen-section { overflow: hidden; }
.tool-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.tool-card { min-height: 120px; border-radius: 27px; background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #b9b9bd; font-size: 16px; }
.tool-icon { color: #fff; font-size: 34px; line-height: 1; font-weight: 700; }
.tool-icon.arrow { transform: scaleX(.8); }
.tool-icon.wallet { font-size: 30px; }
.tool-icon.bubble { font-size: 31px; }
.tool-icon.notes { font-size: 31px; }
.tool-icon.music { font-size: 36px; font-weight: 500; }
.app-divider { height: 1px; background: var(--line); margin: 38px 0 30px; }
.hero-callout { margin: 0; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.16; letter-spacing: -.03em; font-weight: 760; }
.hero-blue { margin: 18px 0 0; color: var(--blue); font-size: clamp(21px, 2.7vw, 29px); line-height: 1.36; letter-spacing: -.018em; }
.hero-actions { margin-top: 50px; }
.app-button { width: 100%; min-height: 68px; padding: 0 24px; border: 0; border-radius: 34px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 20px; font-weight: 700; letter-spacing: -.016em; }
.app-button.secondary { background: var(--surface-2); }
.app-button.disabled { opacity: .62; cursor: default; }
.text-link { display: block; margin-top: 18px; text-align: center; color: var(--blue); text-decoration: none; font-size: 17px; font-weight: 610; }
.subtle-note { display: block; margin-top: 16px; text-align: center; color: var(--muted); font-size: 14px; }

.section { padding: 94px 0; }
.section + .section { border-top: 1px solid rgba(255,255,255,.045); }
.keep-remove { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.app-card { background: var(--surface); border-radius: 28px; }
.list-card { padding: 26px 28px; }
.list-label { margin-bottom: 20px; font-size: 17px; font-weight: 800; letter-spacing: .01em; }
.list-label.keep { color: var(--green); }
.list-label.remove { color: var(--red); }
.simple-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.simple-list li { display: flex; align-items: center; gap: 11px; font-size: 18px; }
.circle-mark { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; color: #071309; font-size: 11px; font-weight: 900; flex: 0 0 auto; }
.circle-mark.keep { background: var(--green); }
.x-mark { width: 20px; color: var(--red); font-size: 31px; line-height: 18px; font-weight: 350; flex: 0 0 auto; }
.info-card { margin-top: 18px; padding: 19px 22px; border-radius: 22px; border: 2px solid var(--blue); background: #001425; display: flex; align-items: center; gap: 14px; }
.info-badge { width: 35px; height: 35px; border-radius: 50%; background: var(--blue); color: #00101f; display: grid; place-items: center; font-size: 24px; font-weight: 800; flex: 0 0 auto; }
.info-card strong { font-size: 19px; line-height: 1.3; }
.info-foot { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.45; }

.feature-stack, .mode-stack { display: grid; gap: 12px; margin-top: 34px; }
.feature-row, .mode-row { min-height: 98px; padding: 19px 22px; border-radius: 28px; background: var(--surface); display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: center; }
.row-symbol, .mode-symbol { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; font-size: 34px; line-height: 1; font-weight: 600; }
.row-symbol.overlap { font-size: 31px; }
.mode-symbol { font-size: 31px; }
.mode-symbol.emergency { width: 36px; height: 36px; margin-left: 8px; border-radius: 50%; background: #fff; color: #111; font-size: 24px; font-weight: 800; }
.feature-row strong, .mode-row strong { display: block; font-size: 21px; line-height: 1.2; letter-spacing: -.022em; }
.feature-row span:not(.row-symbol), .mode-row span:not(.mode-symbol) { display: block; margin-top: 5px; color: var(--muted); font-size: 16px; line-height: 1.38; }
.protection-copy { margin: 28px 0 0; color: #f2f2f3; font-size: 19px; line-height: 1.45; }
.containment { margin-top: 22px; padding: 24px 10px 0; border-top: 1px solid var(--line); display: flex; gap: 16px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.lock-symbol { color: var(--muted); font-size: 22px; flex: 0 0 auto; }

.commitment-screen .lead { max-width: 720px; }
.timeline-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 32px; color: #fff; font-size: 16px; font-weight: 760; }
.timeline-header .end { color: var(--blue); }
.timeline-line { height: 3px; border-radius: 999px; background: var(--blue); position: relative; }
.timeline-line::before { content: ""; position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); transform: translate(-50%,-50%); }
.timeline-line::after { content: ""; position: absolute; right: -2px; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--blue); transform: translateY(-50%); }
.commitment-card { margin-top: 20px; padding: 24px; border-radius: 28px; background: var(--surface); display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; }
.commitment-card strong { display: block; font-size: 22px; }
.commitment-card p { margin: 7px 0 0; color: var(--muted); font-size: 17px; line-height: 1.44; }
.moon, .lock-large { font-size: 50px; color: #fff; text-align: center; }
.now { display: block; margin-top: 12px; color: var(--green); font-size: 19px; font-weight: 700; }
.hardcore-note { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.45; }

.product-section { padding-top: 104px; }
.wide-head { width: min(100%, 780px); margin-bottom: 36px; }
.product-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: start; }
.shot-card { margin: 0; }
.shot-card img { width: 100%; border-radius: 30px; border: 1px solid rgba(255,255,255,.12); background: #000; box-shadow: 0 28px 80px rgba(0,0,0,.34); }
.shot-card figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; text-align: center; }

.privacy-stack { display: grid; gap: 10px; margin-top: 32px; }
.privacy-row { min-height: 70px; padding: 18px 22px; border-radius: 22px; background: var(--surface); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.privacy-row strong { font-size: 18px; font-weight: 620; }
.privacy-row span { color: var(--green); font-size: 20px; font-weight: 800; }
.privacy-section .app-button { margin-top: 20px; }

.final-cta { padding: 118px 0 108px; }
.final-cta .lead { max-width: 680px; }

.page-hero { padding: 86px 0 56px; }
.steps { display: grid; gap: 12px; }
.step { padding: 24px; border-radius: 26px; background: var(--surface); display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; font-size: 14px; font-weight: 800; }
.step h2 { margin: 1px 0 7px; font-size: 22px; letter-spacing: -.025em; }
.step p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.step p + p { margin-top: 7px; }
.step .lead-small { color: #fff; font-weight: 650; }

/* Privacy and Support */
.policy-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted-2); font-size: 13px; margin-top: 18px; }
.policy-meta strong { color: var(--muted); }
.summary-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 26px; }
.summary-item { padding: 18px; border-radius: 20px; background: var(--surface); }
.summary-item .check { color: var(--green); font-weight: 900; }
.summary-item strong { display: block; margin-top: 10px; font-size: 14px; line-height: 1.35; }
.prose { width: min(calc(100% - 44px), var(--reading)); margin: 0 auto; padding: 0 0 100px; }
.prose-intro { margin-bottom: 22px; color: var(--muted); font-size: 17px; line-height: 1.58; }
.prose section { padding: 24px; margin-top: 10px; border-radius: 24px; background: var(--surface); }
.prose h2 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.02em; }
.prose p, .prose li { color: var(--muted); font-size: 16px; line-height: 1.62; }
.prose p { margin: 0; }
.prose p + p { margin-top: 11px; }
.prose ul { margin: 0; padding-left: 20px; }
.prose li + li { margin-top: 7px; }
.prose a { color: var(--blue); }
.support-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 18px; align-items: start; }
.faq { display: grid; gap: 10px; }
details { border-radius: 22px; background: var(--surface); overflow: hidden; }
summary { list-style: none; cursor: pointer; position: relative; padding: 20px 54px 20px 20px; font-size: 17px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--blue); font-size: 30px; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.contact-card { position: sticky; top: 82px; padding: 24px; border-radius: 24px; background: #001425; border: 1px solid rgba(10,132,255,.8); }
.contact-card h2 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.contact-card p { margin: 9px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.contact-card .button { width: 100%; margin-top: 18px; }
.button { min-height: 54px; padding: 0 20px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; font-weight: 720; }
.button.primary { background: var(--blue); color: #fff; }
.contact-meta { margin-top: 14px; color: var(--muted-2); font-size: 12.5px; line-height: 1.45; }

.site-footer { padding: 30px 0 44px; border-top: 1px solid rgba(255,255,255,.055); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 730; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 8px; }
.footer-note { margin-top: 8px; color: var(--muted-2); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 3px; }
.footer-links a { padding: 7px 9px; color: var(--muted); text-decoration: none; font-size: 13px; border-radius: 10px; }
.footer-links a:hover { color: #fff; }

@media (max-width: 920px) {
  .product-gallery { gap: 12px; }
  .support-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

@media (max-width: 760px) {
  .container, .app-width, .reading, .prose { width: min(calc(100% - 30px), var(--max)); }
  .nav { min-height: 60px; gap: 12px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 28px; height: 28px; }
  .nav-links a { font-size: 12.5px; padding: 8px 7px; }
  .hero { padding: 72px 0 66px; }
  .display { font-size: clamp(42px, 12.5vw, 54px); }
  .page-title { font-size: clamp(40px, 11.8vw, 52px); }
  .section-title { font-size: clamp(37px, 10.4vw, 46px); }
  .hero-sub, .lead { font-size: 18px; }
  .tool-grid { gap: 8px; margin-top: 28px; }
  .tool-card { min-height: 98px; border-radius: 22px; font-size: 14px; gap: 9px; }
  .tool-icon { font-size: 29px; }
  .app-divider { margin: 30px 0 26px; }
  .hero-callout { font-size: 27px; }
  .hero-blue { font-size: 21px; }
  .hero-actions { margin-top: 46px; }
  .app-button { min-height: 64px; border-radius: 32px; font-size: 18px; }
  .section { padding: 76px 0; }
  .keep-remove { gap: 8px; margin-top: 28px; }
  .list-card { padding: 20px 15px; border-radius: 21px; }
  .list-label { font-size: 15px; margin-bottom: 15px; }
  .simple-list { gap: 12px; }
  .simple-list li { font-size: 15.5px; gap: 8px; }
  .circle-mark { width: 19px; height: 19px; }
  .x-mark { width: 18px; font-size: 28px; }
  .info-card { padding: 16px; border-radius: 20px; }
  .info-card strong { font-size: 16.5px; }
  .feature-row, .mode-row { grid-template-columns: 48px 1fr; min-height: 90px; padding: 17px 16px; border-radius: 21px; gap: 10px; }
  .row-symbol, .mode-symbol { width: 40px; height: 40px; font-size: 27px; }
  .mode-symbol.emergency { width: 32px; height: 32px; margin-left: 4px; font-size: 20px; }
  .feature-row strong, .mode-row strong { font-size: 18px; }
  .feature-row span:not(.row-symbol), .mode-row span:not(.mode-symbol) { font-size: 14.5px; }
  .containment { font-size: 14.5px; padding-left: 4px; padding-right: 4px; }
  .timeline-header { font-size: 14px; gap: 9px; }
  .commitment-card { grid-template-columns: 55px 1fr; padding: 18px; border-radius: 22px; gap: 12px; }
  .commitment-card strong { font-size: 18px; }
  .commitment-card p { font-size: 15px; }
  .moon, .lock-large { font-size: 40px; }
  .product-gallery { overflow-x: auto; grid-template-columns: repeat(3, minmax(230px, 68vw)); padding-bottom: 10px; scroll-snap-type: x mandatory; }
  .shot-card { scroll-snap-align: start; }
  .summary-strip { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 34px 1fr; padding: 19px; gap: 12px; border-radius: 21px; }
  .step-number { width: 32px; height: 32px; }
  .step h2 { font-size: 20px; }
  .step p { font-size: 15px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .nav-links a:first-child { display: none; }
  .keep-remove { grid-template-columns: 1fr 1fr; }
  .simple-list li { font-size: 14.3px; }
  .summary-strip { grid-template-columns: 1fr; }
}

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


/* App-matched vector icons --------------------------------------------------
   These replace text glyph stand-ins only. Layout, copy, spacing and colors
   elsewhere remain unchanged. */
.tool-icon-svg {
  width: 38px;
  height: 38px;
  color: #fff;
  flex: 0 0 auto;
}
.section-icon-svg {
  width: 48px;
  height: 48px;
  color: #fff;
  display: block;
  justify-self: center;
}
.row-icon-svg { width: 46px; height: 46px; }
.mode-icon-svg { width: 44px; height: 44px; }
.emergency-icon-svg { width: 42px; height: 42px; }
.inline-lock-svg {
  width: 24px;
  height: 24px;
  color: var(--muted);
  flex: 0 0 auto;
  margin-top: 1px;
}
.commitment-icon-svg {
  width: 52px;
  height: 52px;
  color: #fff;
  justify-self: center;
}
.moon-icon-svg { width: 54px; height: 54px; }
.lock-icon-svg { width: 50px; height: 50px; }

@media (max-width: 760px) {
  .tool-icon-svg { width: 32px; height: 32px; }
  .section-icon-svg { width: 38px; height: 38px; }
  .row-icon-svg { width: 37px; height: 37px; }
  .mode-icon-svg { width: 36px; height: 36px; }
  .emergency-icon-svg { width: 34px; height: 34px; }
  .inline-lock-svg { width: 21px; height: 21px; }
  .commitment-icon-svg { width: 43px; height: 43px; }
  .moon-icon-svg { width: 45px; height: 45px; }
  .lock-icon-svg { width: 42px; height: 42px; }
}
