:root {
  --red: #d71920;
  --red-dark: #991014;
  --yellow: #ffc928;
  --ink: #17110f;
  --muted: #6f625d;
  --paper: #fff8e7;
  --cream: #fffdf8;
  --smoke: #f3ece0;
  --line: rgba(23, 17, 15, 0.12);
  --shadow: 0 22px 60px rgba(23, 17, 15, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(215, 25, 32, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

:where(h1, h2, h3, p, a, span, strong, li, dt, dd, label, input, textarea) {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.2vw, 24px);
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, var(--red) 0 8px, transparent 8px calc(100% - 8px), var(--yellow) calc(100% - 8px)),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 231, 0.92));
  border-bottom: 2px solid rgba(23, 17, 15, 0.14);
  box-shadow:
    0 14px 34px rgba(23, 17, 15, 0.11),
    inset 0 -1px 0 rgba(255, 201, 40, 0.32);
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(168px, 16vw, 228px);
  padding: 7px 11px;
  border: 2px solid rgba(23, 17, 15, 0.1);
  border-radius: 8px;
  background: rgba(23, 17, 15, 0.92);
  box-shadow:
    4px 4px 0 rgba(215, 25, 32, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 6px;
  border: 2px solid rgba(23, 17, 15, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.18) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 24px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    5px 5px 0 rgba(23, 17, 15, 0.08);
  color: #3a302c;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 11px;
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 3px;
  background: var(--yellow);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:not(.nav-cta):hover {
  background: #fff;
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(23, 17, 15, 0.08);
}

.main-nav a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 4px;
  padding: 12px 17px !important;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffe16c, var(--yellow));
  color: var(--ink);
  box-shadow:
    3px 3px 0 var(--ink),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffe16c, var(--yellow));
  box-shadow:
    4px 4px 0 var(--ink),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.section,
.showcase,
.lead-section,
.site-footer {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 24px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 201, 40, 0.32), transparent 24%),
    linear-gradient(115deg, rgba(215, 25, 32, 0.98) 0 50%, transparent 50%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-text {
  color: #fff;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(23px, 2.25vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 2px solid var(--ink);
  font-weight: 950;
  text-align: center;
  line-height: 1.1;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-tags span,
.plan-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-metrics div,
.proof-grid article,
.benefit-cards article,
.plan,
.support-grid article {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 6px 6px 0 rgba(23, 17, 15, 0.12);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-metrics strong,
.format-stats strong {
  display: block;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1;
}

.hero-metrics span,
.format-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  height: min(72vh, 690px);
  object-fit: cover;
  object-position: 48% 50%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -12px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(8deg);
}

.hero-badge span {
  font-size: 48px;
  font-weight: 950;
  line-height: 0.9;
}

.hero-badge small {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-caption {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  max-width: calc(100% - 154px);
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(23, 17, 15, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.visual-caption strong,
.visual-caption span {
  display: block;
}

.visual-caption strong {
  font-size: 16px;
  text-transform: uppercase;
}

.visual-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
}

.ticker span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border-right: 2px solid rgba(23, 17, 15, 0.22);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

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

.proof-grid article,
.benefit-cards article,
.support-grid article {
  padding: 24px;
  min-width: 0;
}

.proof-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 15px;
  font-weight: 950;
}

.proof-grid p,
.benefit-cards p,
.support-grid p,
.format-copy p,
.lead-copy p,
.note {
  color: var(--muted);
  line-height: 1.55;
}

.benefits {
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.08) 0 25%, transparent 25% 50%, rgba(255, 201, 40, 0.08) 50% 75%, transparent 75%),
    var(--ink);
  background-size: 22px 22px;
  color: #fff;
}

.benefits .eyebrow,
.lead-section .eyebrow {
  color: var(--yellow);
}

.benefits .section-heading h2 {
  white-space: nowrap;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  align-items: stretch;
}

.benefit-photo img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center center;
  border: 3px solid var(--yellow);
  filter: saturate(1.04) contrast(1.02);
}

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

.benefit-cards article {
  background: #231a17;
  border-color: rgba(255, 201, 40, 0.8);
  box-shadow: none;
}

.benefit-cards p {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 981px) and (max-height: 820px) {
}

.showcase {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(260px, 1fr) minmax(180px, 0.58fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  padding-top: clamp(64px, 8vw, 106px);
  padding-bottom: clamp(64px, 8vw, 106px);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(215, 25, 32, 0.08) 48% 100%),
    var(--cream);
}

.showcase-photo {
  min-width: 0;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(23, 17, 15, 0.14);
  overflow: hidden;
}

.showcase-photo img {
  height: 100%;
  object-fit: cover;
}

.showcase-photo.main {
  align-self: stretch;
}

.showcase-photo.main img {
  min-height: 420px;
}

.showcase-photo.side {
  transform: translateY(34px);
}

.showcase-photo.side img {
  aspect-ratio: 3 / 4;
}

.showcase-copy {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--red);
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.showcase-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.showcase-list span {
  padding: 12px 14px;
  border: 2px solid rgba(23, 17, 15, 0.16);
  background: #fff;
  color: var(--ink);
  font-weight: 950;
}

.format {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    var(--yellow);
  background-size: 34px 34px;
}

.format .eyebrow {
  color: var(--red-dark);
}

.format-panel {
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 12px 12px 0 rgba(23, 17, 15, 0.18);
  min-width: 0;
}

.format-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.format-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 3px solid var(--ink);
}

.format-stats div {
  padding: 22px;
}

.format-stats div + div {
  border-left: 2px solid var(--line);
}

.finance {
  background: #fff;
}

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

.plan {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.plan.featured {
  background: var(--red);
  color: #fff;
  box-shadow: 8px 8px 0 var(--yellow);
}

.plan::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(255, 201, 40, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.plan-chip {
  width: fit-content;
  margin-bottom: 12px;
  border-color: rgba(23, 17, 15, 0.22);
  background: var(--paper);
  color: var(--red-dark);
}

.featured .plan-chip {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.plan-name {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 950;
  text-transform: uppercase;
}

dl {
  margin: 0;
}

.plan dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(23, 17, 15, 0.14);
}

.plan.featured dl div {
  border-top-color: rgba(255, 255, 255, 0.22);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

.featured dt {
  color: rgba(255, 255, 255, 0.72);
}

dd {
  margin: 0;
  font-weight: 950;
  text-align: right;
}

.note {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 14px;
}

.roadmap {
  position: relative;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(23, 17, 15, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  overflow: hidden;
}

.roadmap::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 70px;
  width: 180px;
  height: 180px;
  border: 30px solid rgba(215, 25, 32, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: launch;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 4px;
  background: linear-gradient(var(--red), var(--yellow));
  border: 1px solid rgba(23, 17, 15, 0.22);
  transform: translateX(-50%);
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num text";
  gap: 16px;
  align-items: start;
  min-height: 132px;
  padding: 22px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, #fff 0 70%, rgba(255, 201, 40, 0.2) 70%),
    #fff;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
  box-shadow: 7px 7px 0 rgba(23, 17, 15, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.steps li:hover {
  transform: translate(-2px, -2px);
  border-color: var(--red);
  box-shadow: 10px 10px 0 rgba(215, 25, 32, 0.16);
}

.steps li:nth-child(odd) {
  margin-right: 18px;
}

.steps li:nth-child(even) {
  margin-left: 18px;
}

.steps span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--yellow);
}

.steps strong,
.steps small {
  display: block;
}

.steps strong {
  grid-area: title;
  margin-top: 2px;
  font-size: 21px;
  line-height: 1.12;
}

.steps small {
  grid-area: text;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
}

.steps .launch-step {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 201, 40, 0.26), transparent 34%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}

.steps .launch-step span {
  background: var(--yellow);
  color: var(--ink);
}

.steps .launch-step small {
  color: rgba(255, 255, 255, 0.76);
}

.support {
  position: relative;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 17, 15, 0.035) 1px, transparent 1px),
    #fffdf8;
  background-size: 36px 36px;
  overflow: hidden;
}

.support::before {
  content: "";
  position: absolute;
  top: 56px;
  right: clamp(18px, 5vw, 72px);
  width: 170px;
  height: 170px;
  border: 28px solid rgba(255, 201, 40, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.support .section-heading,
.support-grid {
  position: relative;
  z-index: 1;
}

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

.support-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.support-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 142px;
  height: 142px;
  border: 24px solid rgba(215, 25, 32, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.support-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--red);
  box-shadow: 10px 10px 0 rgba(215, 25, 32, 0.14);
}

.support-card.featured {
  background:
    linear-gradient(135deg, var(--yellow) 0 18%, #fff 18% 100%);
  box-shadow: 8px 8px 0 rgba(23, 17, 15, 0.14);
}

.support-card.dark {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 201, 40, 0.28), transparent 32%),
    var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

.support-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--yellow);
}

.support-card.dark .support-icon {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.support-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 22px;
}

.support-card p {
  position: relative;
  z-index: 1;
  max-width: 92%;
}

.support-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 201, 40, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(255, 201, 40, 0.44), transparent 23%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  color: #fff;
  overflow: hidden;
}

.lead-section::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: -44px;
  width: min(30vw, 330px);
  height: min(30vw, 330px);
  border: 34px solid rgba(255, 201, 40, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.lead-highlight {
  max-width: 620px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  background: rgba(23, 17, 15, 0.22);
  box-shadow: 6px 6px 0 rgba(255, 201, 40, 0.9);
  backdrop-filter: blur(12px);
}

.lead-highlight strong,
.lead-highlight span {
  display: block;
}

.lead-highlight strong {
  font-size: 16px;
  line-height: 1.32;
}

.lead-highlight span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 13px 14px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 201, 40, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.contact-card span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
  padding: clamp(18px, 2.2vw, 26px);
  border: 3px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 231, 0.98)),
    #fff;
  color: var(--ink);
  box-shadow:
    12px 12px 0 var(--yellow),
    0 26px 70px rgba(23, 17, 15, 0.24);
  min-width: 0;
}

.form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(23, 17, 15, 0.1);
}

.form-head span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.form-head strong {
  font-size: 20px;
  line-height: 1.16;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  color: #443936;
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 201, 40, 0.35);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.lead-form .button {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 900;
}

@media (min-width: 981px) and (max-height: 820px) {
  .lead-section {
    min-height: calc(100vh - 78px);
    padding-top: 30px;
    padding-bottom: 34px;
    gap: 32px;
  }

  .lead-section h2 {
    font-size: 30px;
  }

  .lead-copy p {
    font-size: 16px;
    line-height: 1.4;
  }

  .lead-highlight {
    margin-top: 18px;
    padding: 14px 16px;
  }

  .contact-grid {
    margin-top: 18px;
  }

  .contact-card {
    padding: 10px 12px;
  }

  .contact-card strong {
    font-size: 16px;
  }

  .lead-form {
    gap: 10px;
    padding: 20px;
  }

  .form-head {
    padding-bottom: 10px;
  }

  .form-head strong {
    font-size: 19px;
  }

  input,
  textarea {
    padding: 10px 12px;
  }

  textarea {
    min-height: 68px;
  }

  .lead-form .button {
    min-height: 46px;
    padding: 12px 18px;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

@media (max-width: 1180px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: clamp(18px, 5vw, 72px);
    left: clamp(18px, 5vw, 72px);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    max-height: calc(100vh - 104px);
    padding: 14px;
    overflow-y: auto;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background:
      radial-gradient(circle at 12% 18%, rgba(255, 201, 40, 0.28), transparent 26%),
      linear-gradient(90deg, rgba(255, 201, 40, 0.2) 1px, transparent 1px),
      linear-gradient(rgba(215, 25, 32, 0.09) 1px, transparent 1px),
      #fffdf8;
    background-size: auto, 26px 26px, 26px 26px, auto;
    box-shadow:
      8px 8px 0 var(--red),
      0 22px 50px rgba(23, 17, 15, 0.18);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav a {
    min-height: 44px;
    padding: 12px 14px;
    border: 2px solid rgba(23, 17, 15, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 3px 3px 0 rgba(23, 17, 15, 0.08);
  }

  .main-nav a:not(.nav-cta):hover {
    background: #fff;
  }

  .nav-cta {
    grid-column: 1 / -1;
    margin-left: 0;
    justify-self: stretch;
    min-height: 48px;
  }
}

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

  .hero,
  .format,
  .lead-section,
  .benefit-layout,
  .showcase {
    grid-template-columns: 1fr;
  }

  .lead-section {
    min-height: auto;
    align-items: start;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 12% 14%, rgba(255, 201, 40, 0.32), transparent 28%),
      linear-gradient(180deg, rgba(215, 25, 32, 0.98) 0 64%, var(--paper) 64%),
      var(--paper);
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

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

  .section-heading,
  .plans,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefits .section-heading h2 {
    white-space: normal;
  }

  .steps {
    padding-left: 22px;
  }

  .steps::before {
    left: 24px;
    transform: none;
  }

  .steps li:nth-child(odd),
  .steps li:nth-child(even) {
    margin-right: 0;
    margin-left: 0;
  }

  .showcase-photo.side {
    display: none;
  }

  .showcase-photo.main img {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .brand {
    width: 156px;
    padding: 5px 8px;
    box-shadow: 3px 3px 0 rgba(215, 25, 32, 0.85);
  }

  .main-nav {
    top: calc(100% + 9px);
    right: 16px;
    left: 16px;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: calc(100vh - 86px);
    padding: 10px;
    box-shadow:
      5px 5px 0 var(--red),
      0 18px 38px rgba(23, 17, 15, 0.18);
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .nav-cta {
    justify-content: center !important;
  }

  .hero,
  .section,
  .showcase,
  .lead-section,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 24px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.14;
    text-transform: none;
  }

  h2 {
    font-size: clamp(21px, 5.4vw, 24px);
    line-height: 1.18;
    text-transform: none;
  }

  h3 {
    font-size: 18px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .proof-grid,
  .benefit-cards,
  .format-stats,
  .support-grid,
  .ticker {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .proof-grid article,
  .benefit-cards article,
  .support-grid article,
  .plan,
  .lead-form {
    box-shadow: 4px 4px 0 rgba(23, 17, 15, 0.12);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-tags {
    margin-bottom: 18px;
  }

  .hero-tags span {
    min-height: 28px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .visual-caption {
    position: static;
    max-width: none;
    margin-top: -2px;
    border-color: var(--ink);
    background: var(--ink);
  }

  .format-stats div + div {
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .hero-badge {
    top: 10px;
    right: 10px;
    bottom: auto;
    width: 88px;
    height: 88px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .hero-badge span {
    font-size: 31px;
  }

  .hero-badge small {
    font-size: 11px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .showcase {
    gap: 18px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .showcase-copy {
    padding: 20px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .showcase-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .showcase-photo.main img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 24px;
  }

  .proof-grid article,
  .benefit-cards article,
  .support-grid article,
  .plan {
    padding: 20px;
  }

  .support::before {
    top: 24px;
    right: -74px;
    width: 150px;
    height: 150px;
    border-width: 24px;
  }

  .support-card {
    min-height: 0;
  }

  .support-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .support-card h3 {
    font-size: 19px;
  }

  .support-card p {
    max-width: none;
  }

  .benefit-photo img {
    min-height: 310px;
    aspect-ratio: 4 / 3;
  }

  .format {
    gap: 22px;
  }

  .format-panel {
    box-shadow: 6px 6px 0 rgba(23, 17, 15, 0.18);
  }

  .format-panel img {
    aspect-ratio: 4 / 3;
  }

  .lead-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lead-section::before {
    right: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-width: 28px;
  }

  .lead-highlight {
    margin-top: 20px;
    padding: 16px;
    box-shadow: 4px 4px 0 rgba(255, 201, 40, 0.9);
  }

  .lead-highlight strong {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .contact-card {
    padding: 14px;
  }

  .contact-card strong {
    font-size: 17px;
  }

  .lead-form {
    padding: 18px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .form-head strong {
    font-size: 19px;
  }

  .plan dl div {
    display: grid;
    gap: 4px;
  }

  dd {
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    width: 132px;
    padding: 5px 6px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .main-nav {
    right: 14px;
    left: 14px;
  }

  .hero,
  .section,
  .showcase,
  .lead-section,
  .site-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .button {
    min-height: 48px;
    padding: 13px 15px;
    font-size: 14px;
  }

  .hero-metrics strong,
  .format-stats strong {
    font-size: 24px;
  }

  .steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .steps span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .steps strong {
    font-size: 17px;
  }

  .steps small {
    font-size: 14px;
  }
}
