:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: #0d0d0d;
  --text: #f2f2f2;
  --muted: #a5a5a5;
  --faint: #696969;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #f5b51b;
  --accent-strong: #ffc83d;
  --good: #64d991;
  --danger: #ff6b6b;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(245, 181, 27, 0.07), transparent 28rem),
    radial-gradient(circle at 84% 82%, rgba(35, 64, 98, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.page-shell { min-height: calc(100vh - 72px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .13em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a {
  position: relative;
  color: #a6a6a6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-download { color: var(--accent-strong); }
.site-nav .nav-download::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--accent);
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1px;
  margin: auto;
  background: var(--text);
  content: "";
}
.nav-toggle span::before { transform: translateY(-5px); }
.nav-toggle span::after { transform: translateY(4px); }

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 88px 0 82px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 90px;
}
.eyebrow,
.section-index,
.plan-label,
.breadcrumb {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 14px 0 22px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
}
.hero h1 span { color: #a7a7a7; font-weight: 660; }
.hero-lead, .page-lead {
  max-width: 690px;
  margin: 0;
  color: #b7b7b7;
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.button:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.055); }
.button-primary { background: var(--accent); border-color: var(--accent); color: #090909; }
.button-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.button-small { min-height: 38px; padding-inline: 14px; font-size: 12px; }
.platform-note { margin: 16px 0 0; color: var(--faint); font-size: 12px; }
.platform-note a { color: #bdbdbd; text-underline-offset: 3px; }

.hero-aside { border-top: 1px solid var(--line-strong); }
.status-line {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.status-line span { color: var(--faint); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.status-line strong { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.good { color: var(--good); }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item small { display: block; margin-bottom: 5px; color: var(--faint); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.trust-item strong { font-size: 13px; font-weight: 760; }

.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}
.section-title { margin: 0; max-width: 760px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.section-copy { max-width: 720px; margin: 14px 0 0; color: var(--muted); font-size: 16px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.feature-list, .link-rows, .download-choices { border-top: 1px solid var(--line-strong); }
.feature-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row .num, .row-index { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.feature-row h3 { margin: 0; font-size: 17px; }
.feature-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.link-row {
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  gap: 20px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.link-row:hover h3, .link-row:hover .row-arrow { color: var(--accent-strong); }
.link-row h3 { margin: 0; font-size: 19px; transition: color .15s ease; }
.link-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.row-arrow { color: var(--faint); font-size: 19px; text-align: right; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.plan { padding: 30px 28px 34px; border-right: 1px solid var(--line); }
.plan:first-child { padding-left: 0; }
.plan:last-child { border-right: 0; padding-right: 0; }
.plan-highlight { background: linear-gradient(to bottom, rgba(245,181,27,.045), transparent 65%); }
.plan h3 { margin: 8px 0 2px; font-size: 29px; letter-spacing: -.035em; }
.plan-price { margin: 0 0 15px; font-size: 24px; font-weight: 900; }
.plan-price span { color: var(--faint); font-size: 12px; font-weight: 600; }
.plan-desc { min-height: 52px; color: var(--muted); font-size: 14px; }
.plan ul { margin: 20px 0 25px; padding: 0; list-style: none; }
.plan li { position: relative; padding: 9px 0 9px 17px; border-top: 1px solid rgba(255,255,255,.06); color: #c1c1c1; font-size: 13px; }
.plan li::before { content: ""; position: absolute; left: 0; top: 16px; width: 5px; height: 1px; background: var(--accent); }
.privacy-note { display: flex; gap: 20px; align-items: baseline; padding-top: 20px; font-size: 13px; }
.privacy-note strong { color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.privacy-note span { color: var(--muted); }

.page-hero { padding: 78px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 12px 0 15px; font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -.05em; }
.breadcrumb { margin-bottom: 22px; color: var(--faint); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.document { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 66px 0 100px; }
.document > p:first-of-type { font-size: 18px; }
.document h2 { margin: 52px 0 15px; font-size: 27px; line-height: 1.2; letter-spacing: -.03em; }
.document h3 { margin: 36px 0 13px; font-size: 19px; }
.document p { color: var(--muted); }
.document a { color: var(--accent-strong); text-underline-offset: 4px; }
.document ul, .document ol { margin: 18px 0; padding-left: 25px; color: var(--muted); }
.document li { margin: 11px 0; padding-left: 6px; }
.document .rule-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.document .rule-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
.document .rule-list b { color: var(--accent); font-size: 11px; letter-spacing: .08em; }
.meta-line { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--faint) !important; font-size: 12px; }

.download-choice {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}
.download-choice .os-mark { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.download-choice h3 { margin: 0; font-size: 22px; }
.download-choice p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { padding: 28px 24px; border-right: 1px solid var(--line); }
.step:first-child { padding-left: 0; }
.step:last-child { border-right: 0; }
.step b { color: var(--accent); font-size: 10px; letter-spacing: .14em; }
.step h3 { margin: 10px 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.form-layout { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 60px 0 90px; }
.form-field { padding: 19px 0; border-bottom: 1px solid var(--line); }
.form-field:first-of-type { border-top: 1px solid var(--line); }
.form-field label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; border: 0; outline: 0; padding: 7px 0; background: transparent; color: var(--text); font-size: 16px; resize: vertical;
}
.form-field select option { background: #111; color: var(--text); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.appeal-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-response { width: min(820px, calc(100% - 48px)); margin: -55px auto 80px; padding: 14px 16px; border: 1px solid var(--line); font-size: 14px; }
.form-response.success { border-color: rgba(100,217,145,.45); color: var(--good); }
.form-response.error { border-color: rgba(255,107,107,.45); color: var(--danger); }

.error-page { min-height: calc(100vh - 72px); display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.error-code { color: var(--accent); font-size: clamp(72px, 16vw, 160px); font-weight: 950; line-height: .8; letter-spacing: -.08em; }
.error-page h1 { margin: 25px 0 10px; font-size: 31px; }
.error-page p { max-width: 520px; color: var(--muted); }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: rgba(0,0,0,.26); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-brand { font-weight: 900; letter-spacing: .12em; }
.footer-copy { max-width: 620px; margin: 8px 0 0; color: var(--faint); font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 26px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12px; }
.footer-links a:hover { color: var(--accent); }

.scroll-to-top {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #101010;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.scroll-to-top.show { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(5,5,5,.98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.055); }
  .site-nav .nav-download::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 45px; }
  .hero-aside { max-width: 560px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan, .plan:first-child, .plan:last-child { padding: 27px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .plan:last-child { border-bottom: 0; }
  .plan-desc { min-height: auto; }
  .download-choice { grid-template-columns: 54px 1fr; padding: 22px 0; }
  .download-choice .button { grid-column: 2; width: max-content; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap, .header-inner, .document, .form-layout, .form-response { width: min(100% - 30px, var(--max)); }
  .site-header { height: 64px; }
  .site-nav { top: 64px; }
  .hero { padding: 68px 0 62px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero-lead, .page-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 66px 0; }
  .section-title { font-size: 32px; }
  .link-row { grid-template-columns: 38px 1fr 20px; gap: 12px; min-height: 88px; }
  .link-row p { font-size: 13px; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:first-child { padding: 23px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .privacy-note { flex-direction: column; gap: 4px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

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

/* 2026-08-30 unified current-site refinements */
.hero {
  min-height: 520px;
  padding: 76px 0 72px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 76px;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.01;
}
.hero-lead { max-width: 650px; }
.hero-aside { align-self: center; }
.status-line strong { text-align: right; }

.app-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.app-action {
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}
.app-action:first-child { padding-left: 0; }
.app-action:last-child { padding-right: 0; border-right: 0; }
.app-action > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.app-action strong { display: block; font-size: 17px; }
.app-action small { display: block; margin-top: 3px; color: var(--faint); font-size: 12px; }
.app-action:hover strong { color: var(--accent-strong); }
.compact-head { margin-bottom: 0; }

.site-footer { padding: 44px 0 48px; }
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-copy { max-width: 760px; margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px 24px;
  margin-top: 9px;
}
.footer-links a { white-space: nowrap; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .app-actions { grid-template-columns: 1fr; }
  .app-action, .app-action:first-child, .app-action:last-child {
    min-height: 90px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .app-action:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .hero { padding: 58px 0 54px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .footer-links { gap: 8px 18px; }
}

/* Footer alignment */
.site-footer {
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .26);
}

.site-footer .footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  width: 100%;
  margin: 0;
}

.site-footer .footer-links a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer .footer-links a:hover {
  color: var(--accent);
}

.site-footer .footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.site-footer .footer-brand {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.site-footer .footer-copy {
  max-width: none;
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 620px) {
  .site-footer { padding: 28px 0 32px; }
  .site-footer .footer-links { gap: 9px 16px; }
}
