/* ==========================================================================
   Treat Your Teacher -- Component Library (components.css)
   Buttons, cards, forms, nav, phone frame, role selector, badges, dividers.
   ========================================================================== */

/* ==========================================================================
   GLOBAL MICRO-INTERACTIONS
   ========================================================================== */

a, button, .card, [data-reveal] {
  transition: all 0.2s ease;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: var(--r-full);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--dur-button) ease,
    box-shadow var(--dur-fast) ease,
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

/* Sizes */
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn,
.btn--md {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
}

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

/* Primary (Coral gradient) */
.btn-primary {
  background: linear-gradient(135deg, #F4845F 0%, #F9A66A 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(244, 132, 95, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E87350 0%, #F4845F 100%);
  box-shadow: 0 12px 32px rgba(244, 132, 95, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 16px rgba(244, 132, 95, 0.3);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

/* Secondary (Gold outline) */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 16px;
  border: 2px solid var(--gold);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Ghost (Text only, border) */
.btn-ghost {
  background: transparent;
  color: var(--coral);
  padding: 14px 28px;
  font-size: 16px;
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  background: var(--coral-light);
  border-color: var(--coral);
}

.btn-ghost:active {
  transform: scale(0.97);
}

.btn-ghost:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

/* Waitlist submit (gold on white card inside coral section) */
.btn-waitlist-submit {
  background: linear-gradient(135deg, #F9C74F 0%, #F5B740 100%);
  color: var(--text-primary);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(249, 199, 79, 0.4);
  width: 100%;
  position: relative;
}

.btn-waitlist-submit:hover {
  background: linear-gradient(135deg, #F5B740 0%, #F9C74F 100%);
  box-shadow: 0 10px 32px rgba(249, 199, 79, 0.55);
  transform: translateY(-2px);
}

.btn-waitlist-submit:active {
  transform: scale(0.97);
}

.btn-waitlist-submit:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Loading state for submit button */
.btn-waitlist-submit.is-loading {
  pointer-events: none;
  opacity: 0.85;
  color: transparent;
}

.btn-waitlist-submit.is-loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(45, 45, 45, 0.2);
  border-top-color: var(--text-primary);
  border-radius: 50%;
  animation: btn-spinner 0.6s linear infinite;
}

@keyframes btn-spinner {
  to { transform: rotate(360deg); }
}


/* ==========================================================================
   FORM INPUTS
   ========================================================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(244, 132, 95, 0.12);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input--error {
  border-color: var(--coral);
}

.form-error {
  font-size: var(--size-xs);
  color: var(--coral);
  font-weight: 600;
  min-height: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   ROLE SELECTOR (radio-card style)
   ========================================================================== */

.role-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    border-color var(--dur-fast) ease,
    background var(--dur-fast) ease,
    transform 0.2s ease;
  text-align: center;
  position: relative;
}

.role-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.role-card.selected {
  border-color: var(--coral);
  background: var(--coral-light);
}

.role-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.role-card:focus-within {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.role-emoji {
  font-size: 28px;
  line-height: 1;
}

.role-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.role-description {
  font-size: var(--size-xs);
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .role-selector {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   FEATURE CARD
   ========================================================================== */

.feature-card {
  background: var(--white);
  border: 1px solid rgba(244, 132, 95, 0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: 0 2px 12px rgba(244, 132, 95, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(244, 132, 95, 0.16),
    0 2px 8px rgba(244, 132, 95, 0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.feature-card__text {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  color: var(--text-muted);
  line-height: 1.6;
}


/* ==========================================================================
   QUOTE CARD
   ========================================================================== */

.quote-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--sp-6) 0;
}

.quote-card__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  position: relative;
}

/* Decorative quotation mark */
.quote-card__text::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: -8px;
  font-size: 96px;
  color: var(--coral);
  opacity: 0.08;
  font-style: normal;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.quote-card__attribution {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--size-sm);
  color: var(--text-muted);
  margin-top: var(--sp-4);
}


/* ==========================================================================
   STAT CARD
   ========================================================================== */

.stat-card {
  text-align: center;
  padding: var(--sp-5) var(--sp-4);
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--coral);
  line-height: 1.1;
}

.stat-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--size-sm);
  color: var(--text-muted);
  margin-top: var(--sp-2);
}


/* ==========================================================================
   PHONE MOCKUP FRAME
   ========================================================================== */

.phone-frame {
  width: 280px;
  height: 580px;
  border-radius: 32px;
  border: 6px solid var(--text-primary);
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  flex-shrink: 0;
}

/* Subtle left-edge highlight for realism */
.phone-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
  pointer-events: none;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: var(--text-primary);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-frame__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 32px;
}

@media (max-width: 640px) {
  .phone-frame {
    width: 240px;
    height: 480px;
    border-radius: 24px;
  }

  .phone-frame::before {
    width: 100px;
    height: 20px;
    border-radius: 0 0 12px 12px;
  }
}


/* ==========================================================================
   BADGE / PILL
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--coral-light);
  color: var(--coral);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--size-sm);
  border-radius: var(--r-full);
  line-height: 1.4;
}


/* ==========================================================================
   DASHBOARD MOCKUP (Principal section)
   ========================================================================== */

.dashboard-frame {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 500px;
}

.dashboard-header {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
  color: var(--white);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
}

.dashboard-header h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.dashboard-header .dashboard-subtitle {
  font-size: var(--size-xs);
  opacity: 0.8;
}

.dashboard-body {
  padding: var(--sp-5);
}

.dashboard-teacher-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}

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

.dashboard-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.dashboard-teacher-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex: 1;
}

.dashboard-teacher-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--coral);
}

.dashboard-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}


/* ==========================================================================
   SECTION WAVE DIVIDER
   ========================================================================== */

.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.section-wave svg {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   HOW-IT-WORKS TAB TOGGLE
   ========================================================================== */

.tab-toggle {
  display: inline-flex;
  background: var(--border);
  border-radius: var(--r-full);
  padding: 4px;
  gap: 0;
}

.tab-toggle__btn {
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-full);
  color: var(--text-secondary);
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    background var(--dur-fast) ease,
    color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.tab-toggle__btn.active {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-toggle__btn:not(.active):hover {
  color: var(--coral);
}


/* ==========================================================================
   STEP CARD (How It Works)
   ========================================================================== */

.step-card {
  text-align: center;
  position: relative;
  padding: var(--sp-5) var(--sp-4);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.step-icon {
  font-size: 40px;
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.step-card p {
  font-size: var(--size-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


/* ==========================================================================
   STEPS CONNECTOR LINE
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}

/* Horizontal dashed line connecting steps on desktop */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 0;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

.steps-grid .step-card {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding-left: var(--sp-8);
    position: relative;
  }

  .steps-grid::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--border);
  }

  .step-card {
    text-align: left;
  }

  .step-card p {
    margin: 0;
    max-width: none;
  }
}


/* ==========================================================================
   CALLOUT BOX
   ========================================================================== */

.callout {
  background: var(--coral-light);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-top: var(--sp-5);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  border-left: 4px solid var(--coral);
}


/* ==========================================================================
   FEED POST CARDS (inside phone mockup)
   ========================================================================== */

.feed-post {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-2) var(--sp-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.feed-post__header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.feed-post__avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feed-post__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.feed-post__time {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: auto;
}

.feed-post__body {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feed-post__image {
  width: 100%;
  height: 80px;
  background: var(--gold-light);
  border-radius: var(--r-sm);
  margin-top: var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feed-post__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  font-size: 11px;
  color: var(--text-muted);
}

.feed-post__heart {
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.feed-post__heart:hover {
  color: var(--coral);
}


/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: var(--sp-5) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.faq-item summary:hover {
  color: var(--coral);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(0deg);
}

.faq-item__answer {
  padding: 0 0 var(--sp-5);
  font-size: var(--size-body);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
}


/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--size-sm);
  color: var(--text-muted);
  margin-top: var(--sp-5);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.trust-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--green);
  flex-shrink: 0;
}


/* ==========================================================================
   MOBILE CTA BAR
   ========================================================================== */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--coral);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-expo);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar__btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: none;
  border: 2px solid var(--white);
  border-radius: var(--r-full);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-cta-bar__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-cta-bar__close {
  color: var(--white);
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--dur-fast) ease;
}

.mobile-cta-bar__close:hover {
  opacity: 1;
}

/* Only show on mobile */
@media (min-width: 1025px) {
  .mobile-cta-bar {
    display: none;
  }
}


/* ==========================================================================
   FLOATING EMOJI (hero decorative elements)
   ========================================================================== */

.floating-emoji {
  position: absolute;
  font-size: 24px;
  z-index: 1;
  pointer-events: none;
  animation: float-emoji 3s ease-in-out infinite;
}

.floating-emoji:nth-child(2) {
  animation-delay: 0.5s;
  animation-duration: 3.5s;
}

.floating-emoji:nth-child(3) {
  animation-delay: 1s;
  animation-duration: 2.8s;
}

@keyframes float-emoji {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 640px) {
  .floating-emoji {
    display: none;
  }
}


/* ==========================================================================
   FEATURE LIST (bullet style with icons)
   ========================================================================== */

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--size-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  background: var(--green-light);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}

.feature-list li::after {
  content: '\2713';
  position: absolute;
  margin-left: 5px;
  margin-top: 3px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}

/* Alternative: use a wrapper approach for the checkmark */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--size-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-list .check-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--r-full);
  background: var(--green-light);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ==========================================================================
   STATS ROW (Social Proof)
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: var(--sp-7) auto 0;
}

.stats-row .stat-card {
  position: relative;
}

/* Vertical dividers between stat cards */
.stats-row .stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .stats-row .stat-card + .stat-card::before {
    left: 15%;
    top: 0;
    height: 1px;
    width: 70%;
  }
}


/* ==========================================================================
   QUOTE CAROUSEL (simple manual)
   ========================================================================== */

.quote-carousel {
  position: relative;
  overflow: hidden;
}

.quote-carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease-expo);
}

.quote-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.quote-carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.quote-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background var(--dur-fast) ease,
    width var(--dur-fast) ease;
}

.quote-carousel__dot.active {
  background: var(--coral);
  width: 24px;
}


/* ==========================================================================
   CONFIRMATION STATE
   ========================================================================== */

.waitlist-confirmation {
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
}

.waitlist-confirmation__check {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--green);
  color: var(--white);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.waitlist-confirmation h3 {
  font-size: var(--size-h2);
  margin-bottom: var(--sp-3);
}

.waitlist-confirmation p {
  color: var(--text-secondary);
  font-size: var(--size-body);
  margin-bottom: var(--sp-5);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}


/* ==========================================================================
   FOUNDING TEACHER / SCHOOL BADGE (premium feel)
   ========================================================================== */

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-4);
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #F9C74F, #F4845F) border-box;
  border: 2px solid transparent;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.04em;
}

/* Sparkle star SVG icon */
.founding-badge .sparkle-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
