:root {
  --bg: #05030a;
  --bg-elevated: #1d1a39;
  --bg-elevated-soft: #120f24;
  --bg-alt: #0b0613;
  --plum: #451952;
  --plum-soft: rgba(69, 25, 82, 0.9);
  --magenta: #662549;
  --magenta-soft: rgba(102, 37, 73, 0.9);
  --rose: #ae445a;
  --sunset-1: #f39f5a;
  --sunset-2: #ea6113;
  --sunset-3: #f88f22;
  --sunset-4: #fbb931;
  --sunset-5: #ffe3b3;

  --text: #fdf7ff;
  --muted: #b2a7c8;
  --muted-soft: #8b81a1;
  --border-subtle: rgba(92, 67, 116, 0.6);
  --border-strong: rgba(244, 152, 81, 0.9);

  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.85);
  --shadow-hero: 0 40px 120px rgba(0, 0, 0, 0.95);

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --transition-fast: 0.16s ease-out;
  --transition-med: 0.24s ease-out;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 159, 90, 0.16), transparent 58%),
    radial-gradient(circle at bottom right, rgba(102, 37, 73, 0.4), transparent 60%),
    radial-gradient(circle at top right, rgba(69, 25, 82, 0.5), transparent 60%),
    #05030a;
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtle-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

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

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

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-alt {
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.12), transparent 70%),
    radial-gradient(circle at bottom, rgba(69, 25, 82, 0.9), rgba(5, 3, 10, 1));
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.8rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.section-copy-panel {
  position: relative;
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(10, 7, 26, 0.96);
}

.section-copy-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(255, 227, 179, 0.9), transparent 60%),
    linear-gradient(120deg, var(--sunset-2), var(--sunset-4));
  z-index: -1;
}

.section-angle {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.section-angle-top {
  top: 0;
  background: linear-gradient(to bottom right, transparent 60%, rgba(243, 159, 90, 0.18) 100%);
  opacity: 0.8;
}

.section-angle-bottom {
  bottom: 0;
  background: linear-gradient(to top left, transparent 60%, rgba(174, 68, 90, 0.24) 100%);
  opacity: 0.7;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(to bottom, rgba(5, 3, 10, 0.96), rgba(5, 3, 10, 0.9));
  border-bottom: 1px solid rgba(62, 40, 92, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-image {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset-2), var(--sunset-4));
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 70%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(178, 167, 200, 0.7);
  background: rgba(11, 6, 19, 0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-line {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fdf7ff;
  transition: transform var(--transition-fast);
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 4px;
}

body.nav-open .nav-toggle-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.nav-open .nav-toggle-line:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
}

.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(130deg, var(--sunset-2), var(--sunset-4));
  color: #1a0b05;
  box-shadow:
    0 16px 40px rgba(250, 145, 64, 0.55),
    0 0 40px rgba(250, 145, 64, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 60px rgba(250, 145, 64, 0.7),
    0 0 50px rgba(250, 145, 64, 0.7);
}

.btn-secondary {
  background: radial-gradient(circle at top left, rgba(174, 68, 90, 0.6), rgba(69, 25, 82, 0.95));
  color: var(--text);
  border-color: rgba(244, 152, 81, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.btn-secondary:hover {
  border-color: rgba(248, 143, 34, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(178, 167, 200, 0.8);
  color: var(--muted);
  background: rgba(8, 6, 20, 0.7);
}

.btn-outline:hover {
  border-color: rgba(244, 152, 81, 0.9);
  color: var(--text);
  background: rgba(12, 8, 28, 0.95);
}

.btn-ghost {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(178, 167, 200, 0.65);
  background: rgba(11, 6, 19, 0.95);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.hero-main-cta {
  position: relative;
}

.hero-main-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(255, 227, 179, 0.9), transparent 55%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-med);
}

.hero-main-cta:hover::after {
  opacity: 0.9;
}

/* Hero */

.hero {
  min-height: 70vh;
  padding-top: 4.6rem;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 3, 10, 0.94), rgba(5, 3, 10, 0.82) 35%, transparent 70%),
    url("assets/nsb-field-astronauts.jpg") no-repeat center 120%;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: -2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: 3.1rem;
  align-items: center;
}

/* Hide hero media panel now that background carries the art */
.hero-media {
  display: none;
}

.hero-copy {
  position: relative;
  animation: hero-fade-up 0.7s var(--transition-med) forwards;
}

.hero-stat-line {
  animation: subtle-fade-in 0.6s ease-out 0.45s forwards;
  opacity: 0;
}

.hero-tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem 0.35rem 0.4rem;
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 0 0, rgba(255, 227, 179, 0.6), transparent 60%),
    rgba(23, 17, 46, 0.95);
  border: 1px solid rgba(243, 159, 90, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-soft);
  margin-bottom: 1rem;
}

.hero-tagline-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe3b3, #f39f5a);
}

.hero-copy h1 {
  margin: 0 0 0.8rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  letter-spacing: -0.06em;
}

.hero-highlight {
  background: linear-gradient(120deg, var(--sunset-5), var(--sunset-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.6rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.7rem;
}

.hero-point {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(124, 88, 154, 0.7);
  background: rgba(20, 13, 42, 0.92);
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
}

.hero-stat-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 10, 38, 0.88);
  border: 1px solid rgba(243, 159, 90, 0.7);
}

.hero-stat-badge {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-stat-dot {
  font-size: 0.9rem;
  color: rgba(243, 159, 90, 0.9);
}

.hero-social-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.social-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.social-icons {
  display: inline-flex;
  gap: 0.55rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(178, 167, 200, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 11, 37, 0.9);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--muted);
}

.social-icon:hover {
  background: radial-gradient(circle at 50% 0, rgba(243, 159, 90, 0.4), rgba(17, 11, 37, 0.98));
  border-color: rgba(244, 152, 81, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(243, 159, 90, 0.6);
}

.social-icon:hover svg {
  fill: var(--sunset-5);
}

/* Hero media */

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media-frame {
  position: relative;
  border-radius: 32px;
  padding: 2px;
  background: radial-gradient(circle at 10% 0, #ffe3b3, transparent 45%),
    conic-gradient(from 160deg, #f39f5a, #ea6113, #ae445a, #fbb931, #f39f5a);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.9),
    0 0 45px rgba(243, 159, 90, 0.6);
}

.hero-media-inner {
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(250, 145, 64, 0.12), transparent 60%),
    rgba(6, 4, 18, 0.96);
}

.hero-media-label {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  border-bottom: 1px solid rgba(83, 61, 114, 0.85);
}

.hero-media-image {
  width: 100%;
  max-width: 520px;
  display: block;
}

.hero-media-footer {
  padding: 0.7rem 1rem 0.9rem;
  border-top: 1px solid rgba(83, 61, 114, 0.85);
}

.hero-media-pill {
  display: inline-flex;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(69, 25, 82, 0.9);
  border: 1px solid rgba(243, 159, 90, 0.7);
  font-size: 0.8rem;
  color: var(--muted);
}

/* Electric border utility (for featured slip, etc.) */

.electric-border {
  position: relative;
}

.electric-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(255, 227, 179, 0.9), transparent 60%),
    conic-gradient(from 200deg, #f39f5a, #ea6113, #ae445a, #fbb931, #f39f5a);
  opacity: 0.9;
  z-index: -1;
  filter: drop-shadow(0 0 38px rgba(243, 159, 90, 0.85));
}

/* Electric orange border for featured plan */
.electric-border-orange {
  position: relative;
}

.electric-border-orange::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(255, 227, 179, 0.9), transparent 60%),
    conic-gradient(from 0deg, #fbb931, #f88f22, #ea6113, #f39f5a, #fbb931);
  opacity: 1;
  z-index: -1;
  filter:
    drop-shadow(0 0 24px rgba(250, 145, 64, 0.95))
    drop-shadow(0 0 70px rgba(250, 145, 64, 0.8));
  animation: electric-border-pulse 6s linear infinite;
}

@keyframes electric-border-pulse {
  0% {
    transform: rotate(0deg);
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.9;
  }
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.feature-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(103, 80, 140, 0.9);
  background:
    radial-gradient(circle at top left, rgba(243, 159, 90, 0.16), transparent 60%),
    rgba(10, 7, 26, 0.98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
}

.feature-card h3 {
  margin: 0 0 0.6rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* Featured win */

.section-featured {
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.14), transparent 60%),
    #05030a;
}

/* Recent slips */
.section-slips {
  background:
    radial-gradient(circle at top, rgba(69, 25, 82, 0.35), transparent 60%),
    #05030a;
}

.slips-inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.slips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.slip-card {
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(103, 80, 140, 0.9);
  background: rgba(10, 7, 26, 0.98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.slip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 152, 81, 0.85);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.9);
}

.slip-card img {
  display: block;
  width: 100%;
  height: auto;
}

.featured-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: center;
}

.featured-copy h2 {
  margin: 0 0 0.8rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.featured-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.featured-card {
  border-radius: 28px;
  padding: 2px;
}

.featured-card-inner {
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(243, 159, 90, 0.16), transparent 55%),
    rgba(8, 4, 22, 0.98);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.featured-pill {
  display: inline-flex;
  padding: 0.22rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(243, 159, 90, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-soft);
}

.featured-tag {
  font-size: 0.83rem;
  color: var(--sunset-5);
}

.featured-body {
  margin: 0 0 1.1rem 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.9;
}

.featured-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.featured-meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-soft);
}

.featured-meta-value {
  font-size: 0.9rem;
}

.featured-footnote {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* Plans */

.section-plans {
  background:
    radial-gradient(circle at top, rgba(174, 68, 90, 0.18), transparent 65%),
    #05030a;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.plan-card {
  position: relative;
  padding: 1.7rem 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(103, 80, 140, 0.95);
  background:
    radial-gradient(circle at top left, rgba(243, 159, 90, 0.16), transparent 60%),
    rgba(10, 7, 26, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(243, 159, 90, 0.12), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-card-featured {
  padding: 1.9rem 1.8rem 1.5rem;
}

.plan-card-featured::after {
  opacity: 1;
}

.plan-card-featured .plan-label {
  border-color: rgba(248, 143, 34, 0.9);
  color: var(--sunset-5);
  background: rgba(174, 68, 90, 0.85);
}

.plan-card h3 {
  margin: 0 0 0.5rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.plan-label {
  display: inline-flex;
  padding: 0.22rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(178, 167, 200, 0.85);
  color: var(--muted-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}

.plan-label-highlight {
  border-color: rgba(248, 143, 34, 0.9);
  background: rgba(243, 159, 90, 0.12);
}

.plan-card p {
  margin: 0 0 0.8rem 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.plan-list {
  margin: 0 0 0.85rem 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-list li + li {
  margin-top: 0.25rem;
}

.plan-footnote {
  margin: 0 0 1.1rem 0;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* Testimonials */

.section-testimonials {
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.12), transparent 70%),
    radial-gradient(circle at bottom, rgba(69, 25, 82, 0.9), rgba(5, 3, 10, 1));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(103, 80, 140, 0.95);
  background:
    radial-gradient(circle at top left, rgba(243, 159, 90, 0.14), transparent 60%),
    rgba(10, 7, 26, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.testimonial-card blockquote {
  margin: 0 0 0.9rem 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.testimonial-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.testimonial-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* Cappers bar */

.cappers-bar {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(71, 47, 104, 0.9);
  border-bottom: 1px solid rgba(71, 47, 104, 0.9);
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.12), transparent 60%),
    linear-gradient(to right, #120f24, #451952);
}

.cappers-inner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  overflow: hidden;
}

.cappers-label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-soft);
  white-space: nowrap;
}

.cappers-marquee {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.cappers-track {
  display: inline-flex;
  gap: 2.6rem;
  align-items: center;
  animation: cappers-scroll 38s linear infinite;
}

.capper-logo {
  margin: 0;
  opacity: 0.95;
}

.capper-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.85));
}

@keyframes cappers-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* FAQ */

.section-faq {
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.14), transparent 65%),
    #05030a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(103, 80, 140, 0.95);
  background: rgba(10, 7, 26, 0.98);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
}

.faq-item[open] summary {
  color: var(--sunset-5);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.6rem 0 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Final CTA */

.section-final-cta {
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(69, 25, 82, 0.9), rgba(5, 3, 10, 1));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-copy h2 {
  margin: 0 0 0.6rem 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.final-cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(62, 40, 92, 0.9);
  background:
    radial-gradient(circle at top, rgba(243, 159, 90, 0.12), transparent 65%),
    #05030a;
  padding: 2.8rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.6rem;
  align-items: flex-start;
}

.footer-tagline {
  margin: 0.9rem 0 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.86rem;
}

.footer-social a {
  padding: 0.32rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(178, 167, 200, 0.8);
  color: var(--muted);
  background: rgba(10, 7, 26, 0.96);
}

.footer-social a:hover {
  border-color: rgba(244, 152, 81, 0.9);
  color: var(--sunset-5);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.disclaimer {
  margin: 0 0 0.8rem 0;
  line-height: 1.7;
}

.footer-copy {
  margin: 0;
  color: var(--muted-soft);
}

.footer-made-by {
  margin: 0.25rem 0 0;
  color: var(--muted-soft);
  font-size: 0.78rem;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr);
    gap: 2.7rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-quick-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1rem;
    background: rgba(5, 3, 10, 0.98);
    border-bottom: 1px solid rgba(62, 40, 92, 0.9);
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .featured-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .slips-grid,
  .features-grid,
  .testimonials-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.8rem 0;
  }

  .header-inner {
    padding: 0.7rem 0;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-quick-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn-lg {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 0.6rem;
  }

  .hero-stat {
    min-width: 0;
  }

  .cappers-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .cappers-label {
    white-space: normal;
  }

  .capper-logo img {
    height: 40px;
  }

  .plans-grid,
  .features-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-cta {
    gap: 0.5rem;
  }

  .hero-social-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-actions {
    width: 100%;
  }
}
