:root {
  --ink: #101e1a;
  --muted: #5f6e68;
  --cream: #f6f7f2;
  --line: #dce5df;
  --green: #123c32;
  --dark: #081a16;
  --dark-2: #0b211c;
  --mint: #36d3be;
  --mint-soft: #dff4ea;
  --shadow: 0 28px 80px rgba(6, 28, 23, .14);
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { text-decoration: none; }
.wrap { width: min(1440px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 40px)); margin: 0 auto; }

header,
header.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border: 0;
  background: rgba(8, 26, 22, .74);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.brand {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.mark { display: none; }
.nav-links,
.navlinks,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.nav-links,
.navlinks { margin-left: auto; }
.nav-links a,
.navlinks a,
.nav a:not(.brand) {
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  font-weight: 780;
  transition: color .18s ease;
}
.nav-links a:hover,
.navlinks a:hover,
.nav a:not(.brand):hover { color: #fff; }

main { padding: 0; }

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7.2vw, 108px);
  font-weight: 950;
  line-height: .99;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.16; }
p { color: var(--muted); }
.lead { color: var(--muted); font-size: 18px; line-height: 1.75; }

.eyebrow,
.status {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(103, 232, 209, .28);
  border-radius: 999px;
  background: rgba(103, 232, 209, .1);
  color: #cffcf5;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(18, 60, 50, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button::after { content: "→"; font-size: 18px; line-height: 1; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); background: #0d3028; box-shadow: 0 24px 52px rgba(18, 60, 50, .24); }
.button:hover::after { transform: translateX(4px); }
.button.secondary,
.button.light {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.button.secondary:hover,
.button.light:hover { background: rgba(255, 255, 255, .14); }
.hero .button:first-child,
.band .button,
.form-card .button:not(.secondary),
.final .button {
  border-color: #fff;
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .68fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 150px max(20px, calc((100vw - 1440px) / 2 + 20px)) 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,26,22,.92) 0%, rgba(8,26,22,.73) 48%, rgba(8,26,22,.96) 100%),
    radial-gradient(circle at 50% 42%, rgba(54,211,190,.18), transparent 42%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero > *:not(.hero-photo):not(.hero-bg) {
  position: relative;
  z-index: 3;
}
.hero-photo,
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  opacity: .62;
  border: 0;
  transform: scale(1.04);
}
.hero .lead,
.hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.68;
}

.form-card {
  position: relative;
  z-index: 3;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 78px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.form-card h2 { color: var(--ink); font-size: clamp(28px, 3vw, 40px); }
.form-card p,
.form-card .hint { color: var(--muted); }

.note {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  backdrop-filter: blur(12px);
}
.note strong { color: #fff; }
.note p { color: rgba(255, 255, 255, .72); }

.section,
.content-section {
  padding: 80px 0;
}
.section.white { background: #fff; }
.section:nth-of-type(odd):not(.hero),
.content-section:nth-of-type(odd) { background: #fff; }

.grid,
.info-grid,
.services-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card,
.info-card,
.trust-card,
article.wrap {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.card,
.info-card,
.trust-card { padding: 28px; }
.card p,
.info-card p,
.trust-card p { margin-bottom: 0; line-height: 1.7; }

.faq-list,
.faq-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 0 28px;
}
.faq-list details,
.faq-panel details,
details {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-list details:last-child,
.faq-panel details:last-child,
details:last-child { border-bottom: 0; }
summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}
summary::after {
  content: "⌄";
  color: #147557;
  font-size: 22px;
  transition: transform .18s ease;
}
details[open] summary::after { transform: rotate(180deg); }
details p { margin: 0; padding: 0 0 24px; color: var(--muted); line-height: 1.75; }
.text-link { color: #0d604c; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.band,
.final {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 80px max(20px, calc((100vw - 1440px) / 2 + 20px));
  border: 0;
  border-radius: 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.band::before,
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background: url("hero-abstract-ai.jpg") center/cover;
}
.band::after,
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,26,22,.78);
}
.band > *,
.final > * {
  position: relative;
  z-index: 2;
}
.band h2,
.final h2 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
}
.band p,
.band .small,
.final p { color: rgba(255,255,255,.72); }
.band { display: block; }
.band .button { margin-top: 26px; }

article.wrap {
  margin-top: 0;
  padding: 34px;
}
.privacy-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
}
.privacy-hero .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 920px;
}

footer {
  padding: 48px 0;
  border: 0;
  background: var(--dark-2);
  color: rgba(255,255,255,.58);
}
.footer-row {
  min-height: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.footer-row span,
.footer-copy { color: rgba(255,255,255,.58); }
.footer-row a,
.footer-links a {
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 760;
}
.footer-row a:hover,
.footer-links a:hover { color: #fff; }
.footer-brand { color: #fff; font-size: 26px; font-weight: 950; }

@media (prefers-reduced-motion: no-preference) {
  .card,
  .info-card,
  .form-card,
  .band .button,
  .hero .button {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .card:hover,
  .info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(54,211,190,.4);
    box-shadow: 0 22px 44px rgba(6,28,23,.08);
  }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: 820px; }
  .grid,
  .info-grid,
  .services-grid,
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .wrap,
  .narrow { width: min(calc(100% - 28px), 360px); }
  header,
  header.topbar { position: fixed; }
  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
  }
  .brand { font-size: 21px; }
  .nav-links,
  .navlinks {
    width: 100%;
    gap: 16px;
    margin-left: 0;
  }
  .nav-links a,
  .navlinks a,
  .nav a:not(.brand) { font-size: 13px; }
  .hero {
    min-height: 820px;
    padding: 150px 14px 72px;
  }
  h1 { font-size: clamp(40px, 12vw, 56px); line-height: 1.02; overflow-wrap: anywhere; }
  h2 { font-size: clamp(30px, 8vw, 40px); overflow-wrap: anywhere; }
  h3, p, a, span, strong, summary { overflow-wrap: anywhere; }
  .actions,
  .hero-actions { display: grid; width: 100%; }
  .button { width: 100%; min-width: 0; padding-inline: 16px; text-align: center; }
  .section,
  .content-section { padding: 64px 0; }
  .grid,
  .info-grid,
  .services-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .card,
  .info-card,
  .trust-card,
  .form-card,
  article.wrap { padding: 24px; border-radius: 24px; }
  .faq-list,
  .faq-panel { padding: 0 20px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
