:root {
  --bg: #05070d;
  --bg-deep: #020308;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.13);
  --text: #f7f9ff;
  --muted: #b4bdcc;
  --blue: #1677ff;
  --cyan: #28d9ff;
  --orange: #ff7a00;
  --green: #8ee84f;
  --warning: #ffbd70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1080px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-deep: #edf2f8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(14, 30, 54, 0.13);
  --text: #101a2c;
  --muted: #536176;
  --shadow: 0 24px 60px rgba(19, 43, 76, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 6%, rgba(22, 119, 255, 0.17), transparent 28rem),
    radial-gradient(circle at 8% 72%, rgba(255, 122, 0, 0.11), transparent 25rem),
    linear-gradient(145deg, var(--bg-deep), #07101f 52%, var(--bg-deep));
}

html[data-theme="light"] body {
  background: radial-gradient(circle at 82% 6%, rgba(22,119,255,.10), transparent 28rem), linear-gradient(145deg, #f8fbff, #eef4fb 52%, #ffffff);
}
html[data-theme="light"] body::before { opacity: .12; background-image: linear-gradient(rgba(15,40,75,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,40,75,.05) 1px, transparent 1px); }

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #07101f;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(3, 6, 13, 0.94), rgba(3, 6, 13, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
html[data-theme="light"] .site-header { background: linear-gradient(180deg, rgba(248,251,255,.96), rgba(248,251,255,.82)); border-bottom-color: rgba(14,30,54,.1); box-shadow: 0 12px 30px rgba(19,43,76,.08); }

.nav-wrap {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  min-height: 76px;
  align-items: center;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .25s ease, filter .25s ease;
}
.brand::before { position: absolute; inset: 15%; z-index: -1; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(40,217,255,.24), transparent 68%); filter: blur(14px); opacity: .75; transition: transform .3s ease, opacity .3s ease; }
.brand:hover { transform: translateY(-1px) scale(1.015); filter: brightness(1.08); }
.brand:hover::before { transform: scale(1.22); opacity: 1; }

.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
}
html[data-theme="light"] .brand-logo { content: url("../img/logo-light.png"); }

.site-nav { display: grid; grid-auto-flow: column; grid-auto-columns: max-content; align-items: center; justify-self: end; gap: 4px; padding: 5px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 26px rgba(0,0,0,.1); }
html[data-theme="light"] .site-nav { border-color: rgba(14,30,54,.1); background: rgba(255,255,255,.52); box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 26px rgba(19,43,76,.07); }
.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a::after { position: absolute; right: 12px; bottom: 6px; left: 12px; height: 2px; border-radius: 99px; content: ""; background: linear-gradient(90deg, var(--orange), var(--cyan)); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.site-nav a:hover { color: white; transform: translateY(-1px); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: white; background: transparent; box-shadow: none; }
html[data-theme="light"] .site-nav a:hover, html[data-theme="light"] .site-nav a[aria-current="page"] { color: var(--text); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; list-style: none; padding: 10px 13px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.mobile-menu summary:hover { transform: translateY(-1px); background: var(--surface); border-color: rgba(40,217,255,.35); }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel { position: absolute; top: calc(100% + 10px); right: 0; z-index: 30; display: grid; min-width: 190px; padding: 8px; border: 1px solid var(--border); border-radius: 14px; background: #0a1020; box-shadow: var(--shadow); animation: menu-in .18s ease both; }
.mobile-menu-panel a { padding: 11px 12px; border-radius: 9px; color: var(--muted); font-weight: 700; text-decoration: none; }
.mobile-menu-panel a:hover, .mobile-menu-panel a:focus-visible { color: white; background: var(--surface); }
html[data-theme="light"] .mobile-menu-panel { background: #ffffff; }
html[data-theme="light"] .mobile-menu-panel a:hover, html[data-theme="light"] .mobile-menu-panel a:focus-visible { color: var(--text); }
.theme-toggle { min-height: 40px; justify-self: end; padding: 0 13px; border: 1px solid var(--border); border-radius: 12px; color: var(--muted); background: linear-gradient(145deg, rgba(255,255,255,.06), transparent); font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap; transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.theme-toggle::before { margin-right: 6px; content: "◐"; color: var(--cyan); font-size: 14px; }
.theme-toggle:hover { color: var(--text); background: var(--surface); border-color: rgba(40,217,255,.35); transform: translateY(-1px); }

.hero { padding: clamp(72px, 11vw, 132px) 0 70px; text-align: center; }
.hero-product { text-align: left; }
.hero-product { min-height: 690px; padding-top: clamp(56px, 8vw, 88px); padding-bottom: clamp(70px, 9vw, 110px); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: clamp(30px, 6vw, 76px); align-items: center; min-height: 600px; }
.hero-copy h1 { margin-inline: 0; }
.hero-copy .lead { margin-inline: 0; }
.hero-actions { justify-content: flex-start; }
.hero-visual { display: grid; justify-items: center; }
.app-device { width: min(100%, 300px); padding: 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 34px; background: linear-gradient(145deg, #38404d, #070a10 24%, #151c29); box-shadow: 22px 28px 58px rgba(0,0,0,.25), inset 0 0 0 2px rgba(255,255,255,.07); transform: perspective(1100px) rotateY(-8deg) rotateZ(-1deg); transform-origin: center center; transition: transform .25s ease, box-shadow .25s ease; }
.app-device:hover { transform: perspective(1100px) rotateY(-5deg) rotateZ(-1deg) translateY(-4px); box-shadow: 30px 42px 82px rgba(0,0,0,.34), inset 0 0 0 2px rgba(255,255,255,.08); }
.app-screen { width: 100%; height: auto; display: block; border-radius: 31px; }
.hero-mockup { display: block; width: min(100%, 420px); height: auto; filter: drop-shadow(0 26px 44px rgba(0,0,0,.28)); }
.phone-frame { width: min(100%, 390px); padding: 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 42px; background: linear-gradient(145deg, #323742, #080b12 22%, #101623); box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.05); }
.phone-frame picture, .phone-frame img { display: block; width: 100%; }
.phone-frame picture { overflow: hidden; border-radius: 32px; background: #02050c; }
.app-screenshot { height: auto; }
.visual-caption { margin: 13px 0 0; color: #8d98aa; font-size: 12px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; text-wrap: balance; }
h1 {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .95;
  letter-spacing: -.065em;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--orange), #ffb45c 35%, var(--cyan) 68%, var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.6;
}

.pills, .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pills { margin-top: 28px; }
.pill {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 750;
}

.section { padding: 30px 0 76px; }
.section-heading { max-width: 700px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 10px; font-size: clamp(30px, 5vw, 46px); letter-spacing: -.04em; }
.section-heading p, .card p, .legal-card p, .legal-card li { color: var(--muted); line-height: 1.68; }
.section-heading > p:not(.eyebrow) { margin: 0; font-size: 17px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.card, .legal-card, .cta-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: var(--shadow);
}
.card { padding: 23px; border-radius: var(--radius-md); }
.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  font-weight: 900;
}
.card h3 { margin-bottom: 8px; font-size: 18px; }
.skill-card { min-height: 182px; }
.feature-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-detail { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; min-height: 220px; }
.feature-detail .skill-icon { margin: 0; }
.feature-detail h2 { margin: 0 0 10px; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.04em; }
.feature-detail .eyebrow { margin-bottom: 9px; font-size: 10px; }
.feature-detail p:last-child { margin: 0; }
.skill-icon { display: inline-grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--orange), var(--blue)); font-size: 23px; font-weight: 900; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.skill-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.center-link { margin: 20px 0 0; text-align: center; }
.center-link a, .trust-grid a { color: var(--cyan); font-weight: 800; }
.card p { margin: 0; font-size: 15px; }
.privacy-note {
  max-width: 820px;
  margin: 20px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(32,217,255,.18);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(32,217,255,.045);
  font-size: 14px;
  line-height: 1.6;
}
.privacy-note strong { color: var(--text); }
.privacy-note a { color: var(--cyan); font-weight: 800; }

.result-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(22px, 5vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
}
.result-panel-rich { max-width: 920px; }
.trust-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 36px; align-items: start; padding: 28px; border: 1px solid rgba(40,217,255,.2); border-radius: var(--radius-lg); background: rgba(40,217,255,.045); }
.trust-grid h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.trust-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-list details { padding: 19px 21px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list details p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.score {
  display: grid;
  width: 160px;
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  border: 10px solid rgba(255,255,255,.09);
  border-top-color: var(--orange);
  border-left-color: var(--cyan);
  border-radius: 50%;
  text-align: center;
}
.score strong { display: block; font-size: 46px; line-height: 1; }
.score small { color: var(--muted); }

.cta-panel {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 38px);
  border-color: rgba(142,232,79,.25);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(145deg, rgba(142,232,79,.1), rgba(22,119,255,.08));
}
.cta-panel h2 { margin-bottom: 10px; font-size: clamp(27px, 4vw, 38px); }
.cta-panel p { max-width: 650px; margin: 0 auto 22px; color: var(--muted); line-height: 1.6; }

.actions { margin-top: 20px; }
.legal-hero .hero-actions { justify-content: flex-start; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: white;
  background: rgba(255,255,255,.07);
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.button-primary { border-color: transparent; background: linear-gradient(95deg, var(--orange), var(--blue)); }
.button-primary:hover { background: linear-gradient(95deg, #ff912c, #368cff); }
html[data-theme="light"] .button:not(.button-primary) { color: var(--text); background: rgba(14,30,54,.045); }
html[data-theme="light"] .button:not(.button-primary):hover { background: rgba(14,30,54,.09); }

.legal-hero { padding: clamp(54px, 9vw, 96px) 0 34px; }
.legal-hero h1 { margin-inline: 0; max-width: 850px; font-size: clamp(38px, 7vw, 66px); }
.legal-hero .lead { margin-inline: 0; max-width: 760px; font-size: clamp(17px, 2.1vw, 20px); }
.legal-layout { display: grid; gap: 16px; padding: 18px 0 76px; }
.legal-card { padding: clamp(22px, 4vw, 32px); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.legal-card h2 { margin-bottom: 13px; font-size: clamp(22px, 3.5vw, 28px); }
.legal-card h3 { margin: 24px 0 8px; }
.legal-card p { margin: 0; }
.legal-card p + p { margin-top: 12px; }
.legal-card ul, .legal-card ol { padding-left: 22px; margin: 12px 0 0; }
.legal-card li + li { margin-top: 8px; }
.notice { border-color: rgba(40,217,255,.27); background: rgba(40,217,255,.06); }
.eligibility-card { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; align-items: start; padding: 24px 26px; }
.eligibility-card .eyebrow { margin-bottom: 8px; }
.eligibility-card h2 { margin: 0 0 8px; font-size: clamp(22px, 3.5vw, 30px); letter-spacing: -.035em; }
.eligibility-card p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.65; }
.eligibility-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 17px; color: #fff; background: linear-gradient(135deg, var(--orange), var(--blue)); font-size: 18px; box-shadow: 0 10px 24px rgba(22,119,255,.2); }
.eligibility-hint { display: inline-flex; margin-top: 14px; padding: 8px 11px; border: 1px solid rgba(40,217,255,.2); border-radius: 999px; color: var(--text); background: rgba(40,217,255,.06); font-size: 13px; font-weight: 750; }
.warning { color: var(--warning) !important; }
.contact-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255,122,0,.25);
  border-radius: 14px;
  background: rgba(255,122,0,.07);
}
.contact-box a { color: var(--cyan); font-weight: 800; overflow-wrap: anywhere; }
.updated { color: #8d98aa; font-size: 14px; }

.tester-form-card { max-width: 820px; margin-inline: auto; }
.form-intro { max-width: 680px; color: var(--muted); line-height: 1.65; }
.form-intro::after { display: block; margin-top: 8px; color: var(--text); content: "Your instruction email is sent automatically, usually within one minute and normally within a few minutes."; font-size: 14px; font-weight: 700; }
.tester-form { display: grid; gap: 16px; margin-top: 26px; }
.tester-form[hidden] { display: none !important; }
.tester-form label:not(.check-row) { display: grid; gap: 8px; color: var(--text); font-weight: 750; }
.tester-form input:not([type="checkbox"]), .tester-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 12px; color: var(--text); background: var(--surface); font: inherit; }
.tester-form textarea { resize: vertical; min-height: 110px; }
.tester-form input:focus, .tester-form textarea:focus { border-color: var(--cyan); outline: 3px solid rgba(40,217,255,.2); outline-offset: 1px; }
.check-row { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-weight: 600; line-height: 1.5; }
.check-row input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.field-help, .optional { color: var(--muted); font-size: 13px; font-weight: 500; }
.optional { margin-left: 4px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { min-height: 22px; margin: 0; color: var(--muted); }
.form-status.is-error { color: #ff9a9a; }
.tester-success p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.tester-success { margin-top: 22px; padding: 24px 26px; border: 1px solid rgba(142,232,79,.3); border-radius: 18px; background: linear-gradient(145deg, rgba(142,232,79,.12), rgba(40,217,255,.06)); }
.tester-success strong { color: var(--green); font-size: 18px; }
.tester-success strong::before { content: "Done — "; }

/* Expanded product feature layout */
.feature-hero { padding-bottom: 34px; }
.feature-hero h1 { max-width: 900px; }
.feature-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.feature-proof span { padding: 9px 13px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: var(--surface); font-size: 13px; font-weight: 750; }
.feature-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.flow-card { position: relative; min-height: 190px; }
.flow-card::after { position: absolute; top: 35px; right: -18px; width: 20px; height: 1px; content: ""; background: linear-gradient(90deg, var(--orange), transparent); }
.flow-card:last-child::after { display: none; }
.flow-index { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 22px; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--orange), var(--blue)); font-size: 13px; font-weight: 850; }
.feature-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.showcase-card { min-height: 220px; }
.showcase-card h3 { margin-bottom: 10px; font-size: 22px; }
.feature-label { color: var(--cyan); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.analysis-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .58fr); gap: clamp(28px, 6vw, 72px); align-items: center; overflow: hidden; }
.analysis-story-copy h2 { max-width: 620px; margin-bottom: 14px; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.045em; }
.analysis-story-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); line-height: 1.68; }
.metric-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.metric-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); line-height: 1.5; }
.metric-list li::before { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; content: ""; background: linear-gradient(135deg, var(--orange), var(--cyan)); }
.feature-phone { justify-self: center; width: min(100%, 145px); padding: 6px; border: 1px solid rgba(255,255,255,.22); border-radius: 23px; background: linear-gradient(145deg, #3c4656, #090d15 28%, #161d2b); box-shadow: var(--shadow); transform: rotate(3deg); }
.feature-phone img { width: 100%; height: auto; border-radius: 20px; }
.support-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .7fr); gap: 28px; align-items: center; }
.support-panel h2 { margin-bottom: 10px; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.04em; }
.support-panel p { color: var(--muted); line-height: 1.68; }
.support-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.support-list li { padding: 14px 15px; border: 1px solid var(--border); border-radius: 14px; color: var(--muted); background: var(--surface); line-height: 1.5; }
.support-list strong { display: block; margin-bottom: 3px; color: var(--text); }
.feature-faq { display: grid; gap: 10px; max-width: 800px; }
.feature-faq details { padding: 17px 19px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.feature-faq summary { cursor: pointer; color: var(--text); font-weight: 800; }
.feature-faq p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }

.site-footer { border-top: 1px solid rgba(255,255,255,.09); background: rgba(0,0,0,.14); }
html[data-theme="light"] .site-footer { border-top-color: rgba(14,30,54,.1); background: rgba(255,255,255,.56); }
.footer-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; padding: 38px 0; }
.footer-brand p { max-width: 460px; margin: 12px 0 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: flex-start; gap: 8px 18px; }
.footer-links a { color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.copyright { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #7f8a9c; font-size: 13px; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }


@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 860px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-wrap { grid-template-columns: 1fr auto auto; gap: 10px; }
  .site-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-product { min-height: 0; }
  .hero-layout { grid-template-columns: 1fr; min-height: 0; }
  .hero-product { text-align: center; }
  .hero-copy h1, .hero-copy .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: 2; }
  .hero-mockup { width: min(100%, 390px); }
  .app-device { width: min(100%, 280px); transform: perspective(1100px) rotateY(-5deg) rotateZ(-1deg); }
  .trust-grid { grid-template-columns: 1fr; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .feature-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-card:nth-child(2)::after { display: none; }
  .analysis-story, .support-panel { grid-template-columns: 1fr; }
  .feature-phone { width: min(100%, 160px); order: -1; transform: rotate(0); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--content)); }
  .nav-wrap { min-height: 66px; }
  .brand-logo { width: 72px; height: 72px; }
  .hero { padding: 58px 0 50px; }
  h1 { font-size: clamp(42px, 15vw, 62px); }
  .grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .feature-flow, .feature-showcase { grid-template-columns: 1fr; gap: 12px; }
  .flow-card { min-height: auto; }
  .flow-card::after { display: none; }
  .result-panel { grid-template-columns: 1fr; text-align: center; }
  .score { width: 138px; }
  .button { width: 100%; }
  .eligibility-card { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .legal-hero .hero-actions { justify-content: center; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
