:root {
  --blue: #08245c;
  --green: #00ca80;
  --black: #050505;
  --white: #ffffff;
  --ink: rgba(5, 5, 5, .74);
  --muted: rgba(8, 36, 92, .64);
  --line: rgba(8, 36, 92, .16);
  --green-12: rgba(0, 202, 128, .12);
  --green-22: rgba(0, 202, 128, .22);
  --radius-lg: 24px;
  --radius-xl: 34px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 202, 128, .16), transparent 30vw),
    linear-gradient(90deg, rgba(8, 36, 92, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 36, 92, .055) 1px, transparent 1px),
    var(--white);
  background-size: auto, 56px 56px, 56px 56px, auto;
}

body.menu-open { overflow: hidden; }

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

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled { background: rgba(255, 255, 255, .95); }

.header-inner {
  width: min(1260px, calc(100vw - 36px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  width: clamp(150px, 13vw, 190px);
  height: auto;
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(5, 5, 5, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 14px 40px rgba(5, 5, 5, .06);
}

.nav a {
  padding: 10px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active { background: rgba(0, 202, 128, .12); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 36, 92, .12);
}

.btn.primary {
  border-color: var(--green);
  background: var(--green);
}

.btn.ghost { background: var(--white); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle i {
  position: relative;
  width: 19px;
  height: 2px;
  display: block;
  background: var(--blue);
  transition: background .25s ease;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--blue);
  transition: transform .25s ease;
}

.menu-toggle i::before { transform: translateY(-7px); }
.menu-toggle i::after { transform: translateY(7px); }
.menu-open .menu-toggle i { background: transparent; }
.menu-open .menu-toggle i::before { transform: rotate(45deg); }
.menu-open .menu-toggle i::after { transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 76px 14px auto 14px;
  z-index: 950;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 10px;
  max-height: calc(100svh - 90px);
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 80px rgba(5, 5, 5, .14);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.mobile-panel a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  color: var(--blue);
  font-size: clamp(17px, 4.6vw, 22px);
  font-weight: 900;
}

.mobile-panel a span {
  color: rgba(8, 36, 92, .72);
  font-size: .78em;
}

.mobile-panel-action {
  min-height: 52px !important;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid var(--black) !important;
  border-radius: 999px;
  justify-content: center !important;
  text-align: center;
  font-size: 15px !important;
}

.mobile-panel-action span { display: none; }
.mobile-panel-action.primary-action {
  border-color: var(--green) !important;
  background: var(--green);
}

.menu-open .mobile-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(0, 202, 128, .13);
}

.legal-hero {
  padding: 92px 0 64px;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
  gap: 42px;
  align-items: end;
}

.page-title {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: .9;
font-weight: 950;
  text-wrap: balance;
}

.page-title span { color: var(--green); }

.page-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
  text-wrap: pretty;
}

.meta-card {
  padding: 26px;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
  box-shadow: 10px 10px 0 var(--green);
}

.meta-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.meta-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.5;
}

.legal-page {
  padding: 54px 0 86px;
}

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

.legal-nav {
  position: sticky;
  top: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(8, 36, 92, .08);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.legal-nav a:hover { color: var(--blue); }

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
}

.legal-section.featured {
  border-color: var(--black);
  background:
    radial-gradient(circle at 94% 0, var(--green-22), transparent 42%),
    var(--white);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .95;
font-weight: 950;
  text-wrap: balance;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.1;
}

.legal-section p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.48;
}

.legal-section li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--green);
}

.final-cta {
  padding: 54px 0 80px;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 202, 128, .18), transparent 30vw),
    linear-gradient(90deg, rgba(8, 36, 92, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 36, 92, .055) 1px, transparent 1px),
    var(--white);
  background-size: auto, 56px 56px, 56px 56px, auto;
  color: var(--blue);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--black);
  border-radius: var(--radius-xl);
  background: var(--blue);
  color: var(--white);
  box-shadow: 14px 14px 0 var(--green);
}

.cta-box h2 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: .94;
font-weight: 950;
}

.footer {
  padding: 72px 0 28px;
  background: var(--blue);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.2fr;
  gap: 54px;
}

.footer .brand {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--white);
}

.footer .brand-logo { width: 176px; }

.footer p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
text-transform: uppercase;
}

.footer a,
.footer-contact-list span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.5;
}

.footer a + a,
.footer-contact-list > * + * { margin-top: 8px; }

.footer a:hover { color: var(--green); }

.footer-social,
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 8px;
}

.footer-social a,
.footer-legal-links a {
  display: inline;
  margin-top: 0 !important;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.footer-bottom a {
  display: inline;
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 1080px) {
  .nav,
  .header-actions .btn { display: none; }

  .header-inner {
    min-height: 70px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle { display: inline-flex; }

  .mobile-panel { inset-top: 70px; }

  .legal-hero-grid,
  .legal-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

  .legal-nav strong {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 420px); }

  body { background-size: auto, 44px 44px, 44px 44px, auto; }

  .brand-logo { width: 150px; }

  .mobile-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 8px;
    padding: 14px;
    max-height: calc(100svh - 86px);
    overflow: auto;
  }

  .mobile-panel a {
    min-height: 54px;
    font-size: 17px;
  }

  .mobile-panel-action {
    min-height: 48px !important;
    font-size: 14px !important;
  }

  .legal-hero {
    padding: 54px 0 36px;
    text-align: center;
  }

  .legal-hero .eyebrow {
    justify-content: center;
  }

  .page-title {
    font-size: clamp(46px, 15vw, 64px);
  }

  .page-copy {
    margin-inline: auto;
    font-size: 17px;
  }

  .meta-card {
    width: min(100% - 12px, 380px);
    margin-inline: auto;
    text-align: left;
    box-shadow: none;
  }

  .legal-page {
    padding: 34px 0 54px;
  }

  .legal-layout {
    gap: 24px;
  }

  .legal-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    scrollbar-width: none;
  }

  .legal-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-nav strong {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--blue);
    font-weight: 850;
    white-space: nowrap;
  }

  .legal-section {
    padding: 22px;
  }

  .legal-section h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .legal-section p,
  .legal-section li {
    font-size: 15.5px;
  }

  .final-cta {
    padding: 28px 0 58px;
  }

  .cta-box {
    width: min(100% - 18px, 380px);
    margin-inline: auto;
    padding: 24px;
    text-align: center;
    box-shadow: 8px 10px 0 var(--green);
  }

  .cta-box h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .cta-box .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-legal-links a {
    display: block;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (min-width: 721px) {
  .eyebrow {
    font-size: clamp(13px, .82vw, 14px);
  }
}
