:root {
  --ink: #16201d;
  --muted: #5f6d67;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --teal: #0b746a;
  --teal-dark: #075850;
  --amber: #d59131;
  --line: #dfe7e0;
  --shadow: 0 24px 70px rgba(10, 34, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(11, 23, 20, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #fff 0 11%, transparent 12%),
    linear-gradient(135deg, var(--amber), #f0c15b 46%, var(--teal) 47% 100%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  color: #12221f;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 86svh;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 18, 15, 0.9), rgba(4, 18, 15, 0.66) 42%, rgba(4, 18, 15, 0.2) 74%),
    linear-gradient(0deg, rgba(4, 18, 15, 0.4), transparent 38%);
}

.hero-content {
  z-index: 2;
  width: min(700px, calc(100% - 36px));
  align-self: center;
  padding: 88px 0 36px;
  margin-left: clamp(18px, 7vw, 92px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 9vw, 6.6rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-bullets {
  display: grid;
  gap: 8px;
  max-width: 620px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(213, 145, 49, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 26px;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 15px 25px;
  color: #10211d;
  background: linear-gradient(135deg, #f4d278, var(--amber));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(213, 145, 49, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 24px 54px rgba(213, 145, 49, 0.38);
}

.primary-button.dark {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 44px rgba(11, 116, 106, 0.28);
}

.microcopy {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 122px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 1.05rem;
}

.proof-item span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) 0;
}

.section-copy p:not(.eyebrow),
.cta-copy p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
}

.feature-panel {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(24, 48, 43, 0.08);
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.step + .step {
  border-top: 1px solid var(--line);
}

.step span {
  color: var(--teal);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: #33413c;
  font-weight: 700;
}

.benefits-section {
  display: block;
  padding-top: 0;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 112px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(11, 116, 106, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 245, 241, 0.94)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(24, 48, 43, 0.08);
}

.conversion-copy h2 {
  max-width: 9ch;
}

.discovery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.discovery-list div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.discovery-list strong,
.discovery-list span {
  display: block;
}

.discovery-list strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.discovery-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11, 116, 106, 0.08), transparent 45%),
    var(--surface);
}

.benefit-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 120px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 116, 106, 0.98), rgba(22, 32, 29, 0.96)),
    radial-gradient(circle at 85% 18%, rgba(213, 145, 49, 0.5), transparent 30%);
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  max-width: 13ch;
}

.cta-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 0.94rem;
  font-weight: 800;
}

.legal-page {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.legal-actions .primary-button {
  min-height: 50px;
}

.contact-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 12px;
}

.contact-list strong {
  color: var(--ink);
}

.sticky-cta {
  display: none;
}

.legal-page h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.legal-page h2 {
  max-width: none;
  margin-top: 36px;
  font-size: 1.6rem;
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .hero,
  .hero-media img {
    min-height: 84svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 18, 15, 0.9), rgba(4, 18, 15, 0.56)),
      linear-gradient(90deg, rgba(4, 18, 15, 0.7), transparent);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 15vw, 5.3rem);
  }

  .proof-strip,
  .section,
  .conversion-band,
  .benefit-grid,
  .cta-section,
  .site-footer,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: -28px;
  }

  .section {
    padding-block: 68px;
  }

  .cta-section {
    justify-items: start;
  }

  .conversion-copy h2 {
    max-width: 12ch;
  }

  .discovery-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .primary-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-cta .primary-button {
    box-shadow: 0 18px 44px rgba(8, 35, 31, 0.36);
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .microcopy {
    max-width: none;
  }

  .proof-item,
  .step,
  .benefit-card {
    padding: 20px;
  }

  .step {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
