:root {
  --ink: #071019;
  --ink-soft: #0c1823;
  --panel: #101f2b;
  --paper: #f3f6f6;
  --white: #fbfdfd;
  --muted: #9eb0bb;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(7, 16, 25, .14);
  --accent: #39d4c3;
  --accent-dark: #167f77;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--accent); color: var(--ink); border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7, 16, 25, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); text-decoration: none; font-weight: 800; letter-spacing: -.02em; font-size: 1.12rem; }
.brand-mark { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(57, 212, 195, .5); border-radius: 8px; color: var(--accent); font-size: .79rem; letter-spacing: -.08em; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #cfdae0; text-decoration: none; font-size: .9rem; font-weight: 650; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
.nav-links .nav-cta { padding: 10px 16px; border-radius: 999px; color: var(--ink); background: var(--accent); }
.menu-toggle { display: none; color: var(--white); background: transparent; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font: inherit; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); padding: 92px 0 82px; }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -250px; top: -330px; border: 1px solid rgba(57, 212, 195, .22); border-radius: 50%; box-shadow: 0 0 0 100px rgba(57,212,195,.025), 0 0 0 200px rgba(57,212,195,.018); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.14fr .86fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 22px; color: var(--accent-dark); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: var(--accent); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.04em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3rem, 6.4vw, 6.1rem); font-weight: 760; }
.hero-copy { max-width: 710px; margin: 0 0 34px; color: #b8c7cf; font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.68; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 21px; border-radius: 999px; text-decoration: none; font-weight: 780; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--ink); }
.button-secondary { border: 1px solid rgba(255,255,255,.22); color: var(--white); }
.microcopy { margin: 16px 0 0; color: #8799a4; font-size: .84rem; }

.signal-card { position: relative; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 28px 75px rgba(0,0,0,.24); }
.signal-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.signal-title { font-size: .85rem; font-weight: 800; letter-spacing: .02em; }
.signal-status { color: var(--accent); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.signal-list { list-style: none; margin: 20px 0 0; padding: 0; }
.signal-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 13px 0; color: #d2dde2; border-bottom: 1px solid rgba(255,255,255,.07); }
.signal-list li:last-child { border-bottom: 0; }
.signal-number { color: var(--accent); font-size: .75rem; font-weight: 850; }
.signal-list strong { display: block; color: var(--white); font-size: .9rem; }
.signal-list span { color: #8fa1ab; font-size: .79rem; }

.proof-strip { color: var(--white); background: var(--ink-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 22px 28px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: .92rem; }
.proof-item span { color: #8fa1ab; font-size: .78rem; }

section { padding: 108px 0; scroll-margin-top: 78px; }
.section-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-head h2 { margin-bottom: 0; font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.section-head p { max-width: 630px; margin: 0; color: #4d5f69; font-size: 1.08rem; }

.desk { background: var(--white); }
.desk-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.desk-intro { min-height: 360px; padding: clamp(30px, 4vw, 54px); background: var(--ink); color: var(--white); border-radius: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.desk-intro h3 { max-width: 570px; margin-bottom: 22px; font-size: clamp(2rem, 4vw, 3.45rem); }
.desk-intro p { max-width: 600px; margin: 0; color: #aebdc5; }
.desk-note { display: flex; gap: 10px; align-items: center; color: var(--accent); font-weight: 750; font-size: .86rem; }
.desk-note::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.desk-points { display: grid; gap: 16px; }
.desk-point { padding: 25px 28px; background: var(--paper); border: 1px solid var(--line-dark); border-radius: 16px; }
.desk-point strong { display: block; margin-bottom: 7px; font-size: 1.04rem; }
.desk-point p { margin: 0; color: #596b75; font-size: .92rem; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service { min-height: 260px; padding: 28px; background: var(--white); border: 1px solid var(--line-dark); border-radius: 16px; display: flex; flex-direction: column; }
.service-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 50px; color: var(--accent-dark); background: rgba(57,212,195,.12); border-radius: 10px; font-size: .8rem; font-weight: 900; }
.service h3 { margin-bottom: 12px; font-size: 1.17rem; letter-spacing: -.025em; }
.service p { margin: 0; color: #5a6c76; font-size: .9rem; }

.process { color: var(--white); background: var(--ink); }
.process .section-head p { color: #9dafb9; }
.process-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.process-step { counter-increment: steps; position: relative; padding: 30px 26px 0 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 26px; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: "0" counter(steps); display: block; margin-bottom: 44px; color: var(--accent); font-size: .76rem; font-weight: 900; letter-spacing: .1em; }
.process-step h3 { margin-bottom: 12px; font-size: 1.35rem; }
.process-step p { margin: 0; color: #97a9b3; font-size: .89rem; }

.pilot { background: var(--paper); padding: 72px 0; }
.pilot-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; padding: clamp(34px, 5vw, 64px); color: var(--white); background: var(--ink-soft); border: 1px solid var(--line); border-radius: 22px; }
.pilot-box h2 { max-width: 520px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.pilot-copy p { margin: 0 0 25px; color: #b9c8cf; font-size: 1.02rem; }
.pilot-link { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); text-decoration: none; font-weight: 800; }
.pilot-link:hover, .pilot-link:focus-visible { color: var(--white); }

.audience { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { padding: 34px; border: 1px solid var(--line-dark); border-radius: 18px; }
.audience-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.audience-card p { margin: 0; color: #5a6b75; }

.compliance { padding-top: 0; background: var(--white); }
.compliance-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; padding: clamp(34px, 6vw, 70px); color: var(--white); background: #12222d; border-radius: 24px; }
.compliance-box h2 { margin-bottom: 0; font-size: clamp(2.1rem, 4vw, 3.6rem); }
.compliance-copy p { margin-top: 0; color: #b6c4cb; }
.check-list { list-style: none; margin: 25px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 26px; color: #dbe4e8; font-size: .92rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 10px; height: 2px; background: var(--accent); }

.final-cta { padding: 120px 0; text-align: center; background: var(--accent); color: var(--ink); }
.final-cta h2 { max-width: 800px; margin: 0 auto 20px; font-size: clamp(2.5rem, 5.5vw, 5rem); }
.final-cta p { max-width: 700px; margin: 0 auto 30px; font-size: 1.06rem; }
.final-cta .button { background: var(--ink); color: var(--white); }
.final-cta .microcopy { color: #155c57; }
.contact-person { width: fit-content; min-width: 310px; margin: 38px auto 0; padding: 20px 25px; text-align: left; color: var(--white); background: rgba(7, 16, 25, .94); border-radius: 14px; box-shadow: 0 14px 40px rgba(7,16,25,.16); }
.contact-person strong, .contact-person span, .contact-person a { display: block; }
.contact-person strong { font-size: 1rem; }
.contact-person span { margin: 2px 0 7px; color: #aebfc7; font-size: .86rem; }
.contact-person a { color: var(--accent); font-size: .88rem; text-decoration: none; }

.site-footer { padding: 36px 0; color: #9cafb9; background: var(--ink); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-identity strong, .footer-identity span, .footer-identity a { display: block; }
.footer-identity strong { color: var(--white); font-size: .9rem; }
.footer-identity span { font-size: .8rem; }
.footer-identity a { margin-top: 5px; color: var(--accent); text-decoration: none; font-size: .82rem; }
.footer-meta { text-align: right; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; font-size: .85rem; }
.footer-links a:hover { color: var(--white); }
.copyright { margin: 0; font-size: .8rem; }

.legal-hero { padding: 82px 0 58px; color: var(--white); background: var(--ink); }
.legal-hero h1 { max-width: 800px; margin-bottom: 16px; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-hero p { margin: 0; color: #aebec6; }
.legal-main { padding: 74px 0 105px; background: var(--white); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.5rem; letter-spacing: -.025em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #455761; }
.legal-content a { color: #0c756e; }

@media (max-width: 900px) {
  .hero-grid, .desk-grid, .compliance-box, .pilot-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 54px; }
  .signal-card { max-width: 620px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 45px; }
  .process-step:nth-child(2) { border-right: 0; }
  .compliance-box, .pilot-box { gap: 30px; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 30px), var(--max)); }
  .nav { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: 68px; display: none; padding: 18px 15px 24px; background: var(--ink); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 7px 0; }
  .nav-links .nav-cta { text-align: center; padding: 11px 16px; }
  .hero { padding: 70px 0 64px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero-copy { font-size: 1.03rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .signal-card { padding: 22px; }
  .proof-grid, .service-grid, .audience-grid { grid-template-columns: 1fr; }
  .proof-item { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  section { padding: 80px 0; }
  .service { min-height: auto; }
  .service-icon { margin-bottom: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 27px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step::before { margin-bottom: 24px; }
  .process-step:last-child { border-bottom: 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .contact-person { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
