:root {
  color-scheme: dark;
  --bg: #031219;
  --bg-deep: #020c12;
  --surface: #071f29;
  --surface-2: #0a2a35;
  --surface-3: #0d3440;
  --line: rgba(95, 224, 235, 0.22);
  --line-strong: rgba(95, 224, 235, 0.42);
  --text: #f2fbff;
  --muted: #9cb9c4;
  --muted-2: #6f939f;
  --cyan: #35d9e8;
  --cyan-soft: #9cf6ff;
  --green: #82f440;
  --green-soft: #c7ff9d;
  --danger: #ff8c8c;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
  --header-h: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 4%, rgba(53, 217, 232, 0.10), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(130, 244, 64, 0.08), transparent 28%),
    linear-gradient(180deg, #04141c 0%, #031219 42%, #020d13 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button,
input {
  font: inherit;
}

button { color: inherit; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(119, 225, 235, 0.14);
  background: rgba(2, 15, 21, 0.88);
  backdrop-filter: blur(20px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 13, 19, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-symbol {
  width: 58px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(53, 217, 232, 0.2));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #d5e8ed;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-current {
  background: rgba(87, 220, 231, 0.08);
  color: #fff;
}

.nav-link.is-current::after {
  content: "";
  align-self: flex-end;
  width: 18px;
  height: 2px;
  margin: 0 0 2px -24px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-left: 5px;
  border-radius: 12px;
  background: linear-gradient(115deg, var(--cyan), var(--green));
  color: #031318;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(62, 220, 188, 0.17);
}

.nav-group { position: relative; }

.nav-trigger svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.nav-group.is-open .nav-trigger svg { transform: rotate(180deg); }

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 310px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 27, 36, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group.is-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-product,
.nav-catalog {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
}

.nav-product:hover,
.nav-catalog:hover { background: rgba(89, 225, 234, 0.08); }

.nav-product img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.nav-product span,
.nav-catalog span:last-child { display: grid; gap: 2px; }

.nav-product small,
.nav-catalog small { color: var(--muted); font-size: 0.72rem; }

.nav-product strong,
.nav-catalog strong { font-size: 0.9rem; }

.nav-catalog-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cyan);
  font-size: 1.3rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,0.025);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #ecfbff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

/* Shared hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  border-bottom: 1px solid rgba(107, 226, 235, 0.13);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::before {
  width: 520px;
  height: 520px;
  top: -300px;
  left: -180px;
  background: radial-gradient(circle, rgba(53,217,232,.14), transparent 68%);
}

.page-hero::after {
  width: 440px;
  height: 440px;
  right: -120px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(130,244,64,.1), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(130,244,64,.09), 0 0 18px rgba(130,244,64,.55);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  line-height: .99;
  letter-spacing: -0.055em;
}

.page-hero h1 .accent {
  background: linear-gradient(110deg, #d9fbff, var(--cyan), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #c2d7de;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 830;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(115deg, var(--cyan), var(--green));
  color: #031318;
  box-shadow: 0 14px 34px rgba(75, 226, 190, .16);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.025);
  color: #eefcff;
}

.button-quiet {
  min-height: 42px;
  padding-inline: 15px;
  border-color: var(--line);
  background: transparent;
  color: var(--cyan-soft);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(15, 59, 70, .8), rgba(4, 29, 38, .94)),
    rgba(6, 30, 39, .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: -140px;
  right: -100px;
  border: 1px solid rgba(80, 222, 234, .18);
  border-radius: 50%;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(114, 224, 235, .16);
}

.panel-brand img {
  width: 78px;
  height: 56px;
  object-fit: contain;
}

.panel-brand div { display: grid; gap: 3px; }
.panel-brand strong { font-size: 1.25rem; }
.panel-brand small { color: var(--muted); }

.panel-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  display: flex;
  gap: 10px;
  color: #c9e2e8;
  font-size: .9rem;
}

.panel-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.panel-note {
  margin-top: 22px;
  padding: 15px 16px;
  border: 1px solid rgba(130, 244, 64, .2);
  border-radius: 15px;
  background: rgba(130, 244, 64, .045);
  color: #c8e9d0;
  font-size: .83rem;
}

/* Section headings and cards */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.info-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(10, 42, 53, .72), rgba(4, 24, 32, .85));
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.card-number {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green);
  font-size: 1.25rem;
  background: rgba(255,255,255,.02);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.info-card .card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan-soft);
  font-weight: 800;
  font-size: .88rem;
}

/* Support */
.support-search-wrap {
  margin-top: 34px;
  max-width: 760px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: #cde3e8;
  font-size: .82rem;
  font-weight: 750;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  width: 100%;
  min-height: 58px;
  padding: 0 50px 0 48px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  outline: none;
  background: rgba(3, 20, 27, .78);
  color: var(--text);
}

.search-box input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53,217,232,.08);
}

.search-icon {
  position: absolute;
  left: 18px;
  color: var(--cyan);
}

.search-key {
  position: absolute;
  right: 14px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted-2);
  font-size: .7rem;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: prep;
}

.prep-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 31, 41, .65);
}

.prep-item::before {
  counter-increment: prep;
  content: "0" counter(prep);
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.prep-item strong { display: block; margin-bottom: 6px; }
.prep-item span { color: var(--muted); font-size: .86rem; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.faq-list { display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(5, 26, 35, .72);
  overflow: hidden;
}

.faq-item[hidden] { display: none; }

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 760;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.faq-empty {
  display: none;
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 17px;
  color: var(--muted);
  text-align: center;
}

.faq-empty.is-visible { display: block; }

.side-callout {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 24px;
  border: 1px solid rgba(130,244,64,.22);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(17, 59, 49, .62), rgba(4, 27, 35, .84));
}

.side-callout .card-icon { margin-bottom: 15px; }
.side-callout h3 { margin: 0 0 8px; }
.side-callout p { margin: 0; color: var(--muted); }
.side-callout .button { width: 100%; margin-top: 20px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 22px;
}

.contact-primary,
.contact-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(10,42,53,.7), rgba(4,24,32,.86));
}

.contact-primary { padding: 34px; }
.contact-side { padding: 28px; }

.contact-primary h2,
.contact-side h2 { margin: 0 0 12px; letter-spacing: -.035em; }
.contact-primary > p,
.contact-side > p { margin: 0; color: var(--muted); }

.contact-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(2, 17, 23, .54);
}

.contact-address div { display: grid; gap: 4px; min-width: 0; }
.contact-address small { color: var(--muted); }
.contact-address strong { overflow-wrap: anywhere; font-size: clamp(1rem, 2vw, 1.35rem); }

.copy-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.copy-button:hover { border-color: var(--cyan); }

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.route-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.route-item span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--green);
  background: rgba(130,244,64,.06);
}

.route-item div { display: grid; gap: 3px; }
.route-item strong { font-size: .94rem; }
.route-item small { color: var(--muted); }

.contact-tips {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.contact-tips li {
  display: flex;
  gap: 10px;
  color: #c6dde3;
  font-size: .9rem;
}
.contact-tips li::before { content: "✓"; color: var(--green); font-weight: 900; }

/* Legal */
.legal-hero .hero-grid { grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); }

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.legal-meta div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.022);
}

.legal-meta dt {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-meta dd { margin: 0; font-weight: 760; font-size: .88rem; }

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

.summary-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,31,41,.63);
}

.summary-card span {
  display: block;
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.summary-card strong { display: block; margin-bottom: 7px; }
.summary-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 26, 35, .78);
}

.legal-nav strong {
  display: block;
  margin: 0 0 12px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .84rem;
}

.legal-nav a:hover { background: rgba(53,217,232,.07); color: #fff; }

.legal-document {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(8, 36, 46, .74), rgba(3, 21, 29, .9));
}

.legal-document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal-document-brand { display: flex; align-items: center; gap: 12px; }
.legal-document-brand img { width: 52px; height: 38px; object-fit: contain; }
.legal-document-brand div { display: grid; gap: 2px; }
.legal-document-brand strong { font-size: .95rem; }
.legal-document-brand small { color: var(--muted); font-size: .74rem; }

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(102, 221, 231, .12);
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.legal-section:last-child { border-bottom: 0; }

.legal-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 14px;
}

.legal-section-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--cyan-soft);
  font-size: .75rem;
  font-weight: 900;
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  letter-spacing: -.03em;
}

.legal-section p { margin: 0 0 13px; color: #c2d6dc; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--cyan-soft); text-decoration: underline; text-underline-offset: 3px; }

.product-legal-callout {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(130,244,64,.22);
  border-radius: 18px;
  background: rgba(130,244,64,.045);
}

.product-legal-callout img { width: 62px; height: 62px; border-radius: 15px; }
.product-legal-callout div { display: grid; gap: 3px; }
.product-legal-callout small { color: var(--muted); }
.product-legal-callout strong { font-size: 1rem; }

/* CTA and footer */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(106, 225, 234, .12);
  border-bottom: 1px solid rgba(106, 225, 234, .12);
  background: linear-gradient(110deg, rgba(13, 65, 70, .42), rgba(8, 37, 46, .72), rgba(32, 75, 36, .30));
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.cta-inner h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.04em; }
.cta-inner p { margin: 0; color: var(--muted); }

.site-footer {
  padding: 58px 0 24px;
  background: #020b10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .55fr));
  gap: 38px;
}

.footer-brand p {
  max-width: 440px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column strong { margin-bottom: 4px; font-size: .86rem; }
.footer-column a { color: var(--muted); font-size: .84rem; }
.footer-column a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(107, 224, 234, .12);
  color: var(--muted-2);
  font-size: .78rem;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 20px;
  width: min(760px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(4, 27, 36, .98);
  box-shadow: 0 20px 70px rgba(0,0,0,.48);
  transform: translateX(-50%);
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.cookie-copy strong { display: block; margin-bottom: 4px; }
.cookie-copy p { margin: 0; color: var(--muted); font-size: .84rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding-inline: 14px; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1020px) {
  :root { --shell: min(100% - 32px, 920px); }

  .hero-grid,
  .legal-hero .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel { max-width: 720px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .side-callout { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px 34px;
    overflow-y: auto;
    background: rgba(2, 15, 21, .99);
  }

  .site-nav.is-open { display: flex; }
  .nav-link, .nav-trigger, .nav-cta { width: 100%; justify-content: space-between; min-height: 50px; margin: 0; }
  .nav-link.is-current::after { display: none; }
  .nav-group { width: 100%; }

  .nav-panel {
    position: static;
    width: 100%;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255,255,255,.02);
  }

  .nav-group.is-open .nav-panel { display: block; }

  .page-hero { padding: 64px 0; }
  .section { padding: 72px 0; }
  .page-hero h1 { font-size: clamp(2.35rem, 10vw, 4.2rem); }
  .legal-summary { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .legal-nav strong { width: 100%; }
  .legal-nav a { border: 1px solid var(--line); }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 24px, 620px); --header-h: 70px; }

  .brand-symbol { width: 50px; height: 36px; }
  .brand-copy small { font-size: .68rem; }

  .page-hero { padding: 50px 0 54px; }
  .hero-grid { gap: 38px; }
  .page-hero h1 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .hero-lead { margin-top: 20px; font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-panel { padding: 22px; border-radius: 24px; }

  .card-grid,
  .prep-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .info-card { padding: 22px; }
  .contact-primary, .contact-side { padding: 22px; border-radius: 23px; }
  .contact-address { align-items: stretch; flex-direction: column; }
  .copy-button { width: 100%; }

  .legal-meta { grid-template-columns: 1fr; }
  .legal-document { padding: 20px; border-radius: 22px; }
  .legal-document-header { align-items: flex-start; flex-direction: column; }
  .legal-section-heading { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .legal-section-number { width: 38px; height: 38px; }
  .product-legal-callout { grid-template-columns: 52px minmax(0, 1fr); }
  .product-legal-callout .button { grid-column: 1 / -1; width: 100%; }

  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button:last-child { grid-column: 1 / -1; }

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

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

/* Print for legal pages */
@page { size: A4; margin: 16mm 15mm 18mm; }

@media print {
  :root { color-scheme: light; }

  html, body {
    background: #fff !important;
    color: #111 !important;
  }

  .site-header,
  .page-hero,
  .legal-nav,
  .cta-band,
  .site-footer,
  .cookie-banner,
  .button,
  .copy-button {
    display: none !important;
  }

  .section {
    padding: 0 !important;
  }

  .shell {
    width: 100% !important;
    max-width: none !important;
  }

  .legal-layout {
    display: block !important;
  }

  .legal-document {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .legal-document,
  .legal-document * {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .legal-document-header {
    display: flex !important;
    padding-bottom: 10mm !important;
    margin-bottom: 2mm !important;
    border-bottom: 1pt solid #333 !important;
  }

  .legal-document-brand img {
    width: 24mm !important;
    height: 17mm !important;
    object-fit: contain !important;
  }

  .legal-document-brand strong { font-size: 14pt !important; }
  .legal-document-brand small { color: #555 !important; }

  .legal-section {
    padding: 7mm 0 !important;
    border-bottom: .5pt solid #aaa !important;
    break-inside: auto !important;
  }

  .legal-section-heading {
    break-after: avoid-page !important;
    page-break-after: avoid !important;
  }

  .legal-section-number {
    border-color: #555 !important;
    color: #111 !important;
  }

  .legal-section h2 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15pt !important;
  }

  .legal-section p {
    color: #222 !important;
    font-size: 10.5pt !important;
    line-height: 1.55 !important;
    orphans: 3;
    widows: 3;
  }

  .product-legal-callout {
    border: .7pt solid #777 !important;
    background: #fff !important;
    break-inside: avoid !important;
  }

  .product-legal-callout img { width: 18mm !important; height: 18mm !important; }
}
