/* ==========================================================================
   UGC Webinar Landing Page — Socials Agency
   Mobile-first, performance-optimized
   ========================================================================== */

/* --- Self-hosted Work Sans (variable font, wght 400–800) --- */
/* latin-ext — includes Czech characters (č, ř, ž, ů, etc.) */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/work-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/work-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #f2f2f2;
  background-color: #040404;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button,
input {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --- Custom Properties --- */
:root {
  --c-primary: #94e700;
  --c-primary-light: #b4ee4c;
  --c-primary-dark: #76b800;
  --c-primary-darkest: #2c4500;
  --c-bg: #040404;
  --c-bg-elevated: #111111;
  --c-bg-card: #1a1a1a;
  --c-fg: #f2f2f2;
  --c-fg-muted: #b2b2b2;
  --c-neutral-light: #d8d8d8;
  --c-white: #ffffff;

  --ff-primary: 'Work Sans', system-ui, sans-serif;
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-extrabold: 800;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --container-max: 1200px;
  --container-px: 1rem;

  --section-py: 4rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-primary);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-white);
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* --- Section --- */
.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--dark {
  background-color: var(--c-bg);
}

.section--elevated {
  background-color: var(--c-bg-elevated);
}

/* --- Section Header --- */
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__subtitle {
  color: var(--c-fg-muted);
  font-size: 1.125rem;
  max-width: 640px;
  line-height: 1.5;
}

/* ==========================================================================
   1. STICKY HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background-color: rgba(4, 4, 4, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  padding-top: 5rem;
  padding-bottom: var(--section-py);
}

/* Mobile: headline → image → form (vertical) */
.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__headline { order: 1; }
.hero__image-wrap { order: 2; }
.hero__form-wrap { order: 3; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(148, 231, 0, 0.1);
  border: 1px solid rgba(148, 231, 0, 0.25);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.hero__title {
  margin-bottom: 1.25rem;
}

/* Mobile: hide prefix + subtitle for less text */
.hero__title-prefix {
  display: none;
}

.hero__subtitle {
  display: none;
  color: var(--c-fg-muted);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__image-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.hero__image {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.hero__image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(4, 4, 4, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__overlay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__overlay-text {
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
}

.hero__overlay-text strong {
  color: var(--c-white);
  font-weight: var(--fw-semibold);
}

/* ==========================================================================
   FORM
   ========================================================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--c-white);
  font-size: 1rem; /* prevents iOS zoom */
  transition: border-color 0.2s;
}

.form__input::placeholder {
  color: var(--c-fg-muted);
}

.form__input:focus {
  border-color: var(--c-primary);
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__micro {
  font-size: 0.75rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
}

.form__micro a {
  color: var(--c-fg-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__micro a:hover {
  color: var(--c-primary);
}

.form__success {
  display: none;
  padding: 1rem;
  background: rgba(148, 231, 0, 0.1);
  border: 1px solid rgba(148, 231, 0, 0.25);
  border-radius: var(--radius-sm);
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  text-align: center;
}

.form__success.is-visible {
  display: block;
}

.form__error {
  display: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.25);
  border-radius: var(--radius-sm);
  color: #ff6b6b;
  font-size: 0.875rem;
}

.form__error.is-visible {
  display: block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--ff-primary);
  font-weight: var(--fw-extrabold);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  min-height: 44px;
  min-width: 44px;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--c-primary);
  color: var(--c-bg);
}

.btn--primary:hover {
  background-color: var(--c-primary-light);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
}

.btn--outline:hover {
  background: rgba(148, 231, 0, 0.1);
}

.btn--full {
  width: 100%;
}

/* ==========================================================================
   3. PAIN POINTS
   ========================================================================== */
.pain-points__grid {
  display: grid;
  gap: 1rem;
}

.pain-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.pain-card:hover {
  border-color: rgba(255, 60, 60, 0.3);
}

.pain-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 60, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ff6b6b;
}

.pain-card__title {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.3;
}

.pain-card__text {
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
}

/* ==========================================================================
   4. TAKEAWAYS
   ========================================================================== */
.takeaways__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.takeaway {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.takeaway__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(148, 231, 0, 0.1);
  color: var(--c-primary);
  font-weight: var(--fw-extrabold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.takeaway__content {
  flex: 1;
}

.takeaway__title {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: 0.375rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.3;
}

.takeaway__text {
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5. PERSONAS
   ========================================================================== */
.personas__grid {
  display: grid;
  gap: 1rem;
}

.persona-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.persona-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(148, 231, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.persona-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}

.persona-card__text {
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
}

.personas__note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(148, 231, 0, 0.05);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
}

/* ==========================================================================
   6. SPEAKERS
   ========================================================================== */
.speakers__grid {
  display: grid;
  gap: 1.5rem;
}

.speaker-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.speaker-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-primary);
}

.speaker-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}

.speaker-card__body {
  padding: 1.5rem;
}

.speaker-card__name {
  font-size: 1.25rem;
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: normal;
}

.speaker-card__role {
  font-size: 0.875rem;
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

.speaker-card__bio {
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.6;
}

/* ==========================================================================
   VIDEO TEASER (6 ukázek za hero)
   ========================================================================== */
.teaser__grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.teaser__caption {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.teaser__link {
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.teaser__link:hover {
  color: var(--c-primary-light);
}

/* Smaller video cards for teaser */
.video-card--sm {
  flex: 0 0 55%;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    max-width: 720px;
    margin: 0 auto;
  }

  .video-card--sm {
    flex: none;
  }
}

@media (min-width: 1024px) {
  .teaser__grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
  }
}

/* ==========================================================================
   TABS (Video showcase)
   ========================================================================== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tabs__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--c-fg-muted);
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
}

.tabs__btn:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.tabs__btn.is-active {
  background: var(--c-primary);
  color: var(--c-bg);
  border-color: var(--c-primary);
}

.tabs__panel {
  display: none;
}

.tabs__panel.is-active {
  display: block;
}

/* ==========================================================================
   VIDEO SHOWCASE (Ukázky z praxe)
   ========================================================================== */
.videos__grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg);
}

.video-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--c-primary);
  color: var(--c-bg);
  font-size: 0.6875rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.video-card__badge--ai {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.video-card__video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.videos__caption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
  margin-top: 1.25rem;
}

/* Mobile: horizontal scroll */
@media (max-width: 767px) {
  .videos__grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .video-card {
    flex: 0 0 65%;
    scroll-snap-align: center;
  }
}

/* Tablet+ : 3 columns */
@media (min-width: 768px) {
  .videos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .videos__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .videos__grid--5 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .videos__grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   7. BONUS (PLAYBOOK)
   ========================================================================== */
.bonus {
  position: relative;
  overflow: hidden;
}

.bonus__card {
  background: var(--c-bg-card);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}

.bonus__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.bonus__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--c-primary);
  color: var(--c-bg);
  font-size: 0.6875rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.bonus__title {
  margin-bottom: 0.75rem;
}

.bonus__text {
  color: var(--c-fg-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.bonus__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.bonus__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--c-fg);
  line-height: 1.4;
}

.bonus__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  background: var(--c-primary);
  border-radius: 50%;
  /* checkmark via CSS */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23040404' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 13.3L5.7 10.5l-1 1L8.5 15.3l7.5-7.5-1-1L8.5 13.3z'/%3E%3C/svg%3E");
}

.bonus__condition {
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
  padding: 0.75rem 1rem;
  background: rgba(148, 231, 0, 0.06);
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.bonus__mockup-wrap {
  display: flex;
  justify-content: center;
}

/* --- Playbook Cover Mockup --- */
.playbook-cover {
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(148, 231, 0, 0.15);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(148, 231, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.playbook-cover__header {
  background: var(--c-primary);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}

.playbook-cover__logo {
  height: 14px;
  width: auto;
  filter: brightness(0);
}

.playbook-cover__body {
  padding: 1.5rem 1.25rem 1rem;
  flex: 1;
}

.playbook-cover__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.playbook-cover__title {
  font-size: 1.75rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 0.625rem;
}

.playbook-cover__subtitle {
  font-size: 0.6875rem;
  color: var(--c-fg-muted);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.playbook-cover__toc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.playbook-cover__toc-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.playbook-cover__toc-num {
  font-size: 0.625rem;
  font-weight: var(--fw-extrabold);
  color: var(--c-primary);
  flex-shrink: 0;
  width: 1.25rem;
}

.playbook-cover__toc-text {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.playbook-cover__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playbook-cover__year {
  font-size: 0.625rem;
  font-weight: var(--fw-extrabold);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.playbook-cover__by {
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   8. SOCIAL PROOF
   ========================================================================== */
.social-proof__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.social-proof__stat {
  text-align: center;
}

.social-proof__stat-value {
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--c-primary);
}

.social-proof__stat-label {
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
  margin-top: 0.125rem;
}

.social-proof__stat-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.social-proof__stat-link:hover {
  opacity: 0.8;
}

.social-proof__stat-link .social-proof__stat-label {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.social-proof__logos img {
  height: 24px;
  width: auto;
}

.testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote {
  font-size: 1.125rem;
  color: var(--c-fg);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial__quote::before {
  content: '\201E';
}

.testimonial__quote::after {
  content: '\201C';
}

.testimonial__author {
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
}

/* ==========================================================================
   9. FAQ
   ========================================================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--c-primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--c-fg-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. FINAL CTA
   ========================================================================== */
.final-cta {
  text-align: center;
}

.final-cta .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.countdown__block {
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  min-width: 64px;
  text-align: center;
}

.countdown__value {
  font-size: 1.75rem;
  font-weight: var(--fw-extrabold);
  color: var(--c-primary);
  line-height: 1;
}

.countdown__label {
  font-size: 0.6875rem;
  color: var(--c-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.final-cta__info {
  font-size: 1.125rem;
  color: var(--c-fg-muted);
  margin-bottom: 2rem;
}

.final-cta__info strong {
  color: var(--c-white);
}

.final-cta .form {
  margin: 0 auto;
}

.final-cta__expired {
  display: none;
  padding: 2rem;
  text-align: center;
}

.final-cta__expired.is-visible {
  display: block;
}

.final-cta__expired-text {
  font-size: 1.25rem;
  color: var(--c-fg-muted);
}

/* ==========================================================================
   MID CTA
   ========================================================================== */
.mid-cta {
  text-align: center;
}

.mid-cta .form {
  margin: 0 auto;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__logo-img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
}

.footer__links a:hover {
  color: var(--c-primary);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--c-fg-muted);
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem var(--container-px);
  background: rgba(4, 4, 4, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE — Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  :root {
    --container-px: 2rem;
    --section-py: 5rem;
  }

  .form__row {
    flex-direction: row;
  }

  .pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personas__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .bonus__grid {
    grid-template-columns: 1fr 280px;
  }

  .bonus__card {
    padding: 2.5rem;
  }

  .countdown__block {
    padding: 1rem 1.5rem;
    min-width: 80px;
  }

  .countdown__value {
    font-size: 2.25rem;
  }

  .sticky-cta {
    display: none;
  }
}

/* ==========================================================================
   RESPONSIVE — Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  :root {
    --section-py: 6rem;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto auto;
    gap: 1rem 4rem;
  }

  .hero__headline {
    grid-column: 1;
    grid-row: 1;
    order: unset;
    align-self: end;
  }

  .hero__image-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    order: unset;
  }

  .hero__form-wrap {
    grid-column: 1;
    grid-row: 2;
    order: unset;
    align-self: start;
  }

  .hero__title-prefix {
    display: inline;
  }

  .hero__subtitle {
    display: block;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .hero__image-wrap {
    max-width: 420px;
  }

  .pain-points__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-points__grid .pain-card:nth-child(4),
  .pain-points__grid .pain-card:nth-child(5) {
    /* last 2 cards centered in a row of 3 */
  }

  .speakers__grid {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .bonus__grid {
    grid-template-columns: 1fr 320px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   THANK-YOU PAGE
   ========================================================================== */
.thankyou-hero {
  padding-top: 6rem;
}

.thankyou__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: iconPop 0.4s ease-out;
}

@keyframes iconPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.thankyou__check-path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: checkDraw 0.4s ease-out 0.3s forwards;
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.thankyou__title {
  margin-bottom: 0.75rem;
}

.thankyou__subtitle {
  color: var(--c-fg-muted);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.thankyou__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(148, 231, 0, 0.1);
  border: 1px solid rgba(148, 231, 0, 0.25);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.thankyou__riverside-btn {
  margin-bottom: 2rem;
}

.thankyou__calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--c-fg-muted);
}

.thankyou__calendar-label {
  color: var(--c-fg-muted);
}

.thankyou__calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  padding: 0.375rem 0;
  min-height: 44px;
}

.thankyou__calendar-link:hover {
  color: var(--c-primary-light);
}

.thankyou__calendar-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* --- Resource Cards --- */
.thankyou__resources {
  display: grid;
  gap: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.resource-card:hover {
  border-color: rgba(148, 231, 0, 0.3);
}

.resource-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(148, 231, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.resource-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}

.resource-card__text {
  font-size: 0.875rem;
  color: var(--c-fg-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.resource-card__link {
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
}

.resource-card:hover .resource-card__link {
  color: var(--c-primary-light);
}

@media (min-width: 768px) {
  .thankyou__resources {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   FOCUS-VISIBLE (Accessibility)
   ========================================================================== */
.btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.form__input:focus-visible {
  border-color: var(--c-primary);
  outline: 2px solid var(--c-primary);
  outline-offset: -2px;
}

.tabs__btn:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   SKIP LINK (Accessibility)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--c-primary);
  color: var(--c-bg);
  font-weight: var(--fw-extrabold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-green {
  color: var(--c-primary);
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   PRINT STYLESHEET
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header,
  .sticky-cta,
  .countdown,
  .skip-link,
  video,
  .video-card,
  .teaser__grid,
  .videos__grid,
  .tabs,
  .form,
  .btn,
  .mid-cta,
  .final-cta,
  .hero__image-overlay {
    display: none !important;
  }

  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .hero {
    min-height: auto !important;
    padding-top: 0;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }
}
