:root {
  color-scheme: light;
  --ink: #142433;
  --ink-muted: #5d7183;
  --ink-soft: #7b8b99;
  --paper: #fbfcf9;
  --paper-deep: #f2f5ee;
  --panel: #ffffff;
  --navy: #0f2f48;
  --navy-2: #153c5a;
  --blue: #226a9f;
  --aqua: #29a9a0;
  --green: #85b55a;
  --gold: #d9a13b;
  --line: rgba(20, 36, 51, .13);
  --line-strong: rgba(20, 36, 51, .24);
  --shadow: 0 24px 70px rgba(15, 47, 72, .14);
  --shadow-soft: 0 14px 42px rgba(15, 47, 72, .09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(41,169,160,.16), transparent 32rem),
    linear-gradient(180deg, #fbfcf9 0%, #f8faf5 52%, #ffffff 100%);
  line-height: 1.62;
  min-width: 320px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(15,47,72,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,47,72,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  z-index: -1;
}
a { color: inherit; text-decoration-color: rgba(34,106,159,.35); text-underline-offset: .2em; }
a:hover { color: var(--blue); }
img, svg { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }
:focus-visible { outline: 3px solid rgba(217,161,59,.75); outline-offset: 4px; border-radius: 8px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: .75rem; z-index: 9999; background: var(--gold); color: #111; padding: .75rem 1rem; border-radius: 999px; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.trust-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: .58rem 1rem;
  background: #0b263b;
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  letter-spacing: .01em;
}
.trust-strip span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-strip span::before { content: ""; width: .42rem; height: .42rem; border-radius: 999px; background: var(--aqua); box-shadow: 0 0 0 4px rgba(41,169,160,.16); }
.trust-strip a { color: #fff; text-decoration-color: rgba(255,255,255,.45); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  background: rgba(251,252,249,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20,36,51,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); background: rgba(255,255,255,.94); }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--navy); min-width: max-content; }
.brand strong { display: block; font-size: 1.16rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1; }
.brand small { display: block; margin-top: .22rem; font-weight: 700; color: var(--ink-muted); letter-spacing: .03em; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 72% 26%, #fff 0 4px, transparent 5px),
    linear-gradient(135deg, var(--aqua), var(--blue) 52%, var(--navy));
  box-shadow: 0 12px 26px rgba(34,106,159,.23);
  position: relative;
  overflow: hidden;
}
.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(255,255,255,.68);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.brand-mark::after { inset: 15px; opacity: .78; }
.brand-mark span::before { inset: 22px; opacity: .64; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: .35rem; }
.primary-nav a {
  padding: .72rem .9rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
}
.primary-nav a:hover,
.primary-nav a.is-active { background: rgba(34,106,159,.09); color: var(--blue); }
.primary-nav .nav-privacy { color: var(--ink-muted); }
.header-cta, .footer-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .78rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.header-cta, .button-primary, .footer-cta {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15,47,72,.16);
}
.header-cta:hover, .button-primary:hover, .footer-cta:hover { transform: translateY(-1px); background: var(--blue); color: #fff; }
.button-secondary { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.button-secondary:hover { background: #f8fbff; color: var(--blue); transform: translateY(-1px); }
.button-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.button-ghost:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: var(--panel); width: 46px; height: 46px; border-radius: 14px; box-shadow: 0 8px 22px rgba(15,47,72,.12); }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main { overflow: hidden; }
.section, .hero, .page-hero, .legal-section { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 7vw, 7rem) 1.5rem; }
.hero { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(330px, .82fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; min-height: 760px; padding-top: clamp(4rem, 7vw, 7rem); }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; color: var(--blue); font-weight: 900; letter-spacing: .11em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 2rem; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--aqua), var(--gold)); }
h1, h2, h3, h4 { line-height: 1.07; margin: 0; color: var(--navy); letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 10.8ch; }
.page-hero h1 { max-width: 13ch; font-size: clamp(2.8rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--ink-muted); max-width: 690px; }
.hero .lead { margin: 1.4rem 0 1.8rem; }
.action-row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; margin-top: 2.2rem; }
.hero-proof div { background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 18px; padding: 1rem; box-shadow: 0 12px 32px rgba(15,47,72,.07); }
.hero-proof strong { display: block; color: var(--navy); font-size: 1.2rem; }
.hero-proof span { display: block; color: var(--ink-muted); font-size: .9rem; margin-top: .2rem; }
.hero-visual { position: relative; min-height: 570px; }
.network-console {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.48)),
    radial-gradient(circle at 70% 20%, rgba(41,169,160,.23), transparent 17rem),
    radial-gradient(circle at 20% 80%, rgba(217,161,59,.22), transparent 17rem);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.network-console::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  background-image: url('../img/signal-grid.svg');
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  opacity: .94;
}
.console-card {
  position: absolute;
  z-index: 2;
  width: 265px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(20,36,51,.12);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(15,47,72,.13);
  backdrop-filter: blur(18px);
}
.console-card strong { display: block; color: var(--navy); }
.console-card small { display: block; color: var(--ink-muted); margin-top: .15rem; }
.console-card.card-a { top: 8%; left: -2%; }
.console-card.card-b { right: -3%; top: 35%; }
.console-card.card-c { left: 9%; bottom: 8%; }
.status-line { display: grid; grid-template-columns: 50px 1fr; gap: .7rem; align-items: center; margin-top: .85rem; }
.pulse-dot { width: 48px; height: 48px; border-radius: 50%; background: radial-gradient(circle, var(--aqua) 0 5px, rgba(41,169,160,.18) 6px 100%); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: 2px; border: 1px solid rgba(41,169,160,.45); border-radius: inherit; animation: pulse 2.4s ease-out infinite; }
.status-bars span { display: block; height: 7px; background: linear-gradient(90deg, var(--aqua), rgba(34,106,159,.34)); border-radius: 999px; margin: .3rem 0; }
.status-bars span:nth-child(2) { width: 76%; }
.status-bars span:nth-child(3) { width: 52%; }
.signal-orbit {
  position: absolute;
  z-index: 1;
  inset: 92px 54px;
  border: 1px dashed rgba(15,47,72,.17);
  border-radius: 50%;
  animation: orbit 23s linear infinite;
}
.signal-orbit::before, .signal-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(217,161,59,.14);
}
.signal-orbit::before { top: 13%; left: 6%; }
.signal-orbit::after { right: 11%; bottom: 14%; background: var(--aqua); box-shadow: 0 0 0 9px rgba(41,169,160,.14); }
@keyframes pulse { 0% { transform: scale(.8); opacity: .85; } 80%,100% { transform: scale(1.65); opacity: 0; } }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.section-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-header .lead { max-width: 580px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .info-card, .legal-card, .process-card, .contact-card, .scope-card {
  position: relative;
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(20,36,51,.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2vw, 1.6rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-card::before, .info-card::before, .process-card::before, .scope-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--aqua), var(--blue), var(--gold));
  opacity: .82;
}
.service-card { min-height: 295px; display: flex; flex-direction: column; gap: 1rem; }
.service-card p, .info-card p, .process-card p, .scope-card p { color: var(--ink-muted); }
.card-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: rgba(34,106,159,.1); color: var(--blue); margin-bottom: .35rem; }
.card-icon svg { width: 32px; height: 32px; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 900; color: var(--blue); text-decoration: none; }
.card-link::after { content: "→"; transition: transform .18s ease; }
.card-link:hover::after { transform: translateX(4px); }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.panel-illustration { min-height: 420px; border-radius: 36px; background: #0f2f48; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.panel-illustration img, .panel-illustration svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.panel-illustration::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 52%); pointer-events: none; }
.check-list, .plain-list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .8rem; }
.check-list li, .plain-list li { position: relative; padding-left: 2rem; color: var(--ink-muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; border-radius: 50%; background: rgba(41,169,160,.14); color: #0d796f; font-weight: 900; font-size: .82rem; }
.plain-list li::before { content: ""; position: absolute; left: .2rem; top: .64rem; width: .55rem; height: .55rem; border-radius: 999px; background: var(--gold); }
.process-track { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; counter-reset: step; }
.process-card { counter-increment: step; }
.process-card::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(15,47,72,.08);
}
.cta-panel {
  border-radius: 38px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(41,169,160,.28), transparent 18rem),
    linear-gradient(135deg, #0f2f48, #153c5a 55%, #184564);
  color: rgba(255,255,255,.88);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-panel h2 { color: #fff; }
.cta-panel p { max-width: 670px; color: rgba(255,255,255,.78); margin-top: .7rem; }
.badge-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.badge { display: inline-flex; align-items: center; gap: .45rem; border: 1px solid rgba(20,36,51,.13); color: var(--ink-muted); background: rgba(255,255,255,.64); border-radius: 999px; padding: .45rem .75rem; font-size: .9rem; font-weight: 800; }
.badge::before { content: ""; width: .48rem; height: .48rem; border-radius: 50%; background: var(--aqua); }
.cta-panel .badge { color: rgba(255,255,255,.82); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }

.page-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr); gap: 2rem; align-items: center; padding-bottom: clamp(2rem, 4vw, 4rem); }
.page-hero .lead { margin-top: 1rem; }
.page-art {
  min-height: 300px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15,47,72,.94), rgba(34,106,159,.82)),
    url('../img/us-network.svg') center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.page-art::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.22); border-radius: 26px; }
.page-art::after { content: ""; position: absolute; width: 145px; height: 145px; border-radius: 50%; background: rgba(41,169,160,.28); right: -35px; top: -35px; box-shadow: -220px 210px 0 rgba(217,161,59,.16); }
.breadcrumbs { display: flex; gap: .5rem; flex-wrap: wrap; font-size: .9rem; color: var(--ink-muted); margin-bottom: .85rem; }
.breadcrumbs a { font-weight: 800; text-decoration: none; color: var(--blue); }
.breadcrumbs span::before { content: "/"; margin-right: .5rem; color: var(--ink-soft); }
.content-band { background: rgba(242,245,238,.64); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-band .section { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.quote-box {
  border-left: 5px solid var(--aqua);
  background: #fff;
  border-radius: 0 22px 22px 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.quote-box p { color: var(--ink-muted); }
.table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: rgba(15,47,72,.06); color: var(--navy); }
tr:last-child td { border-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 1.2rem; align-items: start; }
.contact-stack { display: grid; gap: 1rem; }
.contact-card h2, .contact-card h3 { margin-bottom: .7rem; }
.contact-card p, .contact-card li { color: var(--ink-muted); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.contact-list a { font-weight: 900; color: var(--blue); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 900; color: var(--navy); }
.required { color: #a65a00; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(20,36,51,.22);
  border-radius: 14px;
  padding: .88rem .95rem;
  background: #fbfcf9;
  color: var(--ink);
}
textarea { min-height: 145px; resize: vertical; }
.form-help { font-size: .92rem; color: var(--ink-soft); margin-top: .25rem; }
.form-status { min-height: 1.4rem; color: #0d756d; font-weight: 800; margin-top: .85rem; }
.legal-note { padding: 1rem; border: 1px dashed rgba(20,36,51,.22); border-radius: 18px; background: rgba(242,245,238,.7); color: var(--ink-muted); font-size: .95rem; }
.map-card { min-height: 260px; border-radius: 28px; overflow: hidden; background: #0f2f48; position: relative; box-shadow: var(--shadow-soft); }
.map-card img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .98; }

.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 2rem; align-items: start; }
.toc { position: sticky; top: 96px; background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: 22px; padding: 1rem; box-shadow: var(--shadow-soft); }
.toc h2 { font-size: 1rem; letter-spacing: 0; margin-bottom: .6rem; }
.toc a { display: block; padding: .48rem .55rem; color: var(--ink-muted); text-decoration: none; border-radius: 10px; font-weight: 750; font-size: .94rem; }
.toc a:hover { background: rgba(34,106,159,.08); color: var(--blue); }
.legal-content { display: grid; gap: 1rem; }
.legal-card h2 { font-size: clamp(1.45rem, 2vw, 2.1rem); margin-bottom: .7rem; }
.legal-card h3 { font-size: 1.1rem; margin: 1rem 0 .4rem; letter-spacing: 0; }
.legal-card p, .legal-card li { color: var(--ink-muted); }
.legal-card ul, .legal-card ol { margin-top: .7rem; padding-left: 1.2rem; }
.legal-card li + li { margin-top: .45rem; }
.effective-date { color: var(--ink-muted); margin-top: .9rem; font-weight: 800; }
.notice-card { border: 1px solid rgba(217,161,59,.44); background: rgba(217,161,59,.11); box-shadow: none; }

.site-footer { background: #0b263b; color: rgba(255,255,255,.82); margin-top: 3rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .8fr .95fr 1fr; gap: 2rem; padding: clamp(3rem, 6vw, 5rem) 1.5rem 2rem; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255,255,255,.62); }
.footer-brand-block p { margin-top: 1rem; max-width: 420px; }
.footer-identity { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; font-size: .95rem; }
.site-footer h2 { color: #fff; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.site-footer a, .site-footer .link-button { color: rgba(255,255,255,.86); text-decoration-color: rgba(255,255,255,.28); }
.site-footer a:hover, .site-footer .link-button:hover { color: #fff; }
.link-button { border: 0; background: transparent; padding: 0; text-decoration: underline; cursor: pointer; text-underline-offset: .2em; }
.footer-cta { margin-top: 1rem; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); box-shadow: none; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 1.2rem 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; color: rgba(255,255,255,.64); }
.footer-bottom p { max-width: 660px; }
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent h2 { font-size: 1.1rem; margin-bottom: .2rem; }
.cookie-consent p { color: var(--ink-muted); font-size: .94rem; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; min-width: max-content; }
.preferences-modal { border: 0; padding: 0; border-radius: 26px; box-shadow: var(--shadow); width: min(620px, calc(100vw - 2rem)); }
.preferences-modal::backdrop { background: rgba(11,38,59,.55); backdrop-filter: blur(4px); }
.preferences-modal form { padding: 1.25rem; }
.modal-header, .modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.modal-header h2 { font-size: 1.5rem; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 50%; cursor: pointer; font-size: 1.45rem; line-height: 1; }
.preference-row { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.preference-row span { display: grid; gap: .12rem; }
.preference-row small { font-weight: 500; color: var(--ink-muted); }
.preference-row input { width: auto; transform: scale(1.25); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero, .page-hero, .split-section, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 480px; }
  .card-grid, .card-grid.two, .card-grid.four, .process-track { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .toc { position: static; }
  .header-cta { display: none; }
}
@media (max-width: 760px) {
  .trust-strip { justify-content: flex-start; }
  .site-header { padding: .75rem 1rem; }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: grid;
    gap: .2rem;
    padding: .7rem;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .primary-nav.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { border-radius: 14px; }
  h1, .page-hero h1 { max-width: none; }
  .hero-proof, .card-grid, .card-grid.two, .card-grid.four, .process-track, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .network-console { min-height: 410px; border-radius: 30px; }
  .network-console::before { inset: .8rem; }
  .console-card { width: min(240px, 78vw); }
  .console-card.card-a { left: .6rem; top: 1.2rem; }
  .console-card.card-b { right: .6rem; top: 39%; }
  .console-card.card-c { left: .6rem; bottom: 1.2rem; }
  .section-header, .cta-panel, .footer-bottom, .cookie-consent, .modal-header, .modal-actions { display: grid; }
  .cookie-actions { min-width: 0; }
  .button, .header-cta, .footer-cta { width: 100%; }
  .page-art { min-height: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
