:root {
  --paper: #f4f1ea;
  --paper-2: #ebe6dc;
  --ink: #101820;
  --muted: #59636b;
  --line: rgba(16, 24, 32, 0.14);
  --purple: #7357ff;
  --purple-dark: #5536e8;
  --blue: #2f8cff;
  --cyan: #41d9bd;
  --lime: #c9f36a;
  --white: #fffdf8;
  --danger: #c75656;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(115, 87, 255, 0.10), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(65, 217, 189, 0.10), transparent 25rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 24, 32, 0.10);
  background: rgba(244, 241, 234, 0.90);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 840;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.07);
}
.brand-mark img { width: 23px; height: 23px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #3e474e;
  font-size: 0.9rem;
  font-weight: 680;
}
.nav-links > a:not(.button) { transition: color 160ms ease; }
.nav-links > a:not(.button):hover,
.nav-links > a[aria-current="page"] { color: var(--purple-dark); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 18px;
  height: 2px;
  display: block;
  content: "";
  margin: 4px auto;
  border-radius: 9px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 790;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); box-shadow: 0 10px 24px rgba(16, 24, 32, 0.17); }
.button-dark:hover { box-shadow: 0 15px 28px rgba(16, 24, 32, 0.22); }
.button-light { border-color: var(--line); background: rgba(255, 253, 248, 0.78); }
.button-purple { color: white; background: linear-gradient(135deg, var(--purple), var(--blue)); box-shadow: 0 12px 28px rgba(91, 68, 220, 0.27); }
.button:disabled { opacity: .65; cursor: wait; transform: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #4938ad;
  font-size: 0.75rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(65, 217, 189, 0.17);
}

.page-hero { padding: 82px 0 74px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.page-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 890;
  line-height: .94;
  letter-spacing: -.064em;
}
.page-hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--purple-dark), var(--blue) 60%, #008f7c);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy { max-width: 670px; margin-bottom: 28px; color: var(--muted); font-size: clamp(1.06rem, 1.7vw, 1.24rem); }
.hero-meta { color: #727c83; font-size: .78rem; font-weight: 650; }

.status-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .83);
  box-shadow: var(--shadow);
}
.status-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
}
.status-label { margin-bottom: 20px; color: #737d84; font-size: .69rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.status-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--purple-dark); background: rgba(115,87,255,.1); font-weight: 900; }
.status-row strong { display: block; font-size: .82rem; }
.status-row span { display: block; color: #748087; font-size: .68rem; }
.tag { padding: 5px 9px; border-radius: 99px; color: #176f61; background: rgba(65,217,189,.14); font-size: .61rem; font-weight: 820; text-transform: uppercase; }
.tag-purple { color: var(--purple-dark); background: rgba(115,87,255,.10); }
.tag-warm { color: #98501f; background: rgba(241,149,95,.15); }

.section { padding: 105px 0; }
.section-soft { border-block: 1px solid var(--line); background: rgba(255,253,248,.48); }
.section-dark { color: white; background: #0c141d; }
.section-kicker { margin-bottom: 13px; color: var(--purple-dark); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.section-dark .section-kicker { color: #9f8fff; }
.section-title { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.1rem, 4.2vw, 4rem); font-weight: 870; line-height: 1.02; letter-spacing: -.052em; }
.section-copy { max-width: 700px; color: var(--muted); font-size: 1.03rem; }
.section-dark .section-copy { color: #aeb7bf; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.info-card { min-height: 240px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.72); }
.info-card .number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 12px; color: var(--purple-dark); background: rgba(115,87,255,.1); font-size: .74rem; font-weight: 900; }
.info-card h3 { margin-bottom: 9px; font-size: 1.06rem; letter-spacing: -.025em; }
.info-card p { color: var(--muted); font-size: .84rem; }

.security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 48px; }
.security-card { min-height: 245px; padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); }
.security-card .symbol { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 44px; border-radius: 13px; color: var(--ink); background: var(--lime); font-weight: 900; }
.security-card h3 { margin-bottom: 9px; }
.security-card p { color: #aeb7bf; font-size: .86rem; }

.roadmap { display: grid; gap: 0; margin-top: 50px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,253,248,.7); }
.roadmap-row { display: grid; grid-template-columns: 170px 1fr; gap: 25px; padding: 25px; border-bottom: 1px solid var(--line); }
.roadmap-row:last-child { border-bottom: 0; }
.roadmap-row h3 { margin: 0; font-size: .85rem; }
.roadmap-row p { margin: 0; color: var(--muted); font-size: .83rem; }

.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.form-card, .aside-card { padding: 31px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,248,.78); box-shadow: 0 18px 48px rgba(16,24,32,.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1/-1; }
.field label, .field legend { color: #323c43; font-size: .77rem; font-weight: 760; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(16,24,32,.18);
  border-radius: 12px;
  color: var(--ink);
  background: white;
}
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 145px; resize: vertical; padding: 13px 14px; }
.field input::placeholder, .field textarea::placeholder { color: #99a1a6; }
.choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 78px; display: grid; place-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; text-align: center; background: rgba(244,241,234,.62); font-size: .72rem; font-weight: 730; cursor: pointer; }
.choice input:checked + span { border-color: var(--purple); color: var(--purple-dark); background: rgba(115,87,255,.09); box-shadow: 0 0 0 2px rgba(115,87,255,.08); }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.form-note { color: #747e85; font-size: .7rem; }
.form-status { margin-top: 17px; padding: 13px 15px; border-radius: 12px; color: #176f61; background: rgba(65,217,189,.13); font-size: .78rem; }
.form-status.is-error { color: #a33b2e; background: rgba(214,73,52,.11); }
/* Honeypot: present in the DOM (so a bot filling every field trips it) but
   invisible and unreachable to a real visitor — not display:none alone,
   which some form-fillers skip; off-screen + unfocusable is the belt. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.aside-card { position: sticky; top: 102px; }
.aside-card h2 { margin-bottom: 20px; font-size: 1.45rem; letter-spacing: -.035em; }
.next-list { display: grid; gap: 19px; margin: 0; padding: 0; list-style: none; }
.next-list li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; color: var(--muted); font-size: .8rem; }
.next-list b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--purple-dark); background: rgba(115,87,255,.1); font-size: .68rem; }
.contact-direct { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .77rem; }
.contact-direct a { color: var(--purple-dark); font-weight: 760; }

.legal-hero { padding: 74px 0 46px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 13px; font-size: clamp(2.8rem,5.3vw,5rem); line-height: .98; letter-spacing: -.06em; }
.legal-hero p { max-width: 660px; color: var(--muted); }
.draft-banner { display: flex; gap: 12px; margin-bottom: 25px; padding: 14px 16px; border: 1px solid rgba(199,86,86,.24); border-radius: 13px; color: #7a3838; background: rgba(199,86,86,.08); font-size: .78rem; }
.draft-banner strong { white-space: nowrap; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; padding: 65px 0 105px; }
.legal-toc { position: sticky; top: 104px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,253,248,.62); }
.legal-toc strong { display: block; margin-bottom: 11px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.legal-toc a { display: block; padding: 6px 0; color: var(--muted); font-size: .74rem; }
.legal-toc a:hover { color: var(--purple-dark); }
.legal-content section { margin-bottom: 46px; scroll-margin-top: 104px; }
.legal-content h2 { margin-bottom: 11px; font-size: 1.45rem; letter-spacing: -.035em; }
.legal-content h3 { margin: 23px 0 8px; font-size: .98rem; }
.legal-content p, .legal-content li { color: #4f5a61; font-size: .9rem; }
.legal-content ul { padding-left: 20px; }
.placeholder { display: inline; padding: 2px 6px; border-radius: 6px; color: #8a4e21; background: rgba(241,149,95,.16); font-weight: 700; }

.not-found { min-height: calc(100vh - 145px); display: grid; place-items: center; padding: 70px 0; text-align: center; }
.not-found-art { width: 180px; height: 180px; display: grid; place-items: center; margin: 0 auto 30px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,253,248,.7); box-shadow: var(--shadow); }
.not-found-art img { width: 95px; transform: rotate(-10deg); }
.not-found h1 { margin-bottom: 14px; font-size: clamp(4rem,10vw,8rem); line-height: .8; letter-spacing: -.08em; }
.not-found h2 { margin-bottom: 12px; font-size: clamp(1.6rem,3vw,2.5rem); letter-spacing: -.04em; }
.not-found p { max-width: 520px; margin: 0 auto 25px; color: var(--muted); }

footer { border-top: 1px solid var(--line); background: rgba(255,253,248,.46); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.7fr); gap: 50px; padding: 55px 0 42px; }
.footer-brand p { max-width: 310px; margin-top: 17px; color: var(--muted); font-size: .82rem; }
.footer-column h3 { margin-bottom: 14px; font-size: .7rem; text-transform: uppercase; letter-spacing: .11em; }
.footer-column a { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; }
.footer-column a:hover { color: var(--purple-dark); }
.footer-bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #747e85; font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .nav-links { position: absolute; top: 74px; left: 20px; right: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.98); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 13px 12px; }
  .menu-button { display: block; }
  .hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .status-card { max-width: 650px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .aside-card { position: static; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .page-hero { padding: 56px 0 52px; }
  .page-hero h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .section { padding: 78px 0; }
  .card-grid, .security-grid, .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .roadmap-row { grid-template-columns: 1fr; gap: 7px; }
  .form-card, .aside-card { padding: 23px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 35px; }
  .legal-toc { position: static; }
  .draft-banner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

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