:root {
  --bg: #070709;
  --bg-soft: #17171b;
  --bg-panel: #1b1b20;
  --bg-panel-strong: #0d0d11;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 82, 82, 0.52);
  --text: #f7f7f8;
  --muted: #a4acba;
  --muted-soft: #7e8696;
  --accent: #ff4742;
  --accent-soft: rgba(255, 71, 66, 0.12);
  --header: #b8b8bb;
  --white-panel: #fbfbfc;
  --white-line: #d4d9e1;
  --white-text: #233554;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --page: min(1280px, calc(100vw - 72px));
  --content: min(1120px, calc(100vw - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 71, 66, 0.08), transparent 18%),
    linear-gradient(180deg, #0b0b0d 0%, #060608 100%);
}

img,
video {
  display: block;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(184, 184, 187, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  width: var(--page);
  min-height: 98px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: min(236px, 30vw);
  max-width: 236px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.site-nav a {
  color: rgba(15, 18, 22, 0.26);
  font-weight: 700;
  font-size: 1rem;
}

.site-nav a:first-child,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: rgba(15, 18, 22, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease;
}

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

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

.button-header {
  min-width: 184px;
}

.button-large {
  min-width: 362px;
  min-height: 82px;
  font-size: 1.05rem;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 80px 0;
}

.top-hero {
  position: relative;
  min-height: min(92svh, 920px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-hero__media,
.top-hero__overlay,
.top-hero__grid {
  position: absolute;
  inset: 0;
}

.top-hero__media img,
.top-hero__media video {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.76) brightness(0.24) blur(1.1px);
  transform: scale(1.035);
}

.top-hero__overlay {
  background:
    radial-gradient(circle at 18% 88%, rgba(124, 133, 166, 0.3), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.56), rgba(10, 10, 12, 0.84)),
    linear-gradient(90deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.58) 48%, rgba(8, 8, 10, 0.82) 100%);
}

.top-hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55));
}

.top-hero__content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 48px));
  padding: 78px 0 58px;
  text-align: center;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 71, 66, 0.3);
  background: rgba(46, 25, 28, 0.56);
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.45;
}

.signal-pill span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.top-hero h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(3.9rem, 7.1vw, 7.4rem);
  line-height: 0.93;
}

.top-hero h1 span {
  color: var(--accent);
}

.top-hero__lede {
  max-width: 860px;
  margin: 24px auto 0;
  color: #d8dce3;
  font-size: clamp(1.16rem, 1.7vw, 1.5rem);
  line-height: 1.42;
}

.top-hero__sublede {
  max-width: 760px;
  margin: 20px auto 0;
  color: #979dad;
  font-size: 0.98rem;
  line-height: 1.4;
}

.button-hero {
  min-width: 468px;
  margin-top: 34px;
  min-height: 72px;
  font-size: 0.98rem;
}

.top-hero__note {
  margin: 14px 0 0;
  color: #868d9a;
  font-size: 0.9rem;
}

.section--tight {
  padding-top: 48px;
}

.section--complexity {
  padding-top: 76px;
}

.section--complexity .section-title {
  max-width: 1320px;
}

.section--complexity .section-title h2 {
  font-size: clamp(3.7rem, 6.3vw, 6.8rem);
  line-height: 0.96;
}

.section--complexity .section-title h2 span {
  display: block;
  color: #8d95a6;
}

.complexity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.complexity-card {
  min-height: 272px;
  padding: 36px 28px 30px;
  border-radius: 26px;
  background: #121216;
  border: 1px solid var(--line);
  box-shadow: none;
  text-align: center;
}

.complexity-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 30px;
  border-radius: 999px;
  background: rgba(94, 23, 28, 0.42);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.complexity-card p {
  margin: 0;
  color: #c7ccd6;
  font-size: 1.12rem;
  font-weight: 600;
}

.complexity-card strong {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.complexity-footer {
  width: fit-content;
  max-width: 100%;
  margin: 44px auto 0;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.04em;
}

.section--shift {
  width: min(1390px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.shift-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shift-copy h2 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
  line-height: 0.96;
}

.shift-copy__strike {
  display: block;
  color: #4d5363;
  text-decoration: line-through;
}

.shift-copy__arrow {
  display: block;
  color: var(--accent);
}

.shift-copy__lede {
  margin: 26px 0 0;
  color: #b0b6c4;
  font-size: 1.08rem;
  line-height: 1.45;
}

.shift-pill {
  margin-top: 28px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: #d7dbe3;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.shift-stack {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.shift-card,
.shift-side__card {
  border-radius: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shift-card {
  min-height: 148px;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.shift-card__icon,
.shift-side__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 71, 66, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.shift-card p,
.shift-side__card p {
  margin: 16px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.shift-image {
  margin: 0;
  position: relative;
  min-height: 100%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.shift-image img {
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 54% center;
}

.shift-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 9, 0.92) 100%);
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.shift-image figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.shift-side {
  display: grid;
  gap: 20px;
}

.shift-side__card {
  min-height: 148px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shift-side__quote {
  min-height: 250px;
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: rgba(34, 13, 16, 0.8);
  border: 1px solid rgba(255, 71, 66, 0.18);
  color: #d5d7de;
  font-size: 0.98rem;
  line-height: 1.7;
}

.section--learn {
  padding-top: 88px;
}

.section--learn .section-title {
  max-width: 1280px;
}

.section--learn .section-title h2 {
  font-size: clamp(3rem, 5.1vw, 5.2rem);
  line-height: 1;
}

.learn-panel {
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 50px 58px 38px;
  border-radius: 34px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 12px solid var(--accent);
  box-shadow: var(--shadow);
  position: relative;
}

.learn-panel h3 {
  font-size: 2rem;
  line-height: 1;
}

.tick-list--large {
  gap: 28px;
  margin-top: 34px;
}

.tick-list--large li {
  padding-left: 56px;
  color: #cfd4dc;
  font-size: 1.02rem;
  font-weight: 600;
}

.tick-list--large li::before,
.tick-list--delivered li::before {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.learn-panel::after {
  content: "";
  display: block;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--delivered {
  width: min(1360px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.delivered-copy h2 {
  max-width: 8ch;
  font-size: clamp(3.1rem, 5.2vw, 5.3rem);
  line-height: 0.97;
}

.delivered-copy h2 span {
  display: block;
  color: var(--accent);
}

.tick-list--delivered {
  margin-top: 30px;
  gap: 20px;
}

.tick-list--delivered li {
  padding-left: 52px;
  color: #cfd2da;
  font-size: 1rem;
}

.delivered-stat {
  margin-top: 30px;
  padding: 28px 26px;
  border-radius: 24px;
  background: var(--bg-panel);
  border-left: 6px solid var(--accent);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.delivered-stat strong {
  display: block;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.delivered-stat p {
  margin: 10px 0 0;
  max-width: 20ch;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.delivered-badge {
  flex-shrink: 0;
  min-width: 150px;
  min-height: 150px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  color: #c23d1d;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  display: grid;
  place-items: center;
}

.delivered-quote {
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.16);
  color: #9da3b2;
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
}

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

.delivered-gallery figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.delivered-gallery__lead {
  grid-column: 1 / -1;
}

.delivered-gallery__lead img {
  height: 320px;
  object-fit: cover;
  object-position: center 42%;
}

.delivered-gallery__small img {
  height: 260px;
  object-fit: cover;
}

.delivered-gallery__small:first-of-type img {
  object-position: center 36%;
}

.delivered-gallery__small:last-of-type img {
  object-position: center 56%;
}

.hero {
  min-height: min(78svh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.94rem;
  font-weight: 700;
}

.eyebrow--muted {
  color: var(--muted);
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 1rem;
  font-weight: 600;
}

.eyebrow--dark {
  color: #44506a;
}

h1,
h2,
h3,
legend {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(3.4rem, 6.2vw, 6.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 span,
.cta-hero h2 span,
.panel--thesis h2 span,
.question-copy h2 span,
.section-title h2 span,
.why-copy h2 span,
.panel--statement span {
  color: var(--accent);
}

.hero__lede {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.44;
}

.cta-hero {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-hero__inner {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-hero h2 {
  max-width: 1150px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.cta-hero .button {
  margin-top: 40px;
}

.footer-brand {
  width: 300px;
  margin-top: 120px;
  border-radius: 24px;
  overflow: hidden;
}

.footer-copy {
  margin: 26px 0 0;
  color: #6d7890;
  font-size: 1rem;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel--thesis {
  padding: 56px 52px 34px;
}

.panel--thesis h2 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  line-height: 1.05;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.issue-card {
  min-height: 184px;
  padding: 28px 24px;
  border-radius: 18px;
  background: #0e0e12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.issue-card__icon,
.offer-card__icon,
.why-point__icon,
.audience-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
}

.issue-card__icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 125, 125, 0.7);
  border-radius: 999px;
  font-size: 1.4rem;
}

.issue-card p,
.why-point p,
.audience-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 600;
}

.panel--statement {
  margin-top: 44px;
  padding: 38px 30px;
  background: rgba(50, 25, 28, 0.72);
  border-color: rgba(255, 71, 66, 0.28);
}

.panel--statement p {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.question-copy h2,
.section-title h2,
.why-copy h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
  line-height: 1;
}

.partner-callout {
  max-width: 680px;
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: 24px;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--accent);
}

.partner-callout__label {
  margin: 0 0 18px;
  color: #76829d;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.partner-callout p:last-child {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
}

.panel--list {
  padding: 30px 30px;
}

.panel--list h3 {
  font-size: 2.4rem;
  line-height: 1.02;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 22px;
}

.tick-list li {
  position: relative;
  padding-left: 50px;
  color: #e4e8ef;
  font-size: 1.06rem;
  line-height: 1.48;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid var(--accent);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.section-title {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--offers {
  padding-top: 34px;
}

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

.offer-card {
  position: relative;
  min-height: 590px;
  padding: 46px 42px 34px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.offer-card--featured {
  border: 3px solid var(--accent);
}

.offer-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 24px;
  border-radius: 0 30px 0 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-card__heading {
  display: flex;
  align-items: center;
  gap: 22px;
}

.offer-card__icon,
.why-point__icon,
.audience-card__icon {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: rgba(255, 71, 66, 0.12);
  font-size: 2rem;
}

.offer-card__heading h3 {
  font-size: 2.5rem;
  line-height: 1;
}

.offer-card__heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 600;
}

.offer-card__price {
  margin-top: 28px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.5rem, 4.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.tick-list--compact {
  margin-top: 30px;
  gap: 20px;
}

.tick-list--compact li {
  font-size: 0.98rem;
}

.offer-card__footnote {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a9b8;
  font-size: 0.96rem;
  line-height: 1.7;
  font-style: italic;
}

.offer-card__footnote--accent {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.section--why {
  align-items: start;
}

.why-copy {
  display: grid;
  gap: 20px;
}

.why-points {
  display: grid;
  gap: 18px;
}

.why-point {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 24px 24px 22px;
  border-radius: 22px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.quote-callout {
  margin-top: 4px;
  padding-left: 20px;
  border-left: 5px solid var(--accent);
  color: #d8d9de;
  font-size: 1.2rem;
  line-height: 1.42;
  font-style: italic;
  font-weight: 600;
}

.quote-callout p {
  margin: 0;
}

.media-card {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.media-card img {
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 40%;
}

.media-card figcaption {
  margin-top: -52px;
  padding: 0 26px 22px;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.section--audience {
  padding-top: 40px;
}

.audience-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.audience-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 136px;
  padding: 20px 22px;
  border-radius: 22px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.warning-banner {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 22px 26px;
  border-radius: 20px;
  background: rgba(57, 20, 22, 0.7);
  border: 1px solid rgba(255, 71, 66, 0.32);
  color: #ff8d89;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.section--video .section-title {
  margin-bottom: 24px;
}

.video-card {
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-card img,
.video-card video {
  max-height: 560px;
  object-fit: cover;
  object-position: center 40%;
}

.section--form {
  padding-top: 56px;
  padding-bottom: 96px;
}

.form-shell {
  background: var(--white-panel);
  border-radius: 28px;
  padding: 30px 30px 34px;
  color: var(--white-text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-shell__intro {
  max-width: 680px;
  margin-bottom: 22px;
}

.form-shell__intro h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
}

.form-shell__intro p:last-child {
  margin: 18px 0 0;
  color: #5b6c88;
  font-size: 1.08rem;
  line-height: 1.6;
}

.form-shell__body {
  max-width: 980px;
}

.form-error {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 71, 66, 0.12);
  color: #b72828;
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 22px;
}

.signup-form label,
.product-fieldset {
  display: grid;
  gap: 12px;
}

.signup-form span,
.product-fieldset legend {
  font-size: 1.05rem;
  font-weight: 700;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
  width: 100%;
  min-height: 74px;
  padding: 0 18px;
  border-radius: 14px;
  border: 2px solid var(--white-line);
  background: #fff;
  color: #5f6f88;
  font-size: 1.08rem;
  outline: none;
}

.signup-form input:focus {
  border-color: #4d76ff;
}

.product-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 18px;
  border-radius: 18px;
  border: 2px solid var(--white-line);
  cursor: pointer;
}

.radio-card input {
  width: 24px;
  height: 24px;
  margin: 0;
}

.radio-card span {
  font-weight: 500;
  color: #5f6f88;
}

.form-submit {
  min-height: 72px;
  border: 0;
  border-radius: 14px;
  background: #df0000;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.thanks-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.thanks-card {
  width: min(560px, 100%);
  padding: 36px;
  border-radius: 28px;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thanks-card img {
  max-width: 260px;
  margin: 0 auto 28px;
  border-radius: 20px;
}

.thanks-card h1 {
  font-size: 3rem;
  line-height: 1;
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ghost-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0 24px;
  }

  .site-nav {
    gap: 24px;
    flex-wrap: wrap;
  }

  .top-hero,
  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .section--split,
  .offer-grid,
  .issue-grid,
  .audience-grid,
  .complexity-grid,
  .section--shift,
  .section--delivered {
    grid-template-columns: 1fr;
  }

  .section--shift,
  .section--delivered {
    width: var(--content);
  }

  .section--complexity .section-title h2,
  .section--learn .section-title h2 {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .shift-image img {
    min-height: 520px;
  }

  .shift-side__quote {
    min-height: auto;
  }

  .media-card img {
    aspect-ratio: 1.1;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 28px);
    --content: calc(100vw - 28px);
  }

  .site-header__inner {
    min-height: auto;
  }

  .brand {
    width: min(260px, 72vw);
  }

  .site-nav {
    display: none;
  }

  .button-header,
  .button-large,
  .button-hero {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1,
  .top-hero h1,
  .cta-hero h2,
  .panel--thesis h2,
  .question-copy h2,
  .section-title h2,
  .why-copy h2,
  .panel--statement p {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .hero__lede,
  .top-hero__lede,
  .why-point p,
  .issue-card p,
  .audience-card p,
  .tick-list li {
    font-size: 1rem;
  }

  .panel--thesis,
  .offer-card,
  .panel--list,
  .form-shell,
  .partner-callout,
  .learn-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .panel--thesis {
    padding-top: 38px;
  }

  .issue-card,
  .audience-card,
  .why-point {
    min-height: auto;
  }

  .offer-card {
    min-height: auto;
    padding-top: 42px;
  }

  .signal-pill {
    border-radius: 22px;
    text-align: left;
  }

  .top-hero__content {
    width: calc(100vw - 28px);
    padding-top: 56px;
  }

  .learn-panel {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .delivered-stat {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivered-badge {
    min-width: 0;
    min-height: 132px;
    width: 100%;
  }

  .delivered-gallery__lead img,
  .delivered-gallery__small img,
  .shift-image img {
    height: auto;
    min-height: 0;
  }

  .offer-card__heading {
    align-items: flex-start;
  }

  .offer-card__icon,
  .why-point__icon,
  .audience-card__icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .why-point,
  .audience-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .footer-brand {
    width: min(280px, 100%);
    margin-top: 110px;
  }

  .signup-form input[type="text"],
  .signup-form input[type="email"],
  .signup-form input[type="tel"],
  .radio-card,
  .form-submit {
    min-height: 64px;
  }
}
