:root {
  --ink: #151513;
  --paper: #fbfaf7;
  --muted: #f1eee7;
  --line: #ddd8cc;
  --text-soft: #5f5b53;
  --teal: #1b7f78;
  --teal-dark: #0e5650;
  --amber: #d99a2b;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(20, 20, 16, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(13, 15, 14, 0.72), rgba(13, 15, 14, 0));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a,
.header-cta {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.9) 0%, rgba(8, 10, 9, 0.72) 35%, rgba(8, 10, 9, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.72) 0%, rgba(8, 10, 9, 0.02) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(38px, 8vh, 82px) clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 6.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(14, 86, 80, 0.28);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.section .button.secondary,
.cta-panel .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 34px 0 0;
}

.quick-facts div {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-facts dd {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 1.07rem;
  font-weight: 850;
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 64px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-band {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.intro-grid,
.split,
.two-column,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-heading h2,
.intro-grid h2,
.two-column h2,
.cta-panel h2 {
  margin: 0;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.two-column p,
.cta-panel p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.intro-grid .section-kicker,
.intro-grid p {
  color: var(--amber);
}

.intro-grid h2 {
  max-width: 450px;
}

.issue-list,
.plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-list li,
.plain-list li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border-radius: 8px;
  font-weight: 750;
}

.issue-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plain-list li {
  background: var(--white);
  border: 1px solid var(--line);
}

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

.feature-card {
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(30, 28, 24, 0.06);
}

.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.feature-card h3,
.steps h3 {
  margin: 18px 0 8px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.feature-card p,
.steps p,
.faq-list p {
  margin: 0;
  color: var(--text-soft);
}

.muted {
  background: var(--muted);
}

.narrow {
  max-width: 660px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 235px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-section {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 64px);
  background: var(--ink);
}

.cta-panel {
  width: min(930px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cta-panel p {
  color: var(--text-soft);
}

.small-note {
  margin-top: 16px;
  font-size: 0.95rem;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 850;
}

details p {
  padding: 0 18px 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #0d0e0c;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: min(680px, calc(100% - 32px));
    margin-left: 16px;
    margin-bottom: 34px;
  }

  h1 {
    font-size: 4.4rem;
  }

  .section-heading h2,
  .intro-grid h2,
  .two-column h2,
  .cta-panel h2 {
    font-size: 2.75rem;
  }

  .quick-facts,
  .intro-grid,
  .split,
  .two-column,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .section-heading h2,
  .intro-grid h2,
  .two-column h2,
  .cta-panel h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts,
  .issue-list,
  .plain-list,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    min-height: 70px;
  }

  .feature-card,
  .steps li {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
