@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap");

:root {
  --bg: #faf6ef;
  --ink: #102033;
  --navy: #0f2342;
  --navy-2: #173867;
  --electric: #55c7ff;
  --sunset: #ff9a61;
  --sun: #ffd56c;
  --red: #d95163;
  --gold: #efbb59;
  --brown: #4a6f9f;
  --cream: rgba(255, 251, 244, 0.88);
  --line: rgba(16, 32, 51, 0.12);
  --shadow: 0 28px 70px rgba(16, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(85, 199, 255, 0.12), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(255, 154, 97, 0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 213, 108, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f6eddd 48%, #fbf7f1 100%);
  padding: 20px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.16) 7% 7.1%, transparent 7.1% 100%),
    linear-gradient(0deg, transparent 0 84%, rgba(255, 255, 255, 0.18) 84% 84.14%, transparent 84.14% 100%),
    repeating-linear-gradient(90deg, rgba(16, 32, 51, 0.03) 0 2px, transparent 2px 86px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 70% 14%, rgba(255, 213, 108, 0.22), transparent 18%),
    radial-gradient(circle at 20% 24%, rgba(85, 199, 255, 0.12), transparent 16%);
}

.deck {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 36px 28px 34px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 250, 244, 0.8)),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    0 34px 90px rgba(16, 32, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.top-tabs,
.section-banner,
.hero-card,
.offers-head,
.offers-grid,
.bottom-grid,
.cta-panel,
.proof-grid,
.mail-panel,
.journey-head,
.journey-grid,
.journey-bottom {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.page-context {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(16, 32, 51, 0.44);
}

.top-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 16px;
  z-index: 100;
  margin-bottom: 22px;
  justify-content: center;
}

.top-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(85, 199, 255, 0.14);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.84));
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(10px);
}

.top-tabs a.active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, #ff8f62, #db4f67 48%, #1b6fd7 100%);
  box-shadow: 0 18px 34px rgba(27, 111, 215, 0.24);
}

.section-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 10px auto 18px;
  padding: 14px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 35, 66, 0.96), rgba(27, 111, 215, 0.92) 54%, rgba(217, 81, 99, 0.92));
  box-shadow: 0 20px 38px rgba(16, 32, 51, 0.14);
}

.section-banner-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd86f, #efbb59);
  box-shadow: 0 12px 18px rgba(239, 187, 89, 0.2);
}

.section-banner::after {
  content: "";
  width: 52px;
  height: 52px;
}

.section-banner p {
  margin: 0;
  color: white;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  min-height: min(720px, calc(100vh - 180px));
}

.hero-copy,
.story-board,
.panel,
.offer-card,
.mail-panel,
.checkbox-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 245, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy,
.story-board,
.panel,
.mail-panel,
.checkbox-card {
  padding: 32px;
}

.eyebrow,
.panel-kicker,
.offer-tier {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d44d65;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: "Black Ops One", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: #d44d65;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.hero-eyebrow::after {
  content: "⚽";
  font-size: 1.6em;
  line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(16, 32, 51, 0.14));
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 34rem;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(16, 32, 51, 0.88);
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.benefit-strip span {
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 244, 229, 0.88));
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.06);
}

.world-cup-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.world-cup-ribbon span {
  padding: 9px 14px;
  border-radius: 999px;
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(15, 35, 66, 0.92), rgba(27, 111, 215, 0.88) 48%, rgba(255, 143, 98, 0.88));
  box-shadow: 0 12px 22px rgba(27, 111, 215, 0.16);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill-row span {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(85, 199, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.8));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  font-weight: 800;
}

.info-grid,
.bottom-grid,
.mail-flow,
.offers-grid,
.journey-grid,
.journey-bottom {
  display: grid;
  gap: 18px;
}

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

.info-block {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 244, 236, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.story-board {
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  align-content: start;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 154, 97, 0.18), transparent 18%),
    radial-gradient(circle at 20% 26%, rgba(85, 199, 255, 0.14), transparent 16%),
    linear-gradient(155deg, rgba(10, 24, 46, 0.96), rgba(18, 56, 103, 0.92) 48%, rgba(109, 33, 56, 0.84));
  color: white;
}

.story-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 50% 82%, transparent 0 160px, rgba(255, 255, 255, 0.12) 161px 163px, transparent 164px),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.1) calc(50% - 1px), rgba(255, 255, 255, 0.1) calc(50% + 1px), transparent calc(50% + 1px));
}

.story-board::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 52px;
  height: 52px;
  opacity: 0.2;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92) 0 10%, transparent 11%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) center 70% / 42% 46% no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  clip-path: polygon(42% 6%, 58% 6%, 62% 28%, 74% 38%, 68% 76%, 32% 76%, 26% 38%, 38% 28%);
}

.story-visual,
.story-steps {
  position: relative;
  z-index: 1;
}

.story-visual {
  min-height: 230px;
  padding: 10px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.story-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.story-steps {
  display: grid;
  gap: 12px;
}

.story-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.story-step span,
.journey-number {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd86f, #efbb59);
  color: #53341d;
  font-weight: 900;
  box-shadow: 0 12px 18px rgba(239, 187, 89, 0.18);
}

.story-step span {
  width: 50px;
  height: 50px;
  font-size: 1.1rem;
}

.story-step h3,
.offer-card h2 {
  margin-bottom: 8px;
}

.story-step p,
.info-block p,
.small-note,
.offer-text,
.mail-flow p {
  margin-bottom: 0;
  line-height: 1.55;
}

.bottom-grid {
  grid-template-columns: 1fr 0.88fr;
  margin-top: 24px;
}

.value-grid {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin: 18px auto 0;
}

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

.proof-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(240,246,255,0.88));
  border: 1px solid rgba(16,32,51,0.1);
  box-shadow: 0 10px 22px rgba(16,32,51,0.06);
  transition: transform 0.15s;
}

.proof-link:hover {
  transform: translateY(-1px);
}

.proof-grid .small-note em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(16, 32, 51, 0.5);
}

.cta-deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--navy);
  background: linear-gradient(180deg, #fff1bf, #ffd56c);
  box-shadow: 0 8px 18px rgba(255,213,108,0.22);
}

.cta-note {
  color: rgba(255,255,255,0.78);
}

.cta-panel {
  margin-top: 18px;
}

.panel,
.offer-card,
.mail-panel,
.checkbox-card,
.journey-step-card {
  break-inside: avoid;
}

.accent-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 213, 108, 0.14), transparent 22%),
    linear-gradient(155deg, rgba(217, 81, 99, 0.96), rgba(137, 56, 83, 0.92) 58%, rgba(17, 57, 112, 0.9));
  color: white;
}

.accent-panel .panel-kicker {
  color: #ffe4a1;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.offers-head,
.journey-head {
  padding-top: 10px;
  text-align: center;
}

.offers-head h1,
.offers-head .lead,
.journey-head h1,
.journey-head .lead {
  margin-left: auto;
  margin-right: auto;
}

.offers-head h1,
.journey-head h1 {
  max-width: 16ch;
}

.offers-head .lead,
.journey-head .lead {
  max-width: 44rem;
}

.offers-head::after,
.journey-head::after {
  content: "";
  display: block;
  width: 140px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(85, 199, 255, 0.2), rgba(217, 81, 99, 0.8), rgba(255, 213, 108, 0.28));
}

.offers-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 28px;
}

.offer-card {
  position: relative;
  width: 100%;
  padding: 28px;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--electric), var(--sunset), var(--sun));
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 199, 255, 0.08), transparent 70%);
}

.offer-photo {
  height: 132px;
  margin: -8px -8px 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
}

.offer-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.offer-visual::before,
.offer-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.9;
}

.offer-visual::before {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -60px;
  background: rgba(255, 255, 255, 0.14);
}

.offer-visual::after {
  width: 110px;
  height: 110px;
  left: -20px;
  bottom: -26px;
  background: rgba(255, 255, 255, 0.12);
}

.offer-visual span {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  background: rgba(9, 19, 34, 0.28);
  backdrop-filter: blur(8px);
}

.offer-visual-template {
  background: radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.16), transparent 24%), linear-gradient(135deg, #0d2241, #174278 55%, #46a4ff);
}

.offer-visual-setup {
  background: radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.14), transparent 24%), linear-gradient(135deg, #673f28, #b76a32 52%, #ffd56c);
}

.offer-visual-brand {
  background: radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.14), transparent 24%), linear-gradient(135deg, #6c1f4a, #d14b56 55%, #ff9a61);
}

.offer-price {
  margin: 0 0 10px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.offer-angle {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 2px 0 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff9a61, #d95163);
  box-shadow: 0 12px 22px rgba(217, 81, 99, 0.18);
}

.offer-card.featured {
  background: radial-gradient(circle at top right, rgba(255, 213, 108, 0.18), transparent 22%), linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(249, 241, 224, 0.98));
  transform: translateY(-12px);
  box-shadow: 0 36px 76px rgba(185, 129, 44, 0.16);
}

.offer-card.premium {
  background: radial-gradient(circle at top right, rgba(217, 81, 99, 0.12), transparent 22%), linear-gradient(180deg, rgba(255, 248, 245, 0.98), rgba(255, 243, 236, 0.96));
}

.offer-fit {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy-2);
  font-weight: 900;
}

.offer-business {
  margin: 12px 0 0;
  line-height: 1.5;
  color: rgba(16, 32, 51, 0.88);
}

.mail-panel {
  grid-template-columns: 0.92fr 1.08fr;
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}

.mail-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 199, 255, 0.1), transparent 66%);
  pointer-events: none;
}

.mail-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.mail-flow article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 244, 236, 0.94));
  border: 1px solid rgba(16, 32, 51, 0.06);
}

.mail-flow span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.asterisk-note {
  margin-top: 14px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.checkbox-panel {
  width: min(1240px, 100%);
  margin: 18px auto 0;
}

.calendly-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
  padding: 8px 0 0;
}

.calendly-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(180deg, #fff1bf, #ffd56c);
  box-shadow: 0 14px 24px rgba(255, 213, 108, 0.18);
}

.calendly-link:hover {
  transform: translateY(-1px);
}

.cta-alt-contact {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-alt-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-alt-contact a:hover {
  color: white;
}

.cta-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

.checkbox-card {
  position: relative;
  overflow: hidden;
}

.checkbox-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sun), var(--sunset), var(--electric));
}

.checkbox-demo {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 255, 0.9));
  border: 1px solid rgba(16, 32, 51, 0.06);
}

.checkbox-demo p {
  margin: 0;
  line-height: 1.55;
  font-weight: 700;
}

.checkbox-box {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 8px;
  border: 2px solid rgba(27, 111, 215, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.journey-step-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 243, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.journey-step-card::before {
  content: "";
  position: absolute;
  inset: auto -32px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 199, 255, 0.08), transparent 70%);
}

.journey-illustration {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 180, 255, 0.2), rgba(74, 111, 159, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.page-journey {
  --journey-blue: #184a96;
  --journey-blue-2: #0f2f63;
}

.page-journey .journey-number {
  background: linear-gradient(180deg, var(--journey-blue), var(--journey-blue-2));
  color: white;
  box-shadow: 0 12px 18px rgba(15, 47, 99, 0.22);
}

.page-journey .journey-illustration {
  background: linear-gradient(135deg, var(--journey-blue), var(--journey-blue-2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 26px rgba(15, 47, 99, 0.14);
}

.journey-illustration::before,
.journey-illustration::after {
  content: "";
  position: absolute;
}

.page-journey .illus-qr::before {
  border-color: white;
  background:
    linear-gradient(90deg, white 0 8px, transparent 8px 16px, white 16px 24px, transparent 24px),
    linear-gradient(white 0 8px, transparent 8px 16px, white 16px 24px, transparent 24px);
}

.page-journey .illus-friends::before,
.page-journey .illus-friends::after,
.page-journey .illus-talk::before,
.page-journey .illus-talk::after,
.page-journey .illus-vote::after,
.page-journey .illus-wheel::after {
  background: white;
}

.page-journey .illus-friends::before {
  box-shadow: 28px 0 0 white;
}

.page-journey .illus-friends::after {
  box-shadow: -22px 4px 0 -2px white, 22px 4px 0 -2px white;
}

.page-journey .illus-vote::before,
.page-journey .illus-wheel::before,
.page-journey .illus-mail::before {
  border-color: white;
}

.page-journey .illus-vote::after {
  box-shadow: 0 10px 0 white, 0 20px 0 white;
}

.page-journey .illus-mail::after {
  border-left-color: white;
  border-bottom-color: white;
}

.illus-qr::before {
  inset: 18px;
  border: 4px solid var(--brown);
  background:
    linear-gradient(90deg, var(--brown) 0 8px, transparent 8px 16px, var(--brown) 16px 24px, transparent 24px),
    linear-gradient(var(--brown) 0 8px, transparent 8px 16px, var(--brown) 16px 24px, transparent 24px);
}

.illus-friends::before,
.illus-friends::after {
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brown);
}

.illus-friends::before {
  left: 18px;
  box-shadow: 28px 0 0 var(--brown);
}

.illus-friends::after {
  left: 30px;
  top: 42px;
  width: 30px;
  height: 18px;
  border-radius: 16px 16px 10px 10px;
  box-shadow: -22px 4px 0 -2px var(--brown), 22px 4px 0 -2px var(--brown);
}

.illus-vote::before {
  left: 18px;
  top: 18px;
  width: 52px;
  height: 40px;
  border: 4px solid var(--brown);
  border-radius: 10px;
}

.illus-vote::after {
  left: 28px;
  top: 30px;
  width: 32px;
  height: 4px;
  background: var(--brown);
  box-shadow: 0 10px 0 var(--brown), 0 20px 0 var(--brown);
}

.illus-talk::before,
.illus-talk::after {
  background: var(--brown);
  border-radius: 18px;
}

.illus-talk::before {
  left: 14px;
  top: 20px;
  width: 34px;
  height: 24px;
}

.illus-talk::after {
  right: 14px;
  top: 36px;
  width: 34px;
  height: 24px;
}

.illus-wheel::before {
  inset: 16px;
  border-radius: 50%;
  border: 6px solid var(--brown);
}

.illus-wheel::after {
  left: 41px;
  top: 18px;
  width: 6px;
  height: 52px;
  background: var(--brown);
  transform: rotate(45deg);
  transform-origin: bottom center;
}

.illus-mail::before {
  left: 16px;
  top: 24px;
  width: 56px;
  height: 38px;
  border: 4px solid var(--brown);
  border-radius: 8px;
}

.illus-mail::after {
  left: 22px;
  top: 30px;
  width: 44px;
  height: 18px;
  border-left: 4px solid var(--brown);
  border-bottom: 4px solid var(--brown);
  transform: rotate(-45deg) skew(12deg);
}

.journey-number {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  border: 2px solid rgba(16, 32, 51, 0.1);
  background: white;
  color: var(--navy);
  box-shadow: 0 12px 18px rgba(16, 32, 51, 0.08);
}

.journey-step-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.journey-bottom {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.pack-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 213, 108, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(249, 241, 224, 0.98));
}

.cta-card {
  background:
    radial-gradient(circle at top right, rgba(255, 213, 108, 0.16), transparent 22%),
    linear-gradient(155deg, rgba(15, 35, 66, 0.98), rgba(23, 56, 103, 0.94) 54%, rgba(217, 81, 99, 0.92));
  color: white;
}

.cta-card .panel-kicker {
  color: #ffe4a1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta-actions span {
  padding: 11px 16px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

@media (min-width: 1100px) {
  body {
    padding: 24px;
  }

  .deck {
    min-height: calc(100vh - 48px);
  }

  .top-tabs a {
    min-width: 168px;
  }
}

@media (max-width: 980px) {
  body {
    padding: 14px;
  }

  .deck {
    min-height: auto;
    padding: 26px 18px 28px;
    border-radius: 30px;
  }

  .hero-card,
  .bottom-grid,
  .value-grid,
  .offers-grid,
  .proof-grid,
  .mail-panel,
  .checkbox-demo,
  .mail-flow,
  .journey-grid,
  .journey-bottom,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

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

  h1,
  .offers-head h1,
  .journey-head h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0;
  }

  .deck {
    width: 100%;
    min-height: auto;
    padding: 20px 14px 24px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }

  .top-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    top: 8px;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 28px rgba(16, 32, 51, 0.08);
    backdrop-filter: blur(12px);
    justify-content: stretch;
  }

  .section-banner {
    grid-template-columns: auto 1fr auto;
    margin-bottom: 14px;
    border-radius: 20px;
  }

  .section-banner-number {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .section-banner::after {
    width: 44px;
    height: 44px;
  }

  .top-tabs a {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.98rem;
  }

  .hero-copy,
  .story-board,
  .panel,
  .offer-card,
  .mail-panel,
  .checkbox-card {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .lead,
  .small-note,
  .story-step p,
  .simple-list,
  .offer-text,
  .offer-business {
    font-size: 0.98rem;
  }

  .offer-photo {
    height: 116px;
  }

  .story-step {
    grid-template-columns: 42px 1fr;
  }

  .story-step span {
    width: 42px;
    height: 42px;
  }

  .page-context {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .proof-link,
  .calendly-link {
    width: 100%;
  }

  .cta-alt-contact {
    line-height: 1.5;
  }
}

@media print {
  body {
    padding: 0;
    background: white;
  }

  body::before,
  body::after {
    display: none;
  }

  .deck {
    width: 100%;
    min-height: auto;
    padding: 18mm 14mm;
    border: none;
    border-radius: 0;
    background: white;
    box-shadow: none;
    backdrop-filter: none;
  }

  .top-tabs,
  .section-banner,
  .hero-card,
  .offers-head,
  .offers-grid,
  .bottom-grid,
  .cta-panel,
  .mail-panel,
  .journey-head,
  .journey-grid,
  .journey-bottom,
  .value-grid,
  .checkbox-panel {
    width: 100%;
  }

  .hero-card,
  .bottom-grid,
  .value-grid,
  .offers-grid,
  .mail-panel,
  .mail-flow,
  .journey-grid,
  .journey-bottom,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .story-board,
  .panel,
  .offer-card,
  .mail-panel,
  .checkbox-card,
  .journey-step-card {
    box-shadow: none;
    backdrop-filter: none;
  }

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