:root {
  --ink: #11161c;
  --graphite: #101820;
  --graphite-2: #18232d;
  --charcoal: #25303a;
  --steel: #93a5b1;
  --silver: #c8d2d8;
  --frost: #eef4f7;
  --paper: #f6f5f1;
  --white: #ffffff;
  --teal: #0399b4;
  --teal-deep: #06738b;
  --cobalt: #204fcb;
  --cobalt-deep: #123078;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(16, 24, 32, .14);
  --shadow: 0 28px 90px rgba(8, 16, 24, .28);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(16, 24, 32, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(16, 24, 32, .94);
}

.brand {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand span:last-child {
  color: var(--frost);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 12px 16px;
  min-width: 120px;
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(870px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  padding: 110px 0 56px;
}

.hero-canvas,
.hero-shade,
.hero-ribbon {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .98), rgba(16, 24, 32, .82) 46%, rgba(16, 24, 32, .42)),
    linear-gradient(180deg, rgba(16, 24, 32, .02), rgba(16, 24, 32, .95));
  pointer-events: none;
}

.hero-ribbon {
  opacity: .88;
  pointer-events: none;
}

.hero-ribbon::before,
.hero-ribbon::after {
  content: "";
  position: absolute;
  right: -9vw;
  width: 58vw;
  min-width: 640px;
  height: 22vh;
  border-radius: 999px 0 0 999px;
  transform: rotate(-15deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(3, 153, 180, .48), rgba(32, 79, 203, .34), rgba(238, 244, 247, .08));
  filter: saturate(1.18);
}

.hero-ribbon::before {
  top: 30%;
}

.hero-ribbon::after {
  top: 48%;
  height: 10vh;
  background: linear-gradient(90deg, transparent, rgba(238, 244, 247, .28), rgba(3, 153, 180, .18));
}

.corner-slogan {
  position: absolute;
  z-index: 2;
  top: 96px;
  right: clamp(24px, 4vw, 56px);
  width: min(320px, 30vw);
  margin: 0;
  color: rgba(238, 244, 247, .78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(340px, .42fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  color: #667887;
}

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

h1,
h2,
h3,
p,
li,
a {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 98px);
  font-weight: 800;
}

h2 {
  max-width: 980px;
  font-size: clamp(30px, 3.6vw, 58px);
  font-weight: 850;
}

h3 {
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 850;
}

.hero-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(18px, 1.55vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 14px 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, .03);
}

.btn-card,
.btn-card-dark {
  width: 100%;
}

.btn-card {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.btn-card-dark {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--line-light);
}

.hero-brief {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-brief article {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(16, 24, 32, .7);
  backdrop-filter: blur(16px);
}

.hero-brief span,
.format-number,
.conditions-list span,
.dark-card span {
  color: var(--silver);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-brief strong {
  color: var(--white);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.14;
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.intro-section {
  background: linear-gradient(180deg, var(--paper), #fbfbfa);
}

.intro-grid,
.why-layout,
.conditions-grid,
.why-me-grid {
  display: grid;
  grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.intro-copy,
.why-me-copy,
.truth-copy,
.bonus-copy {
  display: grid;
  gap: 20px;
  color: #3e4850;
  font-size: clamp(17px, 1.45vw, 20px);
}

.intro-copy p,
.why-me-copy p,
.truth-copy p,
.bonus-copy p {
  margin: 0;
}

.quote-block {
  position: relative;
  padding: 24px 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 153, 180, .34), rgba(32, 79, 203, .2)),
    var(--graphite);
  border-radius: 8px;
}

.quote-block p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.08;
}

.dark-section,
.truth-section,
.bonus-section,
.final-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 153, 180, .14), transparent 38%),
    linear-gradient(225deg, rgba(32, 79, 203, .18), transparent 42%),
    var(--graphite-2);
}

.section-head {
  display: grid;
  gap: 14px;
}

.wide-head {
  max-width: 980px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.dark-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(16, 24, 32, .82);
}

.dark-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.why-list article {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.why-list p {
  margin: 0;
  color: #44505a;
}

.truth-grid,
.bonus-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.truth-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(16, 24, 32, .6);
}

.truth-copy,
.bonus-copy {
  color: rgba(255, 255, 255, .78);
}

.formats-section {
  background:
    linear-gradient(180deg, #fbfbfa, var(--paper));
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 36px;
}

.format-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  color: var(--white);
  background: rgba(16, 24, 32, .16);
  border: 1px solid rgba(16, 24, 32, .16);
}

.format-map article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(3, 153, 180, .2), transparent 48%),
    var(--graphite);
}

.format-map span {
  color: var(--silver);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.format-map strong {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12;
}

.format-map p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.format-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(16, 24, 32, .04);
}

.format-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(3, 153, 180, .34), transparent 42%),
    linear-gradient(320deg, rgba(32, 79, 203, .3), transparent 44%),
    var(--graphite);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}

.format-card.elite {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(32, 79, 203, .38), transparent 42%),
    linear-gradient(320deg, rgba(3, 153, 180, .22), transparent 48%),
    #111b2a;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
}

.format-top {
  display: grid;
  gap: 14px;
}

.format-top p {
  margin: 0;
  color: #4a5660;
}

.featured .format-top p,
.featured li,
.elite .format-top p,
.elite li {
  color: rgba(255, 255, 255, .74);
}

.price {
  padding: 20px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.price strong {
  display: block;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: .98;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

li {
  position: relative;
  padding-left: 18px;
  color: #4a5660;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 1px;
  background: currentColor;
}

.special-offer {
  display: grid;
  grid-template-columns: minmax(0, .34fr) minmax(220px, .22fr) minmax(0, .44fr);
  gap: 26px;
  align-items: center;
  margin-top: 20px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 79, 203, .3), rgba(3, 153, 180, .18)),
    var(--graphite);
  border-radius: 8px;
}

.vip-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(3, 153, 180, .18), rgba(32, 79, 203, .28)),
    #121d27;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.vip-offer h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.vip-offer p:not(.section-kicker) {
  max-width: 820px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .74);
}

.special-offer h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.special-offer li {
  color: rgba(255, 255, 255, .74);
}

.special-price span {
  display: block;
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.special-price strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
}

.conditions-section {
  background: var(--paper);
}

.conditions-list {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.conditions-list article {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
}

.conditions-list span {
  color: var(--teal-deep);
}

.conditions-list p {
  margin: 0;
  color: #44505a;
}

.bonus-section {
  padding-block: clamp(50px, 6vw, 84px);
}

.why-me-section {
  background: #fbfbfa;
}

.final-section {
  position: relative;
  overflow: hidden;
}

.final-section::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: 8%;
  width: 62vw;
  height: 16vh;
  border-radius: 999px 0 0 999px;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, transparent, rgba(3, 153, 180, .42), rgba(238, 244, 247, .12));
  pointer-events: none;
}

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

.final-text {
  max-width: 650px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.45vw, 20px);
}

.signature-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: rgba(16, 24, 32, .62);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.signature-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.6vw, 22px);
}

.signature {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  color: var(--white) !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.12;
}

blockquote {
  margin: 0;
  padding-top: 20px;
  color: var(--silver);
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.16;
}

.site-footer {
  padding: 26px 0;
  color: var(--steel);
  background: var(--graphite);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

@media (min-width: 2200px) {
  .container {
    width: min(1560px, calc(100% - 120px));
  }

  h1 {
    font-size: 118px;
  }

  h2 {
    font-size: 68px;
  }

  .hero {
    min-height: 920px;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(16, 24, 32, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-layout,
  .intro-grid,
  .why-layout,
  .truth-grid,
  .conditions-grid,
  .bonus-grid,
  .why-me-grid,
  .final-grid,
  .special-offer {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .formats-grid,
  .format-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-offer,
  .vip-offer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    font-size: 25px;
  }

  .site-nav {
    inset: 66px 0 auto;
  }

  .corner-slogan {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: calc(100% - 40px);
    margin: 74px auto 14px;
    text-align: left;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0 0 44px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-ribbon::before {
    right: -80%;
    top: 22%;
    width: 150vw;
    min-width: 0;
  }

  .hero-ribbon::after {
    right: -60%;
    top: 40%;
    width: 140vw;
    min-width: 0;
  }

  h1 {
    font-size: clamp(39px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(29px, 8vw, 39px);
  }

  h3 {
    font-size: clamp(22px, 6vw, 29px);
  }

  .hero-lead,
  .intro-copy,
  .why-me-copy,
  .truth-copy,
  .bonus-copy,
  .final-text {
    font-size: 16px;
    line-height: 1.56;
  }

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

  .section {
    padding: 58px 0;
  }

  .audience-grid,
  .why-list,
  .formats-grid,
  .format-map {
    grid-template-columns: 1fr;
  }

  .hero-brief article,
  .dark-card,
  .why-list article,
  .truth-card,
  .format-card,
  .format-map article,
  .special-offer,
  .vip-offer,
  .conditions-list article,
  .signature-card,
  .quote-block {
    padding: 22px;
  }

  .price strong,
  .special-price strong {
    font-size: 34px;
  }
}

@media (max-width: 380px) {
  .container,
  .corner-slogan {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 23px;
  }

  h1 {
    font-size: 36px;
  }

  .btn {
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }
}
