/* ============================================================
   SparkyHost — main.css
   Layers: tokens → base → utilities → components → sections → motion
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand */
  --bg: #050505;
  --bg-soft: #0b0b0d;
  --spark: #FF9900;
  --spark-2: #FFA726;
  --white: #ffffff;
  --ink-1: rgba(255, 255, 255, 0.94);
  --ink-2: rgba(255, 255, 255, 0.62);
  --ink-3: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --ok: #4ade80;

  /* Type */
  --font-display: "Clash Display", "Switzer", system-ui, sans-serif;
  --font-body: "Switzer", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;

  /* Scale (8px grid) */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 48px; --s-8: 64px; --s-10: 80px; --s-15: 120px;

  --r-sm: 12px; --r-md: 20px; --r-lg: 32px;

  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
  --glow-spark: 0 0 40px -6px rgba(255, 153, 0, 0.45);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--spark); color: #050505; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--spark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. UTILITIES ---------- */
.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - 48px); }
.text-spark { color: var(--spark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--spark);
  border: 1px solid rgba(255, 153, 0, 0.28);
  background: rgba(255, 153, 0, 0.07);
  padding: 8px 16px; border-radius: 999px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok); display: inline-block; flex: none;
  box-shadow: 0 0 12px var(--ok);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.45; } }

/* ---------- 4. COMPONENTS ---------- */

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  will-change: transform; overflow: hidden; isolation: isolate;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(120deg, var(--spark), var(--spark-2));
  color: #140a00;
  box-shadow: var(--glow-spark);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px -6px rgba(255, 153, 0, 0.65); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--spark-2), #ffc266);
  opacity: 0; transition: opacity 0.35s var(--ease-out);
}
.btn-primary:hover::after { opacity: 1; }

.btn-glass {
  background: var(--glass-strong); border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink-1); }

.btn-arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Ripple (injected by JS) */
.ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255, 255, 255, 0.35); transform: scale(0);
  animation: ripple 0.6s var(--ease-out) forwards;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* Cards */
.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.card::before {
  /* cursor-follow glow, driven by --mx/--my from JS */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 153, 0, 0.12), transparent 65%);
  opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: rgba(255, 153, 0, 0.28); }

[data-tilt] { transform-style: preserve-3d; will-change: transform; }



/* ---------- 6. CANVAS & GRAIN ---------- */
.webgl { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); } 60% { transform: translate(-3%, -2%); }
  80% { transform: translate(4%, 4%); }
}

main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- 7. NAV (floating pill) ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 50;
  padding: 0 clamp(12px, 3vw, 28px);
}
.nav-inner {
  max-width: 1240px; margin-inline: auto; height: 62px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 0 10px 0 20px;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.nav.is-scrolled .nav-inner {
  background: rgba(5, 5, 5, 0.78);
  border-color: rgba(255, 153, 0, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav-logo { font-family: var(--font-display); font-size: 21px; font-weight: 600; white-space: nowrap; }

/* ---- Logo image (config-driven) — fixed height, auto width: never stretches ---- */
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 30px; width: auto; max-height: 30px; display: block; object-fit: contain; }
.loader-mark { display: flex; align-items: center; justify-content: center; gap: 12px; }
.loader-mark .logo-img { height: 40px; max-height: 40px; animation: bolt-flicker 1.6s ease-in-out infinite; }
@media (max-width: 560px) {
  .logo-img { height: 26px; max-height: 26px; }
  .loader-mark .logo-img { height: 34px; max-height: 34px; }
}

/* ---- Product cards (pricing overview) ---- */
.plan-grid-products { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.plan-from { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.plan-desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.plan-card .feature-icon { margin-bottom: 2px; }

/* ---- Footer link columns (config-driven) ---- */
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); grid-column: 2 / -1; }
@media (max-width: 1024px) { .footer-cols { grid-template-columns: 1fr 1fr; grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

/* ---- Nav dropdown menus (config-driven) ---- */
.nav-menu { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 34px); }
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 20px 2px; transition: color 0.3s;
}
.nav-drop-btn:hover, .nav-drop.is-open .nav-drop-btn { color: var(--ink-1); }
.drop-chev { transition: transform 0.3s var(--ease-out); color: var(--ink-3); }
.nav-drop.is-open .drop-chev, .nav-drop:hover .drop-chev { transform: rotate(180deg); color: var(--spark); }
.nav-drop-panel {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translate(-50%, 10px);
  min-width: 224px; padding: 8px; display: grid; gap: 2px;
  border-radius: 16px; border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
}
.nav-drop.is-open .nav-drop-panel,
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-drop-panel a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color 0.25s, background 0.25s;
}
.nav-drop-panel a:hover { color: var(--ink-1); background: rgba(255, 153, 0, 0.09); }
.nav-actions { display: flex; align-items: center; gap: var(--s-2); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-1); border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.35s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---- Mobile menu (card panel, config-driven) ---- */
.mobile-menu {
  position: fixed; top: 10px; left: 10px; right: 10px; z-index: 60;
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-2) var(--s-3) var(--s-3);
  border-radius: 24px; border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  max-height: calc(100vh - 20px); overflow-y: auto;
  /* Animated open/close */
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-16px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.3s var(--ease-out), transform 0.38s var(--ease-out), visibility 0.38s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
/* Content cascades in just after the panel */
.mobile-menu > * {
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.mobile-menu.is-open > * { opacity: 1; transform: none; }
.mobile-menu.is-open > *:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open > *:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open > *:nth-child(3) { transition-delay: 0.19s; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu > * { transition: none; }
}
.mm-head { display: flex; align-items: center; gap: var(--s-2); padding: 8px 2px; }
.mm-head .nav-logo { margin-right: auto; }
.mm-close {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border-radius: 12px; border: 1px solid var(--line); color: var(--ink-1);
  background: rgba(255, 255, 255, 0.04); transition: border-color 0.3s, color 0.3s;
}
.mm-close:hover { border-color: var(--spark); color: var(--spark); }
.mm-acc { display: grid; border-top: 1px solid var(--line); }
.mm-acc-item { border-bottom: 1px solid var(--line); }
.mm-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  padding: 16px 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--spark); transition: color 0.3s;
}
.mm-acc-btn .drop-chev { color: var(--ink-3); }
.mm-acc-btn[aria-expanded="true"] .drop-chev { transform: rotate(180deg); color: var(--spark); }
.mm-acc-panel { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out); }
.mm-acc-panel a { display: block; padding: 11px 6px; font-weight: 500; color: var(--ink-2); }
.mm-acc-panel a:hover { color: var(--spark); }
.mm-buttons { display: grid; gap: 10px; }
.mm-buttons .btn { justify-content: center; width: 100%; padding: 15px 20px; border-radius: 14px; }
.btn-discord { background: #5865f2; color: #fff; border: 1px solid transparent; }
.btn-discord:hover { background: #4752c4; }

/* ---------- 8. HERO ---------- */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: calc(var(--nav-h) + var(--s-3)) 0 var(--s-6);
  position: relative; text-align: center;
}
.hero-inner { display: grid; justify-items: center; gap: var(--s-3); }
.hero-title {
  font-size: clamp(30px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff 60%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Short screens: scale the whole hero down so every element stays visible. */
@media (max-height: 860px) {
  .hero { padding-top: calc(var(--nav-h) + var(--s-2)); padding-bottom: var(--s-5); }
  .hero-inner { gap: var(--s-2); }
  .hero-title { font-size: clamp(27px, 4.4vw, 54px); }
  .hero-sub { font-size: 15.5px; max-width: 580px; }
  .hero-trust { font-size: 13px; }
  .scroll-hint { bottom: 12px; }
  .scroll-hint-line { height: 30px; }
}
@media (max-height: 700px) {
  .hero-title { font-size: clamp(25px, 4vw, 46px); }
  .scroll-hint { display: none; }
}
.hero-em {
  font-style: normal;
  background: linear-gradient(120deg, var(--spark), var(--spark-2), #ffd68a, var(--spark));
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradient-pan 6s linear infinite;
}
@keyframes gradient-pan { to { background-position: 250% 0; } }

/* split-reveal internals (built by JS) */
[data-splitreveal] .sr-line { display: block; overflow: hidden; max-width: 100%; }
[data-splitreveal] .sr-inner { display: inline-block; will-change: transform; }
/* Gradient text must live on an element that is NOT transformed —
   Chrome doesn't paint background-clip:text through animated layers. */
.hero-title .sr-text {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 60%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub { max-width: 640px; font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; font-size: 14px; color: var(--ink-3); }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--spark); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
}
.scroll-hint-line { width: 1px; height: 44px; background: linear-gradient(var(--spark), transparent); display: block; animation: hint-drop 2s var(--ease-out) infinite; transform-origin: top; }
@keyframes hint-drop { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- 9. SECTIONS (shared) ---------- */
.section { padding: var(--s-15) 0; }
.section-head { max-width: 760px; margin-bottom: var(--s-8); display: grid; gap: var(--s-3); justify-items: start; }
.section-title { font-size: clamp(32px, 5vw, 56px); }
.section-sub { color: var(--ink-2); font-size: clamp(15px, 1.8vw, 18px); max-width: 620px; }

/* ---------- 10. FEATURES ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--s-3); }
.feature-card { padding: var(--s-4); display: grid; gap: var(--s-2); align-content: start; }
.feature-icon { width: 40px; height: 40px; color: var(--spark); filter: drop-shadow(0 0 12px rgba(255, 153, 0, 0.5)); }
.feature-card h3 { font-size: 19px; }
.feature-card p { font-size: 15px; color: var(--ink-2); }

/* ---------- 11. PLANS ---------- */
.plan-tabs {
  display: inline-flex; gap: 4px; padding: 5px; margin-bottom: var(--s-6);
  background: var(--glass); border: 1px solid var(--line); border-radius: 999px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.plan-tab { padding: 10px 24px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); transition: color 0.3s, background 0.3s, box-shadow 0.3s; }
.plan-tab:hover { color: var(--ink-1); }
.plan-tab.is-active { background: linear-gradient(120deg, var(--spark), var(--spark-2)); color: #140a00; box-shadow: var(--glow-spark); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
  align-items: stretch;
}
.plan-grid-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1040px;
  margin: 0 auto;
  gap: 22px;
}
@media (max-width: 860px) {
  .plan-grid-products {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.plan-card {
  padding: 26px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(14, 14, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 153, 0, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 153, 0, 0.08);
}
.plan-ic-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 153, 0, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.2);
  color: var(--spark);
  margin-bottom: 12px;
}
.plan-ic-wrap svg {
  width: 22px;
  height: 22px;
}
.plan-card.is-popular {
  border-color: rgba(255, 153, 0, 0.5);
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.1), rgba(14, 14, 17, 0.88) 42%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--glow-spark);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--spark), var(--spark-2));
  color: #140a00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4);
}
.plan-badge-outline {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 15, 8, 0.92);
  border: 1px solid rgba(255, 153, 0, 0.65);
  color: var(--spark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 153, 0, 0.2);
}
.plan-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.plan-from {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin: 0 0 4px 0;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 12px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .plan-currency {
  font-size: 22px;
  color: var(--spark);
  font-weight: 600;
}
.plan-price .amt {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}
.plan-price .plan-period {
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 2px;
}
.plan-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 16px 0;
  min-height: 40px;
}
.plan-specs-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 22px 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 480px) {
  .plan-specs-2col {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.plan-specs-2col li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-specs-2col svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  color: var(--spark);
  flex: none;
}
.plan-btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.plan-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- 12. SPLIT SECTIONS ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.split-flip .split-copy { order: 2; }
.split-flip .split-visual { order: 1; }
.split-copy { display: grid; gap: var(--s-3); justify-items: start; }
.check-list { display: grid; gap: 12px; color: var(--ink-2); font-size: 15.5px; }
.check-list li { display: flex; align-items: center; gap: 12px; }
.check-list svg { width: 18px; height: 18px; color: var(--spark); flex: none; }

/* Terminal */
.terminal { overflow: hidden; font-family: var(--font-mono); font-size: 13.5px; }
.terminal-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.term-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.term-dot:first-child { background: rgba(255, 153, 0, 0.6); }
.terminal-title { margin-left: 8px; color: var(--ink-3); font-size: 12px; }
.terminal-body { padding: 20px 22px; line-height: 1.9; color: var(--ink-2); overflow-x: auto; }
.t-dim { color: var(--ink-3); }
.t-ok { color: var(--ok); }
.t-spark { color: var(--spark); }
.term-caret { display: inline-block; width: 8px; height: 15px; background: var(--spark); vertical-align: -2px; margin-left: 6px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* Metrics */
.metric-stack { padding: var(--s-4); display: grid; gap: var(--s-3); }
.metric-title { font-size: 14px; font-family: var(--font-mono); font-weight: 500; color: var(--ink-3); letter-spacing: 0.04em; }
.metric { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: var(--s-2); font-size: 13px; font-family: var(--font-mono); }
.metric-label { color: var(--ink-3); }
.meter { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.meter-fill { display: block; height: 100%; width: var(--val); border-radius: inherit; background: linear-gradient(90deg, var(--spark), var(--spark-2)); box-shadow: 0 0 12px rgba(255, 153, 0, 0.5); transform-origin: left; }
.metric-val { color: var(--ink-2); }

/* ---------- 13. PERFORMANCE ---------- */
.bench { padding: var(--s-5); display: grid; gap: var(--s-3); }
.bench-row { display: grid; grid-template-columns: minmax(140px, 220px) 1fr auto; align-items: center; gap: var(--s-2); font-size: 14.5px; }
.bench-label { color: var(--ink-2); font-weight: 500; }
.bench-bar { height: 14px; background: var(--line); border-radius: 999px; overflow: hidden; }
.bench-fill { display: block; height: 100%; width: var(--val); background: rgba(255, 255, 255, 0.28); border-radius: inherit; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease-out); }
.bench-fill-spark { background: linear-gradient(90deg, var(--spark), var(--spark-2)); box-shadow: 0 0 16px rgba(255, 153, 0, 0.55); }
.bench.is-inview .bench-fill { transform: scaleX(1); }
.bench-val { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }
.bench-note { font-size: 12.5px; color: var(--ink-3); margin-top: var(--s-1); }

/* ---------- 14. NETWORK ---------- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: var(--s-3); }
.region-card { padding: var(--s-3) var(--s-4); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 6px var(--s-2); }
.region-card h3 { font-size: 17px; grid-column: 2; }
.region-card p { font-size: 13px; color: var(--ink-3); grid-column: 2; }
.region-card .status-dot { grid-row: span 2; }
.region-ping { grid-row: span 2; font-family: var(--font-mono); font-size: 13px; color: var(--spark); }

/* ---------- 15. PANEL PREVIEW ---------- */
.panel-preview { overflow: hidden; }
.panel-topbar { display: flex; align-items: center; gap: var(--s-3); padding: 14px 22px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); font-size: 13.5px; }
.panel-brand { font-family: var(--font-display); font-weight: 600; }
.panel-crumb { color: var(--ink-3); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.panel-user { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(120deg, var(--spark), var(--spark-2)); color: #140a00; font-weight: 700; font-size: 13px; }
.panel-body { display: grid; grid-template-columns: 180px 1fr; min-height: 340px; }
.panel-side { border-right: 1px solid var(--line); padding: var(--s-3) 0; display: grid; align-content: start; gap: 4px; }
.panel-side-item { padding: 10px 22px; font-size: 14px; color: var(--ink-3); border-left: 2px solid transparent; }
.panel-side-item.is-active { color: var(--spark); border-left-color: var(--spark); background: rgba(255, 153, 0, 0.06); }
.panel-main { padding: var(--s-4); display: grid; gap: var(--s-4); align-content: start; }
.panel-stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: var(--s-2); }
.panel-stat { background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; display: grid; gap: 4px; }
.panel-stat-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.panel-stat-val { font-family: var(--font-mono); font-size: 15px; }
.panel-chart { display: flex; align-items: end; gap: 6px; height: 130px; padding: var(--s-2); background: var(--glass); border: 1px solid var(--line); border-radius: var(--r-sm); }
.panel-chart span { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--spark-2), rgba(255, 153, 0, 0.15)); animation: chart-breathe 3.2s ease-in-out infinite; transform-origin: bottom; }
.panel-chart span:nth-child(odd) { animation-delay: -1.6s; }
@keyframes chart-breathe { 50% { transform: scaleY(0.88); } }
.panel-actions { display: flex; gap: var(--s-2); }
.panel-actions .btn { cursor: default; }

/* ---------- 16. REVIEWS ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-3); }
.review-card { padding: var(--s-4); display: grid; gap: var(--s-3); align-content: start; }
.review-stars { color: var(--spark); letter-spacing: 4px; font-size: 15px; }
.review-card blockquote { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; }
.review-card figcaption { display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--ink-3); }
.review-card strong { color: var(--ink-1); font-weight: 600; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #140a00; background: linear-gradient(140deg, var(--spark), var(--spark-2)); }

/* ---------- 17. STATS ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-3); text-align: center; }
.stat { display: grid; gap: var(--s-1); padding: var(--s-4) var(--s-2); border-top: 1px solid var(--line); }
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 6vw, 64px); font-weight: 600; color: var(--spark); text-shadow: 0 0 40px rgba(255, 153, 0, 0.35); }
.stat-label { font-size: 14px; color: var(--ink-2); }

/* ---------- 18. FAQ ---------- */
.faq-list { display: grid; gap: var(--s-2); }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  padding: 22px 26px; font-family: var(--font-display); font-size: 17.5px; font-weight: 500; text-align: left;
}
.faq-icon { width: 20px; height: 20px; color: var(--spark); flex: none; transition: transform 0.4s var(--ease-out); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a p { padding: 0 26px 24px; color: var(--ink-2); font-size: 15.5px; max-width: 640px; }

/* ---------- 19. CTA ---------- */
.cta-card {
  padding: clamp(48px, 8vw, 96px) var(--s-4);
  text-align: center; display: grid; justify-items: center; gap: var(--s-3);
  border-radius: var(--r-lg);
  background:
    radial-gradient(600px 300px at 50% 120%, rgba(255, 153, 0, 0.18), transparent 70%),
    var(--glass);
  overflow: hidden;
}
.cta-title { font-size: clamp(34px, 6vw, 68px); }
.cta-note { font-size: 13px; color: var(--ink-3); }
.cta .section-sub { margin-inline: auto; }

/* ---------- 20. FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: var(--s-10) 0 var(--s-4); background: linear-gradient(180deg, transparent, rgba(255, 153, 0, 0.04)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer-brand { display: grid; gap: var(--s-3); align-content: start; justify-items: start; }
.footer-brand p { color: var(--ink-3); font-size: 14.5px; max-width: 320px; }
.footer-social { display: flex; gap: var(--s-2); }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--glass); color: var(--ink-2); transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out); }
.footer-social a:hover { color: var(--spark); border-color: rgba(255, 153, 0, 0.4); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col { display: grid; gap: 12px; align-content: start; }
.footer-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); font-family: var(--font-body); font-weight: 600; margin-bottom: 6px; }
.footer-col a { font-size: 14.5px; color: var(--ink-2); transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--spark); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: space-between; margin-top: var(--s-8); padding-top: var(--s-3); border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }
.footer-legal a:hover { color: var(--spark); }

/* ---------- 21. REVEAL STATES (pre-animation) ---------- */
.js [data-reveal], .js [data-reveal-group] > * {
  animation: fastFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fastFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.js [data-reveal="rise"], .js [data-reveal-group] > * { transform: translateY(0); }
.js [data-reveal="scale"] { transform: none; }

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-panel { display: none; }
  .nav-cta {
    display: inline-flex !important;
    height: 33px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
  }
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
  .split-flip .split-copy { order: 1; }
  .split-flip .split-visual { order: 2; }
  .section { padding: var(--s-10) 0; }
  .panel-body { grid-template-columns: 1fr; }
  .panel-side { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 0; }
  .panel-side-item { border-left: 0; border-bottom: 2px solid transparent; white-space: nowrap; }
  .panel-side-item.is-active { border-bottom-color: var(--spark); }
  .bench-row { grid-template-columns: 1fr auto; }
  .bench-bar { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .plan-grid { grid-template-columns: 1fr; }
}

/* ---------- 23. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal], .js [data-reveal-group] > *, .js [data-splitreveal] {
    opacity: 1 !important; transform: none !important;
  }
  .bench .bench-fill { transform: scaleX(1); }
  .webgl { display: none; }
  .grain { display: none; }
  body { background: radial-gradient(900px 500px at 50% -10%, rgba(255, 153, 0, 0.08), transparent), var(--bg); }
}

/* ---------- LITE MODE (low-end hardware — class set by JS) ----------
   backdrop-filter on dozens of cards over an animated WebGL canvas is
   the single biggest scroll cost on weak GPUs. Lite mode swaps it for
   a solid glass tint and stops decorative loops. Visual design stays
   identical at a glance. */
html.lite .card {
  backdrop-filter: none; -webkit-backdrop-filter: none;
  background: rgba(13, 13, 17, 0.86);
}
html.lite { scroll-behavior: smooth; }
section[id], footer[id] { scroll-margin-top: 92px; }
html.lite .nav-inner, html.lite .mobile-menu, html.lite .nav-drop-panel {
  backdrop-filter: none; -webkit-backdrop-filter: none;
  background: rgba(8, 8, 8, 0.94);
}
html.lite .scroll-hint-line { animation: none; }
html.lite .btn-glass { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(20, 20, 26, 0.85); }
html.lite .grain { display: none; }
html.lite .hero-em { animation: none; background-position: 40% 0; }

/* ============================================================
   HERO
   Balanced composition rather than a hard left/right split: the copy
   column and the logo stage are both pulled toward centre so they
   read as one group. The headline is deliberately restrained — the
   3D logo is the focal point, not the type.
   ============================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  width: 100%;
  /* Nudge the whole block down so copy and logo sit optically centred
     against the viewport rather than riding high under the nav. */
  padding-top: 48px;
}
@media (min-width: 940px) {
  .hero-inner {
    /* Copy column is narrower than the stage and both sit inside a
       capped width, closing the gap between text and animation. */
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    max-width: 1180px;
    text-align: left;
    gap: var(--s-2);
  }
}

.hero-copy {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-2); min-width: 0; max-width: 520px; margin: 0 auto;
}
@media (min-width: 940px) { .hero-copy { align-items: flex-start; margin: 0; } }

.hero-stage {
  display: block;
  min-height: 40vh;
}
@media (min-width: 940px) { .hero-stage { min-height: 56vh; } }

/* ~35% smaller than before: the logo carries the hero now. */
.hero-title {
  font-size: clamp(38px, 5.4vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}
.hero-em {
  font-style: normal;
  background: linear-gradient(115deg, var(--spark), var(--spark-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 400px; font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.65; color: var(--ink-2); margin: 0;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 6px; }
@media (min-width: 940px) { .hero-ctas { justify-content: flex-start; } }

/* Single quiet trust line under the CTAs, replacing the old feature row. */
.hero-trustline {
  margin: 6px 0 0; font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ink-3);
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center;
}
@media (min-width: 940px) { .hero-trustline { justify-content: flex-start; } }
.hero-trustline span { color: var(--spark); opacity: 0.7; }

/* ---------- Mobile hero ----------
   Stacked, centred, and given room to breathe. The logo sits behind the
   copy at reduced prominence, so the block gets a taller top offset to
   keep type clear of the densest part of the animation. */
@media (max-width: 939px) {
  .hero-inner { padding-top: 24px; gap: var(--s-2); }
  .hero-copy { gap: 14px; padding: 0 4px; }
  .hero-title { font-size: clamp(34px, 10vw, 52px); }
  .hero-sub { max-width: 330px; margin-left: auto; margin-right: auto; font-size: 15px; }
  .hero-ctas { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trustline { font-size: 11.5px; gap: 7px; margin-top: 10px; }
}
@media (max-width: 400px) {
  .hero-title { font-size: 32px; }
  .hero-trustline { font-size: 10.5px; }
}

/* ============================================================
   HIGHLIGHT STRIP
   Four equal columns. Uniform row tracks (auto/auto/auto applied to
   the grid, with each card a subgrid-like flow) mean the icon row,
   title row and description row share a baseline across all four
   cards even when text wraps differently.
   ============================================================ */
.section-highlights { padding: var(--s-6) 0 var(--s-8); }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
  list-style: none; padding: 0; margin: 0;
  /* Shared rows: icons align, titles align, descriptions align. */
  grid-auto-rows: auto;
}
@media (min-width: 860px) { .highlight-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-3); } }

.highlight-card {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: var(--s-4) var(--s-3);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.35s, transform 0.35s var(--ease-out), background 0.35s;
}
.highlight-card:hover {
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.highlight-ic {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 153, 0, 0.1);
  color: var(--spark);
}
.highlight-ic svg { width: 21px; height: 21px; }
.highlight-card h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0; line-height: 1.3;
}
.highlight-card p { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; margin: 0; }

@media (min-width: 860px) {
  /* Left-aligned reads better at four across on desktop. */
  .highlight-card { justify-items: start; text-align: left; }
}

/* ============================================================
   SUBPAGES & LEGAL PAGES (HOMEPAGE COMPLIANT)
   ============================================================ */
.sub-main {
  position: relative;
  z-index: 10;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  min-height: calc(100vh - 120px);
}

.sub-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.sub-head .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 16px 0 10px;
  line-height: 1.1;
}

.sub-head .section-sub {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
}

.sub-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.sub-grid.cols-1 { grid-template-columns: 1fr; }
.sub-grid.cols-2 { grid-template-columns: 1fr 1fr; max-width: 980px; }
.sub-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }

@media (max-width: 780px) {
  .sub-grid.cols-2, .sub-grid.cols-3 { grid-template-columns: 1fr; }
}

.sub-card,
.term-card {
  background: rgba(10, 10, 14, 0.88) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: clamp(24px, 3.5vw, 36px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sub-card:hover,
.term-card:hover {
  border-color: rgba(255, 153, 0, 0.3) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7) !important;
}

.sub-card h2,
.term-card h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.sub-card h3,
.term-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ff9900;
  margin: 16px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-card p,
.term-card p,
.sub-card li,
.term-card li {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.sub-card p:last-child,
.term-card p:last-child {
  margin-bottom: 0;
}

.sub-card ul,
.term-card ul {
  list-style: disc !important;
  padding-left: 24px !important;
  margin: 10px 0 16px 0;
  display: grid;
  gap: 6px;
}

.sub-card ul li::marker,
.term-card ul li::marker {
  color: var(--spark);
}

.sub-card ol,
.term-card ol {
  list-style: decimal !important;
  padding-left: 24px !important;
  margin: 10px 0 16px 0;
  display: grid;
  gap: 6px;
}

.sub-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 153, 0, 0.1);
  color: var(--spark);
  margin-bottom: 14px;
}

.sub-note {
  text-align: center;
  color: var(--ink-3);
  font-size: 13.5px;
  margin-top: 24px;
}

.sub-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
}

.sub-footer a {
  color: var(--spark);
}
