:root {
  --orange: #D4971B;
  --orange-light: #FF8C47;
  --orange-pale: #FFF0E8;
  --yellow: #FFD84D;
  --black: #0C0C0E;
  --ink: #1A1A2E;
  --body: #4A4A65;
  --muted: #8E8EA8;
  --border: #E8E8F0;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --green: #00C27C;
  --green-pale: #E6FBF4;
  --font-display: 'Clash Display', 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 12px rgba(12, 12, 14, .06);
  --shadow-md: 0 8px 32px rgba(12, 12, 14, .1);
  --shadow-lg: 0 24px 64px rgba(12, 12, 14, .12);
  --radius: 16px;
  --radius-sm: 8px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFF;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: var(--orange-light);
}


h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}


.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow .3s;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color .2s;
}

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

.btn-nav {
   background: linear-gradient(135deg, #FFFFFF45 0%, #D2951861 100%);
  color: #000 !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 11px 26px;
  border-radius: 100px;
  transition: all .25s !important;
  box-shadow: 0 4px 16px rgba(232, 173, 65, 0.4);
}

.btn-nav:hover {
   background: linear-gradient(135deg, #FFFFFF45 0%, #D2951861 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 26, .35) !important;
}


.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 8px 28px rgba(255, 107, 26, .3);
  letter-spacing: .02em;
}

.btn-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 26, .38);
}

.btn-orange svg,
.btn-orange .arr {
  transition: transform .25s;
}

.btn-orange:hover .arr {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 100px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}


.hero {
  padding: 120px 0 30px;
 background: linear-gradient(135deg, #FBF7EC 0%, #F2DEB9 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-blob-1 {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(255, 107, 26, .09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 216, 77, .13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(12, 12, 14, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-center {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
 display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFBF2;
  border: 1px solid rgb(255, 203, 121);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #CB9021;
  margin-bottom: 20px;
}

.hero-badge .ping {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: ping 1.8s ease-in-out infinite;
}

@keyframes ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.7);
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 44px);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.hero h1 .accent {
 background: linear-gradient(135deg, #FFFFFF45 0%, #D2951861 100%);
  position: relative;
  display: inline-block;
  padding: 2px 9px;
  
}

/* .hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: slideIn 1s .6s cubic-bezier(.77, 0, .18, 1) forwards;
} */

@keyframes slideIn {
  to {
    transform: scaleX(1);
  }
}

.hero-desc {
  font-size: 18px;
  color: var(--body);
  /* max-width: 680px; */
  margin: 0 auto 10px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-prize-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #FFF8E8, #FFF6E105);
  /* border: 1.5px solid rgba(255, 107, 26, .25); */
  border-radius: 16px;
  padding: 6px 14px;
  margin-bottom: 25px;
  text-align: left;
}

.hero-prize-pill .pill-icon {
  font-size: 32px;
}

.hero-prize-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #CB9021;
}

.hero-prize-pill span {
  font-size: 13px;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}

.metric {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.metric:last-child {
  border-right: none;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}

.metric span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}


.launch-section {
 /* background: linear-gradient(135deg, #FBF7EC 0%, #F2DEB9 100%); */
  border-bottom: 1.5px solid rgb(213, 151, 25);
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}


.launch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 107, 26, .08) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}


.launch-section::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 107, 26, .1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.launch-nebula-right {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 216, 77, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.launch-nebula-bottom {
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 26, .07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}


.launch-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.launch-orb-1 {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 40% 35%, #FFD84D, #FF9800);
  top: 12%;
  left: 5%;
  box-shadow: 0 8px 32px rgba(255, 152, 0, .25);
  animation: floatOrb 6s ease-in-out infinite;
  opacity: .7;
}

.launch-orb-2 {
  width: 26px;
  height: 26px;
  background: radial-gradient(circle at 40% 35%, #FFB74D, #FF6B1A);
  top: 18%;
  right: 7%;
  box-shadow: 0 4px 16px rgba(255, 107, 26, .2);
  animation: floatOrb 8s ease-in-out infinite reverse;
  opacity: .6;
}

.launch-orb-3 {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 40% 35%, #FFE082, #FFD84D);
  bottom: 22%;
  left: 10%;
  box-shadow: 0 4px 12px rgba(255, 216, 77, .35);
  animation: floatOrb 5s ease-in-out infinite 1s;
  opacity: .7;
}

.launch-orb-4 {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 35% 30%, #FFCC80, #FF9800);
  bottom: 14%;
  right: 5%;
  box-shadow: 0 8px 28px rgba(255, 152, 0, .2);
  animation: floatOrb 9s ease-in-out infinite 2s;
  opacity: .5;
}

.launch-orb-5 {
  width: 12px;
  height: 12px;
  background: var(--orange);
  top: 55%;
  right: 14%;
  box-shadow: 0 0 12px rgba(255, 107, 26, .4);
  animation: floatOrb 4s ease-in-out infinite .5s;
  opacity: .6;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}


.launch-line {
  position: absolute;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 26, .2), transparent);
  pointer-events: none;
  z-index: 0;
}

.launch-line-1 {
  top: 30%;
  left: 18%;
  transform: rotate(-45deg);
}

.launch-line-2 {
  top: 60%;
  right: 20%;
  transform: rotate(30deg);
}

.launch-line-3 {
  bottom: 22%;
  left: 40%;
  transform: rotate(-20deg);
}


.launch-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.launch-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFBF2;
  border: 1px solid rgb(255, 203, 121);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #CB9021;
  margin-bottom: 24px;
}

.launch-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 60px);
  font-weight: 700;
  color: var(--ink);
  /* letter-spacing: -.03em; */
  line-height: 1;
  margin-bottom: 52px;
}

.launch-title span {
  color: #D4971B;
}


.launch-date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}


.launch-date-card {
  border-radius: 20px;
  padding: 28px 44px;
  text-align: center;
  min-width: 230px;
  position: relative;
  overflow: hidden;
}

.launch-date-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .5;
  pointer-events: none;
}

.launch-date-card.going-live {
 background: linear-gradient(135deg, #FFD47C 0%, #C0881D 100%);
  box-shadow: 0 12px 48px rgba(198, 146, 45, 0.51), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.launch-date-card.cart-closes {
  background: linear-gradient(135deg, #C0881D 0%, #FFD47C 100%);
  box-shadow: 0 12px 48px rgba(221, 168, 89, 0.49), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.ldc-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ldc-date {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 1;
}

.ldc-time {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}


.launch-rocket-wrap {
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.launch-rocket {
  font-size: 88px;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(255, 107, 26, .3));
  animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.rocket-exhaust {
  width: 4px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 107, 26, .9), rgba(255, 216, 77, .4), transparent);
  border-radius: 2px;
  margin-top: -6px;
  animation: exhaustPulse 1s ease-in-out infinite alternate;
}

@keyframes exhaustPulse {
  from {
    opacity: .5;
    height: 28px;
  }

  to {
    opacity: 1;
    height: 48px;
  }
}


.launch-countdown-panel {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 48px;
  /* max-width: 860px; */
  margin: 0 auto 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: var(--shadow-md);
}

.countdown-group {
  flex: 1;
  text-align: center;
}

.countdown-group-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  background: var(--white);
}

.countdown-group.launch-group .countdown-group-label {
  color: var(--orange);
  border-color: rgb(255, 203, 121);
  background: #FFFBF2;
}

.countdown-group.close-group .countdown-group-label {
  color: var(--ink);
  border-color: rgba(26, 26, 46, .15);
  background: var(--bg);
}

.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cd-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.cd-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  /* background: var(--border); */
}

.countdown-group.launch-group .cd-box {
  border-color: rgb(255, 203, 121);
  color: var(--orange);
  background: #FFFBF2;
}

.countdown-group.close-group .cd-box {
  border-color: rgba(26, 26, 46, .12);
  color: var(--ink);
  background: var(--bg);
}

.cd-unit {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.cd-colon {
  font-size: 28px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 18px;
}

.countdown-panel-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: 0 44px;
  flex-shrink: 0;
}


.launch-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange), #FF9800);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 56px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 8px 40px rgba(255, 107, 26, .35);
  letter-spacing: .02em;
}

.launch-cta-btn:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(255, 107, 26, .45);
  background: linear-gradient(135deg, #FF8C47, #FFB300);
}

.launch-cta-btn .arr {
  transition: transform .25s;
}

.launch-cta-btn:hover .arr {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .launch-date-row {
    flex-direction: column;
    gap: 24px;
  }

  .launch-rocket-wrap {
    padding: 8px 0;
  }

  .launch-rocket {
    font-size: 64px;
  }

  .launch-countdown-panel {
    flex-direction: column;
    gap: 28px;
    padding: 28px 20px;
  }

  .countdown-panel-divider {
    width: 80px;
    height: 1px;
    margin: 0;
  }

  .launch-orb-1,
  .launch-orb-4 {
    display: none;
  }

  .launch-date-card {
    min-width: 200px;
    padding: 24px 28px;
  }

  .launch-title {
    margin-bottom: 36px;
  }
}


section {
  padding: 50px 0;
}

.section-head {
  margin: 0 auto 50px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 43px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}


.angle-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  margin-top: -3%;
  padding-top: calc(3% + 80px);
}

.angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  padding-bottom: calc(4% + 80px);
}


.intro-section {
  background: var(--white);
  padding: 50px 0;
}

.intro-big-text {
  font-size: clamp(16px, 1.8vw, 16px);
  font-weight: 400;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.intro-big-text strong {
  color: var(--ink);
  font-weight: 600;
}

.intro-big-text em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}


.stat-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  min-width: 110px;
}

.stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -.02em;
}

.stat-pill span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.highlight-box {
  /* background: linear-gradient(135deg, #FFF8F4, #FFF2EA);
  border: 1.5px solid rgba(255, 107, 26, .18);
  border-radius: var(--radius);
  padding: 28px 32px; */
  margin-bottom: 16px;
  /* position: relative;
  overflow: hidden; */
}

.highlight-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  /* background: var(--orange); */
  border-radius: 4px 0 0 4px;
}

.highlight-box p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.highlight-box p strong {
  color: var(--ink);
  font-weight: 600;
}

.highlight-box p em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

.note-box {
  background: #FFFBF0;
  border: 1.5px solid rgba(255, 216, 77, .4);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 16px;
}

.note-box p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  line-height: 1.75;
}

.note-box strong {
  color: var(--ink);
  font-weight: 600;
}


.intro-image-panel {
  background: linear-gradient(145deg, #FFF4EE 0%, #FFF8F4 60%, #FFFAF8 100%);
  border: 1.5px solid rgba(255, 107, 26, .12);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.intro-image-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 107, 26, .12), transparent 70%);
  border-radius: 50%;
}

.intro-image-panel .product-placeholder {
  background: var(--white);
  border: 2px dashed rgba(255, 107, 26, .2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 32px;
  text-align: center;
  margin-bottom: 32px;
}

.intro-image-panel .product-placeholder .big-icon {
  font-size: 52px;
}

.intro-image-panel .product-placeholder span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.platform-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.intro-promise {
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.intro-promise strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}

.intro-promise span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}


.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 107, 26, .2);
}


.product-frame {
  background: linear-gradient(135deg,#FFF,#FFE6BA);
  border: 2px dashed rgb(213, 151, 25);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 40px;
  text-align: center;
}

.product-frame .pf-icon {
  font-size: 56px;
}

.product-frame span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}


.what-section {
  background: #FFFBF2;
  padding: 50px 0;
}

.what-lead {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 400;
}

.what-lead strong {
  color: var(--ink);
  font-weight: 600;
}

.what-lead em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.feature-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all .25s;
}

.feature-tile:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-tile .ft-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-tile h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-tile p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.can-do-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}

.can-do-card .cdc-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.can-do-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.can-do-item:last-child {
  border-bottom: none;
}

.can-do-item .cdi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 107, 26, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  font-size: 14px;
  flex-shrink: 0;
}


.growth-section {
  background: var(--white);
  padding: 50px 0;
}


.create-card {
  background: #FFFBF2;
  border: 1.5px solid #FFCB79;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.create-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, var(--orange), var(--yellow)); */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.create-card:hover {
  /* border-color: var(--orange); */
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.create-card:hover::after {
  transform: scaleX(1);
}

.cc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.create-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--ink);
}

.create-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}


.flex-panel {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.flex-panel-head {
  background: #A25F0C;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.flex-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 26, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.flex-panel-head h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}

.flex-panel-head p {
 font-size: 15px;
  color: rgb(255, 255, 255);
  margin: 0;
}

.flex-rows {
  padding: 8px 0;
}

.flex-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
}

.fr-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  min-width: 28px;
  flex-shrink: 0;
}

.fr-text {
  flex: 1;
}

.fr-text strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}

.fr-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.fr-tag {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}


.plug-card {
  background: var(--ink);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plug-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 107, 26, .18), transparent 70%);
  border-radius: 50%;
}

.plug-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 26, .15);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.plug-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.plug-card h3 span {
  color: var(--orange);
}

.plug-card>p {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.plug-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 28px;
}

.plug-step {
  text-align: center;
  flex: 1;
}

.ps-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 107, 26, .2);
  border: 2px solid rgba(255, 107, 26, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  margin: 0 auto 8px;
}

.plug-step span {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.ps-arrow {
  color: rgba(255, 107, 26, .4);
  font-size: 20px;
  flex-shrink: 0;
}

.plug-note {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pn-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(0, 194, 124, .5);
}


.prompts-section {
  background: var(--white);
}

.prompt-card {
background: var(--white);
  /* border: 1.5px solid #FFF; */
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.prompt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, #FFFBF2, #FFFBF2);
  transition: height .3s;
  z-index: 0;
}

.prompt-card:hover {
  /* border-color: var(--orange); */
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.prompt-card:hover::before {
  height: 100%;
}

.prompt-card>* {
  position: relative;
  z-index: 1;
}

.pc-num {
  width: 44px;
  height: 44px;
  background: #FFFBF2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.prompt-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.pc-count {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.prompt-card p {
  color: var(--body);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}



.offers-section {
  background: #FFFBF2;
  padding: 50px 0;
}

.offer-block {
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}

.offer-block:hover {
  box-shadow: var(--shadow-lg);
}


.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-header.fe {
 background: linear-gradient(135deg, #FFFEFB 0%, #FFD586 100%);
  border-bottom: 1.5px solid rgb(223, 165, 55);
}

.offer-header.us1 {
  background: linear-gradient(135deg, #35A6FF73 0%, #FFE4AB 100%);
  border-bottom: 1.5px solid rgba(9, 59, 97, 0.25);}

.offer-header.us2 {
  background: linear-gradient(135deg, #b07323 0%, #4C0054 100%);
  border-bottom: 1.5px solid rgba(255, 255, 255, .07);
}

.oh-left {
  flex: 1;
}

.offer-tier-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  /* letter-spacing: .12em;
  text-transform: uppercase; */
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.us1-badge {
  background: #4F73FF;
}

.us2-badge {
  background: #C48A1C;
  border: 1px solid rgb(252, 213, 136);
}

.offer-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
  line-height: 1.15;
}

.offer-header.us2 h2 {
  color: var(--white);
}

.offer-header p {
  color: var(--body);
  font-size: 15px;
  margin: 0;
  line-height: 1.65;
  /* max-width: 520px; */
}

.offer-header.us2 p {
  color: rgb(255, 255, 255);
}

.oh-right {
  flex-shrink: 0;
}

.oh-total-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.oh-total-box.dark {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
}

.oh-total-box span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.oh-total-box.dark span {
  color: rgba(255, 255, 255, .4);
}

.oh-total-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -.02em;
}

.oh-total-box.dark strong {
  color: var(--orange-light);
}


.offer-body {}

.ob-col {
  padding: 32px 44px;
  height: 100%;
}

.ob-col-left {
  border-right: 1px solid var(--border);
}

.ob-col-label {
  font-size: 18px;
  font-weight: 700;
  /* letter-spacing: .12em;
  text-transform: uppercase; */
  color: var(--orange);
  margin-bottom: 20px;
  font-family: var(--font-body);
}


.prompt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pr-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.pr-info {
  flex: 1;
}

.pr-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.pr-info span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pr-count {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  min-width: 64px;
  text-align: right;
}

.pr-count.pro {
  color: var(--ink);
}


.dfy-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.dfy-r-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}



.dfy-r-num1 {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #5E83C7;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.dfy-r-num.pro {
  background: #570C4F;
}

.dfy-r-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.dfy-r-info span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}


.offer-plr-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #FFF8F4, #FFF4EE);
  border-top: 1px solid rgba(255, 107, 26, .12);
  padding: 16px 44px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
}

.offer-plr-strip.dark-strip {
  background: linear-gradient(135deg, var(--ink), #13131F);
  border-top-color: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .5);
}

.offer-plr-strip.dark-strip strong {
  color: var(--white);
}

.offer-plr-strip strong {
  color: var(--ink);
}

.plr-strip-icon {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.plr-strip-divider {
  color: var(--border);
}

.offer-plr-strip.dark-strip .plr-strip-divider {
  color: rgba(255, 255, 255, .12);
}


.modules-section {
  background: var(--white);
}

.module-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.module-row:last-child {
  border-bottom: none;
}

.mod-num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.module-row h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.module-row p {
  color: var(--body);
  font-size: 14px;
  margin: 0;
}

.dfy-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 20px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.dfy-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 26, .2), transparent 70%);
  border-radius: 50%;
}

.dfy-box h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.dfy-box .sub {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  margin-bottom: 32px;
}

.dfy-mod {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dfy-mod:last-child {
  border-bottom: none;
}

.dfy-mod-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 26, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.dfy-mod h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}

.dfy-mod p {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin: 0;
}


.plr-section {
  background: var(--bg);
}

.plr-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.plr-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.plr-item:last-child {
  border-bottom: none;
}

.plr-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

.plr-item h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.plr-item p {
  color: var(--body);
  font-size: 14px;
  margin: 0;
}


.upsells-section {
  background: var(--white);
}

.upsell-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: all .3s;
}

.upsell-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.upsell-card.featured {
  border-color: var(--orange);
}

.upsell-head {
  padding: 32px 36px 24px;
  background: linear-gradient(135deg, #FFF8F4, var(--white));
  border-bottom: 1px solid var(--border);
}

.upsell-card.featured .upsell-head {
  background: linear-gradient(135deg, var(--orange-pale), #FFF8F4);
}

.uc-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.uc-tag.alt {
  background: var(--ink);
}

.upsell-head h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.upsell-head p {
  color: var(--body);
  font-size: 14px;
  margin: 0;
}

.upsell-body {
  padding: 28px 36px;
}

.up-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.up-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--body);
}

.up-list li:last-child {
  border-bottom: none;
}

.up-list li strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
}

.modules-mini p {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.modules-mini span {
  display: block;
  font-size: 13px;
  color: var(--body);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.modules-mini span:last-child {
  border-bottom: none;
}


.vault-banner {
  background: #A77207;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .vault-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 28px 28px;
} */

.vault-banner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.vault-banner p {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  margin-bottom: 40px;
}

.vault-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vault-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}

.vault-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 100px;
  transition: all .25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}

.btn-white:hover {
 background: #FFF;
  color: #D4971B;
  transform: translateY(-2px);
}


.reasons-section {
  background: var(--bg);
}

.reason-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  /* border: 1.5px solid var(--border); */
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(255, 107, 26, 0.28) 0px 2px 4px 0px inset;
}

.reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

/* .reason-card:hover::after {
  transform: scaleX(1);
} */

.reason-n {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 12px;
  line-height: 1;
}

.reason-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.reason-card p {
  color: var(--body);
  font-size: 14px;
  margin: 0;
}


.earnings-section {
  background: #7D5607;
}

.earnings-inner {
  text-align: center;
  padding: 80px 40px;
}

.earnings-inner h2 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 60px);
  margin-bottom: 16px;
}

.big-dollar {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}

.earnings-inner p {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  margin-bottom: 48px;
}


.letter-section {
  background: var(--bg);
}

.letter-wrap {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.letter-accent-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
}

.letter-body {
  padding: 60px;
}

.letter-body .greeting {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 28px;
}

.letter-body p {
  font-size: 17px;
  color: var(--body);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.8;
}

.letter-body p strong {
  color: var(--ink);
}

.letter-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}


.final-cta-section {
  background: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 26, .07), transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 16px;
}

.final-cta-section p {
  color: var(--body);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 48px;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-metrics {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}

.fm-item {
  text-align: center;
}

.fm-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.fm-item span {
  font-size: 13px;
  color: var(--muted);
}


footer {
  background: var(--ink);
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
}

footer .foot-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

footer .foot-logo span {
  color: var(--orange);
}


/* .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1);
}
.reveal.on { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; } */


@media (max-width: 991px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-metrics {
    max-width: 100%;
    flex-wrap: wrap;
    border-radius: 12px;
  }

  .metric {
    min-width: 120px;
  }

  .letter-body {
    padding: 36px 28px;
  }

  .dfy-box {
    padding: 32px 24px;
  }

  .plr-card {
    padding: 32px 24px;
  }

  .vault-banner {
    padding: 48px 28px;
  }

  .ob-col-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .ob-col {
    padding: 28px 24px;
  }

  .offer-header {
    padding: 28px 24px;
  }

  .offer-plr-strip {
    padding: 16px 24px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-prize-pill {
    flex-direction: column;
    text-align: center;
  }

  .hero-metrics {
    border-radius: 12px;
  }

  .metric {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child {
    border-bottom: none;
  }

  .final-metrics {
    gap: 28px;
  }

  .vault-stats {
    gap: 24px;
  }

  .flex-panel-head {
    flex-direction: column;
    gap: 12px;
  }

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




@media (max-width:767px) {
  .hidden-xs {
    display: none !important
  }
}


.visible-xs {
  display: none !important
}


@media (max-width:767px) {
  .visible-xs {
    display: block !important
  }
}

.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.4);
  padding: 4rem 0 2rem 0;
  text-align: center;
}



.blink {
    position: relative;
    -webkit-animation-name: example;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: infinite;    
}