:root {
  --navy: #08111f;
  --navy-2: #0d1b2f;
  --steel: #1b2a3f;
  --text: #172033;
  --muted: #667085;
  --line: #d9e0ea;
  --soft: #f3f6f9;
  --orange: #f4d21f;
  --orange-2: #e6bd13;
  --cyan: #39c9df;
  --cyan-strong: #11aeca;
  --brand-dark-bg:
    radial-gradient(circle at 18% 18%, rgba(244, 210, 31, 0.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(57, 201, 223, 0.1), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0d1b2f 52%, #172337 100%);
  --green: #12b981;
  --red: #e1432f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.16);
  --font-heading: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(8, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 118px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.nav a:hover {
  color: var(--white);
}

.header-cta,
.primary-cta {
  border: 0;
  cursor: pointer;
  color: var(--navy);
  background: var(--orange);
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(244, 210, 31, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.primary-cta {
  min-height: 58px;
  padding: 0 30px;
  font-size: clamp(15px, 2vw, 18px);
}

.header-cta:hover,
.primary-cta:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(244, 210, 31, 0.34);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 112px 20px 56px;
  color: var(--white);
  background: var(--brand-dark-bg);
}

.hero-shell {
  width: min(100%, 1060px);
  text-align: center;
}

.pretitle,
.section-label {
  margin: 0;
  color: var(--cyan-strong);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pretitle {
  display: inline-block;
  padding-bottom: 13px;
  color: var(--orange);
  font-size: 15px;
  border-bottom: 1px solid rgba(244, 210, 31, 0.34);
}

.hero h1,
.section h2,
.honesty h2 {
  margin: 14px auto 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(34px, 6vw, 72px);
}

.hero h1 em {
  font-style: italic;
}

.hero-copy {
  max-width: 910px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
}

.method-principle {
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(216, 178, 107, 0.32);
  border-radius: 999px;
  background: rgba(216, 178, 107, 0.1);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.vsl {
  width: min(100%, 860px);
  min-height: clamp(260px, 48vw, 470px);
  margin: 42px auto 0;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(8, 17, 31, 0.2), rgba(8, 17, 31, 0.82)),
    url("../assets/editorial-tech-reference.png") center / cover;
  box-shadow: var(--shadow);
}

.play-button {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--white);
}

.vsl strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 22px;
}

.vsl p {
  max-width: 480px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.onboarding-note {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.cta-group,
.final-cta {
  margin-top: 30px;
  text-align: center;
}

.cta-group p,
.final-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.authority {
  padding: 30px 20px 34px;
  background: #eef3f7;
  text-align: center;
}

.authority p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.logo-row img {
  max-width: 148px;
  height: 54px;
  object-fit: contain;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  filter: grayscale(1);
  opacity: 0.72;
}

.industry-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin: 22px auto 0;
}

.industry-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(8, 17, 31, 0.06);
}

.section {
  padding: clamp(70px, 9vw, 118px) 20px;
}

.two-column,
.case-card,
.qualify-grid,
.week-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.section h2,
.honesty h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}

.two-column p,
.honesty p,
.case-card p {
  color: var(--muted);
  font-size: 18px;
}

.problem-section {
  padding-top: clamp(50px, 7vw, 82px);
  padding-bottom: clamp(50px, 7vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 86%, rgba(57, 201, 223, 0.13), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(244, 210, 31, 0.1), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0d1b2f 54%, #172337 100%);
}

.problem-focus {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.problem-focus h2 {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--cyan);
  font-size: clamp(31px, 4vw, 48px);
}

.problem-intro {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 700;
}

.problem-intro-secondary {
  margin-top: 12px;
}

.problem-intro strong {
  color: var(--white);
  font-weight: 900;
}

.problem-truth {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(215, 232, 240, 0.74) !important;
  font-size: 15px !important;
}

.problem-question {
  margin: 38px 0 14px;
  color: var(--white) !important;
  font-size: clamp(17px, 2vw, 20px) !important;
  font-weight: 900;
}

.pain-list,
.qualify-grid ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

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

.pain-list {
  width: min(100%, 640px);
  margin: 14px auto 0;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(57, 201, 223, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.pain-list li {
  position: relative;
  min-height: 0;
  padding: 16px 22px 16px 58px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.pain-list li:last-child {
  border-bottom: 0;
}

.pain-list li::before {
  content: "x";
  position: absolute;
  left: 22px;
  top: 16px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 67, 47, 0.8);
  border-radius: 5px;
  color: #ff8c84;
  background: rgba(225, 67, 47, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.no li::before {
  content: "x";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.site-photo {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(to top, rgba(8, 17, 31, 0.84), rgba(8, 17, 31, 0.1)),
    url("../assets/ChatGPT Image 20 may 2026, 10_32_33 p.m..png") center / cover;
  box-shadow: var(--shadow);
}

.photo-card,
.case-card,
.week-grid article,
.qualify-grid article {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.photo-card {
  padding: 22px;
  color: var(--white);
  background: rgba(8, 17, 31, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
}

.photo-card span,
.case-card span,
.week-grid span {
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-card strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.photo-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.system-section,
.qualify-section {
  background: var(--soft);
}

.contrast-section {
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 86px);
  background: #f7fafc;
}

.contrast-section .section-heading {
  margin-bottom: 32px;
}

.contrast-section .section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.contrast-grid {
  width: min(100%, 1060px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contrast-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
}

.contrast-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
}

.old-way::before {
  background: var(--red);
}

.new-way::before {
  background: var(--cyan);
}

.contrast-panel h3 {
  min-height: 64px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.12;
}

.contrast-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  min-height: 132px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contrast-item:last-child {
  border-bottom: 0;
}

.contrast-item span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

.old-way .contrast-item span {
  color: var(--red);
  background: rgba(225, 67, 47, 0.1);
}

.new-way .contrast-item span {
  color: #057c91;
  background: rgba(57, 201, 223, 0.14);
}

.contrast-item h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
}

.contrast-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.section-heading {
  width: min(100%, 880px);
  margin: 0 auto 42px;
  text-align: center;
}

.system-heading {
  margin-bottom: 34px;
}

.system-heading p {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading > p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.conversion-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(57, 201, 223, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.conversion-steps {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.conversion-steps article {
  min-height: 280px;
  padding: 24px 20px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.07);
}

.conversion-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), #fff2a3);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(244, 210, 31, 0.22);
}

.conversion-steps article:nth-child(even) span {
  background: linear-gradient(135deg, var(--cyan), #d8f8fc);
  box-shadow: 0 12px 28px rgba(57, 201, 223, 0.18);
}

.conversion-steps h3 {
  margin: 22px 0 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.12;
}

.conversion-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.solution-board {
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
}

.solution-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 18px;
  align-items: center;
  padding: clamp(18px, 3vw, 26px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(57, 201, 223, 0.22), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #10223b 100%);
}

.solution-summary strong {
  grid-row: span 2;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.86;
}

.solution-summary span {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.solution-summary p {
  max-width: 680px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(16px, 2.4vw, 24px);
}

.week-grid article {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 292px;
  padding: 20px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 16px 42px rgba(8, 17, 31, 0.07);
}

.week-visual {
  position: relative;
  height: 104px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 210, 31, 0.24), transparent 27%),
    radial-gradient(circle at 84% 75%, rgba(57, 201, 223, 0.22), transparent 30%),
    linear-gradient(135deg, #0b1728 0%, #132742 100%);
}

.week-visual::before {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), #fff2a3);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(244, 210, 31, 0.22);
}

.visual-research::before {
  content: "01";
}

.visual-build::before {
  content: "02";
  background: linear-gradient(135deg, var(--cyan), #d8f8fc);
}

.visual-traffic::before {
  content: "03";
}

.week-visual i {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.78);
}

.visual-research i {
  width: 78px;
  height: 7px;
  right: 18px;
  border-radius: 999px;
}

.visual-research i:nth-child(1) {
  top: 28px;
}

.visual-research i:nth-child(2) {
  top: 50px;
  width: 104px;
  opacity: 0.55;
}

.visual-research i:nth-child(3) {
  top: 72px;
  width: 56px;
  opacity: 0.72;
}

.visual-build i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
}

.visual-build i:nth-child(1) {
  right: 74px;
  top: 24px;
}

.visual-build i:nth-child(2) {
  right: 28px;
  top: 44px;
}

.visual-build i:nth-child(3) {
  right: 118px;
  top: 54px;
}

.visual-traffic i {
  bottom: 24px;
  width: 16px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(var(--cyan), rgba(57, 201, 223, 0.35));
}

.visual-traffic i:nth-child(1) {
  right: 92px;
  height: 34px;
}

.visual-traffic i:nth-child(2) {
  right: 62px;
  height: 54px;
}

.visual-traffic i:nth-child(3) {
  right: 32px;
  height: 74px;
}

.solution-outcome {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 38px);
  border-top: 1px solid rgba(8, 17, 31, 0.08);
  background: linear-gradient(90deg, rgba(57, 201, 223, 0.1), rgba(244, 210, 31, 0.12));
}

.solution-outcome span {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.solution-outcome p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  line-height: 1.45;
}

.week-grid h3,
.case-card h3,
.qualify-grid h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.14;
}

.week-grid h3 {
  font-size: clamp(19px, 2vw, 24px);
}

.week-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.honesty {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 210, 31, 0.1), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(57, 201, 223, 0.12), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0d1b2f 52%, #172337 100%);
}

.honesty-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.dark-label {
  color: var(--cyan);
}

.problem-label {
  color: var(--orange);
}

.honesty h2 {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(28px, 3.6vw, 44px);
}

.honesty-message p {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.8vw, 19px);
}

.honesty-verdict {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.verdict-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(244, 210, 31, 0.34);
  border-radius: 999px;
  background: rgba(244, 210, 31, 0.1);
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.honesty-verdict p {
  max-width: 460px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.honesty-verdict strong {
  color: var(--cyan);
  font-weight: 900;
}

.honesty-checklist {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(225, 67, 47, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.checklist-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.4;
}

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

.veto-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(225, 67, 47, 0.18);
  border-radius: 10px;
  background: rgba(225, 67, 47, 0.06);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-10px);
  animation: veto-in 0.5s ease forwards;
  animation-delay: calc(var(--d) * 0.12s);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.veto-list li:hover {
  background: rgba(225, 67, 47, 0.12);
  border-color: rgba(225, 67, 47, 0.4);
  transform: translateX(2px);
}

.veto-list em {
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
  font-weight: 600;
}

.veto-icon {
  position: relative;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border: 1px solid rgba(225, 67, 47, 0.8);
  border-radius: 7px;
  background: rgba(225, 67, 47, 0.14);
}

.veto-icon::before,
.veto-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: #ff8c84;
  border-radius: 999px;
}

.veto-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.veto-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes veto-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .veto-list li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.case-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.case-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #f6f9fc, #e7edf4);
}

.case-visual img {
  width: min(70%, 260px);
  filter: grayscale(1);
  opacity: 0.72;
}

.metric {
  margin-top: 22px;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 66px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
}

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

.qualify-grid article {
  padding: clamp(24px, 4vw, 38px);
}

.yes {
  border-top: 5px solid var(--green);
}

.no {
  border-top: 5px solid var(--red);
}

.qualify-section .final-cta p {
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 62px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer img {
  width: 96px;
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.lead-modal {
  width: min(94vw, 560px);
  padding: 0;
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.lead-modal::backdrop {
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 38px);
}

.modal-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 24px;
}

.modal-card label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.modal-card input,
.modal-card select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
}

.form-step[hidden],
.modal-actions [hidden] {
  display: none;
}

.modal-progress {
  display: grid;
  gap: 9px;
}

.modal-progress span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.modal-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.modal-progress i {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 180ms ease;
}

.modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 10px;
}

.modal-actions .primary-cta {
  width: 100%;
}

.secondary-cta {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.secondary-cta:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

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

.modal-success {
  display: grid;
  gap: 16px;
  padding: 10px 0;
  text-align: center;
}

.modal-success p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 96px;
  }

  .two-column,
  .case-card,
  .qualify-grid,
  .honesty-grid,
  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .conversion-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-photo {
    min-height: 390px;
  }

  .solution-summary,
  .solution-outcome {
    grid-template-columns: 1fr;
  }

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

  .week-grid article {
    min-height: 0;
  }

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

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

@media (max-width: 520px) {
  .primary-cta {
    width: 100%;
    padding: 0 18px;
  }

  .vsl {
    padding: 22px;
  }

  .logo-row img {
    max-width: 134px;
  }

  .conversion-steps {
    grid-template-columns: 1fr;
  }

  .conversion-steps article {
    min-height: 0;
  }

  .solution-summary {
    text-align: left;
  }

  .week-visual {
    height: 92px;
  }
}
