/* ===== DESIGN TOKENS - Theory of HireAbility brand family ===== */
/* Source of truth: Lindsay's TOH live site + LEP-Calculator.html
   Restyle date: 2026-05-04 late afternoon */
:root {
  /* Brand Colors - TOH magenta-pink (#E91E8C), warm-black background */
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #141414;
  --color-border: #222222;
  --color-text: #ffffff;
  --color-text-muted: #aaaaaa;
  --color-text-secondary: #999999;
  --color-text-faint: #555555;
  --color-primary: #E91E8C;
  --color-primary-hover: #c8177a;
  --color-primary-dark: #b01270;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Fonts - TOH uses Inter (Google Fonts) for everything */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius - TOH uses 100px pill buttons, 16px cards */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 var(--space-6); }
.container--wide { max-width: 1280px; }

/* ===== TYPOGRAPHY (TOH brand family) ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; color: var(--color-text); }
h1 em, h2 em, h3 em { font-style: normal; color: var(--color-primary); }
.section-label { font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 12px; }
.section-headline { font-size: clamp(24px, 4vw, 36px); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.section-body { font-size: 16px; line-height: 1.7; color: var(--color-text-secondary); max-width: 680px; margin-bottom: var(--space-8); }

/* ===== BUTTONS (TOH pill style) ===== */
.btn-primary { display: inline-block; background: var(--color-primary); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: 0.3px; padding: 18px 48px; border-radius: var(--radius-pill); text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(233,30,140,0.35); color: #fff; }

/* ===== URGENCY BAR (Accelerator-style: vertical stack with magenta pill) ===== */
.urgency-bar { background: #000000; border-bottom: 1px solid rgba(233,30,140,0.25); padding: 18px 24px 20px; position: relative; z-index: 60; }
.urgency-bar__inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; font-family: var(--font-display); }
.urgency-bar__title { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #ffffff; line-height: 1.2; }
.urgency-bar__icon { font-size: 20px; line-height: 1; }
.urgency-bar__sub { font-size: 15px; font-weight: 400; color: #cccccc; line-height: 1.4; margin: 0; letter-spacing: 0.1px; }
.urgency-bar__pill { display: inline-block; background: var(--color-primary); color: #ffffff; font-family: var(--font-display); font-weight: 900; font-size: 15px; letter-spacing: 1.5px; padding: 12px 28px; border-radius: 100px; box-shadow: 0 8px 24px rgba(233,30,140,0.35); margin-top: 4px; line-height: 1.2; }
.urgency-bar__pill strong { font-weight: 900; color: #ffffff; font-size: 17px; }
.urgency-bar__link { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #ffffff; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; margin-top: 4px; transition: color 0.2s; }
.urgency-bar__link:hover { color: var(--color-primary); }
@media (max-width: 600px) { .urgency-bar__pill { font-size: 12px; padding: 10px 18px; letter-spacing: 1px; } .urgency-bar__pill strong { font-size: 14px; } }

/* ===== NAV (TOH style) ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0; }
.nav__logo { font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--color-text); letter-spacing: -0.3px; }
.nav__logo span { color: var(--color-primary); }
.nav__cta { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; background: var(--color-primary); padding: 10px 22px; border: none; border-radius: var(--radius-pill); transition: all 0.2s; letter-spacing: 0.3px; }
.nav__cta:hover { background: var(--color-primary-hover); color: #fff; box-shadow: 0 4px 16px rgba(233,30,140,0.3); }

/* ===== HERO (v3 side-by-side, top-aligned, layered backdrop) ===== */
.hero { position: relative; padding: 32px 24px 56px; background: radial-gradient(1100px 600px at 75% 20%, rgba(233,30,140,0.10) 0%, transparent 60%), linear-gradient(160deg, #131313 0%, #0a0a0a 100%); border-bottom: 3px solid var(--color-primary); text-align: left; overflow: hidden; }
.hero__inner { position: relative; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; gap: 32px; } }
.hero__content { max-width: 640px; }

/* ===== COUNTDOWN TIMER (more dramatic, urgency-feel) ===== */
.countdown { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.countdown__unit { background: linear-gradient(180deg, rgba(233,30,140,0.16) 0%, rgba(233,30,140,0.06) 100%); border: 1px solid rgba(233,30,140,0.5); border-radius: 12px; padding: 10px 16px; min-width: 76px; text-align: center; box-shadow: 0 4px 16px rgba(233,30,140,0.15), inset 0 1px 0 rgba(255,255,255,0.06); }
.countdown__value { display: block; font-family: var(--font-display); font-weight: 900; font-size: 32px; color: #ffffff; line-height: 1; letter-spacing: -1.2px; text-shadow: 0 0 24px rgba(233,30,140,0.6); }
.countdown__label { display: block; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--color-primary); margin-top: 6px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary); padding: 0; border: none; margin-bottom: 12px; background: transparent; }
.hero__headline { font-size: clamp(32px, 4.5vw, 48px); font-weight: 900; color: #fff; letter-spacing: -1.2px; line-height: 1.1; margin: 0 0 16px; text-align: left; }
.hero__headline em { color: var(--color-primary); font-style: normal; }
.hero__subhead { font-size: clamp(18px, 2.4vw, 26px); color: var(--color-primary); line-height: 1.2; margin: 0 0 24px; font-weight: 800; text-align: left; font-style: italic; letter-spacing: -0.3px; }
.hero__subhead em { color: var(--color-primary); font-style: italic; font-weight: 800; }
.hero__pill { display: inline-block; background: var(--color-primary); color: #ffffff; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 11px 24px; border-radius: 100px; box-shadow: 0 8px 24px rgba(233,30,140,0.35); margin-bottom: 18px; line-height: 1.2; }
.hero__pill strong { font-weight: 900; color: #ffffff; font-size: 15px; margin-left: 2px; }

/* Workshop logistics - 3 stat blocks: Date / Time / Seats (date gets more room so it fits one line) */
.hero__logistics { display: grid; grid-template-columns: 1.5fr 1.2fr 1.1fr; gap: 0; margin: 0 0 26px; padding: 18px 0; border-top: 1px solid rgba(233,30,140,0.25); border-bottom: 1px solid rgba(233,30,140,0.25); max-width: 640px; }
@media (max-width: 600px) { .hero__logistics { grid-template-columns: 1fr; gap: 12px; } }
.hero__logistics-cell { padding: 0 16px; border-right: 1px solid rgba(233,30,140,0.15); min-width: 0; }
.hero__logistics-cell:first-child { padding-left: 0; }
.hero__logistics-cell:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 600px) { .hero__logistics-cell { border-right: 0; padding: 0; } }
.hero__logistics-label { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 5px; }
.hero__logistics-value { font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 20px); font-weight: 900; color: #ffffff; line-height: 1.2; letter-spacing: -0.3px; white-space: nowrap; }
@media (max-width: 900px) { .hero__logistics-value { white-space: normal; } }
.hero__hook { font-size: 16px; color: #cccccc; line-height: 1.65; margin: 0 0 16px; max-width: 580px; }
.hero__hook strong { color: #fff; font-weight: 700; }
.hero__hook em { color: var(--color-primary); font-style: normal; font-weight: 700; }
.hero__pain { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin: 0 0 24px; max-width: 580px; font-weight: 500; }

/* ===== PRESS STRIP (centered) ===== */
.press-strip { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0 auto 24px; padding: 14px 0; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; max-width: 580px; flex-wrap: wrap; }
.press-strip__label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-text-faint); white-space: nowrap; }
.press-strip__items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; }
.press-strip__item { font-family: 'Georgia', serif; font-size: 16px; font-weight: 600; color: #999; letter-spacing: -0.2px; transition: color 0.2s; }
.press-strip__item:nth-child(2) { font-family: 'Inter', sans-serif; letter-spacing: 3px; }
.press-strip__item:nth-child(3) { font-style: italic; letter-spacing: 0.5px; }
a.press-strip__item:hover { color: var(--color-primary); }
.press-strip__sep { display: none; }

/* ===== GHL FORM (v3.2 - auto-sized iframe, no dead white space) ===== */
.ghl-form-card { max-width: 580px; margin: 0 auto; }
.ghl-form-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 12px; padding: 6px 14px; background: rgba(233,30,140,0.10); border: 1px solid rgba(233,30,140,0.35); border-radius: 100px; }
.ghl-form-wrap { background: #ffffff; border: 0; border-top: 4px solid var(--color-primary); border-radius: 14px; padding: 0; margin: 0 auto; max-width: 580px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(233,30,140,0.25), 0 0 40px rgba(233,30,140,0.12); }
.ghl-form-wrap iframe { width: 100%; min-height: 700px; border: 0; background: #ffffff; display: block; }
.ghl-form-privacy { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-top: 14px; }
.ghl-form-bonus { margin: 16px auto 0; padding: 14px 18px; background: rgba(233,30,140,0.10); border: 1px solid rgba(233,30,140,0.32); border-radius: 12px; color: #ffffff; font-weight: 500; font-size: 14px; text-align: center; line-height: 1.55; max-width: 580px; }
.ghl-form-bonus strong { color: var(--color-primary); font-weight: 800; }

/* ===== TOP COUNTDOWN BAR (hot pink pill with white text, centered) ===== */
.top-timer-bar { background: #000000; padding: 12px 24px; position: relative; z-index: 60; display: flex; justify-content: center; }
.top-timer-bar__inner { display: inline-flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-family: var(--font-display); background: var(--color-primary); padding: 10px 28px; border-radius: 100px; box-shadow: 0 6px 20px rgba(233,30,140,0.45); }
.top-timer-bar__label { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #ffffff; }
.top-timer-bar__countdown { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #ffffff; }
.top-timer-bar__countdown strong { font-weight: 900; color: #ffffff; font-size: 15px; letter-spacing: -0.3px; }
@media (max-width: 600px) { .top-timer-bar__inner { padding: 8px 18px; gap: 8px; } .top-timer-bar__label { font-size: 10px; letter-spacing: 1.5px; } .top-timer-bar__countdown { font-size: 12px; } }

/* ===== HERO RIGHT-STACK (photo top, press strip bottom, fills column height) ===== */
.hero__right-stack { display: flex; flex-direction: column; justify-content: space-between; gap: 20px; align-items: stretch; align-self: stretch; justify-self: end; width: 100%; max-width: 540px; }

/* Press strip variant - sits under the photo, matches its width, anchored to bottom */
.press-strip--photo { margin: 0; padding: 14px 20px; background: rgba(255,255,255,0.02); border: 1px solid var(--color-border); border-radius: 12px; max-width: 540px; justify-content: center; }

/* ===== HERO IMAGE (top-aligned with H1, fills natural width of right-stack) ===== */
.hero__image-wrap { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(233,30,140,0.25); width: 100%; margin: 0; aspect-ratio: 4/5; background: #1a1a1a; box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(233,30,140,0.08), 0 0 80px rgba(233,30,140,0.10); }
.hero__image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.hero__image-badge { position: absolute; bottom: 18px; left: 18px; right: 18px; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); border-radius: 12px; padding: 16px 20px; border: 1px solid rgba(233,30,140,0.3); text-align: center; }
.hero__image-badge-name { font-family: var(--font-display); font-weight: 900; color: #ffffff; font-size: 18px; letter-spacing: -0.3px; }
.hero__image-badge-title { font-size: 12px; color: #cccccc; margin-top: 5px; letter-spacing: 0.4px; font-weight: 500; }

/* ===== HERO CTA STACK (centered, replaces in-hero form) ===== */
.hero__cta-stack { margin: 8px auto 0; max-width: 580px; text-align: center; }
.hero__bonus { padding: 14px 18px; background: rgba(233,30,140,0.10); border: 1px solid rgba(233,30,140,0.32); border-radius: 10px; color: #ffffff; font-weight: 500; font-size: 14px; line-height: 1.55; margin: 0 auto 18px; text-align: center; }
.hero__bonus strong { color: var(--color-primary); font-weight: 800; }
.hero__cta-btn { font-size: 17px; padding: 20px 44px; box-shadow: 0 12px 32px rgba(233,30,140,0.4); }
.hero__cta-btn:hover { box-shadow: 0 16px 40px rgba(233,30,140,0.55); }
.hero__cta-note { font-size: 12px; color: var(--color-text-muted); margin-top: 14px; letter-spacing: 0.3px; text-align: center; }

/* ===== STATS BAR (pink line above AND below to mirror hero) ===== */
.stats-bar { padding: var(--space-12) 0; background: var(--color-surface); border-bottom: 3px solid var(--color-primary); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
@media (max-width: 700px) { .stats-bar__inner { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat__number { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; color: var(--color-primary); letter-spacing: -0.03em; }
.stat__label { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-top: var(--space-1); }

/* ===== BRIBE / METHODOLOGY SECTION ===== */
.bribe { padding: var(--space-20) 0; }
.bribe__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start; }
@media (max-width: 900px) { .bribe__inner { grid-template-columns: 1fr; } }
.filter-item { display: flex; align-items: flex-start; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
.filter-item:last-child { border-bottom: 0; }
.filter-number { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; background: var(--color-primary); color: #000; font-family: var(--font-display); font-weight: 900; font-size: var(--text-xs); border-radius: var(--radius-full); flex-shrink: 0; }
/* ===== BRIBE IMAGE CARD (v3.2 - small "cool report" not giant sheet) ===== */
.bribe-image-card { position: relative; background: var(--color-surface); border: 1px solid rgba(233,30,140,0.25); border-radius: 12px; overflow: hidden; max-width: 320px; margin: 0 auto; transform: rotate(-1.5deg); box-shadow: 0 18px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(233,30,140,0.1), 0 0 60px rgba(233,30,140,0.18); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bribe-image-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,0.8), 0 0 80px rgba(233,30,140,0.28); }
.bribe-image-card img { width: 100%; height: auto; display: block; }
.bribe-image-card__caption { padding: 14px 16px; background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%); border-top: 1px solid var(--color-border); text-align: center; }
.bribe-image-card__caption-title { font-family: var(--font-display); font-weight: 900; font-size: 12px; color: var(--color-primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.bribe-image-card__caption-meta { font-size: 11px; color: var(--color-text-muted); line-height: 1.5; }
.bribe-image-card__caption-meta strong { color: #ffffff; font-weight: 700; }

.report-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.report-card__header { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); padding: var(--space-5) var(--space-6); }
.report-card__header-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #000; }
.report-card__header-title { font-family: var(--font-display); font-weight: 900; font-size: var(--text-lg); color: #000; margin-top: var(--space-1); }
.report-card__body { padding: var(--space-6); }
.report-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); padding: var(--space-4); background: var(--color-bg); border-radius: var(--radius-md); margin-bottom: var(--space-5); text-align: center; }
.report-card__stat-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: var(--text-lg); color: var(--color-primary); }
.report-card__stat-label { display: block; font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-1); }
.report-card__example { padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
.report-card__example:last-of-type { border-bottom: 0; }
.report-card__company { font-family: var(--font-display); font-weight: 800; color: var(--color-text); font-size: var(--text-sm); }
.report-card__job { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }
.report-card__salary { font-size: var(--text-xs); color: var(--color-primary); font-weight: 700; margin-top: var(--space-1); }
.report-card__note { font-size: var(--text-xs); color: var(--color-text-faint); text-align: center; margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--color-border); }

/* ===== TOP 10 SECTION (v3 - cleaner cards, no rank numbers) ===== */
.top10 { padding: 64px 24px; background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.top10__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 32px auto 24px; max-width: 1100px; }
@media (max-width: 900px) { .top10__grid { grid-template-columns: repeat(2, 1fr); } }
.top10-card { padding: 18px 16px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 12px; transition: border var(--transition), transform var(--transition); text-align: center; min-height: 90px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.top10-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.top10-card__name { font-family: var(--font-display); font-weight: 800; color: var(--color-text); font-size: 15px; line-height: 1.3; }
.top10-card__meta { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; letter-spacing: 0.3px; }
.top10__cta { text-align: center; font-size: 16px; color: var(--color-text-muted); margin-top: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== PRINCIPLES SECTION ===== */
.principles { padding: var(--space-20) 0; }
.principles__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); margin-top: var(--space-8); }
@media (max-width: 900px) { .principles__grid { grid-template-columns: 1fr; } }
.principle-card { padding: var(--space-5); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.principle-card__letter { font-family: var(--font-display); font-weight: 900; font-size: var(--text-2xl); color: var(--color-primary); line-height: 1; margin-bottom: var(--space-3); }
.principle-card__name { font-family: var(--font-display); font-weight: 800; color: var(--color-text); font-size: var(--text-base); margin-bottom: var(--space-2); }
.principle-card__body { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }

/* ===== THREE DOORS SECTION ===== */
.doors { padding: var(--space-20) 0; background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.doors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin: var(--space-8) 0; }
@media (max-width: 900px) { .doors__grid { grid-template-columns: 1fr; } }
.door-card { padding: var(--space-6); background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.door-card__label { font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm); color: var(--color-primary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--space-2); }
.door-card__name { font-family: var(--font-display); font-weight: 900; color: var(--color-text); font-size: var(--text-lg); margin-bottom: var(--space-3); }
.door-card__body { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; }
.doors__close { text-align: center; font-size: var(--text-base); color: var(--color-text); max-width: 60ch; margin: var(--space-6) auto 0; }

/* ===== PROOF SECTION ===== */
.proof { padding: var(--space-20) 0; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-12); }
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } }
.proof-card { padding: var(--space-6); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.proof-card__result { font-family: var(--font-display); font-weight: 900; font-size: var(--text-xl); color: var(--color-primary); margin-bottom: var(--space-3); }
.proof-card__story { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.proof-card__story strong { color: var(--color-text); }
.proof-card__name { font-size: var(--text-xs); color: var(--color-text-faint); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== TRAINING / WORKSHOP SECTION (TOH style) ===== */
.training { padding: 64px 24px; background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); text-align: center; }
.training__countdown-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--color-primary); color: #ffffff; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 1.5px; padding: 10px 24px; border-radius: 100px; box-shadow: 0 8px 24px rgba(233,30,140,0.35); margin-bottom: 24px; }
.training__countdown-pill strong { font-weight: 900; color: #ffffff; font-size: 15px; letter-spacing: -0.3px; }
.training__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary); padding: 0; border: none; margin-bottom: 12px; background: transparent; }
.training__live-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.training__headline { font-size: clamp(24px, 4vw, 36px); max-width: 22ch; margin: 0 auto 16px; line-height: 1.2; letter-spacing: -0.5px; }
.training__without { font-size: clamp(16px, 2.5vw, 21px); color: var(--color-text-muted); margin-bottom: 24px; font-style: italic; }
.training__date { display: inline-block; background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.35); border-radius: var(--radius-pill); padding: 12px 28px; font-size: 17px; font-weight: 700; color: var(--color-primary); letter-spacing: 0.5px; margin-bottom: 28px; font-family: var(--font-display); }
.training__list { max-width: 60ch; margin: 0 auto var(--space-8); text-align: left; }
.training__list li { padding: var(--space-3) 0; padding-left: var(--space-6); border-bottom: 1px solid var(--color-border); position: relative; color: var(--color-text-muted); }
.training__list li:last-child { border-bottom: 0; }
.training__list li::before { content: "✓"; position: absolute; left: 0; top: var(--space-3); color: var(--color-primary); font-weight: 900; }

/* ===== REAL CLIENT WINS - added 2026-07-12 ===== */
.wins { padding: 72px 24px; background: var(--color-bg); text-align: center; border-top: 1px solid var(--color-border); }
.wins__badge { display: inline-block; background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.35); border-radius: var(--radius-pill); padding: 8px 20px; font-size: 13px; font-weight: 700; color: var(--color-primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-display); }
.wins__headline { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--color-text); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.15; }
.wins__lede { font-size: clamp(15px, 2vw, 17px); color: var(--color-text-muted); max-width: 620px; margin: 0 auto var(--space-12); line-height: 1.5; }
.wins__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto var(--space-10); }
.wins__card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: left; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.wins__card:hover { transform: translateY(-2px); border-color: rgba(233,30,140,0.4); box-shadow: 0 8px 24px rgba(233,30,140,0.12); }
.wins__number { font-size: clamp(20px, 2.5vw, 24px); font-weight: 900; color: var(--color-primary); letter-spacing: -0.3px; margin-bottom: 16px; font-family: var(--font-display); text-transform: uppercase; line-height: 1.15; }
.wins__quote { font-size: clamp(15px, 2vw, 17px); color: var(--color-text); line-height: 1.55; margin-bottom: 20px; font-style: italic; flex-grow: 1; }
.wins__quote::before { content: '"'; color: var(--color-primary); font-size: 22px; font-weight: 900; margin-right: 2px; }
.wins__meta { font-size: 13px; color: var(--color-text-muted); letter-spacing: 0.3px; padding-top: 16px; border-top: 1px solid var(--color-border); display: flex; align-items: center; gap: 14px; }
.wins__meta strong { color: var(--color-text); font-weight: 700; }
.wins__photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(233,30,140,0.35); flex-shrink: 0; }
.wins__meta-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.4; }
.wins__meta-text strong { font-size: 14px; color: var(--color-text); font-weight: 700; }
.wins__meta-text span { color: var(--color-text-muted); font-size: 13px; }
.wins__screenshot { display: block; width: 100%; max-width: 340px; border-radius: 8px; border: 1px solid var(--color-border); margin-top: 14px; }
.wins__watch { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--color-primary); text-decoration: none; letter-spacing: 0.3px; border-bottom: 1px solid rgba(233,30,140,0.35); padding-bottom: 2px; transition: border-color var(--transition), color var(--transition); align-self: flex-start; }
.wins__watch:hover { color: #ff4a9e; border-bottom-color: rgba(233,30,140,0.8); }
@media (max-width: 700px) {
  .wins { padding: 56px 18px; }
  .wins__grid { grid-template-columns: 1fr; gap: 16px; }
  .wins__card { padding: 24px 20px; }
}

/* ===== BOTTOM OPT-IN ===== */
.bottom-optin { padding: var(--space-20) 0; text-align: center; }
.bottom-optin .ghl-form-wrap { max-width: 540px; margin: var(--space-8) auto 0; }

/* ===== FOOTER ===== */
.footer { padding: var(--space-12) 0 var(--space-8); background: var(--color-surface); border-top: 1px solid var(--color-border); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4); }
.footer__name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm); color: var(--color-text); }
.footer__links { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.footer__links a { color: var(--color-text-muted); font-size: var(--text-sm); }
.footer__links a:hover { color: var(--color-primary); }
.footer__legal { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: var(--space-6); padding-top: var(--space-6); border-top: 1px solid var(--color-border); font-size: 12px; }
.footer__legal a { color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--color-primary); }
.footer__legal-sep { color: var(--color-text-faint); }
.footer__meta { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: 10px; text-align: center; }

/* ===== THANK YOU PAGE ===== */
.thanks { padding: var(--space-24) 0 var(--space-16); text-align: center; min-height: 70vh; }
.thanks__hero h1 { font-size: var(--text-3xl); margin-bottom: var(--space-5); }
.thanks__hero h1 em { color: var(--color-primary); font-style: normal; }
.thanks__lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; margin: 0 auto var(--space-10); }
.thanks__lead strong { color: var(--color-text); }
.values-gate { max-width: 65ch; margin: var(--space-12) auto; padding: var(--space-8); background: var(--color-surface); border: 1px solid var(--color-primary); border-radius: var(--radius-lg); text-align: left; }
.values-gate__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-4); text-align: center; }
.values-gate p { font-size: var(--text-base); color: var(--color-text); line-height: 1.7; margin-bottom: var(--space-4); }
.values-gate p:last-child { margin-bottom: 0; }
.values-gate p strong { color: var(--color-primary); }

/* v9 compact values-gate: smaller, tighter, narrower. Brand still present, no longer dominating. */
.values-gate--compact { max-width: 50ch; margin: var(--space-6) auto var(--space-8); padding: var(--space-5) var(--space-6); border-radius: 12px; }
.values-gate--compact .values-gate__label { font-size: 11px; letter-spacing: 0.22em; margin-bottom: var(--space-2); }
.values-gate--compact p { font-size: 13.5px; line-height: 1.5; margin-bottom: var(--space-2); }
.next-steps { max-width: 50ch; margin: var(--space-10) auto 0; text-align: left; }
.next-steps h2 { font-size: var(--text-lg); margin-bottom: var(--space-5); text-align: center; }
.next-steps li { padding: var(--space-3) 0; padding-left: var(--space-6); border-bottom: 1px solid var(--color-border); position: relative; color: var(--color-text-muted); font-size: var(--text-sm); }
.next-steps li:last-child { border-bottom: 0; }
.next-steps li::before { content: "→"; position: absolute; left: 0; top: var(--space-3); color: var(--color-primary); font-weight: 900; }

/* ===== MOBILE OPTIMIZATIONS (touch targets 44+, no horizontal scroll, hero stacks, modal usable) ===== */
@media (max-width: 600px) {
  /* Prevent horizontal scroll at any width */
  html, body { overflow-x: hidden; }

  /* Tighter hero padding on mobile */
  .hero { padding: 24px 18px 40px; }
  .hero__inner { gap: 28px; }
  .hero__content { max-width: 100%; }

  /* Photo stacks above press strip on mobile, both natural width */
  .hero__right-stack { max-width: 100%; gap: 16px; }
  .hero__image-wrap { max-width: 100%; aspect-ratio: 4/4.5; }

  /* Press strip readable on mobile */
  .press-strip--photo { padding: 12px 14px; gap: 10px; }
  .press-strip__items { gap: 10px 16px; }

  /* CTA button full-width touch target */
  .hero__cta-btn, .btn-primary { display: block; width: 100%; padding: 18px 24px; font-size: 16px; }
  .hero__cta-stack { max-width: 100%; }
  .hero__bonus { font-size: 13px; padding: 12px 14px; }

  /* Bonus + note legibility */
  .hero__cta-note { font-size: 11px; }

  /* Stats bar more compact on mobile */
  .stats-bar { padding: 28px 16px; }
  .stats-bar__inner { gap: 18px; }

  /* Workshop section padding + list legibility */
  .training { padding: 40px 18px; }
  .training__list { padding: 0 4px; }
  .training__list li { font-size: 14px; padding-left: 24px; }

  /* FAQ comfortable on mobile */
  .faq { padding: 32px 16px; }
  .faq__q { font-size: 14px; }
  .faq__a { font-size: 13px; }

  /* Modal full-bleed on small screens with safe touch targets */
  .workshop-modal { padding: 12px; }
  .workshop-modal__panel { max-height: 94vh; }
  .workshop-modal__close { width: 44px; height: 44px; top: 8px; right: 8px; font-size: 26px; }
  .workshop-modal__header { padding: 22px 20px 18px; }
  .workshop-modal__title { font-size: clamp(22px, 6vw, 28px); }
  .workshop-modal__meta { font-size: 12.5px; gap: 4px 6px; }

  /* Footer comfortable + tappable on mobile */
  .footer { padding: 28px 0 20px; }
  .footer__legal { gap: 10px; font-size: 13px; }
  .footer__legal a { padding: 6px 0; }
}

/* Very narrow modal widths: stack each item on its own line (cleaner than mid-phrase wrap) */
@media (max-width: 420px) {
  .workshop-modal__meta { flex-direction: column; gap: 3px; }
  .workshop-modal__meta-sep { display: none; }
}

/* Mid-tablet polish */
@media (min-width: 601px) and (max-width: 900px) {
  .hero { padding: 28px 24px 48px; }
  .hero__cta-btn, .btn-primary { padding: 18px 36px; }
  .hero__image-wrap { aspect-ratio: 4/4.5; }
}

/* ===== FAQ (fully visible, compact, de-emphasized for SEO/AEO citation weight) ===== */
.faq { padding: 48px 24px 40px; background: #0a0a0a; border-top: 1px solid var(--color-border); }
.faq .container { max-width: 720px; }
.faq__title { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 24px); font-weight: 800; color: var(--color-text-muted); letter-spacing: -0.2px; text-align: center; margin: 0 0 24px; line-height: 1.2; text-transform: none; }
.faq__list { display: flex; flex-direction: column; gap: 18px; }
.faq__item { padding: 0; }
.faq__q { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: #ddd; line-height: 1.4; margin-bottom: 6px; }
.faq__a { font-size: 13px; color: #999; line-height: 1.6; max-width: 680px; }


.notfound { padding: var(--space-24) 0; text-align: center; min-height: 70vh; }
.notfound h1 { font-size: var(--text-3xl); margin-bottom: var(--space-5); }
.notfound p { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 50ch; margin: 0 auto var(--space-8); }

/* ===== WORKSHOP MODAL (popup, closed by default) =====
   NOTE 2026-07-12: Switched from display:none/flex to visibility+opacity so the
   GHL iframe inside stays rendered while closed. Prevents the "blank grey box"
   race condition where a fast re-open catches the iframe mid-boot. */
.workshop-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.2s ease; }
.workshop-modal.is-open { opacity: 1; visibility: visible; }
.workshop-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); cursor: pointer; }
.workshop-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 580px; max-height: 92vh; overflow-y: auto; overflow-x: hidden; background: #ffffff; border-radius: 16px; box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(233,30,140,0.4), 0 0 60px rgba(233,30,140,0.18); animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.workshop-modal__header { background: linear-gradient(160deg, #131313 0%, #0a0a0a 100%); border-bottom: 3px solid var(--color-primary); padding: 28px 32px 22px; text-align: center; color: #ffffff; }
.workshop-modal__eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.workshop-modal__title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 34px); font-weight: 900; color: #ffffff; line-height: 1.1; letter-spacing: -0.5px; margin: 0 0 12px; }
/* v6 single-line wrap fix (2026-05-05): each item never breaks mid-phrase; tightened gap; stacks on very narrow widths so it never wraps awkwardly */
.workshop-modal__meta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 8px; font-size: 13.5px; color: #cccccc; margin-bottom: 14px; line-height: 1.4; }
.workshop-modal__meta > span { white-space: nowrap; }
.workshop-modal__meta strong { color: #ffffff; font-weight: 700; }
.workshop-modal__meta-sep { color: rgba(233,30,140,0.6); }
.workshop-modal__bonus { font-size: 12px; color: #cccccc; line-height: 1.55; padding: 10px 14px; background: rgba(233,30,140,0.10); border: 1px solid rgba(233,30,140,0.3); border-radius: 8px; text-wrap: pretty; }
.workshop-modal__bonus strong { color: var(--color-primary); font-weight: 800; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.workshop-modal__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.85); color: #ffffff; font-size: 24px; font-weight: 400; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 0; transition: background 0.2s; }
.workshop-modal__close:hover { background: var(--color-primary); }
body.modal-open { overflow: hidden; position: fixed; width: 100%; }
.workshop-modal__panel { overscroll-behavior: contain; }

/* ===== LOVE WALL (v3.1 - compressed, easier to scroll past) ===== */
.lovewall { padding: 40px 24px 48px; background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%); }
.lovewall__inner { max-width: 1180px; margin: 0 auto; }
.lovewall__header { text-align: center; margin-bottom: 18px; }
.lovewall__label { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.lovewall__title { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff; letter-spacing: -0.4px; margin-bottom: 6px; line-height: 1.15; }
.lovewall__title em { color: var(--color-primary); font-style: normal; }
.lovewall__sub { font-size: 14px; color: var(--color-text-muted); max-width: 560px; margin: 0 auto; line-height: 1.5; }
.lovewall__hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-primary); padding: 6px 14px; background: rgba(233,30,140,0.08); border: 1px solid rgba(233,30,140,0.25); border-radius: 100px; }
.lovewall__hint::after { content: "↓"; font-size: 13px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* The bounded scroll container - shorter, easier to scroll past */
.lovewall__container { position: relative; height: 500px; max-width: 1180px; margin: 18px auto 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--color-border); background: #0a0a0a; }
.lovewall__scroll { height: 100%; overflow-y: auto; overflow-x: hidden; padding: 24px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--color-primary) #1a1a1a; }
.lovewall__scroll::-webkit-scrollbar { width: 8px; }
.lovewall__scroll::-webkit-scrollbar-track { background: #1a1a1a; }
.lovewall__scroll::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 4px; }

/* Top + bottom fade gradients to signal "more inside" */
.lovewall__container::before, .lovewall__container::after { content: ""; position: absolute; left: 0; right: 0; height: 60px; pointer-events: none; z-index: 2; }
.lovewall__container::before { top: 0; background: linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%); }
.lovewall__container::after { bottom: 0; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%); }

/* CSS columns masonry layout - simplest cross-browser approach */
.lovewall__masonry { columns: 4 220px; column-gap: 14px; }
@media (max-width: 700px) { .lovewall__masonry { columns: 2 160px; } }
.lovewall__card { break-inside: avoid; margin-bottom: 14px; background: #141414; border: 1px solid var(--color-border); border-radius: 10px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; display: block; }
.lovewall__card:hover { border-color: rgba(233,30,140,0.5); transform: translateY(-2px); }
.lovewall__card img { width: 100%; height: auto; display: block; }

.lovewall__footer { text-align: center; margin-top: 28px; font-size: 14px; color: var(--color-text-muted); font-style: italic; }
.lovewall__footer strong { color: var(--color-primary); font-style: normal; font-weight: 800; }

/* ===== ADD TO CALENDAR (thank-you page, v9 2026-05-05 - Step 1 / promoted to primary post-signup action) ===== */
.calendar-add { background: linear-gradient(160deg, #131313 0%, #0a0a0a 100%); border: 1px solid rgba(233,30,140,0.4); border-radius: 14px; padding: 28px 24px 28px; margin: 18px 0 36px; text-align: center; box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(233,30,140,0.18), 0 0 60px rgba(233,30,140,0.08); }
.calendar-add__step { display: inline-block; font-family: var(--font-display); font-size: 10.5px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #ffffff; background: var(--color-primary); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.calendar-add__eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 10px; }
.calendar-add__title { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 900; color: #ffffff; line-height: 1.2; letter-spacing: -0.3px; margin: 0 0 8px; }
.calendar-add__sub { font-size: 14px; color: #cccccc; line-height: 1.5; margin: 0 auto 20px; max-width: 48ch; }

/* v10 simple anchor link to AddEvent hosted page (same tab, hot-pink brand button) */
.calendar-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 32px; min-height: 52px; font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: 0.3px; color: #ffffff; background: #FF69B4; border: 0; border-radius: 12px; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 8px 22px rgba(255,105,180,0.35); }
.calendar-btn:hover { background: #ff4fa3; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,105,180,0.45); color: #ffffff; }
.calendar-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
.calendar-btn__icon { width: 22px; height: 22px; flex: 0 0 22px; }
.calendar-btn__icon svg { width: 100%; height: 100%; display: block; }

@media (max-width: 600px) {
  .calendar-add { padding: 22px 18px 22px; margin: 22px 0 26px; }
  .calendar-btn { width: 100%; padding: 16px 20px; font-size: 15px; min-height: 56px; }
}
