@font-face {
  font-family: "TLR Narrow";
  src: url("assets/tlr-narrow-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

@font-face {
  font-family: "TLR Sans";
  src: url("assets/tlr-sans-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "TLR Sans";
  src: url("assets/tlr-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --navy: #081f33;
  --navy-2: #0d2b43;
  --ink: #112332;
  --cream: #f4efe5;
  --cream-2: #fbf8f1;
  --white: #ffffff;
  --coral: #00abf4;
  --coral-dark: #008fd0;
  --yellow: #ffd34f;
  --teal: #16ad9e;
  --muted: #65727c;
  --line: rgba(8, 31, 51, 0.16);
  --shadow: 0 24px 64px rgba(8, 31, 51, 0.17);
  --headline: "TLR Narrow", "Arial Narrow", Impact, sans-serif;
  --body: "TLR Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--coral);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scarcity-bar {
  position: relative;
  z-index: 50;
  color: var(--navy);
  background: var(--yellow);
  border-bottom: 2px solid var(--navy);
  font-family: var(--headline);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.scarcity-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.scarcity-dot,
.pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(0, 171, 244, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 171, 244, 0.65); }
  70% { box-shadow: 0 0 0 8px rgba(0, 171, 244, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 171, 244, 0); }
}

.scarcity-separator {
  opacity: 0.5;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  color: var(--white);
  background: rgba(6, 8, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: linear-gradient(150deg, #0a2a3a, #06080d);
  border: 1px solid rgba(0, 171, 244, 0.32);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #00abf4 0 2px, transparent 2px 5px);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0, #000 12px, transparent 12px);
  mask: radial-gradient(circle at 50% 50%, #000 0, #000 12px, transparent 12px);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--headline);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.8;
}

.brand-name small {
  margin-top: 7px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 800;
  color: #00abf4;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: #5fc8ff;
}

.site-header .button-ghost {
  color: var(--white);
  border-color: rgba(0, 171, 244, 0.55);
}

.site-header .button-ghost:hover {
  color: #042330;
  background: #00abf4;
  border-color: #00abf4;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--headline);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 15px;
}

.button-large {
  min-height: 60px;
  padding: 17px 25px;
  font-size: clamp(18px, 2vw, 22px);
  white-space: nowrap;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  border-color: var(--navy);
  box-shadow: 7px 7px 0 var(--navy);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 5px 5px 0 var(--navy);
}

.button-ghost,
.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button-ghost:hover,
.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-dark:hover {
  background: var(--navy-2);
}

.button-full {
  width: 100%;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
  background: var(--cream-2);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -110px;
  bottom: -190px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(255, 211, 79, 0.4);
  border-radius: 50%;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(8, 31, 51, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 31, 51, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to right, black, transparent 52%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: start;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 8px 10px 7px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  transform: rotate(-1deg);
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 4px;
  background: var(--coral);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--headline);
  font-weight: 900;
  line-height: 0.94;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(46px, 3.8vw, 55px);
  letter-spacing: -0.035em;
}

h1 em,
h2 span,
h3 span {
  color: var(--coral);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.7vw, 78px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 28px;
  letter-spacing: -0.01em;
}

.hero-subhead {
  max-width: 650px;
  margin-bottom: 24px;
  color: #3f4f5c;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-promise {
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 5px 5px 0 rgba(8, 31, 51, 0.08);
  font-size: 14px;
}

.check {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.market-chip {
  position: absolute;
  z-index: 5;
  top: -19px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 var(--coral);
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(1.5deg);
}

.hero-image-wrap {
  position: relative;
  padding: 10px;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 14px 14px 0 var(--yellow), var(--shadow);
  transform: rotate(0.5deg);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1.777 / 1;
  object-fit: cover;
}

.hero-image-wrap picture {
  display: block;
}

.asset-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  font-family: var(--headline);
  line-height: 0.9;
}

.asset-badge strong {
  font-size: 30px;
  line-height: 0.8;
}

.asset-badge span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.badge-video {
  left: -30px;
  bottom: 82px;
  background: var(--coral);
  transform: rotate(-4deg);
}

.badge-posts {
  top: 68px;
  right: -32px;
  background: var(--yellow);
  transform: rotate(4deg);
}

.badge-total {
  right: 20px;
  bottom: -30px;
  color: var(--white);
  background: var(--navy);
  border-color: var(--white);
  transform: rotate(-2deg);
}

.hero-caption {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-caption span:nth-child(even) {
  color: var(--coral);
}

.proof-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
}

.proof-item,
.proof-note {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-item {
  color: inherit;
  text-decoration: none;
}

.proof-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.proof-item strong {
  color: var(--yellow);
  font-family: var(--headline);
  font-size: 44px;
  line-height: 1;
}

.proof-item span {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-item small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-note {
  position: relative;
  border-right: 0;
  background: var(--coral);
  font-family: var(--headline);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-arrow {
  position: absolute;
  top: 7px;
  right: 18px;
  color: var(--navy);
  font-size: 42px;
}

.problem {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.problem::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -170px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.light {
  color: var(--white);
}

.section-kicker.light {
  color: var(--yellow);
}

.light-muted {
  color: rgba(255, 255, 255, 0.69);
}

.section-lede {
  max-width: 800px;
  margin-bottom: 58px;
  font-size: 19px;
  line-height: 1.7;
}

.problem-visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  gap: 24px;
  margin-bottom: 42px;
}

.blank-screen-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #0b1721;
  border: 3px solid var(--white);
  box-shadow: 10px 10px 0 rgba(0, 171, 244, 0.28);
}

.blank-screen-visual picture,
.blank-screen-visual img {
  display: block;
  width: 100%;
}

.blank-screen-visual img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.blank-screen-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(6, 8, 13, 0.92);
  border-left: 5px solid var(--coral);
  backdrop-filter: blur(8px);
}

.blank-screen-visual figcaption span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blank-screen-visual figcaption strong {
  font-family: var(--headline);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.visibility-cost {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(150deg, #0c3044, #07141e);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visibility-cost h3 {
  margin: 6px 0 18px;
  color: var(--white);
  font-size: clamp(31px, 3.2vw, 43px);
}

.visibility-cost p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.visibility-cost ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visibility-cost li {
  position: relative;
  padding: 10px 12px 10px 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.visibility-cost li::before {
  content: "×";
  position: absolute;
  left: 12px;
  color: var(--yellow);
  font-weight: 900;
}

.pain-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card {
  min-height: 290px;
  padding: 30px;
  color: var(--navy);
  background: var(--cream-2);
  border: 3px solid var(--white);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.14);
}

.pain-card:nth-child(2) {
  background: var(--yellow);
  transform: translateY(18px);
}

.pain-number {
  color: var(--coral);
  font-family: var(--headline);
  font-size: 18px;
  font-weight: 900;
}

.pain-card h3 {
  margin: 28px 0 14px;
  font-size: 31px;
}

.pain-card p {
  margin: 0;
  color: #425461;
  font-size: 14px;
  line-height: 1.7;
}

.mechanism {
  background: var(--cream-2);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
}

.multiplier {
  display: grid;
  grid-template-columns: 0.65fr 0.24fr 1.4fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 82px;
  padding: 44px;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 12px 12px 0 rgba(8, 31, 51, 0.09);
}

.source-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.source-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
}

.source-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.source-card > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.source-card strong {
  margin: 8px 0 12px;
  font-family: var(--headline);
  font-size: 34px;
  line-height: 0.95;
}

.source-card small {
  color: rgba(255, 255, 255, 0.64);
}

.multiplier-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--coral);
  font-family: var(--headline);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.multiplier-arrow span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.output-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 2px solid var(--navy);
}

.output-card.coral { background: #dff4fe; }
.output-card.yellow { background: #fff1b8; }
.output-card.teal { background: #d7f2ee; }
.output-card.cream { background: var(--cream); }

.output-icon {
  margin-bottom: 11px;
  color: var(--coral-dark);
  font-family: var(--headline);
  font-size: 25px;
  font-weight: 900;
}

.output-card strong {
  color: var(--navy);
  font-family: var(--headline);
  font-size: 20px;
  line-height: 1;
}

.output-card small {
  margin-top: 7px;
  color: #52626d;
  font-size: 11px;
  line-height: 1.45;
}

.deliverable-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--navy);
}

.deliverable-intro {
  padding: 52px 48px;
  background: var(--navy);
}

.deliverable-intro h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 48px;
}

.deliverable-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--cream-2);
}

.deliverable-list > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-list > div:last-child {
  grid-column: 1 / -1;
}

.deliverable-list strong {
  color: var(--coral);
  font-family: var(--headline);
  font-size: 48px;
  line-height: 1;
}

.deliverable-list span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sample-transform {
  margin-top: 82px;
  padding: 44px;
  background: var(--cream);
  border: 2px solid var(--navy);
  box-shadow: 10px 10px 0 var(--yellow);
}

.sample-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.sample-heading .section-kicker {
  margin-bottom: 10px;
}

.sample-heading h3 {
  margin: 0;
  font-size: 42px;
}

.sample-heading > small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-source {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 22px;
  padding: 25px 28px;
  color: var(--white);
  background: var(--navy);
}

.sample-source span,
.sample-outputs article > span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.sample-source strong {
  font-size: 17px;
}

.sample-outputs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 14px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.sample-outputs article {
  min-height: 162px;
  padding: 20px;
  background: var(--white);
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.sample-outputs article:nth-child(2) { background: #fff1b8; }
.sample-outputs article:nth-child(3) { background: #d7f2ee; }
.sample-outputs article:nth-child(4) { background: #dff4fe; }
.sample-outputs article:nth-child(5) { background: var(--navy); }

.sample-outputs article > span {
  display: block;
  margin-bottom: 13px;
  color: var(--coral-dark);
}

.sample-outputs article:nth-child(5) > span {
  color: var(--yellow);
}

.sample-outputs strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.55;
}

.sample-outputs article:nth-child(5) strong {
  color: var(--white);
}

.sample-close {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.campaign-preview {
  margin-top: 82px;
  padding: 44px;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 12px 12px 0 var(--coral);
}

.campaign-preview-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.campaign-preview-heading h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
}

.campaign-preview-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.campaign-pack {
  position: relative;
  margin: 0;
  padding: 10px;
  background: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 var(--yellow);
}

.campaign-pack picture,
.campaign-pack img {
  display: block;
  width: 100%;
}

.campaign-pack img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.campaign-pack figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 470px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(6, 8, 13, 0.9);
  border-left: 4px solid var(--coral);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
}

.campaign-zoom {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.campaign-zoom:hover {
  color: var(--white);
  background: var(--coral);
}

.campaign-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.campaign-format-grid > div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.campaign-format-grid span {
  color: var(--coral);
  font-family: var(--headline);
  font-size: 25px;
  font-weight: 900;
}

.campaign-format-grid strong {
  margin: 7px 0 9px;
  color: var(--navy);
  font-family: var(--headline);
  font-size: 19px;
  line-height: 1;
}

.campaign-format-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.authority-benefits {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 88% 12%, rgba(0, 171, 244, 0.2), transparent 28%), #06080d;
}

.authority-benefits::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -120px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.018), 0 0 0 120px rgba(255, 255, 255, 0.012);
}

.authority-benefits-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 68px;
}

.authority-benefits-heading h2 {
  margin-bottom: 0;
  font-size: clamp(47px, 5.4vw, 74px);
}

.authority-benefits-heading > p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
}

.authority-benefit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.authority-benefit-card {
  min-height: 285px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.authority-benefit-card > span {
  color: var(--yellow);
  font-family: var(--headline);
  font-size: 19px;
  font-weight: 900;
}

.authority-benefit-card h3 {
  margin: 45px 0 17px;
  color: var(--white);
  font-size: 29px;
}

.authority-benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.authority-path {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 30px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--white);
  box-shadow: 8px 8px 0 var(--coral);
  font-family: var(--headline);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.authority-path span {
  padding: 17px 12px;
}

.authority-path b {
  color: var(--coral-dark);
  font-size: 24px;
}

.authority-disclaimer {
  position: relative;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-align: center;
}

.comparison {
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 52px;
}

.compare-card {
  padding: 42px;
  border: 3px solid var(--navy);
}

.compare-muted {
  color: #586670;
  background: #e4e0d7;
  border-color: #7d898f;
  transform: rotate(-0.7deg);
}

.compare-win {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--navy);
  transform: rotate(0.7deg);
}

.compare-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--headline);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.compare-muted .compare-label {
  background: #69767d;
}

.compare-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 29px;
  font-weight: 700;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--headline);
  font-size: 22px;
  font-weight: 900;
}

.compare-muted li::before {
  content: "×";
}

.compare-win li::before {
  content: "✓";
  color: var(--coral-dark);
}

.compare-vs {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: 3px solid var(--navy);
  border-radius: 50%;
  font-family: var(--headline);
  font-size: 24px;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.seasonal {
  background: var(--yellow);
  border-bottom: 3px solid var(--navy);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.seasonal h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.seasonal p {
  max-width: 680px;
  color: #485963;
}

.seasonal-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 31, 51, 0.24);
  font-size: 11px;
  font-weight: 700;
}

.topic-stack {
  display: grid;
  gap: 11px;
}

.topic-stack span {
  position: relative;
  padding: 16px 18px 16px 49px;
  color: var(--navy);
  background: var(--cream-2);
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
  font-size: 13px;
  font-weight: 800;
  transform: rotate(-0.4deg);
}

.topic-stack span:nth-child(even) {
  transform: translateX(12px) rotate(0.4deg);
}

.topic-stack span::before {
  content: "?";
  position: absolute;
  left: 17px;
  top: 50%;
  color: var(--coral);
  font-family: var(--headline);
  font-size: 27px;
  font-weight: 900;
  transform: translateY(-52%);
}

.process {
  background: var(--white);
}

.process-heading {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.turnaround-stamp {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--navy);
  transform: rotate(5deg);
}

.turnaround-stamp strong {
  font-family: var(--headline);
  font-size: 56px;
  line-height: 1;
}

.turnaround-stamp span {
  font-family: var(--headline);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 25px;
  padding: 34px 18px 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:hover {
  background: linear-gradient(90deg, rgba(255, 211, 79, 0.15), transparent);
}

.step-number {
  align-self: start;
  color: var(--coral);
  font-family: var(--headline);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
}

.process-list small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-list h3 {
  margin: 4px 0 8px;
  font-size: 30px;
}

.process-list p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bonus {
  background: #dff3f0;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.bonus-folder {
  position: relative;
  min-height: 440px;
  padding: 45px 32px 32px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  box-shadow: 14px 14px 0 var(--navy);
  transform: rotate(-2deg);
}

.folder-tab {
  position: absolute;
  top: -38px;
  left: -3px;
  padding: 9px 20px 7px;
  color: var(--white);
  background: var(--coral);
  border: 3px solid var(--navy);
  font-family: var(--headline);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.folder-content {
  display: grid;
  gap: 15px;
}

.mini-sheet {
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 rgba(8, 31, 51, 0.18);
}

.mini-sheet:nth-child(2) {
  transform: translateX(13px) rotate(1deg);
}

.mini-sheet:nth-child(3) {
  transform: translateX(-7px) rotate(-1deg);
}

.mini-sheet span {
  display: block;
  margin-bottom: 7px;
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mini-sheet strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
}

.bonus-copy > p {
  color: #40565f;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 12px;
}

.fine-note {
  padding-top: 18px;
  border-top: 1px solid rgba(8, 31, 51, 0.18);
  font-size: 11px !important;
}

.pricing {
  color: var(--white);
  background: var(--navy);
}

.pricing-shell {
  position: relative;
}

.pricing-heading {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.pricing-heading .section-kicker::before {
  display: none;
}

.pricing-heading p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 26px;
  max-width: 1020px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px;
  color: var(--navy);
  background: var(--cream-2);
  border: 3px solid var(--white);
}

.price-card.featured {
  background: var(--white);
  border-color: var(--yellow);
  box-shadow: 13px 13px 0 var(--yellow);
  transform: translateY(-12px);
}

.popular-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  padding: 7px 16px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07em;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-1deg);
}

.price-card-top {
  padding-bottom: 28px;
  border-bottom: 2px solid var(--navy);
}

.plan-tag {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price-card h3 {
  margin: 8px 0 12px;
  font-size: 38px;
}

.price-card-top p {
  min-height: 54px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  display: flex;
  align-items: flex-end;
  color: var(--navy);
}

.price sup {
  align-self: flex-start;
  margin-top: 11px;
  font-family: var(--headline);
  font-size: 27px;
  font-weight: 900;
}

.price strong {
  font-family: var(--headline);
  font-size: 78px;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.price span {
  margin-left: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 27px;
  font-size: 13px;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.secure-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.pricing-question {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 48px;
  font-size: 13px;
}

.pricing-question a {
  color: var(--yellow);
  font-weight: 800;
  text-underline-offset: 3px;
}

.fit {
  background: var(--cream-2);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fit-card {
  position: relative;
  padding: 48px;
  border: 3px solid var(--navy);
}

.fit-yes {
  background: #dff3f0;
  box-shadow: 9px 9px 0 var(--teal);
}

.fit-no {
  background: #eeeae2;
}

.fit-icon {
  position: absolute;
  top: -24px;
  right: 25px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border: 3px solid var(--navy);
  border-radius: 50%;
  font-family: var(--headline);
  font-size: 29px;
  font-weight: 900;
}

.fit-no .fit-icon {
  background: #77858c;
}

.fit-card h2 {
  font-size: 41px;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
}

.fit-card li {
  padding-left: 4px;
  font-size: 14px;
}

.voice-promise {
  padding: 68px 0;
  color: var(--white);
  background: var(--coral);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}

.promise-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 54px;
}

.promise-seal {
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--navy);
  font-family: var(--headline);
  line-height: 1;
  transform: rotate(-5deg);
}

.promise-seal strong {
  font-size: 31px;
}

.promise-seal span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.promise-inner .section-kicker.light {
  color: var(--navy);
}

.promise-inner .section-kicker::before {
  background: var(--yellow);
}

.promise-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(40px, 5vw, 64px);
}

.promise-inner p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 78px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro p {
  color: var(--muted);
}

.accordion {
  border-top: 2px solid var(--navy);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--headline);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  flex: 0 0 32px;
  color: var(--coral);
  font-size: 34px;
  text-align: center;
  transition: transform 160ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 760px;
  margin: -6px 0 25px;
  padding-right: 55px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 211, 79, 0.1);
  border-radius: 50%;
}

.final-cta::before {
  top: -230px;
  left: -160px;
}

.final-cta::after {
  right: -170px;
  bottom: -240px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-market-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 14px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--white);
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(55px, 7vw, 94px);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.light-link {
  color: var(--white);
}

.capacity-note {
  max-width: 700px;
  margin: 32px auto 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  padding: 44px 0 108px;
  color: #bac4ca;
  background: #04131f;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.footer-inner > * {
  min-width: 0;
}

.footer-brand {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--white);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 15px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mobile-cta small {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mobile-cta strong {
  font-family: var(--headline);
  font-size: 21px;
}

.mobile-cta .button {
  min-height: 42px;
  padding: 9px 13px;
  box-shadow: none;
  font-size: 15px;
}

.setup-toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  width: min(440px, calc(100vw - 44px));
  padding: 20px 50px 20px 20px;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--yellow);
  box-shadow: 10px 10px 0 var(--coral);
}

.setup-toast strong,
.setup-toast span {
  display: block;
}

.setup-toast span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.setup-toast code {
  color: var(--yellow);
}

.setup-toast button {
  position: absolute;
  top: 6px;
  right: 10px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    max-width: 850px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-note {
    grid-column: 1 / -1;
    min-height: 76px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .multiplier {
    grid-template-columns: 0.65fr 0.18fr 1.4fr;
    padding: 30px;
  }

  .bonus-grid {
    gap: 50px;
  }

  .problem-visual-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .campaign-preview-heading,
  .authority-benefits-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .campaign-preview-heading p,
  .authority-benefits-heading > p {
    max-width: 760px;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 700px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .problem-visual-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: auto;
  }

  .pain-card:nth-child(2) {
    transform: none;
  }

  .multiplier {
    grid-template-columns: 1fr;
  }

  .source-card {
    min-height: 250px;
  }

  .multiplier-arrow {
    flex-direction: row;
    justify-content: center;
    transform: rotate(90deg);
  }

  .multiplier-arrow span {
    display: none;
  }

  .deliverable-band,
  .bonus-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sample-outputs article:nth-child(5) {
    grid-column: 1 / -1;
  }

  .bonus-grid {
    gap: 80px;
  }

  .bonus-visual {
    max-width: 540px;
  }

  .price-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .price-grid {
    gap: 42px;
  }

  .price-card.featured {
    transform: none;
  }

  .promise-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promise-seal {
    margin: 0 auto;
  }

  .promise-inner .section-kicker {
    justify-content: center;
  }

  .faq-intro {
    position: static;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  body {
    font-size: 15px;
  }

  .scarcity-inner {
    min-height: 48px;
    gap: 6px;
    padding: 6px 0;
    font-size: 12px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 65px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-name {
    font-size: 17px;
  }

  .section-pad {
    padding: 66px 0;
  }

  .hero {
    padding: 49px 0 66px;
  }

  .hero-grid {
    gap: 48px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 36px);
  }

  h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-subhead {
    font-size: 17px;
  }

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

  .hero-actions .text-link,
  .final-actions .text-link {
    text-align: center;
  }

  .hero-image-wrap {
    padding: 6px;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .market-chip {
    top: -18px;
    right: 2px;
    max-width: 90%;
    font-size: 11px;
  }

  .asset-badge {
    display: none;
  }

  .hero-caption {
    flex-wrap: wrap;
    gap: 7px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-note,
  .proof-item:nth-child(3) {
    grid-column: 1;
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pain-card,
  .compare-card,
  .fit-card,
  .price-card {
    padding: 28px 24px;
  }

  .pain-card h3 {
    font-size: 27px;
  }

  .blank-screen-visual {
    box-shadow: 6px 6px 0 rgba(0, 171, 244, 0.28);
  }

  .blank-screen-visual figcaption {
    position: static;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px;
    border-left: 0;
    border-top: 4px solid var(--coral);
  }

  .visibility-cost {
    padding: 28px 24px;
  }

  .multiplier {
    margin-bottom: 60px;
    padding: 14px;
    box-shadow: 6px 6px 0 rgba(8, 31, 51, 0.09);
  }

  .output-grid,
  .deliverable-list,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .output-card {
    min-height: 120px;
  }

  .deliverable-intro {
    padding: 36px 27px;
  }

  .deliverable-intro h3 {
    font-size: 32px;
  }

  .deliverable-list > div:last-child {
    grid-column: 1;
  }

  .sample-transform {
    margin-top: 60px;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .sample-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-heading h3 {
    font-size: 34px;
  }

  .sample-source {
    grid-template-columns: 1fr;
  }

  .sample-outputs {
    grid-template-columns: 1fr;
  }

  .sample-outputs article,
  .sample-outputs article:nth-child(5) {
    grid-column: 1;
    min-height: 132px;
  }

  .campaign-preview {
    margin-top: 60px;
    padding: 20px;
    box-shadow: 6px 6px 0 var(--coral);
  }

  .campaign-preview-heading h3 {
    font-size: 34px;
  }

  .campaign-pack {
    padding: 5px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .campaign-pack figcaption {
    position: static;
    max-width: none;
    margin-top: 5px;
    border-left: 0;
    border-top: 3px solid var(--coral);
  }

  .campaign-zoom {
    top: 13px;
    right: 13px;
    padding: 8px 9px;
    font-size: 9px;
  }

  .campaign-format-grid,
  .authority-benefit-grid {
    grid-template-columns: 1fr;
  }

  .campaign-format-grid > div,
  .authority-benefit-card {
    min-height: auto;
  }

  .authority-benefit-card h3 {
    margin-top: 24px;
  }

  .authority-path {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .authority-path span {
    padding: 11px 8px;
  }

  .authority-path b {
    transform: rotate(90deg);
  }

  .bonus-copy h2 span {
    display: inline-block;
    font-size: clamp(28px, 8.7vw, 35px);
  }

  .compare-vs {
    top: 50%;
  }

  .topic-stack span:nth-child(even) {
    transform: rotate(0.4deg);
  }

  .turnaround-stamp {
    width: 122px;
    height: 122px;
  }

  .turnaround-stamp strong {
    font-size: 43px;
  }

  .turnaround-stamp span {
    font-size: 10px;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
    gap: 11px;
  }

  .step-number {
    font-size: 48px;
  }

  .process-list h3 {
    font-size: 25px;
  }

  .bonus-folder {
    min-height: 390px;
    padding: 35px 17px 22px;
    box-shadow: 8px 8px 0 var(--navy);
  }

  .mini-sheet {
    padding: 17px;
  }

  .price-card h3 {
    font-size: 28px;
  }

  .seasonal h2 span {
    font-size: 0.9em;
  }

  .price strong {
    font-size: 68px;
  }

  .pricing-question {
    flex-direction: column;
    text-align: center;
  }

  .promise-seal {
    width: 150px;
    height: 150px;
  }

  .accordion summary {
    font-size: 20px;
  }

  .accordion details p {
    padding-right: 5px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-row: 3;
  }

  .footer-inner > small {
    grid-column: 1;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
