@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/geist-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("/assets/fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0f1c;
  --ink-2: #0f1629;
  --ink-3: #172038;
  --paper: #ffffff;
  --paper-2: #f5f7fa;
  --line: #e3e7ee;
  --line-dark: rgba(255, 255, 255, 0.1);

  --text: #0f172a;
  --text-2: #334155;
  --muted: #5b6678;
  --on-dark: #eef1f8;
  --on-dark-muted: #9ba7be;

  --accent: #3461ff;
  --accent-strong: #2449d8;
  --accent-soft: rgba(52, 97, 255, 0.1);
  --mint: #2ee6b6;

  --danger: #b3261e;
  --danger-soft: #fdeceb;
  --ok: #0c7a53;
  --ok-soft: #e7f7f0;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.22);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1180px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
  background: var(--paper);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: inherit;
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-strong);
}

img,
svg {
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 48px, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section--alt {
  background: var(--paper-2);
}

.section--dark {
  --text: var(--on-dark);
  --text-2: #c9d1e3;
  --muted: var(--on-dark-muted);
  --line: var(--line-dark);
  background: var(--ink);
  color: var(--on-dark);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head p {
  margin: 18px 0 0;
  font-size: 1.125rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--mint);
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  font-weight: 550;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.btn:hover .icon {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(52, 97, 255, 0.9);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10, 15, 28, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-weight: 400;
  color: var(--on-dark-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a:not(.btn) {
  padding: 8px 14px;
  border-radius: 8px;
  color: #c6cfe2;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.site-nav .btn {
  margin-left: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 96px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(52, 97, 255, 0.42), transparent 62%),
    radial-gradient(700px 480px at -6% 105%, rgba(46, 230, 182, 0.14), transparent 60%),
    var(--ink);
  color: var(--on-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero h1 {
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.7vw, 3.7rem);
}

.hero h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(92deg, #8fa8ff 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 580px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.6;
  color: #c3cce0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: var(--on-dark-muted);
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(46, 230, 182, 0.16);
}

.console {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--on-dark-muted);
}

.console-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.console-title {
  margin-left: 10px;
}

.console-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(46, 230, 182, 0.12);
  color: var(--mint);
}

.console-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.console-steps {
  padding: 10px 20px;
}

.console-steps li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.console-steps li:last-child {
  border-bottom: 0;
}

.console-steps b {
  display: block;
  font-size: 0.98rem;
  font-weight: 550;
  color: #fff;
}

.console-steps small {
  display: block;
  font-size: 0.84rem;
  color: var(--on-dark-muted);
}

.console-steps code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.step-state {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.is-done .step-state {
  border-color: var(--mint);
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0f1c' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.is-done code {
  color: var(--mint);
}

.is-active .step-state {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(52, 97, 255, 0.22);
  background: radial-gradient(circle, #8fa8ff 0 4px, transparent 5px);
  animation: pulse 2s ease-in-out infinite;
}

.is-active code {
  color: #9db2ff;
}

.console-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.console-foot svg {
  display: block;
  width: 100%;
  height: 56px;
}

.console-stats {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--on-dark-muted);
}

.console-stats b {
  margin-left: 10px;
  font-weight: 500;
  color: #fff;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

.strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  padding: 24px 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.strip li::before {
  content: "/ ";
  color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 97, 255, 0.45);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.card p {
  margin: 12px 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  font-size: 0.92rem;
  color: var(--text-2);
}

.card li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.card li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-3px);
}

.audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.audience > div {
  padding: 34px 32px;
  border-right: 1px solid var(--line);
}

.audience > div:last-child {
  border-right: 0;
}

.audience span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.audience p {
  margin: 12px 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.steps li {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  position: relative;
}

.steps li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--mint);
}

.steps span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--mint);
}

.steps p {
  margin: 12px 0 0;
  font-size: 0.97rem;
  color: var(--muted);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.principles > div {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm) var(--radius) var(--radius) var(--radius-sm);
  background: var(--paper);
}

.principles p {
  margin: 10px 0 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.about-text p {
  color: var(--text-2);
  font-size: 1.06rem;
}

.about-text h2 {
  margin-bottom: 26px;
}

.facts {
  margin: 0;
  padding: 8px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.facts div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  margin-bottom: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

.facts a {
  color: inherit;
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(720px 380px at 50% -20%, rgba(52, 97, 255, 0.45), transparent 65%),
    var(--ink);
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
}

.contact p {
  max-width: 600px;
  margin: 22px auto 0;
  font-size: 1.12rem;
  color: #c3cce0;
}

.contact .hero-actions {
  justify-content: center;
}

.contact-note {
  font-size: 0.95rem !important;
  color: var(--on-dark-muted) !important;
}

.contact-note a {
  color: #fff;
}

.page-hero {
  padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 6vw, 76px);
  background:
    radial-gradient(760px 360px at 85% -30%, rgba(52, 97, 255, 0.4), transparent 62%),
    var(--ink);
  color: var(--on-dark);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: #fff;
}

.page-hero p {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.12rem;
  color: #c3cce0;
}

.page-hero .meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.form-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.7rem;
}

.form-intro {
  margin: 14px 0 28px;
  color: var(--text-2);
}

.form-card label:not(.optin-consent) {
  display: block;
  margin: 20px 0 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.form-card input[type="text"],
.form-card input[type="tel"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #cbd3df;
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-card input::placeholder {
  color: #94a0b3;
}

.form-card input[type="text"]:focus,
.form-card input[type="tel"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.optin-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
  cursor: pointer;
}

.optin-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-status {
  margin: 0 0 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-error {
  background: var(--danger-soft);
  color: var(--danger);
}

.form-call {
  margin: 22px 0 0;
  font-size: 0.97rem;
  text-align: center;
  color: var(--muted);
}

.form-call a {
  font-weight: 600;
  white-space: nowrap;
}

.form-success {
  padding: 8px 0;
  text-align: center;
}

.form-success:focus {
  outline: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--ok-soft);
  color: var(--ok);
}

.success-mark .icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.form-success p {
  margin: 12px 0 0;
  color: var(--muted);
}

.aside-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.aside-block:first-child {
  padding-top: 8px;
}

.aside-block:last-child {
  border-bottom: 0;
}

.aside-block h2 {
  margin-bottom: 16px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.aside-block p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

.aside-block p + p {
  margin-top: 10px;
}

.next-steps {
  display: grid;
  gap: 18px;
  counter-reset: next;
}

.next-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  font-size: 0.97rem;
  color: var(--muted);
  counter-increment: next;
}

.next-steps li::before {
  content: counter(next);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.next-steps b {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

.phone-link .icon {
  color: var(--accent);
}

.notice {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.notice h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.notice p {
  margin: 18px 0 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.notice .hero-actions {
  justify-content: center;
}

.notice .btn-ghost {
  border-color: var(--line);
  background: var(--paper);
  color: var(--text);
}

.notice .btn-ghost:hover {
  border-color: #b9c2d2;
  color: var(--text);
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 760px);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  max-height: calc(100vh - var(--header-h) - 56px);
  overflow: auto;
  padding-right: 8px;
}

.toc-title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.toc-list {
  counter-reset: toc;
  border-left: 1px solid var(--line);
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: block;
  margin-left: -1px;
  padding: 6px 0 6px 16px;
  border-left: 1px solid transparent;
  font-size: 0.89rem;
  line-height: 1.4;
  color: var(--muted);
  text-decoration: none;
}

.toc-list a::before {
  content: counter(toc) ". ";
  font-variant-numeric: tabular-nums;
}

.toc-list a:hover {
  border-left-color: var(--accent);
  color: var(--text);
}

.legal {
  counter-reset: sec;
  color: var(--text-2);
}

.legal h2 {
  margin: 2.6em 0 0.7em;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  counter-increment: sec;
}

.legal h2::before {
  content: counter(sec) ". ";
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.legal > :first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 1.7em 0 0.5em;
  font-size: 1.05rem;
  color: var(--text);
}

.legal ul {
  display: grid;
  gap: 8px;
  margin: 0 0 1em;
  padding-left: 22px;
  list-style: disc;
}

.legal li::marker {
  color: var(--accent);
}

.legal strong {
  color: var(--text);
}

.legal-intro {
  padding-bottom: 8px;
  font-size: 1.08rem;
}

.legal-highlight {
  margin: 2.6em 0;
  padding: 4px 28px 14px;
  border: 1px solid rgba(52, 97, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(52, 97, 255, 0.06), rgba(52, 97, 255, 0.015));
}

.legal-highlight h2 {
  margin-top: 1.1em;
}

.site-footer {
  padding: 72px 0 36px;
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 48px;
  padding-bottom: 52px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-nav h2 {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f7c96;
}

.footer-nav a {
  display: block;
  padding: 5px 0;
  color: #c6cfe2;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.88rem;
}

.footer-legal p {
  margin: 0;
}

.legal-line {
  color: #c6cfe2;
}

.legal-line a {
  color: #fff;
}

@media (max-width: 1000px) {
  .hero-grid,
  .about-grid,
  .support-layout,
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .toc {
    position: static;
    max-height: none;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-2);
  }

  .toc-list {
    columns: 2;
    column-gap: 28px;
    border-left: 0;
  }

  .toc-list a {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, var(--maxw));
  }

  .nav-toggle {
    display: block;
  }

  
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 22px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  html:not(.js) .nav-toggle {
    display: none;
  }

  html:not(.js) .site-header {
    position: relative;
  }

  .site-nav a:not(.btn) {
    padding: 13px 12px;
    font-size: 1.02rem;
  }

  .site-nav .btn {
    margin: 12px 0 0;
    min-height: 48px;
  }

  .cards,
  .audience,
  .principles,
  .steps,
  .footer-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience > div:last-child {
    border-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .strip ul {
    justify-content: flex-start;
  }

  .toc-list {
    columns: 1;
  }

  .legal-highlight {
    padding: 2px 20px 10px;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
