:root {
  --ink: #101010;
  --muted: #666;
  --paper: #fff;
  --soft: #fff8f3;
  --line: rgba(16, 16, 16, .12);
  --coral: #ff252b;
  --green: #168a46;
  --yellow: #fff4cf;
  --shadow: 0 22px 54px rgba(255, 138, 0, .13);
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1120px, calc(100% - 38px));
  margin: 0 auto;
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { width: 138px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 850;
}
.btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-body);
  border: 1px solid var(--line);
  background: #fff;
}
.btn:disabled {
  cursor: default;
  opacity: 1;
}
.btn.primary {
  color: #fff;
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 18px 34px rgba(255,37,43,.22);
}
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 54px;
  padding: 56px 0 76px;
}
.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 10px 16px;
  background: #ffe9ea;
  color: var(--coral);
  font-weight: 950;
}
h1, h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}
h1 {
  max-width: 800px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .93;
}
h1 span, h2 span { color: var(--coral); }
.lead {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 22px;
}
.hero-card, .panel {
  border: 1px solid rgba(255,138,0,.28);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-card .caption {
  padding: 22px;
  display: grid;
  gap: 10px;
}
.caption b, .card h3 {
  font-size: 24px;
  line-height: 1.15;
}
.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 16, 16, .06);
}
.card h3 { margin: 0 0 12px; }
.card p { margin: 0; }
.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}
.feature-shot {
  border-radius: 22px;
  background: var(--soft);
  padding: 24px;
}
.feature-shot img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,.76); margin: 8px 0 0; }
.footer {
  margin-top: 40px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(170px, .5fr));
  gap: 24px;
}
.footer img { width: 126px; height: auto; margin-bottom: 14px; }
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}
.footer h2 {
  font-family: var(--font-body);
  font-size: 14px;
  margin: 0 0 14px;
}
.legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; gap: 10px; }
  .hero, .section-head, .grid, .grid.two, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 34px; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
