:root {
  --ink: #17211c;
  --muted: #58645f;
  --line: #d7ded6;
  --surface: #f7f8f4;
  --surface-strong: #ffffff;
  --forest: #163c34;
  --sage: #dbe7d5;
  --teal: #0f766e;
  --gold: #d89c2b;
  --coral: #d95f45;
  --blue: #295c8f;
  --shadow: 0 24px 80px rgba(22, 60, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid rgba(215, 222, 214, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-tools,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  width: 150px;
  height: 42px;
}

.brand > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--forest);
}

.header-tools {
  gap: 10px;
}

.language-toggle,
.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
}

.language-toggle {
  width: 58px;
  border: 1px solid var(--line);
  color: var(--forest);
  background: #ffffff;
  cursor: pointer;
}

.header-action,
.secondary-button {
  border: 1px solid var(--line);
  background: #ffffff;
}

.primary-button {
  color: #ffffff;
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(22, 60, 52, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
  min-height: calc(100vh - 72px);
  padding: 54px 5vw 68px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.98) 0%, rgba(247, 248, 244, 0.88) 42%, rgba(247, 248, 244, 0.22) 100%),
    linear-gradient(180deg, rgba(219, 231, 213, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 620px;
  font-size: 19px;
}

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

.hero-media {
  min-width: 0;
}

.hero-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.trust-strip div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.trust-strip dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.35;
}

.section-band,
.split-section,
.cta-section,
.legal-page {
  padding: 86px 5vw;
}

.section-band {
  background: #ffffff;
}

.section-band.alt {
  background: #eef4eb;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.feature-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.security-grid div {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  color: var(--forest);
  background: var(--sage);
  font-size: 13px;
  font-weight: 780;
}

.feature-card:nth-child(2) .icon-pill {
  background: rgba(216, 156, 43, 0.2);
}

.feature-card:nth-child(3) .icon-pill {
  background: rgba(41, 92, 143, 0.17);
}

.feature-card:nth-child(4) .icon-pill {
  background: rgba(217, 95, 69, 0.16);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 60px;
  align-items: start;
  background: var(--forest);
}

.split-section h2,
.split-section p,
.split-section .eyebrow {
  color: #ffffff;
}

.split-section p {
  color: rgba(255, 255, 255, 0.74);
}

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

.data-list div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.data-list strong {
  color: #ffffff;
}

.data-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

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

.security-grid div {
  min-height: 210px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.cta-section div {
  max-width: 780px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 5vw;
  color: var(--muted);
  background: #f0f3ed;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 540px;
  margin: 8px 0 0;
  font-size: 14px;
}

.site-footer .filing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.site-footer .filing-links a,
.site-footer .filing-links span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 26px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    min-height: 320px;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .hero,
  .section-band,
  .split-section,
  .cta-section,
  .legal-page {
    padding: 56px 18px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 30px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-copy,
  .hero-lede,
  .section-heading,
  .cta-section div {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .trust-strip,
  .feature-grid,
  .security-grid,
  .data-list div {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .security-grid div {
    min-height: auto;
  }

  .cta-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding: 28px 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
