/* ============================================================
   Ligafox — Situs Taruhan Bola Online
   ============================================================ */

:root,
[data-theme="light"] {
  --ink: #061428;
  --pitch: #0a1e3a;
  --turf: #0b6bcb;
  --lime: #f5c542;
  --lime-dim: rgba(245, 197, 66, 0.16);
  --paper: #f3f6fb;
  --mist: #4a5d73;
  --text: #142033;
  --heading: #061428;
  --surface: #ffffff;
  --border: rgba(6, 20, 40, 0.1);
  --tag: #0b6bcb;
  --league-bg: #e8f1fc;
  --league-fg: #061428;
  --accent: #1aa3ff;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --container-max: 1120px;
  --header-h: 4.25rem;
}

[data-theme="dark"] {
  --paper: #07111f;
  --surface: #0f1c30;
  --text: #e8eef8;
  --heading: #ffffff;
  --mist: #9aadc4;
  --border: rgba(26, 163, 255, 0.2);
  --tag: #1aa3ff;
  --league-bg: #1aa3ff;
  --league-fg: #061428;
  --lime: #f5c542;
}

[data-theme="dark"] .content-section--alt {
  background:
    linear-gradient(180deg, rgba(200, 245, 66, 0.05) 0%, transparent 100%),
    var(--paper);
}

[data-theme="dark"] .feature-lines li:hover {
  background: rgba(200, 245, 66, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Konten SEO selalu kontras tinggi — tidak ikut gelap karena user-mode */
.white-content {
  background: var(--paper);
  color: var(--text);
}

.white-content .content-wrap {
  background: var(--paper);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: max(0.85rem, env(safe-area-inset-top)) 0 0.75rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-solid {
  position: sticky;
  background: rgba(7, 20, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 245, 66, 0.12);
}

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

.brand-logo {
  width: min(168px, 42vw);
  height: auto;
}

.main-nav {
  display: none;
  gap: 1.35rem;
}

.main-nav a,
.main-nav span {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.main-nav span {
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--lime);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #d4ff5a;
}

.header-login {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(125, 211, 255, 0.9);
  background: transparent;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(26, 163, 255, 0.6), inset 0 0 6px rgba(26, 163, 255, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: login-glow 2s ease-in-out infinite;
}

@keyframes login-glow {
  0%, 100% {
    border-color: rgba(125, 211, 255, 0.75);
    box-shadow: 0 0 6px rgba(26, 163, 255, 0.45), inset 0 0 4px rgba(26, 163, 255, 0.2);
  }
  50% {
    border-color: rgba(160, 225, 255, 1);
    box-shadow: 0 0 16px rgba(26, 163, 255, 0.85), inset 0 0 8px rgba(26, 163, 255, 0.35);
  }
}

.header-login:hover {
  transform: translateY(-1px);
  background: rgba(26, 163, 255, 0.12);
  border-color: rgba(160, 225, 255, 1);
  color: #fff;
  box-shadow: 0 0 20px rgba(26, 163, 255, 0.95), inset 0 0 10px rgba(26, 163, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .header-login {
    animation: none;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(7, 20, 15, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  border-color: rgba(200, 245, 66, 0.45);
  background: rgba(7, 20, 15, 0.55);
}

[data-theme="dark"] .theme-toggle__icon--sun,
[data-theme="light"] .theme-toggle__icon--moon,
:root:not([data-theme]) .theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: block;
}

[data-theme="light"] .theme-toggle__icon--sun {
  display: block;
}

@media (min-width: 820px) {
  .main-nav {
    display: flex;
  }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Topic rail —— */
.topic-rail {
  background: linear-gradient(180deg, #07140f 0%, #0c2218 100%);
  color: #fff;
  padding: 1.65rem 0;
  border-top: 1px solid rgba(200, 245, 66, 0.12);
}

.topic-rail__inner {
  display: grid;
  gap: 0.55rem;
}

.topic-rail__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.topic-rail__line {
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  font-weight: 500;
  color: rgba(232, 242, 234, 0.82);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.topic-rail__line span {
  color: var(--lime);
  margin: 0 0.35rem;
  opacity: 0.85;
}

/* —— Content —— */
.content-wrap {
  padding: 0;
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(27, 94, 59, 0.07), transparent 55%),
    var(--paper);
}

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
  padding-bottom: 4.5rem;
}

.content-section--alt {
  background:
    linear-gradient(180deg, rgba(27, 94, 59, 0.05) 0%, transparent 100%),
    var(--paper);
}

.section-layout {
  display: grid;
  gap: 1.75rem;
}

.section-head {
  margin-bottom: 0;
}

.section-head--wide {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-layout--jadwal .section-head h2 {
  max-width: 13ch;
}

.section-layout--jadwal .section-lead {
  margin-top: 1rem;
  margin-bottom: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--tag);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-optical-sizing: auto;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 14ch;
  color: var(--heading);
}

.section-head--wide h2 {
  max-width: 20ch;
}

.section-lead {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38em;
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.section-body .section-lead {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.feature-lines {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.feature-lines li {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 0 1.15rem 1.1rem;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--tag);
  color: var(--mist);
  transition: background 0.2s ease, border-left-color 0.2s ease;
}

.feature-lines li:hover {
  background: rgba(27, 94, 59, 0.04);
  border-left-color: var(--lime);
}

.feature-lines strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--heading);
  letter-spacing: -0.015em;
}

.feature-lines span {
  font-size: 0.94rem;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
}

.feature-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item__index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--tag);
  margin-bottom: 0.45rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--heading);
}

.feature-item p {
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 28em;
}

/* —— Jadwal section —— */
.schedule-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.schedule-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.schedule-item:hover {
  background: rgba(27, 94, 59, 0.035);
}

.schedule-item__index {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tag);
  padding-top: 0.28rem;
  line-height: 1;
}

.schedule-item__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  color: var(--heading);
}

.schedule-item__body p {
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 34em;
}

.leagues {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.leagues__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tag);
}

.leagues__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.6;
}

.leagues__list li {
  display: inline;
}

.leagues__list li:not(:last-child)::after {
  content: "·";
  margin: 0 0.55rem;
  color: var(--tag);
  opacity: 0.7;
}

[data-theme="dark"] .schedule-item:hover {
  background: rgba(200, 245, 66, 0.05);
}

.process-steps {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 1.85rem;
  border-top: 1px solid var(--border);
}

.process-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.process-steps__num {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--lime);
  color: var(--ink);
}

.process-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  color: var(--heading);
}

.process-steps p {
  color: var(--mist);
  font-size: 0.92rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--lime);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-1px);
  background: #0d2418;
}

[data-theme="dark"] .cta-primary {
  background: var(--lime);
  color: var(--ink);
}

.cta-primary.cta-aggressive {
  background: var(--lime);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.45);
  animation: cta-glow 1.8s ease infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(200, 245, 66, 0.3); transform: scale(1); }
  50% { box-shadow: 0 0 28px rgba(200, 245, 66, 0.55); transform: scale(1.015); }
}

/* —— FAQ —— */
.faq-wrapper {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  padding: 1.15rem 0;
  transition: color 0.2s ease;
}

.faq-details summary:hover {
  color: var(--tag);
}

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

.faq-details__q {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--tag);
  flex: 0 0 1.75rem;
}

.faq-details__label {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: inherit;
  flex: 1;
}

.faq-details p {
  margin: 0 0 1.15rem;
  padding-left: 2.65rem;
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 40em;
}

/* —— Footer —— */
.site-footer {
  background:
    linear-gradient(180deg, #0c2218 0%, #07140f 100%);
  color: rgba(232, 242, 234, 0.55);
  padding: 2.75rem 0 max(1.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(200, 245, 66, 0.12);
}

.footer-simple {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo img {
  width: 160px;
  height: auto;
  opacity: 0.92;
}

.footer-copy {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* —— Overlay LAYER 2 (user-only via JS) —— */
.black-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.25rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(26, 163, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(245, 197, 66, 0.1), transparent 50%),
    #050b14;
  color: #fff;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.black-overlay.active {
  opacity: 1;
}

.black-overlay-close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  right: 1rem;
  z-index: 10001;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.splash-logo {
  text-align: center;
  margin: auto;
  padding: 2rem 0;
  animation: splash-pulse 1.4s ease-in-out infinite;
}

.splash-logo.is-done {
  animation: none;
}

.splash-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 0.85rem;
}

.splash-logo img {
  width: min(160px, 42vw);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 0 24px rgba(200, 245, 66, 0.35));
}

@keyframes splash-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

.sales-content {
  width: min(100%, 640px);
  text-align: center;
  margin: 0.5rem auto 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sales-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sales-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.5vw, 1.65rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.countdown {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(245, 197, 66, 0.45);
  border-radius: 12px;
  background: rgba(245, 197, 66, 0.1);
  box-shadow: 0 0 24px rgba(245, 197, 66, 0.12);
}

.countdown__label {
  font-size: 0.72rem;
  color: rgba(232, 242, 234, 0.7);
}

.countdown__time {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.06em;
}

.live-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin-bottom: 1.15rem;
  font-size: 0.84rem;
  color: rgba(232, 242, 234, 0.85);
}

.live-stat__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  margin-right: 0.35rem;
  animation: pulse 1.4s ease infinite;
  vertical-align: middle;
}

.overlay-banner {
  display: block;
  margin: 0 auto 1.2rem;
  width: min(100%, 420px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(245, 197, 66, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overlay-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(245, 197, 66, 0.22);
}

.overlay-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonials {
  margin-bottom: 1.1rem;
  min-height: 5rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: rise-in 0.45s ease both;
}

.testimonial-slide p {
  font-size: 0.9rem;
  color: rgba(232, 242, 234, 0.9);
  margin-bottom: 0.35rem;
}

.testimonial-slide cite {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--lime);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-dots .dot.active {
  background: var(--lime);
}

.cta-aggressive {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d4ff5a 0%, var(--lime) 100%);
  color: #07140f;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.35);
  animation: cta-glow 1.8s ease-in-out infinite;
  margin-bottom: 0.85rem;
}

.live-chat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.live-chat__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: inherit;
}

.live-chat__btn--wa {
  background: #128c7e;
  border-color: transparent;
}

.live-chat__btn--chat:hover,
.live-chat__btn--wa:hover {
  filter: brightness(1.08);
}

.cta-note {
  font-size: 0.72rem;
  color: rgba(232, 242, 234, 0.55);
}

/* Jangan paksa background gelap — ikut tema agar teks tetap terbaca */
body.user-mode {
  background: var(--paper);
}

body.user-mode .white-content {
  background: var(--paper);
  color: var(--text);
}

/* —— Responsive —— */
@media (min-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .section-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.5rem 3.5rem;
    align-items: start;
  }

  .section-head h2 {
    max-width: 12ch;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
  }

  .feature-item:nth-child(odd) {
    padding-right: 0.5rem;
  }

  .feature-item:nth-child(even) {
    padding-left: 0.5rem;
  }

  .schedule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    border-top: none;
  }

  .schedule-item {
    padding: 1.15rem 0;
  }

  .schedule-item:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--border);
  }

  .schedule-item:nth-child(even) {
    padding-left: 1rem;
  }

  .schedule-item:nth-child(-n+2) {
    border-top: 1px solid var(--border);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: none;
  }

  .process-steps li {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1.25rem 0 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .process-steps li:last-child {
    border-right: none;
    padding-right: 0;
  }
}

@media (min-width: 980px) {
  .container {
    width: min(100% - 3rem, var(--container-max));
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }

  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    padding-left: 0;
    padding-right: 1rem;
  }

  .section-layout {
    gap: 3rem 4.5rem;
  }

  .section-layout--jadwal {
    gap: 3rem 4rem;
  }
}

/* —— Article Layer 1 (long-form professional) —— */
body:has(.article-main) {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(26, 163, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(245, 197, 66, 0.07), transparent 50%),
    var(--paper);
}

.site-header.site-header--solid {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 20, 40, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26, 163, 255, 0.15);
  padding: max(0.7rem, env(safe-area-inset-top)) 0 0.7rem;
}

.site-header--solid .header-inner {
  gap: 0.75rem;
}

.site-header--solid .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.site-header--solid .main-nav a,
.site-header--solid .main-nav span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.site-header--solid .main-nav a:hover {
  color: var(--lime);
}

.site-header--solid .main-nav a::after {
  background: var(--lime);
}

.site-header--solid .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-header--solid .header-cta {
  background: var(--lime);
  color: var(--ink);
  border-radius: 6px;
}

.site-header--solid .header-login {
  color: #fff;
}

.site-header--solid .brand-logo {
  width: min(150px, 40vw);
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: none;
}

/* Banner di bawah header */
.header-banner {
  background:
    linear-gradient(180deg, #061428 0%, #0a1e3a 100%);
  border-bottom: 1px solid rgba(26, 163, 255, 0.15);
}

.header-banner__inner {
  width: min(100% - 1.5rem, 720px);
  margin-inline: auto;
  padding: 1rem 0 1.25rem;
}

.header-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

@media (min-width: 860px) {
  .header-banner__inner {
    width: min(100% - 2rem, 860px);
    padding: 1.25rem 0 1.5rem;
  }
}

.article-main {
  padding-top: 0.5rem;
}

.article-wrap {
  width: min(100% - 2rem, 780px);
  padding-bottom: 3.5rem;
}

.article-hero {
  position: relative;
  padding: 2.25rem 1.25rem 1.75rem;
  margin: 1.25rem 0 1.75rem;
  border-bottom: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(6, 20, 40, 0.06);
}

.breadcrumb {
  margin: 0.85rem 0 0;
  position: relative;
  z-index: 1;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--mist);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
}

.breadcrumb__item::marker {
  content: "";
  display: none;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: var(--border-strong, rgba(6, 20, 40, 0.28));
  font-weight: 600;
}

.breadcrumb__item a {
  color: var(--tag);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item[aria-current="page"] {
  color: var(--heading);
  font-weight: 600;
}

.article-hero::after {
  content: "";
  display: block;
  height: 3px;
  width: 4.5rem;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--lime));
}

.article-hero .section-tag {
  color: var(--tag);
  margin-bottom: 0.85rem;
}

.article-hero .section-tag::before {
  background: var(--tag);
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.8vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 0.95rem;
  max-width: 18ch;
}

.article-deck {
  font-size: clamp(1.02rem, 2.4vw, 1.12rem);
  line-height: 1.7;
  color: var(--mist);
  margin-bottom: 0.75rem;
  max-width: 40rem;
}

.article-location {
  margin: 0 0 1rem;
  color: var(--tag);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--mist);
  background: rgba(26, 163, 255, 0.06);
  border: 1px solid rgba(26, 163, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem 1.35rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(6, 20, 40, 0.04);
}

.toc__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 0.75rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.15rem;
}

.toc li {
  margin: 0;
  padding: 0.35rem 0;
}

.toc a {
  color: var(--heading);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.toc a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.article-section {
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}

.article-section:last-of-type {
  border-bottom: none;
}

.article-section--intro {
  padding-top: 0.5rem;
}

.article-section .section-tag {
  margin-bottom: 0.65rem;
}

.article-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.6vw, 1.85rem);
  line-height: 1.22;
  margin-bottom: 0.85rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--mist);
  margin-bottom: 1.35rem;
  max-width: 40rem;
}

.section-closing {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(26, 163, 255, 0.05);
  border-radius: 0 12px 12px 0;
}

.insight-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 8px 22px rgba(6, 20, 40, 0.04);
}

.insight-card h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.insight-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mist);
}

.article-section p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.045rem;
  line-height: 1.72;
}

.checklist {
  list-style: none;
  margin: 0.35rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.1rem;
  }
}

.checklist li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem 0.7rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(6, 20, 40, 0.04);
}

.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--accent, #1c4fd8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.article-section strong {
  color: var(--heading);
}

.article-figure {
  margin: 1.5rem 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1220;
  box-shadow: 0 18px 40px rgba(6, 20, 40, 0.12);
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.article-figure figcaption {
  margin: 0;
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.82rem;
  color: rgba(232, 238, 248, 0.72);
  background: var(--ink);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.35rem 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(6, 20, 40, 0.05);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table thead th {
  background: #eef5fc;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
}

.compare-table thead th.col-brand {
  background: linear-gradient(180deg, rgba(26, 163, 255, 0.22), rgba(26, 163, 255, 0.1));
  color: var(--heading);
  text-align: center;
  position: relative;
}

.compare-table thead th.col-brand::after {
  content: "Direkomendasikan";
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tag);
}

.compare-table thead th:not(:first-child):not(.col-brand) {
  text-align: center;
  color: var(--mist);
  font-weight: 600;
}

.compare-table tbody th {
  width: 28%;
  font-weight: 600;
  color: var(--heading);
  background: rgba(243, 246, 251, 0.65);
  font-size: 0.9rem;
}

.compare-table tbody td {
  color: var(--text);
}

.compare-table tbody td.col-brand {
  background: rgba(26, 163, 255, 0.06);
  text-align: center;
  border-left: 2px solid rgba(26, 163, 255, 0.35);
  border-right: 2px solid rgba(26, 163, 255, 0.35);
}

.compare-table tbody td:not(.col-brand) {
  text-align: center;
}

.compare-table tbody tr:nth-child(even) th {
  background: rgba(232, 241, 252, 0.55);
}

.compare-table tbody tr:nth-child(even) td:not(.col-brand) {
  background: rgba(248, 251, 255, 0.7);
}

.compare-table tbody tr:nth-child(even) td.col-brand {
  background: rgba(26, 163, 255, 0.09);
}

.compare-table tbody tr:hover th,
.compare-table tbody tr:hover td:not(.col-brand) {
  background: rgba(26, 163, 255, 0.04);
}

.compare-table tbody tr:hover td.col-brand {
  background: rgba(26, 163, 255, 0.12);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:last-child td.col-brand {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cell-good,
.cell-weak,
.cell-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.cell-good {
  background: rgba(26, 163, 255, 0.14);
  color: #0b5f9a;
}

.cell-good::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 163, 255, 0.2);
}

.cell-weak {
  background: rgba(180, 70, 70, 0.08);
  color: #9a3d3d;
  font-weight: 500;
}

.cell-muted {
  background: rgba(74, 93, 115, 0.08);
  color: var(--mist);
  font-weight: 500;
}

.table-note {
  font-size: 0.82rem;
  color: var(--mist);
  margin: 0 0 1rem;
  padding-left: 0.15rem;
}

@media (max-width: 639px) {
  .compare-table {
    font-size: 0.86rem;
    min-width: 560px;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.7rem 0.75rem;
  }

  .cell-good,
  .cell-weak,
  .cell-muted {
    font-size: 0.78rem;
    padding: 0.22rem 0.5rem;
  }
}

[data-theme="dark"] .table-scroll {
  background: #0f1c30;
  border-color: rgba(26, 163, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .compare-table thead th {
  background: #15263d;
  color: #c5d6ea;
}

[data-theme="dark"] .compare-table thead th.col-brand {
  background: linear-gradient(180deg, rgba(26, 163, 255, 0.35), rgba(26, 163, 255, 0.18));
  color: #ffffff;
}

[data-theme="dark"] .compare-table thead th.col-brand::after {
  color: #7dd3ff;
}

[data-theme="dark"] .compare-table thead th:not(:first-child):not(.col-brand) {
  color: #c5d6ea;
}

[data-theme="dark"] .compare-table th,
[data-theme="dark"] .compare-table td {
  border-bottom-color: rgba(26, 163, 255, 0.2);
}

[data-theme="dark"] .compare-table tbody th {
  background: #132238;
  color: #ffffff;
}

[data-theme="dark"] .compare-table tbody td {
  color: #e8eef8;
  background: #0f1c30;
}

[data-theme="dark"] .compare-table tbody td.col-brand {
  background: rgba(26, 163, 255, 0.16);
  border-left-color: rgba(26, 163, 255, 0.55);
  border-right-color: rgba(26, 163, 255, 0.55);
}

[data-theme="dark"] .compare-table tbody tr:nth-child(even) th {
  background: #182b44;
}

[data-theme="dark"] .compare-table tbody tr:nth-child(even) td:not(.col-brand) {
  background: #132238;
}

[data-theme="dark"] .compare-table tbody tr:nth-child(even) td.col-brand {
  background: rgba(26, 163, 255, 0.22);
}

[data-theme="dark"] .compare-table tbody tr:hover th,
[data-theme="dark"] .compare-table tbody tr:hover td:not(.col-brand) {
  background: rgba(26, 163, 255, 0.1);
}

[data-theme="dark"] .compare-table tbody tr:hover td.col-brand {
  background: rgba(26, 163, 255, 0.28);
}

[data-theme="dark"] .cell-good {
  background: rgba(26, 163, 255, 0.28);
  color: #e8f6ff;
}

[data-theme="dark"] .cell-good::before {
  background: #7dd3ff;
  box-shadow: 0 0 0 3px rgba(125, 211, 255, 0.25);
}

[data-theme="dark"] .cell-weak {
  background: rgba(255, 120, 120, 0.18);
  color: #ffc4c4;
}

[data-theme="dark"] .cell-muted {
  background: rgba(154, 173, 196, 0.18);
  color: #e8eef8;
}

[data-theme="dark"] .table-note {
  color: #9aadc4;
}

.verdict-grid {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 1.1rem;
}

@media (min-width: 720px) {
  .verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.verdict-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 10px 26px rgba(6, 20, 40, 0.05);
  overflow: hidden;
}

.verdict-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
}

.verdict-card--plus::before {
  background: var(--accent);
}

.verdict-card--minus::before {
  background: var(--lime);
}

.verdict-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.verdict-card h3::before {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.verdict-card--plus h3::before {
  content: "+";
  background: rgba(26, 163, 255, 0.16);
  color: var(--tag);
}

.verdict-card--minus h3::before {
  content: "!";
  background: rgba(245, 197, 66, 0.2);
  color: #9a7410;
}

.verdict-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.verdict-card li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.verdict-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.65;
}

.verdict-card--minus li::before {
  background: var(--lime);
  opacity: 0.9;
}

.verdict-note {
  font-size: 0.86rem;
  color: var(--mist);
  border-left: 3px solid var(--border);
  padding-left: 0.8rem;
  margin-bottom: 1rem;
}

.step-list {
  list-style: none;
  counter-reset: step;
  margin: 1.4rem 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.step-list li {
  position: relative;
  padding: 1rem 1.15rem 1.05rem 3.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(6, 20, 40, 0.04);
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #061428;
  font-weight: 800;
  font-size: 0.95rem;
}

.step-list h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.step-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

[data-theme="dark"] .step-list li {
  background: #132238;
  border-color: rgba(26, 163, 255, 0.22);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.risk-note {
  display: grid;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  background: rgba(245, 197, 66, 0.1);
}

.risk-note strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a7410;
}

.risk-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text);
}

[data-theme="dark"] .risk-note {
  background: rgba(245, 197, 66, 0.12);
  border-color: rgba(245, 197, 66, 0.4);
}

[data-theme="dark"] .risk-note strong {
  color: var(--lime);
}

[data-theme="dark"] .verdict-card {
  background: #132238;
  border-color: rgba(26, 163, 255, 0.22);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .verdict-card--minus h3::before {
  background: rgba(245, 197, 66, 0.22);
  color: var(--lime);
}

[data-theme="dark"] .verdict-card--plus h3::before {
  background: rgba(26, 163, 255, 0.24);
  color: #7dd3ff;
}

[data-theme="dark"] .verdict-note {
  border-left-color: rgba(26, 163, 255, 0.3);
}

.article-section .cta-primary {
  display: inline-flex;
  margin-top: 0.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 0.85rem 1.35rem;
  box-shadow: 0 10px 24px rgba(6, 20, 40, 0.18);
}

.article-section .cta-primary:hover {
  background: #0a2a52;
  transform: translateY(-1px);
}

.article-section .cta-primary.cta-aggressive {
  background: linear-gradient(180deg, #d4ff5a 0%, var(--lime) 100%);
  color: #07140f;
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.4);
  animation: cta-glow 1.8s ease-in-out infinite;
}

.article-section .cta-primary.cta-aggressive:hover {
  background: linear-gradient(180deg, #e2ff7a 0%, #d4ff5a 100%);
  color: #07140f;
}

[data-theme="dark"] .article-section .cta-primary:not(.cta-aggressive) {
  background: var(--accent);
  color: #061428;
  box-shadow: 0 10px 28px rgba(26, 163, 255, 0.4);
}

[data-theme="dark"] .article-section .cta-primary:not(.cta-aggressive):hover {
  background: #4db8ff;
  color: #061428;
}

[data-theme="dark"] .article-section .cta-primary.cta-aggressive {
  background: linear-gradient(180deg, #e2ff7a 0%, var(--lime) 100%);
  color: #061428;
  box-shadow: 0 0 28px rgba(245, 197, 66, 0.55);
}

.faq-wrapper {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.faq-details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-details[open] {
  border-color: rgba(26, 163, 255, 0.42);
  box-shadow: 0 8px 22px rgba(6, 20, 40, 0.05);
}

.faq-details summary {
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
}

.faq-details summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--tag);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.faq-details[open] summary::after {
  content: "−";
}

.faq-details__q {
  flex-basis: 1.55rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
}

.faq-details__label {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--heading);
}

.faq-details p {
  max-width: none;
  margin: 0;
  padding: 0 3rem 0.9rem 3.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

[data-theme="dark"] .faq-details {
  background: #132238;
  border-color: rgba(26, 163, 255, 0.2);
}

[data-theme="dark"] .faq-details[open] {
  border-color: rgba(26, 163, 255, 0.52);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.related-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.related-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  border-color: rgba(26, 163, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 20, 40, 0.06);
}

.related-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.related-card h3 a {
  color: var(--heading);
  text-decoration: none;
}

.related-card h3 a:hover {
  color: var(--accent);
}

.related-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mist);
}

.article-footer {
  background: var(--ink) !important;
  border-top: none;
}

.article-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.article-footer .footer-links a {
  color: rgba(232, 238, 248, 0.85);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.article-footer .footer-links a:hover {
  color: var(--lime);
}

.article-footer .footer-copy {
  color: rgba(232, 238, 248, 0.65);
}

@media (max-width: 719px) {
  .site-header--solid .header-inner {
    flex-wrap: wrap;
  }

  .site-header--solid .main-nav {
    order: 3;
    width: 100%;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.15rem;
    padding-top: 0.55rem;
  }
}
