/* ============================================================
   Life Between The Systems — styles.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200..900;1,9..144,200..900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --hot-pink: #C65D8F;
  --coral: #F47C7C;
  --yellow: #F4C96B;
  --green: #69B578;
  --soft-pink: #F4B8B8;
  --off-white: #FDFAF6;
  --dark: #2A1F2D;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --z-nav: 100;
  --z-marquee: 90;
  --z-sticker: 20;
  --z-shapes: 10;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--off-white);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   Typography Helpers
   ============================================================ */
.font-display { font-family: var(--font-display); }
.italic { font-style: italic; }

.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow-pink  { background: var(--hot-pink); color: #fff; }
.eyebrow-yellow { background: var(--yellow); color: var(--dark); }
.eyebrow-green { background: var(--green); color: #fff; }

.section-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 24px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Primary pill — Hot Pink */
.btn-primary {
  background: var(--hot-pink);
  color: #fff;
  border-radius: 100px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,93,143,0.35); }

/* Primary pill — Dark */
.btn-dark {
  background: var(--dark);
  color: var(--yellow);
  border-radius: 100px;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,31,45,0.3); }

/* Wobbly 1 — Yellow, alternating radius */
.btn-wobbly-1 {
  background: var(--yellow);
  color: var(--dark);
  border-radius: 16px 4px 16px 4px;
}
.btn-wobbly-1:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 0 6px 20px rgba(244,201,107,0.45); }

/* Wobbly 2 — alternating radius other direction */
.btn-wobbly-2 {
  background: var(--yellow);
  color: var(--dark);
  border-radius: 4px 100px 4px 100px;
}
.btn-wobbly-2:hover { transform: translateY(-2px) rotate(1deg); box-shadow: 0 6px 20px rgba(244,201,107,0.45); }

/* Ghost dashed — Green */
.btn-ghost-green {
  background: transparent;
  color: var(--green);
  border: 2px dashed var(--green);
  border-radius: 8px;
}
.btn-ghost-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* Ghost dashed — White (for dark sections) */
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px dashed rgba(255,255,255,0.7);
  border-radius: 12px 4px 12px 4px;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* White filled — dark text */
.btn-white {
  background: #fff;
  color: var(--dark);
  border-radius: 100px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }

/* Green pill */
.btn-green {
  background: var(--green);
  color: #fff;
  border-radius: 100px;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(105,181,120,0.4); }

/* Pulse animation for quiz button */
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.btn-pulse { animation: pulse-scale 2.5s ease-in-out infinite; }
.btn-pulse:hover { animation: none; transform: scale(1.06); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px dashed rgba(198,93,143,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
.nav-logo .logo-accent {
  font-style: italic;
  color: var(--hot-pink);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  background: var(--dark);
  color: var(--yellow) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42,31,45,0.25);
}

/* ============================================================
   Marquee Ticker
   ============================================================ */
.marquee-bar {
  background: var(--hot-pink);
  overflow: hidden;
  padding: 10px 0;
  z-index: var(--z-marquee);
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-text {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-right: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--off-white);
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 680px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--hot-pink);
}

.hero-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.65;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.8;
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin-bottom: 36px;
  max-width: 580px;
}

/* Pills row */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid;
  background: transparent;
}
.pill-pink   { color: var(--hot-pink); border-color: var(--hot-pink); }
.pill-green  { color: var(--green);    border-color: var(--green); }
.pill-coral  { color: var(--coral);    border-color: var(--coral); }
.pill-yellow { color: #c49a00;         border-color: var(--yellow); }

/* Button row */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   Floating Stickers
   ============================================================ */
@keyframes float-up {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(-2deg); }
  66%       { transform: translateY(-5px) rotate(2deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  60%       { transform: translateY(-8px) rotate(3deg); }
}

.sticker {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: var(--z-sticker);
  cursor: default;
  user-select: none;
}

.sticker span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  padding: 10px;
  display: block;
}

.sticker-1 {
  width: 128px; height: 128px;
  background: var(--yellow);
  color: var(--dark);
  top: 60px; right: 18%;
  animation: float-up 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(244,201,107,0.4);
}
.sticker-2 {
  width: 112px; height: 112px;
  background: var(--soft-pink);
  color: var(--dark);
  top: 200px; right: 10%;
  animation: float-b 5s ease-in-out infinite 0.8s;
  box-shadow: 0 8px 24px rgba(244,184,184,0.4);
}
.sticker-3 {
  width: 96px; height: 96px;
  background: var(--green);
  color: #fff;
  bottom: 120px; right: 24%;
  animation: float-c 3.8s ease-in-out infinite 1.5s;
  box-shadow: 0 8px 24px rgba(105,181,120,0.4);
}

/* ============================================================
   Decorative Confetti Shapes (Hero BG)
   ============================================================ */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(45deg); }
}

.confetti-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-shapes);
}
.shape-1 {
  width: 48px; height: 48px;
  background: rgba(198,93,143,0.12);
  top: 15%; left: 60%;
  animation: drift 6s ease-in-out infinite;
}
.shape-2 {
  width: 24px; height: 24px;
  background: rgba(244,124,124,0.18);
  top: 40%; left: 72%;
  animation: drift 4s ease-in-out infinite 1s;
}
.shape-3 {
  width: 16px; height: 16px;
  background: rgba(105,181,120,0.22);
  top: 70%; left: 65%;
  animation: drift 5.5s ease-in-out infinite 2s;
}
.shape-4 {
  width: 36px; height: 36px;
  background: rgba(244,201,107,0.2);
  top: 25%; left: 82%;
  animation: spin-slow 12s linear infinite;
  border-radius: 6px;
}
.shape-5 {
  width: 12px; height: 12px;
  background: var(--hot-pink);
  opacity: 0.15;
  top: 55%; left: 78%;
  animation: drift 3.5s ease-in-out infinite 0.5s;
}
.shape-6 {
  width: 20px; height: 20px;
  background: rgba(198,93,143,0.1);
  top: 80%; left: 55%;
  border-radius: 3px;
  animation: spin-slow 18s linear infinite reverse;
}
/* Star shape */
.shape-star {
  width: 28px; height: 28px;
  background: none;
  top: 10%; left: 75%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.2;
  animation: drift 7s ease-in-out infinite 3s;
}

/* ============================================================
   Pain Section
   ============================================================ */
.pain-section {
  background: #FDF0F6;
  position: relative;
  overflow: hidden;
}

/* Radial dot grid texture */
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(198,93,143,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.pain-section .container { position: relative; z-index: 1; }

/* Pain cards mosaic */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Ghost number */
.pain-card::before {
  content: attr(data-num);
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Card 1 — white, hot pink top border */
.pain-card-1 {
  background: #fff;
  border-top: 4px solid var(--hot-pink);
  border: 1px solid rgba(198,93,143,0.2);
  border-top: 4px solid var(--hot-pink);
  color: var(--dark);
}

/* Card 2 — solid Hot Pink */
.pain-card-2 {
  background: var(--hot-pink);
  color: #fff;
}
.pain-card-2::before { color: #fff; }

/* Card 3 — dark */
.pain-card-3 {
  background: var(--dark);
  color: #fff;
}
.pain-card-3::before { color: #fff; }

/* Card 4 — yellow */
.pain-card-4 {
  background: var(--yellow);
  color: var(--dark);
}

/* ============================================================
   Framework (PLAY) Section — Ticket Cards
   ============================================================ */
.framework-section {
  background: var(--off-white);
}

/* Animated PLAY title letters */
.play-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.play-title em { font-style: italic; color: var(--hot-pink); }

.play-letters {
  display: inline-flex;
  gap: 2px;
  margin-right: 8px;
}

@keyframes letter-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(-12deg) scale(1.1); }
  75%       { transform: rotate(12deg) scale(1.1); }
}

.play-letter {
  display: inline-block;
  cursor: default;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  transition: color 0.2s;
}
.play-letter:hover { animation: letter-wiggle 0.4s ease-in-out; }
.pl-p { color: var(--hot-pink); }
.pl-l { color: var(--green); }
.pl-a { color: var(--coral); }
.pl-y { color: var(--yellow); filter: brightness(0.85); }

/* Ticket cards */
.tickets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.ticket {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.ticket:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ticket-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 10px;
}

.ticket-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.ticket-label-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.stub-pink   { background: var(--hot-pink); }
.stub-green  { background: var(--green); }
.stub-coral  { background: var(--coral); }
.stub-yellow { background: #d4a84a; }

.ticket-body {
  background: #fff;
  padding: 28px 32px;
  position: relative;
  border-left: none;
}

/* Perforated tear-line */
.ticket-body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 2px dashed rgba(0,0,0,0.12);
}

.ticket-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.ticket-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.75;
  max-width: 680px;
}

/* Tags row after tickets */
.framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.framework-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px dashed rgba(42,31,45,0.3);
  color: var(--dark);
  opacity: 0.75;
  transition: all 0.2s;
}
.framework-tag:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  opacity: 1;
}

/* ============================================================
   Transformation Strip (dark section)
   ============================================================ */
.transformation {
  background: var(--dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.transformation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(198,93,143,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(105,181,120,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.transformation .eyebrow-pill {
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(244,201,107,0.4);
}

.transformation .section-headline { color: #fff; }
.transformation .section-headline em { color: var(--soft-pink); font-style: italic; }

.transformation-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.transformation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   Offers Section
   ============================================================ */
.offers-section {
  background: #F0F9F2;
}

/* Journey strip */
.journey-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0 64px;
  position: relative;
}

.journey-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.journey-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}
.journey-icon-1 { background: rgba(198,93,143,0.12); box-shadow: 0 0 0 6px rgba(198,93,143,0.08); }
.journey-icon-2 { background: rgba(105,181,120,0.12); box-shadow: 0 0 0 6px rgba(105,181,120,0.08); }
.journey-icon-3 { background: rgba(244,201,107,0.2); box-shadow: 0 0 0 6px rgba(244,201,107,0.1); }

.journey-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.7;
  text-align: center;
}
.journey-label strong { display: block; font-style: normal; font-size: 15px; opacity: 1; color: var(--dark); }

.journey-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  border-top: 2px dashed rgba(42,31,45,0.2);
  position: relative;
  margin: 0 8px;
  margin-bottom: 32px;
}
.journey-line::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(42,31,45,0.2);
}

/* Offer cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.offer-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-pink   { background: rgba(198,93,143,0.12); color: var(--hot-pink); }
.badge-green  { background: rgba(105,181,120,0.15); color: #3a8a4a; }
.badge-yellow { background: rgba(244,201,107,0.25); color: #8a6a00; }

.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.price-full {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.4;
}
.price-beta {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
}

.offer-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.7;
  border-left: 3px solid var(--soft-pink);
  padding-left: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.offer-features {
  list-style: none;
  margin-bottom: 28px;
}
.offer-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42,31,45,0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.offer-features li::before {
  content: '✦';
  color: var(--hot-pink);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}
.offer-card-2 .offer-features li::before { color: var(--green); }
.offer-card-3 .offer-features li::before { color: #8a6a00; }

/* Featured card treatment */
.offer-card-2 {
  border: 2px solid var(--green);
}

.offer-card-3 {
  border: 2px solid var(--yellow);
}

/* ============================================================
   Community Section
   ============================================================ */
.community-section {
  background: #FEF6E8;
}

/* Level ladder */
.level-ladder {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0 56px;
  position: relative;
  max-width: 480px;
}

/* Vertical line connecting levels */
.level-ladder::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--hot-pink), var(--yellow));
  opacity: 0.2;
}

.level-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  position: relative;
  transition: transform 0.2s;
}
.level-item:hover { transform: translateX(4px); }

.level-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  transition: transform 0.2s;
}

.level-item.active .level-dot { transform: scale(1.15); }

.level-dot-1 { background: rgba(198,93,143,0.15); border-color: var(--hot-pink); }
.level-dot-2 { background: rgba(244,124,124,0.12); border-color: var(--coral); }
.level-dot-3 { background: rgba(244,201,107,0.2); border-color: var(--yellow); }
.level-dot-4 { background: rgba(105,181,120,0.15); border-color: var(--green); }
.level-dot-5 { background: rgba(42,31,45,0.08); border-color: var(--dark); }

.level-info h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}
.level-item.active .level-info h4 { color: var(--hot-pink); }

.level-info p {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 2px;
}

.level-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--hot-pink);
  color: #fff;
}

/* Community tier cards */
.community-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.community-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  border-left: 4px solid;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.community-card-green { border-left-color: var(--green); }
.community-card-pink  { border-left-color: var(--hot-pink); }

.community-card-icon { font-size: 28px; margin-bottom: 12px; }

.community-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.community-card p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.65;
}

.community-card-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark);
}

/* Callout box */
.community-callout {
  border: 2px dashed var(--coral);
  border-radius: 14px;
  padding: 24px 28px;
  background: rgba(244,124,124,0.05);
  margin-bottom: 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
}
.community-callout .callout-icon { font-size: 28px; flex-shrink: 0; }

.community-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   Founder Section
   ============================================================ */
.founder-section {
  background: #FDF0F6;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
}

.founder-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.45;
  color: var(--dark);
  border-left: 4px solid var(--hot-pink);
  padding-left: 24px;
  margin-bottom: 32px;
}

.founder-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 28px;
}

.founder-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--hot-pink);
  font-weight: 400;
  margin-bottom: 24px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.founder-tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(198,93,143,0.1);
  color: var(--hot-pink);
  font-weight: 500;
}

/* Founder image placeholder / visual */
.founder-visual {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(198,93,143,0.12) 0%, rgba(244,184,184,0.2) 50%, rgba(244,201,107,0.15) 100%);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(198,93,143,0.25);
}

.founder-visual-inner {
  text-align: center;
  z-index: 2;
}

.founder-avatar-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(198,93,143,0.08);
  font-size: 72px;
  position: relative;
}

.founder-visual-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.founder-visual-sub {
  font-size: 13px;
  color: var(--dark);
  opacity: 0.55;
}

/* Visual bg shapes */
.founder-visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(244,201,107,0.15);
  bottom: -60px; right: -60px;
}
.founder-visual::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(105,181,120,0.1);
  top: -40px; left: -40px;
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.final-cta {
  background: var(--hot-pink);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.final-cta .eyebrow-pill {
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(244,201,107,0.5);
}

.final-cta .section-headline { color: #fff; }
.final-cta .section-headline em { font-style: italic; color: rgba(255,255,255,0.85); }

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

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

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #FDF8F3;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(42,31,45,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.footer-brand-name em { font-style: italic; color: var(--hot-pink); }

.footer-tagline {
  font-size: 13px;
  opacity: 0.55;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--hot-pink); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(42,31,45,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--hot-pink); background: rgba(198,93,143,0.08); }

/* Footer bottom strip */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px dashed rgba(42,31,45,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-play-letters {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-play-letter {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: default;
  transition: transform 0.2s;
}
.footer-play-letter:hover { transform: translateY(-3px) rotate(-5deg); }
.fpl-p { background: rgba(198,93,143,0.12); color: var(--hot-pink); }
.fpl-l { background: rgba(105,181,120,0.12); color: var(--green); }
.fpl-a { background: rgba(244,124,124,0.12); color: var(--coral); }
.fpl-y { background: rgba(244,201,107,0.2); color: #9a7500; }

.footer-copy {
  font-size: 12px;
  opacity: 0.45;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-visual { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }

  .hero { padding: 52px 0 72px; }
  .sticker-1, .sticker-2, .sticker-3 { display: none; }
  .confetti-shape { display: none; }

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

  .community-tiers { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .journey-strip { flex-direction: column; align-items: flex-start; padding-left: 20px; }
  .journey-line { width: 2px; height: 40px; max-width: none; border-top: none; border-left: 2px dashed rgba(42,31,45,0.2); margin: 0 0 0 28px; }
  .journey-line::after { display: none; }

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

  .transformation-buttons { flex-direction: column; align-items: flex-start; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================================
   Prefers Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
