/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 0.5px solid var(--color-dark-border);
  background: var(--color-dark-bg);
}
.nav__logo   { justify-self: start; }
.nav__links  { justify-self: center; }
.nav__actions { justify-self: end; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Logo image */
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav__logo-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  flex-shrink: 0;
  background: rgba(30,58,138,0.15);
}

.nav__logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-white);
  text-transform: uppercase;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-5);
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}

.nav__links a:hover { color: var(--color-white); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__ghost-link {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}

.nav__ghost-link:hover { color: var(--color-white); }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: background 0.15s ease;
}
.nav__hamburger:hover span {
  background: rgba(255,255,255,1);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-dark-bg);
  border-top: 0.5px solid var(--color-dark-border);
  padding: var(--space-3) 20px;
  gap: var(--space-3);
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: var(--space-1) 0;
  border-bottom: 0.5px solid var(--color-dark-border);
  transition: color 0.15s ease;
}
.nav__mobile-menu a:hover { color: var(--color-white); }
.nav__mobile-menu a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .nav {
    padding: 20px 48px;
  }
  .nav__links { display: flex; }
  .nav__ghost-link { display: block; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1;
  border-radius: 7px;
  transition: 0.15s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary dark */
.btn--primary {
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 13px 28px;
}
.btn--primary:hover { background: rgba(255,255,255,0.88); }

/* Dark on light bg */
.btn--dark {
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 13px 28px;
}
.btn--dark:hover { background: #1a1a1e; }

/* Ghost */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.2);
  font-size: 14px;
  padding: 12px 24px;
}
.btn--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

/* Ghost dark (on light bg) */
.btn--ghost-dark {
  background: var(--color-white);
  color: var(--color-ink);
  border: 0.5px solid #ccc;
  font-size: 14px;
  padding: 12px 24px;
}
.btn--ghost-dark:hover { border-color: #999; }

/* Nav CTA */
.btn--nav {
  background: var(--color-brand-blue-bright);
  color: var(--color-white);
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 6px;
}
.btn--nav:hover { background: #1d55d4; }

/* Blue accent */
.btn--blue {
  background: var(--color-brand-blue-bright);
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 36px;
}
.btn--blue:hover { background: #1d55d4; }

/* Play button style */
.btn--play {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 0;
  gap: 10px;
  display: inline-flex;
  align-items: center;
}
.btn--play:hover { color: var(--color-white); }

.btn__play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.15s ease;
}
.btn--play:hover .btn__play-icon {
  border-color: rgba(255,255,255,0.5);
}

/* Mobile full-width */
.btn--full-mobile {
  width: 100%;
}
@media (min-width: 768px) {
  .btn--full-mobile { width: auto; }
}

/* ============================================================
   PILL / BADGE
   ============================================================ */
.pill {
  background: rgba(30, 64, 175, 0.15);
  color: var(--color-blue-light);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.pill--light {
  background: var(--color-blue-tint);
  color: var(--color-brand-blue);
}
.pill__dot {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 28px;
  border: 0.5px solid var(--color-border-mid);
}
.card--dark {
  background: var(--color-dark-card);
  border: 1px solid rgba(30,58,138,0.35);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.card--dark:hover {
  background: var(--color-dark-card-hover);
  border-color: rgba(37,99,235,0.7);
  box-shadow: 0 0 28px rgba(30,58,138,0.18);
}
.card__icon {
  width: 38px;
  height: 38px;
  background: rgba(30,58,138,0.25);
  border: 0.5px solid rgba(37,99,235,0.4);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-blue-light);
  font-size: 18px;
}
.card--light .card__icon {
  background: var(--color-white);
  border: 0.5px solid #e0e0e0;
  color: var(--color-brand-blue);
}
.card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
}
.card--dark .card__title { color: rgba(255,255,255,0.95); }
.card__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.card--dark .card__body { color: rgba(255,255,255,0.62); }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial {
  background: var(--color-dark-card);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.testimonial:hover {
  background: var(--color-dark-card-hover);
  border-color: rgba(37,99,235,0.55);
}
.testimonial--light {
  background: var(--color-white);
  border: 0.5px solid var(--color-border-mid);
}
.testimonial__quote {
  font-size: 20px;
  color: var(--color-brand-blue);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial__text {
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial--light .testimonial__text { color: #444; }
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.2);
  color: var(--color-blue-light);
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.testimonial--light .testimonial__avatar {
  background: #e8edf8;
  color: var(--color-brand-blue);
}
.testimonial__name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark-text);
  line-height: 1.3;
}
.testimonial--light .testimonial__name { color: var(--color-ink); }
.testimonial__role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-dark-text-sub);
  font-weight: 400;
}
.testimonial--light .testimonial__role { color: var(--color-text-light); }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: var(--color-dark-card);
  border: 1px solid rgba(30,58,138,0.35);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  background: var(--color-dark-card-hover);
  border-color: rgba(37,99,235,0.65);
  box-shadow: 0 0 32px rgba(30,58,138,0.2);
}
.pricing-card--featured {
  background: var(--color-brand-blue);
  border-color: var(--color-brand-blue);
}
.pricing-card__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pricing-card__tier {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__tier { color: rgba(255,255,255,0.8); }
.pricing-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 4px;
}
.pricing-card__price sup {
  font-size: 26px;
  vertical-align: super;
  font-weight: 300;
}
.pricing-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.pricing-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__sub { color: rgba(255,255,255,0.75); }
.pricing-card__divider {
  border: none;
  border-top: 0.5px solid rgba(255,255,255,0.14);
  margin: 16px 0;
}
.pricing-card--featured .pricing-card__divider {
  border-color: rgba(255,255,255,0.2);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.9); }
.pricing-card__feature i {
  color: var(--color-blue-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__feature i { color: rgba(255,255,255,0.95); }

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-bg);
  border-top: 0.5px solid var(--color-dark-border);
  padding: var(--space-5) 20px var(--space-4);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-dark-text-faint);
  flex-shrink: 0;
}
.footer__logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--color-dark-text-faint);
  text-transform: uppercase;
}
.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-dark-text-muted);
  line-height: 1.6;
  max-width: 260px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.footer__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark-text-sub);
  transition: color 0.15s ease;
}
.footer__nav a:hover { color: var(--color-dark-text); }
.footer__bottom {
  padding-top: var(--space-3);
  border-top: 0.5px solid var(--color-dark-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.footer__legal {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-dark-text-muted);
}

@media (min-width: 768px) {
  .footer {
    padding: var(--space-6) 48px var(--space-5);
  }
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0c;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner__decline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__decline:hover {
  color: rgba(255,255,255,0.65);
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
  }
}

/* ============================================================
   TAB CONTROLS
   ============================================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid var(--color-dark-border);
  margin-bottom: var(--space-4);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark-text-sub);
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
  transition: 0.15s ease;
  margin-bottom: -0.5px;
}
.tab:hover { color: var(--color-dark-text); }
.tab.is-active {
  color: var(--color-white);
  border-bottom-color: var(--color-brand-blue);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: grid; }
