:root {
  --bg: #f6f4ef;
  --text: #171615;
  --muted: #5f5b55;
  --line: #d8d2c7;
  --paper: #ffffff;
  --accent: #1c6b62;
  --accent-dark: #124940;
  --warm: #b66d42;
  --ink: #0f2421;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.55), rgb(0 0 0 / 0));
}

.brand,
.nav,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  background: var(--warm);
  border-radius: 2px;
}

.nav {
  gap: 24px;
  font-size: 14px;
}

.nav a,
.nav-cta {
  opacity: 0.92;
}

.nav a:hover,
.nav-cta:hover,
.text-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 8px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.7), rgb(0 0 0 / 0.18) 58%, rgb(0 0 0 / 0.08)),
    linear-gradient(0deg, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0.05) 45%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f7d5bb;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(40px, 7.4vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 760;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 740;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 720;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 0.88);
  font-size: 19px;
}

.mobile-title,
.mobile-sticky-cta {
  display: none;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 720;
}

.primary {
  background: var(--accent);
  color: #fff;
}

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

.secondary {
  border: 1px solid rgb(255 255 255 / 0.6);
  color: #fff;
}

.band {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.content-grid,
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: center;
}

.intro {
  background: var(--paper);
}

.intro p,
.section-head p,
.showcase p,
.faq p,
.steps p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

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

.feature-list strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 720;
}

.feature-list span {
  color: var(--muted);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.steps article {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 720;
}

.showcase {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.text-link {
  color: var(--accent);
  font-weight: 720;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.style-grid span,
.style-grid a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 650;
  text-align: center;
}

.style-grid a {
  color: var(--accent);
}

.faq {
  background: var(--paper);
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 720;
}

details p {
  margin: 12px 0 0;
}

.cta {
  padding: clamp(56px, 8vw, 96px) 18px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgb(255 255 255 / 0.72);
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer span {
  color: var(--text);
  font-weight: 720;
}

.legal-page {
  background: #fff;
}

.legal-topbar {
  position: static;
  color: var(--text);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-topbar .nav-cta {
  border-color: var(--line);
}

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

.legal h1 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(36px, 6vw, 64px);
}

.legal h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.legal section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.legal p {
  color: var(--muted);
}

.legal-muted {
  margin-bottom: 20px;
  color: var(--muted);
}

.seo-page {
  background: #fff;
}

.seo-article {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 0 96px;
}

.seo-article h1 {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
}

.seo-article h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.seo-article section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.seo-article p {
  color: var(--muted);
}

.seo-eyebrow {
  color: var(--warm);
}

.seo-lead {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.55;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 650;
}

.seo-cta {
  width: fit-content;
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .content-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    min-height: 64px;
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 130px;
  }

  .nav-cta {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 48px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  h1 {
    max-width: 350px;
    font-size: 39px;
    line-height: 1.04;
    font-weight: 740;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .lead {
    font-size: 17px;
    line-height: 1.45;
  }

  .primary,
  .secondary {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 20;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 760;
    box-shadow: 0 12px 36px rgb(15 36 33 / 0.28);
  }

  .steps,
  .style-grid {
    grid-template-columns: 1fr;
  }

  .seo-article h1 {
    font-size: 36px;
  }

  .seo-lead {
    font-size: 18px;
  }

  .seo-cta {
    width: 100%;
  }
}
