* {
  box-sizing: border-box;
}

html {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      ellipse 140% 60% at 50% 0%,
      rgba(109, 40, 217, 0.42) 0%,
      rgba(109, 40, 217, 0.18) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 80% 40% at 10% 40%,
      rgba(109, 40, 217, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 35% at 90% 65%,
      rgba(192, 38, 211, 0.10) 0%,
      transparent 55%
    ),
    var(--bg-base);
  background-attachment: scroll;
}

@supports not (-webkit-overflow-scrolling: touch) {
  body {
    background-attachment: fixed;
  }
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  background: rgba(10, 10, 15, 0.76);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-nav.scrolled {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 10, 15, 0.9);
}

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

.brand {
  min-height: 44px;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-logo {
  width: 136px;
  height: auto;
}

.nav-actions {
  gap: 22px;
}

.nav-link {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-button);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: none;
  box-shadow: var(--focus-brand);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-magenta));
  box-shadow: 0 14px 34px rgba(109, 40, 217, 0.32);
}

.button-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
}

.section-frame {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: clamp(600px, calc(100svh - var(--nav-height)), 680px);
  padding: 72px 0 64px;
  isolation: isolate;
  display: grid;
  align-items: center;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(192, 38, 211, 0.7);
  box-shadow: 0 0 6px rgba(192, 38, 211, 0.5);
  animation: particle-rise var(--dur, 12s) var(--delay, 0s) ease-in infinite;
  will-change: transform, opacity;
}

.hero-particles span:nth-child(1) { left: 8%; --dur: 14s; --delay: 0s; --drift: 24px; width: 2px; height: 2px; }
.hero-particles span:nth-child(2) { left: 16%; --dur: 11s; --delay: 2s; --drift: -36px; background: rgba(109, 40, 217, 0.6); }
.hero-particles span:nth-child(3) { left: 25%; --dur: 16s; --delay: 0.5s; --drift: 44px; width: 4px; height: 4px; box-shadow: 0 0 8px rgba(109, 40, 217, 0.6); }
.hero-particles span:nth-child(4) { left: 34%; --dur: 13s; --delay: 4s; --drift: -28px; background: rgba(192, 38, 211, 0.5); }
.hero-particles span:nth-child(5) { left: 42%; --dur: 18s; --delay: 1s; --drift: 38px; width: 2px; height: 2px; }
.hero-particles span:nth-child(6) { left: 51%; --dur: 10s; --delay: 6s; --drift: -42px; background: rgba(109, 40, 217, 0.7); }
.hero-particles span:nth-child(7) { left: 60%; --dur: 15s; --delay: 0s; --drift: 32px; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { left: 68%; --dur: 12s; --delay: 3s; --drift: -26px; background: rgba(192, 38, 211, 0.4); width: 2px; height: 2px; }
.hero-particles span:nth-child(9) { left: 75%; --dur: 17s; --delay: 1.5s; --drift: 48px; }
.hero-particles span:nth-child(10) { left: 82%; --dur: 11s; --delay: 5s; --drift: -34px; background: rgba(109, 40, 217, 0.5); }
.hero-particles span:nth-child(11) { left: 90%; --dur: 14s; --delay: 0.8s; --drift: 30px; width: 3px; height: 3px; }
.hero-particles span:nth-child(12) { left: 96%; --dur: 13s; --delay: 2.5s; --drift: -38px; background: rgba(192, 38, 211, 0.6); width: 2px; height: 2px; }

.hero-inner {
  position: relative;
  display: block;
}

.hero-copy {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(109, 40, 217, 0.5);
  padding: 0 14px;
  color: #ddd6fe;
  background: rgba(109, 40, 217, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.hero-copy .badge {
  position: relative;
}

.hero-copy .badge::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(192, 38, 211, 0.6);
  border-radius: var(--radius-pill);
  animation: badge-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.hero-title {
  margin: 18px 0 18px;
  font-size: clamp(56px, 6.6vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title span {
  position: relative;
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(
      105deg,
      #ddd6fe 0%,
      var(--brand-primary) 30%,
      var(--brand-magenta) 55%,
      #ffffff 65%,
      var(--brand-magenta) 75%,
      var(--brand-primary) 90%,
      #ddd6fe 100%
    );
  background-size: 250% 100%;
  background-clip: text;
  animation: text-shimmer 5s ease-in-out 1.5s infinite;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}

.button-lg {
  min-height: 56px;
  padding: 0 34px;
  font-size: 16px;
  text-align: center;
  white-space: normal;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 28px auto 0;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero-stats div {
  display: grid;
  gap: 6px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--text-primary);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.templates,
.feature,
.personas,
.final-cta {
  padding: 80px 0;
}

.templates::before,
.feature::before,
.personas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(109, 40, 217, 0.35) 30%,
    rgba(192, 38, 211, 0.35) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.templates .section-heading {
  position: relative;
  z-index: 1;
}

.templates .section-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 600px;
  height: 300px;
  max-width: calc(100vw - 32px);
  background: radial-gradient(
    ellipse at center,
    rgba(109, 40, 217, 0.12) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-heading h2,
.feature-copy h2,
.final-inner h2 {
  margin: 16px 0;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p,
.feature-lede,
.final-inner p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.template-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.template-card:hover {
  transform: scale(1.025);
  border-color: rgba(192, 38, 211, 0.55);
}

.template-card:focus-within {
  border-color: rgba(192, 38, 211, 0.72);
}

.template-poster,
.template-card video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.template-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.template-card video {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.template-card.is-video-ready video {
  opacity: 1;
}

.template-card.is-video-ready .template-poster {
  opacity: 0;
}

.template-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.64);
  transition: opacity 0.22s ease;
}

.template-card:hover::after {
  opacity: 1;
}

.template-card:focus-within::after {
  opacity: 1;
}

.template-card a {
  position: absolute;
  z-index: 2;
}

.template-card a {
  left: 50%;
  top: 50%;
  width: min(78%, 220px);
  min-height: 44px;
  box-sizing: border-box;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-button);
  color: var(--brand-primary);
  background: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.template-card:hover a {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.template-card:focus-within a {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.feature-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.feature::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  z-index: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.14) 0%,
    transparent 65%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.feature + .feature::after {
  right: -100px;
  left: auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(192, 38, 211, 0.12) 0%,
    transparent 65%
  );
}

.feature-copy {
  max-width: 580px;
}

.feature-lede {
  margin-bottom: 18px;
  font-size: 17px;
}

.feature-lede span {
  color: var(--brand-magenta);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: var(--text-secondary);
}

.feature-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-magenta));
  font-size: 16px;
  font-weight: 400;
}

.feature-list strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.35;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-panel);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feature-copy .button {
  min-height: 52px;
  padding: 0 32px;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.35);
}

.product-shot picture,
.product-shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.product-shot picture {
  display: block;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.personas::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 800px;
  height: 400px;
  max-width: calc(100vw - 32px);
  background: radial-gradient(
    ellipse at top,
    rgba(109, 40, 217, 0.10) 0%,
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.personas .container {
  position: relative;
  z-index: 1;
}

.persona-grid article {
  min-height: 240px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  border-radius: var(--radius-card);
  padding: 10px 4px 0;
  background: transparent;
  text-align: center;
}

.persona-grid article:hover .persona-avatar {
  transform: scale(1.05);
  border-color: rgba(192, 38, 211, 0.52);
}

.persona-avatar {
  display: inline-flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  background: #080b12;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.persona-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.persona-grid strong {
  display: block;
  max-width: 190px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.35;
  transition: color 0.24s ease;
}

.persona-grid article:hover strong {
  color: var(--brand-magenta);
}

.final-cta {
  background:
    radial-gradient(ellipse 100% 80% at 50% 40%, rgba(109, 40, 217, 0.22), transparent 55%),
    radial-gradient(ellipse 80% 60% at 60% 60%, rgba(192, 38, 211, 0.15), transparent 50%);
}

.final-inner {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.final-inner h2 {
  max-width: 840px;
}

.final-inner p {
  max-width: 620px;
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
  background: #07070b;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-brand p,
.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-brand p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  margin: 8px 0 0;
  color: #475569;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .template-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .persona-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .persona-avatar {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 48px;
  }

  .hero {
    padding-top: 64px;
  }

  .feature-grid > .feature-copy {
    order: 1;
  }

  .feature-grid > .product-shot {
    order: 2;
  }

  .feature-copy {
    max-width: 680px;
    justify-self: center;
    text-align: center;
  }

  .feature-copy .eyebrow,
  .feature-lede,
  .feature-list {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-lede {
    max-width: 620px;
  }

  .feature-list {
    width: 100%;
    max-width: 640px;
  }

  .feature-list li {
    text-align: left;
  }

  .product-shot {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-copy .button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 899px) {
  .persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-title {
    font-size: clamp(46px, 8vw, 58px);
  }
}

@media (max-width: 639px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  #hero-canvas,
  .hero-particles {
    display: none;
  }

  .hero-title span,
  .hero-copy .badge::before {
    animation: none;
  }

  .hero-copy .badge::before {
    display: none;
  }

  .site-nav {
    padding: 0 16px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .templates,
  .feature,
  .personas,
  .final-cta {
    padding: 64px 0;
  }

  .personas {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .feature-copy h2,
  .final-inner h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
  }

  .section-heading p,
  .feature-lede,
  .final-inner p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-title {
    font-size: clamp(36px, 9.4vw, 46px);
    line-height: 1.05;
  }

  .template-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(138px, 42vw);
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    margin-inline: -16px;
    padding: 2px 16px 12px;
    scrollbar-width: thin;
  }

  .template-card {
    scroll-snap-align: start;
  }

  .template-card a {
    width: 86px;
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 14px;
    line-height: 1.08;
    text-wrap: balance;
    white-space: normal;
  }

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

  .persona-grid article {
    min-height: auto;
    gap: 8px;
    padding-top: 0;
  }

  .persona-avatar {
    width: 112px;
    height: 112px;
  }

  .persona-grid strong {
    max-width: 140px;
    font-size: 13px;
    line-height: 1.25;
  }

  .feature-grid {
    gap: 36px;
  }

  .feature-list li {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 8px 9px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 14px;
  }

  .product-shot {
    padding: 8px;
    border-radius: 16px;
  }

  .product-shot img {
    border-radius: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:nth-child(n+3) {
    border-top: 1px solid var(--border-subtle);
  }

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

}

@media (prefers-reduced-motion: reduce) {
  .hero-title span,
  .hero-copy .badge::before {
    animation: none;
  }

  .hero-particles {
    display: none;
  }

  .hero-copy .badge::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-nav .button {
    padding: 0 16px;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .badge,
  .eyebrow {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
  }

  .hero-title {
    margin: 8px 0;
    font-size: 31px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
    border-radius: 14px;
  }

  .hero-stats div {
    gap: 2px;
    padding: 6px 8px;
    border-top: 0;
    border-right: 1px solid var(--border-subtle);
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats div:nth-child(n+3) {
    border-top: 1px solid var(--border-subtle);
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .hero-stats span {
    font-size: 10px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
  }

  .hero-stats div:nth-child(n+2) {
    border-top: 1px solid var(--border-subtle);
  }
}

@media (max-height: 620px) {
  :root {
    --nav-height: 58px;
  }

  .site-nav {
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-logo {
    width: 118px;
  }

  .site-nav .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding: 24px 0 30px;
    align-items: start;
  }

  .badge,
  .eyebrow {
    min-height: 28px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero-title {
    margin: 10px 0;
    font-size: clamp(32px, 6.8vw, 52px);
    line-height: 1.03;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-stats {
    margin-top: 14px;
  }

  .hero-stats div {
    gap: 3px;
    padding: 10px 8px;
  }

  .hero-stats strong {
    font-size: clamp(20px, 3.4vw, 30px);
  }

  .hero-stats span {
    font-size: 10px;
    line-height: 1.25;
  }
}
