:root {
  --ink: #071420;
  --navy: #082844;
  --blue: #075a94;
  --gold: #e3b14a;
  --orange: #ff7a1a;
  --paper: #f5f0e7;
  --panel: #ffffff;
  --line: rgba(7, 20, 32, 0.12);
  --muted: #617080;
  --green: #119257;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px clamp(18px, 5vw, 70px);
  background: rgba(245, 240, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav img {
  width: 126px;
}

.nav-cta {
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(112deg, rgba(8, 40, 68, 0.98) 0%, rgba(8, 40, 68, 0.92) 56%, rgba(7, 90, 148, 0.86) 100%),
    repeating-linear-gradient(118deg, transparent 0 120px, rgba(255, 255, 255, 0.05) 120px 180px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  color: #ffd34f;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #ff9a32, var(--orange));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button.full {
  width: 100%;
}

.risk,
.conversion-panel p,
.final-cta p,
footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.conversion-panel {
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.access-label {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

dl {
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

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

.conversion-panel p {
  margin: 13px 0 0;
  color: var(--muted);
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 88px);
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

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

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.problem {
  background: #fff;
}

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

.problem-grid article,
.framework-list article,
.takeaway-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 20, 32, 0.06);
}

.problem-grid img {
  width: 74px;
  margin-bottom: 16px;
}

.framework {
  background: var(--paper);
}

.framework-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.chart-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.performance-card {
  padding: 0;
  overflow: hidden;
}

.performance-chart {
  width: 100%;
  height: auto;
}

.chart-card h3 {
  color: var(--green);
  text-align: center;
}

.chart-label {
  margin-bottom: -18px;
  color: var(--ink);
  font-weight: 900;
}

.chart-card svg {
  width: 100%;
}

.chart-grid line {
  stroke: #d8dde2;
}

.chart-area {
  fill: url(#fillGrowth);
}

.chart-main,
.chart-benchmark {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-main {
  stroke: var(--orange);
  stroke-width: 7;
}

.chart-benchmark {
  stroke: #87909a;
  stroke-width: 4;
}

.framework-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.framework-list span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.takeaways {
  background: #fff;
}

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

.takeaway-grid article {
  padding: 20px;
  text-align: center;
}

.takeaway-grid img {
  width: 52px;
  margin: 0 auto 14px;
}

.bonus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 40, 68, 0.94), rgba(7, 90, 148, 0.88)),
    repeating-linear-gradient(135deg, transparent 0 90px, rgba(255, 255, 255, 0.05) 90px 160px);
  color: #fff;
}

.bonus p,
.bonus h2 {
  color: #fff;
}

.bonus img {
  justify-self: center;
  width: min(560px, 100%);
}

.reviews {
  background: #f0f2f4;
}

.badge {
  width: 170px;
  margin: 0 auto;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 840px;
  margin: 0 auto 18px;
}

.trust-metrics div,
.testimonial-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 20, 32, 0.06);
}

.trust-metrics div {
  padding: 22px;
  text-align: center;
}

.trust-metrics strong,
.trust-metrics span {
  display: block;
}

.trust-metrics strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.trust-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-grid article {
  padding: 24px;
}

.stars {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 18px;
  letter-spacing: 0;
}

.mentor {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  background: #fff;
}

.mentor img {
  justify-self: center;
}

.final-cta {
  text-align: center;
  color: #fff;
  background: var(--navy);
}

.final-cta h2 {
  color: #fff;
}

footer {
  padding: 28px 18px;
  text-align: center;
  background: #04070a;
}

footer img {
  width: 88px;
  margin: 0 auto 14px;
  opacity: 0.8;
}

footer p {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .hero,
  .framework-layout,
  .bonus,
  .mentor {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .problem-grid,
  .trust-metrics,
  .testimonial-grid,
  .takeaway-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    position: static;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .problem-grid,
  .framework-list,
  .takeaway-grid,
  .trust-metrics,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    padding: 22px;
  }
}
