/* Dilly redesign: UTampa AKPsi glass + motion × Artlist dark grids/tabs */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Geist+Mono:wght@400;500;700&display=swap");
.mono { font-family: 'Geist Mono', 'Courier New', monospace; }

:root {
  --navy: #002868;
  --navy-mid: #003a8c;
  --navy-deep: #001b44;
  --gold: #fdb913;
  --gold-dim: rgba(253, 185, 19, 0.15);
  --ink: #07070c;
  --surface: #0f0f14;
  --surface-2: #16161f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f8;
  --text-muted: rgba(244, 244, 248, 0.68);
  --radius: 20px;
  --radius-control: 10px; /* buttons, tabs, chips — soft rectangle, not capsule */
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --slider-mask: linear-gradient(to right, transparent, #07070c 12%, #07070c 88%, transparent);
}

:root.light {
  --ink: #fafafa;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --border: rgba(0, 40, 104, 0.14);
  --text: #111827;
  --text-muted: rgba(17, 24, 39, 0.75);
  --shadow: 0 20px 60px rgba(0, 40, 104, 0.08);
  --slider-mask: linear-gradient(to right, transparent, #fafafa 12%, #fafafa 88%, transparent);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.font-display {
  font-family: "Cinzel", Georgia, serif;
}

/* ---------- Full-viewport hero: photo / video (UTampa-style) ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-still {
  position: absolute;
  inset: -4px;
  background:
    #0a0a12
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1920&q=85")
    center / cover no-repeat;
  transform: scale(1.03);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 18, 45, 0.55) 45%, rgba(0, 4, 18, 0.88) 100%),
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(0, 60, 140, 0.45), transparent 50%);
}

.hero-content--fullbleed {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.site-nav--hero {
  position: relative;
  z-index: 3;
}

.nav-glass--hero {
  background: transparent;
  border: none;
  box-shadow: none;
}

.btn-hero-primary {
  padding: 1.05rem 2.1rem;
  font-size: 0.82rem;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}

.btn-hero-secondary {
  padding: 1.05rem 2.1rem;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-hero-cta {
  padding: 0.78rem 1.45rem;
}

.hero-title--fullbleed {
  font-size: clamp(2.35rem, 7.5vw, 4.5rem);
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
  text-shadow:
    0 4px 80px rgba(0, 0, 0, 0.9),
    0 2px 24px rgba(0, 0, 0, 0.75);
}

.hero-lead--fullbleed {
  font-size: clamp(1.02rem, 2.5vw, 1.22rem);
  max-width: 40rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.85);
}

.hero-actions--fullbleed {
  margin-top: 0.35rem;
}

.hero-meta--fullbleed {
  margin-top: 2.25rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  animation: heroHintPulse 2.5s ease-in-out infinite;
}

@keyframes heroHintPulse {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 0.95;
  }
}

/* ---------- Nav (Artlist-style: flat bar, text links, white CTA) ---------- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem clamp(1rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

:root.light .site-nav[style*="position:fixed"] {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

@media (min-width: 1024px) {
  .site-nav {
    padding: 1rem clamp(1.5rem, 5vw, 3rem);
  }
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-wordmark {
  display: block;
  height: clamp(48px, 11vw, 76px);
  width: auto;
  max-width: min(260px, 78vw);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-glass {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  min-width: 0;
}

.nav-glass ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.125rem;
  position: relative;
  z-index: 2;
}

.nav-item {
  padding: 0.5rem 0.8rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-item[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Sign in: secondary text like Artlist */
.nav-item--signin {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.nav-item--signin:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-cta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Artlist-style primary CTA on dark nav */
.site-nav .nav-cta-row .btn-primary {
  background: #fff;
  color: #0c0c0e;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-control);
  box-shadow: none;
}

.site-nav .nav-cta-row .btn-primary:hover {
  background: #e8e8ec;
  color: #0c0c0e;
  transform: none;
  box-shadow: none;
}

/* Mega-style nav dropdowns (desktop hover / focus; mobile accordion in dilly.js) */
.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-item--dropdown {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  text-align: inherit;
}

.nav-item--dropdown::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .nav-item--dropdown {
    width: auto;
  }
}

.nav-dropdown-panel {
  display: none;
}

.nav-dropdown-inner {
  display: grid;
  gap: 1rem;
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-dropdown-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.35rem;
}

.nav-dropdown-link {
  display: block;
  padding: 0.45rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-link--current,
.nav-dropdown-link[aria-current="page"] {
  color: var(--gold);
  background: rgba(253, 185, 19, 0.08);
}

@media (min-width: 1024px) {
  .nav-dropdown-panel {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 0.4rem);
    min-width: 280px;
    padding: 1.15rem 1.35rem;
    background: #121218;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3000;
  }

  /* Invisible bridge so mouse can travel from nav item to dropdown */
  .nav-dropdown-panel::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-item--dropdown,
  .nav-dropdown:focus-within .nav-item--dropdown {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  /* Right-align last mega-menu so “Plan & learn” does not clip off-screen */
  .nav-glass > ul > li:nth-last-child(2) .nav-dropdown-panel {
    left: auto;
    right: 0;
    transform: none;
  }
}

/* Top bar: no fill; home hero uses .site-nav--hero instead */
.site-nav--inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

:root.light .site-nav--inner {
  background: transparent !important;
  border-bottom: none !important;
}

:root.light .site-nav--inner .nav-dropdown-label {
  color: rgba(0, 27, 68, 0.45);
}

:root.light .site-nav--inner .nav-dropdown-link {
  color: rgba(0, 27, 68, 0.88);
}

:root.light .site-nav--inner .nav-dropdown-link:hover {
  color: var(--navy-deep);
  background: rgba(0, 40, 104, 0.06);
}

:root.light .site-nav--inner .nav-dropdown-panel {
  background: #fafafc;
  border-color: rgba(0, 40, 104, 0.12);
  box-shadow: 0 24px 48px rgba(0, 27, 68, 0.12);
}

:root.light .nav-dropdown-panel {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 24px 48px rgba(0, 27, 68, 0.10);
}

:root.light .nav-dropdown-label {
  color: var(--text-muted);
}

:root.light .nav-dropdown-link {
  color: rgba(0, 27, 68, 0.82);
}

:root.light .nav-dropdown-link:hover {
  color: var(--navy-deep);
  background: rgba(0, 40, 104, 0.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 5001;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

:root.light .menu-toggle span {
  background: var(--navy-deep);
}

:root.light .site-nav--hero .menu-toggle span {
  background: #fff;
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }

  .nav-glass {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: min(400px, 100vw);
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    padding: 5.5rem 1.75rem 2rem;
    background: #0c0c0e;
    backdrop-filter: none;
    transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 5000;
    flex: none;
    justify-content: flex-start;
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  }

  .nav-glass.is-open {
    right: 0;
  }

  .nav-glass ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.125rem;
  }

  .nav-item {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.85rem 0.75rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
  }

  .nav-dropdown-panel {
    display: none;
    padding: 0.35rem 0 0.65rem 0.85rem;
    margin: 0.15rem 0 0.35rem 0.35rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-item--signin {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item--signin:hover {
    color: #fff;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-control);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 36px rgba(253, 185, 19, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-mid);
}

/* ---------- Hero copy ---------- */
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 6rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-inner.hero-inner--fullbleed {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: none;
  padding: 1rem 1.5rem 4.5rem;
  justify-content: center;
}

.hero-copy-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  width: 100%;
}

.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hero-accent {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto;
  box-shadow: 0 0 16px rgba(253, 185, 19, 0.45);
}

.hero-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 400;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-meta strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ---------- Marquee (Artlist partner strip) ---------- */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
  position: relative;
  z-index: 4;
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.marquee {
  overflow: hidden;
  mask-image: var(--slider-mask);
  -webkit-mask-image: var(--slider-mask);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  gap: 3rem;
  align-items: center;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--gold);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Verified student pool (fair chance) ---------- */
.verification-fair-section {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(
    180deg,
    var(--surface-2) 0%,
    var(--surface) 45%,
    var(--surface-2) 100%
  );
  border-block: 1px solid var(--border);
}

.verification-fair-section .section-head {
  max-width: 44rem;
}

.verification-quote {
  max-width: 42rem;
  margin: 2rem auto 0;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  background: var(--gold-dim);
  text-align: left;
}

.verification-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}

.verification-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.verification-split {
  display: grid;
  gap: 2rem;
  margin-top: 2.75rem;
  text-align: left;
}

@media (min-width: 768px) {
  .verification-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.verification-split h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.verification-split p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ---------- Section shells ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.surface-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Tabs (Artlist toolkit) ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-control);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn:hover {
  color: var(--text);
  border-color: rgba(253, 185, 19, 0.4);
}

.tab-btn.is-active {
  background: var(--gold-dim);
  border-color: rgba(253, 185, 19, 0.5);
  color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.45s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
}

.persona-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.persona-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.persona-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.persona-list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.persona-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Three pillars ---------- */
.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 185, 19, 0.35);
}

.pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- Model / feature grid (Artlist cards) ---------- */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-tile {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: 0.3s ease;
  height: 100%;
}

.feature-tile:hover {
  border-color: rgba(253, 185, 19, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.feature-tile .tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.feature-tile h3 {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.feature-tile p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

:root.light .chip {
  background: rgba(0, 40, 104, 0.06);
}

/* ---------- Home: toolkit showcase (bento) ---------- */
.toolkit-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4rem, 10vw, 6.5rem);
  padding-bottom: clamp(4rem, 10vw, 6.5rem);
  border-block: 1px solid var(--border);
}

.toolkit-showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 15% -20%, rgba(253, 185, 19, 0.14), transparent 55%),
    radial-gradient(ellipse 90% 70% at 92% 105%, rgba(0, 56, 140, 0.45), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 27, 68, 0.35), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--surface) 38%, var(--surface-2) 100%);
}

.toolkit-showcase-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 20%, transparent 75%);
}

.toolkit-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: clamp(4.5rem, 22vw, 14rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.toolkit-showcase-inner {
  position: relative;
  z-index: 1;
}

.toolkit-showcase-head {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  align-items: end;
}

@media (min-width: 900px) {
  .toolkit-showcase-head {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.toolkit-showcase-intro {
  text-align: center;
}

@media (min-width: 900px) {
  .toolkit-showcase-intro {
    text-align: left;
    max-width: 38rem;
  }
}

.toolkit-showcase-title {
  background: linear-gradient(135deg, #fff 0%, rgba(244, 244, 248, 0.88) 45%, var(--gold) 160%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  .toolkit-showcase-title {
    color: var(--text);
  }
}

.toolkit-showcase-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .toolkit-showcase-lead {
    margin-left: 0;
  }
}

.toolkit-kpis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .toolkit-kpis {
    flex-direction: column;
    align-items: stretch;
    min-width: 11rem;
  }
}

.toolkit-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-control);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .toolkit-kpi {
    align-items: flex-start;
  }
}

.toolkit-kpi-value {
  font-family: "Cinzel", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.toolkit-kpi-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.toolkit-bento {
  display: grid;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .toolkit-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .toolkit-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .toolkit-card--hero {
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
    min-height: 17rem;
  }

  .toolkit-card--ats {
    grid-column: 4 / span 3;
    grid-row: 1;
  }

  .toolkit-card--jobs {
    grid-column: 4 / span 3;
    grid-row: 2;
  }

  .toolkit-card--editor {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .toolkit-card--coach {
    grid-column: 3 / span 2;
    grid-row: 3;
  }

  .toolkit-card--more {
    grid-column: 5 / span 2;
    grid-row: 3;
  }
}

.toolkit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(22, 22, 31, 0.92) 48%, rgba(15, 15, 20, 0.98) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  opacity: 0;
  transform: translateY(1.75rem) scale(0.985);
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.toolkit-bento.is-visible .toolkit-card {
  animation: toolkitCardIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(1) {
  animation-delay: 0.04s;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(2) {
  animation-delay: 0.1s;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(3) {
  animation-delay: 0.16s;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(4) {
  animation-delay: 0.22s;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(5) {
  animation-delay: 0.28s;
}

.toolkit-bento.is-visible .toolkit-card:nth-child(6) {
  animation-delay: 0.34s;
}

@keyframes toolkitCardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .toolkit-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.toolkit-card-shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 48%,
    transparent 62%
  );
  transform: translateX(-30%) rotate(12deg);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.7s ease;
  pointer-events: none;
}

.toolkit-card:hover .toolkit-card-shine {
  opacity: 1;
  transform: translateX(20%) rotate(12deg);
}

.toolkit-card:hover {
  border-color: rgba(253, 185, 19, 0.35);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(253, 185, 19, 0.12);
  transform: translateY(-5px);
}

.toolkit-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.toolkit-card-idx {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.18);
}

.toolkit-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-control);
  color: var(--gold);
  background: linear-gradient(145deg, rgba(253, 185, 19, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(253, 185, 19, 0.22);
}

.toolkit-card--hero .toolkit-card-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.toolkit-card-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.toolkit-card-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
  line-height: 1.25;
  color: var(--text);
}

.toolkit-card--hero .toolkit-card-title {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
}

.toolkit-card-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  flex-grow: 1;
}

.toolkit-card-meter {
  display: flex;
  width: 100%;
  max-width: 18rem;
  gap: 0.35rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.toolkit-meter-seg {
  flex: 1;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.25rem;
  border-radius: var(--radius-control);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toolkit-meter-seg--smart {
  background: linear-gradient(180deg, rgba(100, 180, 255, 0.2), rgba(100, 180, 255, 0.05));
  color: rgba(200, 225, 255, 0.95);
}

.toolkit-meter-seg--grit {
  background: linear-gradient(180deg, rgba(253, 185, 19, 0.25), rgba(253, 185, 19, 0.06));
  color: rgba(255, 235, 200, 0.98);
}

.toolkit-meter-seg--build {
  background: linear-gradient(180deg, rgba(160, 255, 200, 0.15), rgba(160, 255, 200, 0.04));
  color: rgba(200, 255, 220, 0.9);
}

.toolkit-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.toolkit-card-link {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.25s ease, letter-spacing 0.35s ease;
}

.toolkit-card:hover .toolkit-card-link {
  opacity: 1;
  letter-spacing: 0.2em;
}

/* Light mode: toolkit */
:root.light .toolkit-showcase-bg {
  background:
    radial-gradient(ellipse 120% 80% at 12% -15%, rgba(253, 185, 19, 0.2), transparent 52%),
    radial-gradient(ellipse 90% 70% at 95% 100%, rgba(0, 56, 140, 0.12), transparent 55%),
    linear-gradient(180deg, #fafafa 0%, #f0f2f8 100%);
}

:root.light .toolkit-showcase-bg::after {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 40, 104, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 40, 104, 0.04) 1px, transparent 1px);
}

:root.light .toolkit-watermark {
  color: rgba(0, 27, 68, 0.04);
}

:root.light .toolkit-showcase-title {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 55%, #c78a00 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (background-clip: text) {
  :root.light .toolkit-showcase-title {
    color: var(--text);
  }
}

:root.light .toolkit-kpi {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 40, 104, 0.1);
}

:root.light .toolkit-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 247, 251, 0.98) 100%);
  border-color: rgba(0, 40, 104, 0.1);
  box-shadow: 0 8px 32px rgba(0, 40, 104, 0.06);
}

:root.light .toolkit-card:hover {
  box-shadow:
    0 24px 48px rgba(0, 40, 104, 0.1),
    0 0 0 1px rgba(253, 185, 19, 0.2);
}

:root.light .toolkit-card-idx {
  color: rgba(0, 27, 68, 0.15);
}

:root.light .toolkit-card-icon {
  background: linear-gradient(145deg, rgba(253, 185, 19, 0.2), rgba(0, 40, 104, 0.04));
  border-color: rgba(253, 185, 19, 0.28);
  color: #b8860b;
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .stats-band {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ---------- Split card (UTampa president) ---------- */
.split-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

@media (min-width: 900px) {
  .split-card {
    grid-template-columns: 1fr 1.15fr;
  }
}

.split-visual {
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 40%, rgba(253, 185, 19, 0.25), transparent 50%),
    linear-gradient(145deg, var(--navy), #1a1030);
}

.split-visual--ratio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.split-ratio-value {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.split-body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-body h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.split-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* ---------- Table ---------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table .compare-yes {
  color: #34d399;
  font-weight: 700;
}

.compare-table td.compare-partial {
  color: #fbbf24;
  font-weight: 600;
}

.compare-table td.compare-no {
  color: rgba(248, 113, 113, 0.9);
  font-weight: 600;
}

:root.light .compare-table .compare-yes {
  color: #059669;
}

:root.light .compare-table td.compare-partial {
  color: #b45309;
}

:root.light .compare-table td.compare-no {
  color: #dc2626;
}

.compare-row--key {
  background: rgba(43,58,142,0.04);
}
.compare-row--key td:first-child {
  color: #2B3A8E;
}

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.price-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(253, 185, 19, 0.45);
  box-shadow: 0 0 0 1px rgba(253, 185, 19, 0.15), var(--shadow);
}

.price-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.price-amount small {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
}

.price-list {
  list-style: none;
  flex: 1;
  margin: 1.25rem 0;
}

.price-list li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .yes::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.price-list .no::before {
  content: "-";
  color: var(--text-muted);
  opacity: 0.5;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-trigger span {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-trigger span {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-panel-inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-panel-inner p {
  margin: 0;
}

.faq-panel-inner p + p {
  margin-top: 0.9rem;
}

/* Dedicated FAQ page */
.faq-page-hero-wrap .faq-page-title {
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  letter-spacing: 0.05em;
  line-height: 1.12;
  max-width: 22ch;
  margin: 0.5rem auto 0;
}

.faq-page-lead {
  max-width: 40rem;
  margin: 1.15rem auto 0;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.faq-page-main {
  padding-bottom: 0.5rem;
}

.faq-category {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  padding: 2.5rem 1.5rem 0;
}

.faq-category-title {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-category .faq-list {
  max-width: none;
  margin: 0;
}

.faq-page-cta {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 2.75rem;
  padding-bottom: 1rem;
}

.section.faq-tease .section-head {
  max-width: 40rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  background: linear-gradient(160deg, var(--navy-deep), #0a1628);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}

:root.light body {
  background: var(--ink);
}

:root.light .hero-fullbleed .hero-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 22, 55, 0.72) 50%, rgba(0, 6, 22, 0.92) 100%),
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(0, 50, 120, 0.5), transparent 50%);
}

:root.light .hero-content--fullbleed {
  color: #fff;
}

:root.light .hero-fullbleed .hero-title,
:root.light .hero-fullbleed .hero-lead,
:root.light .hero-fullbleed .hero-meta,
:root.light .hero-fullbleed .hero-meta strong {
  color: #fff;
}

:root.light .hero-fullbleed .hero-meta {
  color: rgba(255, 255, 255, 0.62);
}

:root.light .nav-glass {
  background: transparent;
  border: none;
}

:root.light .nav-item {
  color: rgba(0, 27, 68, 0.88);
  font-weight: 600;
}

:root.light .nav-item:hover,
:root.light .nav-item[aria-current="page"] {
  color: var(--navy-deep);
  background: rgba(0, 40, 104, 0.06);
}

:root.light .nav-item--signin {
  color: rgba(0, 27, 68, 0.72);
}

:root.light .site-nav .nav-cta-row .btn-primary {
  background: #0c0c0e;
  color: #fff;
}

:root.light .site-nav .nav-cta-row .btn-primary:hover {
  background: #1e1e28;
  color: #fff;
}

:root.light .hero-fullbleed .nav-glass--hero {
  background: transparent;
  border: none;
}

:root.light .hero-fullbleed .nav-item {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

:root.light .hero-fullbleed .nav-item:hover,
:root.light .hero-fullbleed .nav-item[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

:root.light .hero-fullbleed .nav-item--signin {
  color: rgba(255, 255, 255, 0.9);
}

:root.light .hero-fullbleed .site-nav .nav-cta-row .btn-primary {
  background: #fff;
  color: #0c0c0e;
}

:root.light .hero-fullbleed .site-nav .nav-cta-row .btn-primary:hover {
  background: #e8e8ec;
  color: #0c0c0e;
}

:root.light .hero-fullbleed .btn-hero-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

:root.light .btn-ghost:not(.btn-hero-secondary) {
  color: var(--navy-deep);
  border-color: rgba(0, 40, 104, 0.25);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 8rem 1.5rem 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(253, 185, 19, 0.12), transparent),
    linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* ---------- Feature product pages (long-form, landing-quality) ---------- */
.fp-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #06060c;
  background-size: cover;
  background-position: center;
}

.fp-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 16, 0.45) 0%,
    rgba(6, 8, 22, 0.82) 42%,
    rgba(4, 4, 12, 0.94) 100%
  );
}

.fp-hero .site-nav--inner {
  position: relative;
  z-index: 4;
}

.fp-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.75rem 1.5rem clamp(3rem, 8vw, 5rem);
  width: 100%;
}

.fp-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.fp-title {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.fp-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.feature-pro-page .fp-hero .btn-primary {
  background: #fff;
  color: #0c0c0e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.feature-pro-page .fp-hero .btn-primary:hover {
  background: #e8e8ec;
  color: #0c0c0e;
  transform: translateY(-2px);
}

.feature-pro-page .fp-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.feature-pro-page .fp-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.fp-hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1.35rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 52rem;
}

.fp-metric-val {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.fp-metric-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.fp-hero--score .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--editor .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1586281380349-632531db7ed4?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--ats .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--jobs .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--tracker .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--calendar .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1516321317843-f223f3100049?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--ask .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--coach .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--leaderboard .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=82");
}

.fp-hero--hub .fp-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1920&q=82");
}

.fp-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.fp-section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.fp-section-head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.75rem;
}

.fp-section-head .section-desc {
  margin-top: 0.75rem;
}

.fp-pillar-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .fp-pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fp-pillar {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.fp-pillar-icon {
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fp-pillar h3 {
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.fp-pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.fp-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .fp-split {
    grid-template-columns: 1fr 1.08fr;
  }

  .fp-split.fp-split--reverse {
    direction: rtl;
  }

  .fp-split.fp-split--reverse > * {
    direction: ltr;
  }
}

.fp-split-visual {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.fp-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

:root.light .fp-split-visual {
  background: var(--surface-2);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 30, 80, 0.06);
}

.fp-split-copy .fp-h2 {
  margin-top: 0;
}

.fp-h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text);
}

.fp-split-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.fp-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.fp-checklist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.fp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

:root.light .fp-checklist li::before {
  color: #059669;
}

.fp-step-list {
  list-style: none;
  counter-reset: fpstep;
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0;
}

.fp-step-list li {
  counter-increment: fpstep;
  position: relative;
  padding: 1.45rem 1.5rem 1.45rem 4.25rem;
  margin-bottom: 1rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.fp-step-list li::before {
  content: counter(fpstep, decimal-leading-zero);
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.fp-step-list strong {
  color: var(--text);
}

.fp-prose {
  max-width: 700px;
  margin: 0 auto;
}

.fp-prose .fp-h2 {
  text-align: center;
}

.fp-prose p {
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 1.15rem;
  font-size: 1rem;
}

.fp-stats {
  padding: clamp(2.75rem, 5vw, 4rem) 1.5rem;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(253, 185, 19, 0.08), transparent),
    linear-gradient(120deg, rgba(0, 27, 68, 0.25), rgba(10, 8, 24, 0.9));
  border-block: 1px solid var(--border);
}

.fp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.fp-stat-num {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
}

.fp-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.4rem;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}

.fp-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 2.15rem;
  border-left: 4px solid var(--gold);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  background: rgba(253, 185, 19, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.fp-quote cite {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.fp-next-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .fp-next-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fp-next-card {
  display: block;
  padding: 1.5rem 1.65rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.fp-next-card:hover {
  transform: translateY(-5px);
  border-color: rgba(253, 185, 19, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fp-next-card h3 {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.fp-next-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.fp-next-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  display: block;
}

.feature-pro-page .cta-band {
  margin-top: 0;
}

:root.light .feature-pro-page .fp-hero__veil {
  background: linear-gradient(180deg, rgba(250, 250, 252, 0.5) 0%, rgba(248, 248, 252, 0.88) 45%, rgba(232, 234, 242, 0.96) 100%);
}

:root.light .feature-pro-page .fp-title {
  color: var(--navy-deep);
}

:root.light .feature-pro-page .fp-lead {
  color: rgba(0, 27, 68, 0.78);
}

:root.light .feature-pro-page .fp-hero-metrics {
  border-top-color: rgba(0, 27, 68, 0.12);
}

:root.light .feature-pro-page .fp-metric-label {
  color: rgba(0, 27, 68, 0.55);
}

:root.light .feature-pro-page .fp-hero .btn-primary {
  background: var(--navy-deep);
  color: #fff;
}

:root.light .feature-pro-page .fp-hero .btn-primary:hover {
  background: #001a45;
  color: #fff;
}

:root.light .feature-pro-page .fp-hero .btn-ghost {
  color: var(--navy-deep);
  border-color: rgba(0, 27, 68, 0.28);
}

/* Per-feature layout skins (data-fp-layout on body) */
[data-fp-layout="score"] .fp-kicker {
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

@media (min-width: 1024px) {
  [data-fp-layout="score"] .fp-hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 30%);
    column-gap: 3rem;
    row-gap: 1rem;
    align-items: center;
  }

  [data-fp-layout="score"] .fp-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  [data-fp-layout="score"] .fp-title {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
  }

  [data-fp-layout="score"] .fp-lead {
    grid-column: 1;
    grid-row: 3;
  }

  [data-fp-layout="score"] .fp-hero-actions {
    grid-column: 1;
    grid-row: 4;
  }

  [data-fp-layout="score"] .fp-hero-metrics {
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: center;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: none;
  }
}

:root.light [data-fp-layout="score"] .fp-hero-metrics {
  border-left-color: rgba(0, 27, 68, 0.12);
}

[data-fp-layout="editor"] .fp-hero__inner {
  text-align: center;
  align-items: center;
}

[data-fp-layout="editor"] .fp-title,
[data-fp-layout="editor"] .fp-lead {
  margin-left: auto;
  margin-right: auto;
}

[data-fp-layout="editor"] .fp-hero-actions {
  justify-content: center;
}

[data-fp-layout="editor"] .fp-hero-metrics {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

[data-fp-layout="editor"] .fp-hero {
  min-height: min(92vh, 980px);
}

[data-fp-layout="editor"] .fp-hero__inner {
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: 1.5rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  [data-fp-layout="editor"] .fp-hero__inner {
    outline: none;
    outline-offset: 0;
  }
}

@media (min-width: 768px) {
  [data-fp-layout="editor"] .fp-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-fp-layout="editor"] .fp-pillar-grid .fp-pillar:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }
}

[data-fp-layout="ats"] .fp-section-head {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

[data-fp-layout="ats"] .fp-hero__veil {
  background: linear-gradient(125deg, rgba(4, 8, 22, 0.88) 0%, rgba(6, 14, 32, 0.78) 45%, rgba(4, 4, 12, 0.95) 100%);
}

[data-fp-layout="ats"] .fp-stats {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

[data-fp-layout="jobs"] .fp-hero {
  min-height: min(84vh, 900px);
}

[data-fp-layout="jobs"] .fp-hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 28rem;
  gap: 1rem 1.5rem;
}

@media (min-width: 768px) {
  [data-fp-layout="jobs"] .fp-pillar-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  [data-fp-layout="jobs"] .fp-pillar-grid .fp-pillar:nth-child(1) {
    grid-row: span 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  [data-fp-layout="jobs"] .fp-pillar-grid .fp-pillar:nth-child(1) {
    grid-row: auto;
  }
}

[data-fp-layout="tracker"] .fp-step-list li {
  border-left: 3px solid rgba(253, 185, 19, 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}

[data-fp-layout="tracker"] .fp-split-visual {
  border-radius: 4px;
  border-left: 4px solid var(--gold);
}

[data-fp-layout="calendar"] .fp-pillar,
[data-fp-layout="calendar"] .fp-split-visual,
[data-fp-layout="calendar"] .fp-next-card {
  border-radius: 22px;
}

[data-fp-layout="calendar"] .fp-section--surface {
  border-radius: 0;
}

[data-fp-layout="ask"] .fp-kicker {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  letter-spacing: 0.14em;
  color: #a5b4fc;
}

[data-fp-layout="ask"] .fp-metric-val {
  color: #a5b4fc;
}

[data-fp-layout="ask"] .fp-quote {
  border-left-color: #818cf8;
  background: rgba(99, 102, 241, 0.08);
}

[data-fp-layout="coach"] .fp-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  border-top: none;
  padding-top: 1.5rem;
  max-width: 42rem;
}

[data-fp-layout="coach"] .fp-hero-metrics > div {
  flex: 1 1 auto;
  min-width: 8.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

[data-fp-layout="coach"] .fp-metric-label {
  margin-top: 0.35rem;
}

[data-fp-layout="leaderboard"] .fp-stats-inner > div:nth-child(2) .fp-stat-num {
  font-size: clamp(2.1rem, 5vw, 3rem);
  text-shadow: 0 0 40px rgba(253, 185, 19, 0.25);
}

[data-fp-layout="leaderboard"] .fp-pillar-grid {
  gap: 1.25rem;
}

[data-fp-layout="leaderboard"] .fp-hero__veil {
  background: linear-gradient(180deg, rgba(20, 10, 40, 0.55) 0%, rgba(4, 4, 12, 0.92) 65%, rgba(4, 4, 10, 0.96) 100%);
}

@media (min-width: 1100px) {
  [data-fp-layout="leaderboard"] .fp-pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

:root.light [data-fp-layout="ask"] .fp-kicker,
:root.light [data-fp-layout="ask"] .fp-metric-val {
  color: #4338ca;
}

:root.light [data-fp-layout="ask"] .fp-quote {
  border-left-color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
}

[data-fp-layout="hub"] .marquee-section + .fp-section {
  display: grid;
  gap: 2rem 2.5rem;
  align-items: start;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  [data-fp-layout="hub"] .marquee-section + .fp-section {
    grid-template-columns: minmax(240px, 340px) 1fr;
  }

  [data-fp-layout="hub"] .marquee-section + .fp-section .fp-section-head {
    grid-column: 1;
    text-align: left;
    margin: 0;
    max-width: none;
    position: sticky;
    top: 6rem;
  }

  [data-fp-layout="hub"] .marquee-section + .fp-section .fp-pillar-grid {
    grid-column: 2;
  }
}

/* ---------- Quiz ---------- */
.quiz-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.quiz-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quiz-opt {
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.quiz-opt:hover {
  border-color: rgba(253, 185, 19, 0.45);
  background: var(--gold-dim);
}

.quiz-back {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ---------- Sign in ---------- */
.auth-panel {
  max-width: 420px;
  margin: 3rem auto 5rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.auth-panel label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.auth-panel input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ink);
  color: var(--text);
  font-family: inherit;
}

:root.light .auth-panel input {
  background: #fff;
}

.auth-panel input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ---------- Pricing page: Artlist-inspired ---------- */
body.pricing-page {
  position: relative;
  background: #040406;
  color: #f4f4f8;
  min-height: 100vh;
}

.pricing-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -30%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(139, 92, 246, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(253, 185, 19, 0.06), transparent 45%),
    linear-gradient(180deg, #050508 0%, #08080f 40%, #040406 100%);
}

.pricing-main,
.pricing-top-nav,
.pricing-footer {
  position: relative;
  z-index: 1;
}

.pricing-top-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: none;
}

.site-nav--pricing {
  max-width: none;
  width: 100%;
  margin: 0;
}

.nav-glass--pricing {
  background: transparent;
  border: none;
}

body.pricing-page .nav-item {
  color: rgba(255, 255, 255, 0.65);
}

body.pricing-page .nav-item:hover,
body.pricing-page .nav-item[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

body.pricing-page .nav-item--signin {
  color: rgba(255, 255, 255, 0.5);
}

.al-nav-cta {
  box-shadow: none;
}

.pricing-main {
  padding-bottom: 2rem;
}

.al-hero {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.al-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.al-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.82) 50%, rgba(196, 200, 255, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.al-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.al-plans-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.al-plan-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .al-plan-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.al-plan-card {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.al-plan-card--featured {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.12),
    0 32px 100px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(99, 102, 241, 0.08);
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(0, 0, 0, 0.25) 100%);
}

.al-spotlight-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  max-width: min(11rem, 42vw);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: right;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(129, 140, 248, 0.85));
  color: #fff;
}

.al-plan-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.al-plan-label--accent {
  color: rgba(165, 180, 252, 0.95);
}

.al-plan-name {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.al-plan-price-stack {
  margin: 0.5rem 0 0.25rem;
}

.al-plan-price-was {
  font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.al-plan-price-was .al-currency {
  font-size: 0.55em;
  vertical-align: super;
  opacity: 0.75;
}

.al-plan-price-was .al-plan-per {
  font-size: 0.42em;
  color: rgba(255, 255, 255, 0.35);
}

.al-plan-price {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.al-plan-price-stack .al-plan-price {
  margin: 0;
}

.al-currency {
  font-size: 0.45em;
  font-weight: 500;
  vertical-align: super;
  opacity: 0.85;
}

.al-plan-per {
  font-size: 0.35em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 0.15em;
}

.al-plan-cycle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1rem;
}

.al-price-list {
  margin: 0.5rem 0 1.5rem;
}

body.pricing-page .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
}

.al-btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-control);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: 0.25s ease;
}

.al-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.al-btn-solid {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-control);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #fff 0%, #e8e8f0 100%);
  color: #0a0a12;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
  transition: 0.25s ease;
}

.al-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

.al-band {
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.al-band--faq,
.al-band--faq-tease {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

.al-faq-tease-inner {
  text-align: center;
}

.al-band--tight {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.al-band-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.al-section-head .section-eyebrow {
  color: rgba(129, 140, 248, 0.9);
}

.al-section-title {
  color: #fff;
}

.al-section-desc {
  color: rgba(255, 255, 255, 0.52);
}

.al-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .al-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.al-stat-cell {
  padding: 1.35rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.al-stat-cell strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.35rem;
}

.al-stat-cell span {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.al-stat-grid--glow .al-stat-cell {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(99, 102, 241, 0.2);
}

.al-table-shell {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.al-compare-table th {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.al-compare-table td {
  color: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.al-roi {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.08), rgba(253, 185, 19, 0.06));
}

.al-roi-title {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.al-roi-text {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.al-faq-list .faq-trigger {
  color: #fff;
}

.al-faq-list .faq-panel-inner {
  color: rgba(255, 255, 255, 0.55);
}

.al-faq-list .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.al-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) 1.5rem;
  margin: 2rem auto 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 900px;
}

.al-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.65rem;
}

.al-cta-lead {
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.5rem;
}

.al-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.al-cta-row .btn {
  width: auto;
  min-width: 200px;
}

.al-btn-outline--light {
  border-color: rgba(255, 255, 255, 0.25);
}

.al-cta-foot {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.pricing-footer {
  background: #020203;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1023px) {
  body.pricing-page .nav-glass.is-open {
    background: #0c0c0e;
  }
}

:root.light body.pricing-page {
  background: #f0f2f8;
  color: var(--text);
}

:root.light body.pricing-page .pricing-ambient {
  opacity: 0.35;
}

:root.light body.pricing-page .pricing-top-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

:root.light body.pricing-page .nav-dropdown-label {
  color: rgba(0, 27, 68, 0.45);
}

:root.light body.pricing-page .nav-dropdown-panel {
  background: #fafafc;
  border-color: rgba(0, 40, 104, 0.12);
  box-shadow: 0 24px 48px rgba(0, 27, 68, 0.12);
}

:root.light body.pricing-page .nav-dropdown-link {
  color: rgba(0, 27, 68, 0.88);
}

:root.light body.pricing-page .nav-dropdown-link:hover {
  color: var(--navy-deep);
  background: rgba(0, 40, 104, 0.06);
}

:root.light body.pricing-page .al-hero-title {
  background: linear-gradient(135deg, #0a0a12 0%, #1e1b4b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

:root.light body.pricing-page .al-plan-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 40, 104, 0.08);
}

:root.light body.pricing-page .al-plan-card--featured {
  border-color: rgba(99, 102, 241, 0.35);
}

:root.light body.pricing-page .al-plan-price,
:root.light body.pricing-page .al-plan-name,
:root.light body.pricing-page .al-section-title,
:root.light body.pricing-page .al-cta-title {
  color: var(--text);
}

:root.light body.pricing-page .al-plan-price-was {
  color: rgba(0, 27, 68, 0.38);
  text-decoration-color: rgba(0, 27, 68, 0.32);
}

:root.light body.pricing-page .al-plan-price-was .al-plan-per {
  color: rgba(0, 27, 68, 0.32);
}

:root.light body.pricing-page .al-hero-sub,
:root.light body.pricing-page .al-plan-cycle,
:root.light body.pricing-page .al-roi-text {
  color: var(--text-muted);
}

:root.light body.pricing-page .price-list li {
  color: var(--text-muted);
  border-bottom-color: var(--border);
}

:root.light body.pricing-page .al-stat-cell span {
  color: var(--text-muted);
}

:root.light body.pricing-page .al-stat-cell strong {
  color: var(--text);
}

:root.light body.pricing-page .pricing-footer {
  background: #e8ebf4;
}

:root.light body.pricing-page .al-stat-cell {
  background: #fff;
  border-color: var(--border);
}

:root.light body.pricing-page .al-table-shell {
  background: #fff;
  border-color: var(--border);
}

:root.light body.pricing-page .al-roi {
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.08), rgba(253, 185, 19, 0.08));
  border-color: var(--border);
}

:root.light body.pricing-page .al-cta {
  background: linear-gradient(180deg, #fff 0%, #f0f2f8 100%);
  border-color: var(--border);
}

:root.light body.pricing-page .al-cta-lead {
  color: var(--text-muted);
}

:root.light body.pricing-page .al-cta-foot {
  color: var(--text-muted);
}

:root.light body.pricing-page .al-btn-outline--light {
  border-color: rgba(0, 40, 104, 0.25);
  color: var(--navy-deep);
}

:root.light body.pricing-page .al-btn-outline--light:hover {
  background: rgba(0, 40, 104, 0.06);
}

:root.light body.pricing-page .al-btn-solid {
  background: var(--gold);
  color: var(--navy-deep);
}

:root.light body.pricing-page .al-btn-solid:hover {
  background: var(--navy);
  color: #fff;
}

/* ── Menu overlay backdrop ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4999;
  background: rgba(0, 0, 0, 0.4);
}

.menu-overlay.is-visible {
  display: block;
  pointer-events: none;
}

:root.light .menu-overlay {
  background: rgba(0, 20, 60, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE POLISH — phenomenal on every screen
   ═══════════════════════════════════════════════════════════════ */

/* ── Light-mode mobile nav slide-out ── */
@media (max-width: 1023px) {
  :root.light .nav-glass {
    background: #fff !important;
    border-left: 1px solid var(--border) !important;
    box-shadow: -16px 0 48px rgba(0, 30, 80, 0.08) !important;
  }

  :root.light .nav-glass .nav-item {
    color: var(--text);
  }

  :root.light .nav-glass .nav-item:hover {
    background: var(--surface-2);
    color: var(--navy);
  }

  :root.light .nav-glass .nav-item--signin {
    color: var(--text-muted);
    border-top-color: var(--border);
  }

  :root.light .nav-glass .nav-dropdown-panel {
    border-left-color: var(--border);
  }

  :root.light .nav-glass .nav-dropdown-link {
    color: var(--text-muted);
  }

  :root.light .nav-glass .nav-dropdown-link:hover {
    color: var(--navy);
  }

  :root.light .nav-glass .nav-dropdown-label {
    color: var(--text-muted);
  }
}

/* ── Hero mobile ── */
@media (max-width: 767px) {
  .hero-fullbleed {
    min-height: 85vh;
    min-height: 85dvh;
  }

  .hero-content--fullbleed {
    min-height: 85vh;
    min-height: 85dvh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-cta-cluster {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-cta-cluster .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ── Section spacing mobile ── */
@media (max-width: 767px) {
  .section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .section-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .section-eyebrow {
    font-size: 0.65rem;
  }
}

/* ── Persona tabs mobile ── */
@media (max-width: 767px) {
  .persona-tabs {
    gap: 0.25rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .persona-tabs::-webkit-scrollbar {
    display: none;
  }

  .persona-tab {
    font-size: 0.7rem !important;
    padding: 0.5rem 0.75rem !important;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .persona-card {
    padding: 1.5rem 1rem !important;
  }

  .persona-card h3 {
    font-size: 1.1rem !important;
  }
}

/* ── Carousel mobile ── */
@media (max-width: 767px) {
  #carousel-prev,
  #carousel-next {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  #carousel-prev {
    left: 0.25rem !important;
  }

  #carousel-next {
    right: 0.25rem !important;
  }

  .carousel-slide h3 {
    font-size: 1rem !important;
  }

  .carousel-slide p {
    font-size: 0.85rem !important;
  }
}

/* ── Toolkit bento grid mobile ── */
@media (max-width: 767px) {
  .toolkit-bento {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .toolkit-card {
    padding: 1.25rem !important;
  }

  .toolkit-watermark {
    font-size: 18vw !important;
  }

  .toolkit-kpis {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ── Feature page splits mobile ── */
@media (max-width: 767px) {
  .fp-split {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .fp-split--reverse {
    direction: ltr !important;
  }

  .fp-split--reverse > * {
    direction: ltr !important;
  }

  .fp-split-visual {
    min-height: auto !important;
  }

  .fp-split-visual img {
    border-radius: var(--radius) !important;
  }

  .fp-h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem) !important;
  }

  .fp-lead {
    font-size: 0.9rem !important;
  }

  .fp-hero {
    padding-top: 6rem !important;
    padding-bottom: 2rem !important;
  }

  .fp-hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
  }

  .fp-step-list li {
    padding: 1.15rem 1rem 1.15rem 3.25rem !important;
    font-size: 0.875rem !important;
  }

  .fp-step-list li::before {
    left: 0.85rem !important;
    font-size: 0.85rem !important;
  }
}

/* ── Pillars / 3-column grids mobile ── */
@media (max-width: 767px) {
  .pillars {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .pillar {
    padding: 1.25rem !important;
  }
}

/* ── Pricing cards mobile ── */
@media (max-width: 767px) {
  .al-plan-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .al-plan-card {
    padding: 1.5rem !important;
  }
}

/* ── FAQ mobile ── */
@media (max-width: 767px) {
  .faq-item summary {
    padding: 1rem 2.5rem 1rem 1rem !important;
    font-size: 0.9rem !important;
  }

  .faq-item div {
    padding: 0 1rem 1rem !important;
    font-size: 0.875rem !important;
  }
}

/* ── Page hero mobile ── */
@media (max-width: 767px) {
  .page-hero {
    padding: 6rem 1.25rem 2rem !important;
  }

  .page-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
  }
}

/* ── Quiz mobile ── */
@media (max-width: 767px) {
  .quiz-shell {
    padding: 0 0.5rem !important;
  }

  .quiz-card {
    padding: 1.5rem 1rem !important;
  }

  .quiz-opt {
    font-size: 0.875rem !important;
    padding: 0.85rem 1rem !important;
  }
}

/* ── Global touch targets ── */
@media (max-width: 767px) {
  .btn,
  button,
  a.btn {
    min-height: 44px;
  }

  /* Smooth scrolling and better tap feel */
  * {
    -webkit-tap-highlight-color: rgba(0, 40, 104, 0.06);
  }
}

/* ── Footer mobile ── */
@media (max-width: 767px) {
  .site-footer {
    padding: 2rem 1.25rem 1.5rem !important;
  }

  .footer-links {
    gap: 0.75rem 1.25rem !important;
    font-size: 0.7rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT MODE: CTA band, footer, dropdown panels, mobile nav
   ═══════════════════════════════════════════════════════════════ */

:root.light .cta-band {
  background: linear-gradient(160deg, #f0f2f8, #e8ebf4);
  border-color: var(--border);
}

:root.light .cta-band h2 {
  color: var(--navy-deep);
}

:root.light .cta-band p {
  color: var(--text-muted);
}

:root.light .site-footer {
  background: #f4f6fa;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

:root.light .site-footer a {
  color: var(--text-muted);
}

:root.light .site-footer a:hover {
  color: var(--navy-deep);
}

:root.light .nav-dropdown-panel {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 24px 48px rgba(0, 27, 68, 0.10);
}

:root.light .nav-dropdown-label {
  color: var(--text-muted);
}

:root.light .nav-dropdown-link {
  color: rgba(0, 27, 68, 0.82);
}

:root.light .nav-dropdown-link:hover {
  color: var(--navy-deep);
  background: rgba(0, 40, 104, 0.05);
}

:root.light .btn-ghost {
  color: var(--navy-deep);
  border-color: rgba(0, 40, 104, 0.25);
}

:root.light .btn-ghost:hover {
  background: rgba(0, 40, 104, 0.06);
}

:root.light .fp-quote {
  background: #f4f6fa;
  border-color: var(--border);
  color: var(--text);
}

:root.light .fp-quote cite {
  color: var(--text-muted);
}

:root.light .fp-next-card:hover {
  box-shadow: 0 20px 40px rgba(0, 27, 68, 0.08);
}

:root.light .persona-card {
  background: var(--surface);
  border-color: var(--border);
}

:root.light .compare-section {
  background: var(--surface-2);
}

/* ── Coach face (kept for future use, currently no face in hero) ── */

/* Coach hero text visibility fix for light mode */
:root.light [data-fp-layout="coach"] .fp-hero__inner {
  color: var(--navy-deep);
}
:root.light [data-fp-layout="coach"] .fp-kicker {
  color: var(--gold);
}
:root.light [data-fp-layout="coach"] .fp-title {
  color: var(--navy-deep);
}
:root.light [data-fp-layout="coach"] .fp-lead {
  color: rgba(0, 27, 68, 0.78);
}
:root.light [data-fp-layout="coach"] .fp-metric-val {
  color: var(--gold);
}
:root.light [data-fp-layout="coach"] .fp-metric-label {
  color: rgba(0, 27, 68, 0.55);
}
:root.light [data-fp-layout="coach"] .fp-hero-metrics {
  border-top-color: rgba(0, 27, 68, 0.12);
}
:root.light [data-fp-layout="coach"] .btn-ghost {
  color: var(--navy-deep);
  border-color: rgba(0, 27, 68, 0.3);
}
:root.light [data-fp-layout="coach"] .coach-face-col p {
  color: rgba(0, 27, 68, 0.7);
}
:root.light [data-fp-layout="coach"] .coach-face-col p:first-of-type {
  color: var(--navy-deep);
}

/* Smart / Grit / Build meter bars - light mode */
:root.light .toolkit-meter-seg {
  border-color: rgba(0, 40, 104, 0.12);
}
:root.light .toolkit-meter-seg--smart {
  background: linear-gradient(180deg, rgba(40, 120, 220, 0.18), rgba(40, 120, 220, 0.06));
  color: #1a5ca8;
}
:root.light .toolkit-meter-seg--grit {
  background: linear-gradient(180deg, rgba(201, 148, 26, 0.2), rgba(201, 148, 26, 0.06));
  color: #8a6510;
}
:root.light .toolkit-meter-seg--build {
  background: linear-gradient(180deg, rgba(34, 150, 80, 0.15), rgba(34, 150, 80, 0.05));
  color: #1a7a3a;
}
