:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #3a3a3a;
  --line: #e4e4e4;
  --accent: #1d4ed8;
  --accent-hover: #1e3a8a;
  --tint: #eef3fc;
  --featured: #f4f7fd;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--surface);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}

.skip:focus {
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.wordmark {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark:hover {
  color: var(--ink);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

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

.header-inner .btn {
  padding: 0.55rem 0.85rem;
}

.section {
  padding: 4.25rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.lede,
.note,
.card p,
.why p,
.steps p,
.band p {
  color: var(--muted);
}

.lede {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  max-width: 38rem;
}

.note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy .note {
  margin-top: 0.85rem;
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #ececec;
  overflow: hidden;
}

.hero-media video,
.hero-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  display: none;
}

.cards,
.prices,
.why,
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards,
.prices,
.why,
.steps {
  display: grid;
  gap: 1rem;
}

.card,
.price {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.4rem;
}

.card p,
.price p,
.why p,
.steps p {
  margin: 0;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem 1.35rem 1.5rem;
}

.price h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
}

.price .btn {
  align-self: flex-start;
  margin-top: auto;
}

.price.featured {
  border: 2px solid var(--accent);
  background: var(--featured);
}

.badge {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why {
  gap: 1.75rem 2rem;
}

.steps {
  counter-reset: step;
  gap: 1.75rem;
}

.steps li {
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.band {
  background: var(--tint);
  padding: 4.25rem 0;
}

.band h2 {
  margin-bottom: 0.75rem;
}

.band p {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-underline-offset: 0.15em;
}

@media (min-width: 640px) {
  .why {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .cards,
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .prices {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}

@media (min-width: 960px) {
  .why {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    display: none;
  }

  .hero-poster {
    display: block;
  }
}
