/* =========================================================================
   King AI · Shared SEO page styles
   Loaded AFTER each page's inline <style>. Provides the complete visual
   system for marketing sub-pages: dropdown navigation, hero, sections,
   grids, CTAs, footer, breadcrumbs. Inline <style> in each page still sets
   body chrome and any page-specific accent color.

   Dark is the default; light theme is layered via :root.light rules.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Layout & reset
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  background: #02040a;
  color: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root.light body { background: #f8fafc; color: #0a1226; }
a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; display: block; }
::selection { background: rgba(1, 107, 255, 0.85); color: #fff; }
:focus-visible { outline: 2px solid #4D94FF; outline-offset: 3px; border-radius: 6px; }

/* Content shell — mirrors the React landing's `max-w-shell` (100rem) with
   responsive side gutters (px-6 / sm:px-8 / lg:px-10). Every header, section,
   breadcrumb, and footer aligns to this shell so sub-pages feel identical to
   the home page. */
.wrap {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 640px) { .wrap { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .wrap { padding-left: 40px; padding-right: 40px; } }
.podium {
  font-family: "Bebas Neue", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
:root.light .eyebrow { color: #0159D6; }
.muted { color: rgba(248, 250, 252, 0.64); }
:root.light .muted { color: rgba(10, 18, 38, 0.62); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.12); }
.btn-primary {
  background: #016BFF;
  color: #fff;
  border-color: #016BFF;
  box-shadow: 0 14px 40px rgba(1, 107, 255, 0.35);
}
.btn-primary:hover { background: #4D94FF; border-color: #4D94FF; box-shadow: 0 18px 50px rgba(1, 107, 255, 0.5); }
:root.light .btn { border-color: rgba(10, 18, 38, 0.18); background: rgba(10, 18, 38, 0.04); color: #0a1226; }
:root.light .btn:hover { background: rgba(10, 18, 38, 0.08); border-color: rgba(10, 18, 38, 0.3); }
:root.light .btn-primary { background: #016BFF; color: #fff; border-color: #016BFF; }
:root.light .btn-primary:hover { background: #4D94FF; border-color: #4D94FF; }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.22); }
.btn-arrow::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   Header — floating, blurred pill (mirrors the React landing header)
   ------------------------------------------------------------------------- */
header.site {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 24px;
  background: transparent;
  border: 0;
}
@media (min-width: 640px) { header.site { padding: 18px 32px; } }
@media (min-width: 1024px) { header.site { padding: 20px 40px; } }
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 100rem;
  margin: 0 auto;
  padding: 9px 12px 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
header.site .bar.scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}
:root.light header.site .bar {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(10, 18, 38, 0.06);
  box-shadow: none;
}
:root.light header.site .bar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(10, 18, 38, 0.1);
  box-shadow: 0 18px 60px rgba(10, 18, 38, 0.14);
}
/* Offset in-flow content for the fixed floating header. */
body.seo main { padding-top: 92px; }
@media (min-width: 1024px) { body.seo main { padding-top: 100px; } }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .name { font-family: "Bebas Neue", Inter, sans-serif; text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.06em; }
:root.light .brand .name { color: #0a1226; }

/* Primary nav (desktop) — visible from lg (1024px), like the React header */
.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-desktop { display: inline-flex; } }
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.7);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.nav-trigger:hover, .nav-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
:root.light .nav-trigger { color: rgba(10, 18, 38, 0.7); }
:root.light .nav-trigger:hover, :root.light .nav-trigger[aria-expanded="true"] { color: #0a1226; background: rgba(10, 18, 38, 0.05); }
.nav-trigger .caret {
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-trigger[aria-expanded="true"] .caret { transform: translateY(2px) rotate(225deg); opacity: 0.9; }

/* Flat Pricing link in the desktop nav — mirrors the React PrimaryNav. */
.nav-plain {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.7);
  transition: color 0.2s, background 0.2s;
}
.nav-plain:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
:root.light .nav-plain { color: rgba(10, 18, 38, 0.7); }
:root.light .nav-plain:hover { color: #0a1226; background: rgba(10, 18, 38, 0.05); }

/* Dropdown panel (mega menu) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 560px;
  max-width: 720px;
  background: rgba(8, 11, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(1, 107, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0s linear 0.18s;
  z-index: 60;
}
:root.light .nav-dropdown { background: rgba(255, 255, 255, 0.98); border-color: rgba(10, 18, 38, 0.12); box-shadow: 0 30px 80px rgba(10, 18, 38, 0.18); }
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-trigger[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
:root.light .nav-dropdown::before { border-color: rgba(10, 18, 38, 0.12); }
.nav-dropdown .col-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
:root.light .nav-dropdown .col-title { color: #0159D6; border-bottom-color: rgba(10, 18, 38, 0.08); }
.nav-dropdown .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.nav-dropdown .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.nav-link {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(2px); }
:root.light .nav-link:hover { background: rgba(10, 18, 38, 0.04); }
.nav-link .icn {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 107, 255, 0.18);
  color: #7FB2FF;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(1, 107, 255, 0.25);
}
:root.light .nav-link .icn { background: rgba(1, 107, 255, 0.1); color: #016BFF; border-color: rgba(1, 107, 255, 0.2); }
.nav-link .body { min-width: 0; }
.nav-link .t { font-size: 0.86rem; font-weight: 700; color: #fff; line-height: 1.25; }
:root.light .nav-link .t { color: #0a1226; }
.nav-link .d { font-size: 0.74rem; color: rgba(248, 250, 252, 0.55); margin-top: 2px; line-height: 1.4; }
:root.light .nav-link .d { color: rgba(10, 18, 38, 0.6); }
.nav-dropdown .feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(1, 107, 255, 0.18), rgba(1, 107, 255, 0.05));
  border: 1px solid rgba(1, 107, 255, 0.25);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}
:root.light .nav-dropdown .feature { background: linear-gradient(160deg, rgba(1, 107, 255, 0.1), rgba(1, 107, 255, 0.02)); }
.nav-dropdown .feature .tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7FB2FF;
}
.nav-dropdown .feature h4 { margin: 0; font-size: 0.95rem; color: #fff; line-height: 1.2; }
:root.light .nav-dropdown .feature h4 { color: #0a1226; }
.nav-dropdown .feature p { margin: 0; font-size: 0.74rem; color: rgba(248, 250, 252, 0.65); line-height: 1.5; }
:root.light .nav-dropdown .feature p { color: rgba(10, 18, 38, 0.65); }
.nav-dropdown .feature .cta-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4D94FF;
  margin-top: auto;
}
.nav-dropdown .feature .cta-link::after { content: " →"; }
.nav-dropdown .see-all {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #4D94FF;
  letter-spacing: 0.04em;
}
.nav-dropdown .see-all::after { content: "→"; transition: transform 0.2s; }
.nav-dropdown .see-all:hover::after { transform: translateX(3px); }

/* Mobile menu */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: inherit;
}
:root.light .menu-toggle { border-color: rgba(10, 18, 38, 0.18); background: rgba(10, 18, 38, 0.04); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.menu-toggle span + span { margin-top: 4px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(2, 4, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
:root.light .mobile-menu { background: rgba(248, 250, 252, 0.99); }
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu .header-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
:root.light .mobile-menu .header-row { border-bottom-color: rgba(10, 18, 38, 0.08); }
.mobile-menu .menu-body { padding: 20px; flex: 1; }
.mobile-menu .menu-group { border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 0; }
:root.light .mobile-menu .menu-group { border-bottom-color: rgba(10, 18, 38, 0.08); }
.mobile-menu .menu-group h3 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(125, 211, 252, 0.85); margin: 0 0 10px; }
:root.light .mobile-menu .menu-group h3 { color: #0159D6; }
.mobile-menu .menu-group a { display: block; padding: 8px 0; font-size: 1rem; color: #fff; }
:root.light .mobile-menu .menu-group a { color: #0a1226; }
.mobile-menu .menu-cta { display: flex; flex-direction: column; gap: 10px; padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
:root.light .mobile-menu .menu-cta { border-top-color: rgba(10, 18, 38, 0.1); }
.mobile-menu .menu-cta .btn { justify-content: center; }
/* Flat Pricing link at the end of the mobile nav — mirrors the React menu. */
.mobile-menu .menu-flat-link { display: block; padding: 14px 12px; font-size: 1rem; font-weight: 700; color: #fff; border-radius: 10px; }
.mobile-menu .menu-flat-link:hover { background: rgba(255, 255, 255, 0.05); }
:root.light .mobile-menu .menu-flat-link { color: #0a1226; }
:root.light .mobile-menu .menu-flat-link:hover { background: rgba(10, 18, 38, 0.04); }
/* Language + theme controls inside the mobile menu (2-col grid, like React). */
.mobile-menu .menu-prefs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-menu .menu-prefs .seo-lang { display: flex; width: 100%; }
.mobile-menu .menu-prefs .seo-lang select { width: 100%; text-align: center; text-align-last: center; }
.mobile-menu .menu-prefs .seo-theme-toggle { width: 100%; }

/* Header preference controls are desktop-only (xl+), like the React header;
   below that they live in the mobile menu. */
header.site .seo-lang,
header.site .seo-theme-toggle { display: none; }
@media (min-width: 1280px) {
  header.site .seo-lang { display: inline-flex; }
  header.site .seo-theme-toggle { display: inline-flex; }
}

/* Web Studio header button appears from md (768px), like the React header. */
.bar-actions .btn-webstudio { display: none; }
@media (min-width: 768px) { .bar-actions .btn-webstudio { display: inline-flex; } }

/* “Get the app” label collapses to “App” below sm (640px), like React. */
.bar-actions .btn .lbl-full { display: none; }
.bar-actions .btn .lbl-short { display: inline; }
@media (min-width: 640px) {
  .bar-actions .btn .lbl-full { display: inline; }
  .bar-actions .btn .lbl-short { display: none; }
}

/* Inline icons inside pill buttons (Apple / Globe). */
.btn > svg { width: 14px; height: 14px; flex-shrink: 0; }
.mobile-menu .menu-cta .btn > svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------
   Hero (page)
   ------------------------------------------------------------------------- */
.page-hero { position: relative; padding: 44px 0 64px; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 18% 0%, rgba(1, 107, 255, 0.18), transparent 60%),
    radial-gradient(50% 50% at 92% 12%, rgba(125, 211, 252, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 0.96;
  margin: 18px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.page-hero .lede { margin: 22px 0 0; max-width: 64ch; font-size: 1.08rem; color: rgba(248, 250, 252, 0.78); }
:root.light .page-hero .lede { color: rgba(10, 18, 38, 0.72); }
.page-hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.page-hero .trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.page-hero .chip { border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); border-radius: 999px; padding: 8px 15px; font-size: 0.78rem; font-weight: 600; color: rgba(248, 250, 252, 0.85); }
:root.light .page-hero .chip { border-color: rgba(10, 18, 38, 0.12); background: rgba(10, 18, 38, 0.04); color: rgba(10, 18, 38, 0.78); }
.grad {
  background: linear-gradient(90deg, #7fb2ff, #fff, #7fb2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% auto;
  animation: textShimmer 7s linear infinite;
}
@keyframes textShimmer { to { background-position: 220% center; } }

/* Hero with side media (feature pages) */
.page-hero.split { padding-bottom: 56px; }
.page-hero.split .wrap { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .page-hero.split .wrap { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.page-hero .hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(1, 107, 255, 0.18), rgba(2, 4, 10, 0.6));
  aspect-ratio: 4 / 3;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
:root.light .page-hero .hero-media { border-color: rgba(10, 18, 38, 0.1); box-shadow: 0 30px 80px rgba(10, 18, 38, 0.15); }
.page-hero .hero-media .ph-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: rgba(0, 0, 0, 0.55); color: #fff;
  backdrop-filter: blur(8px);
}
.page-hero .hero-media .ph-grid {
  position: absolute; inset: 0; padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.page-hero .hero-media .ph-tile {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(1, 107, 255, 0.45), rgba(125, 211, 252, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative; overflow: hidden;
  animation: phPulse 6s ease-in-out infinite;
}
.page-hero .hero-media .ph-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4));
}
.page-hero .hero-media .ph-tile:nth-child(2n) { animation-delay: 0.6s; }
.page-hero .hero-media .ph-tile:nth-child(3n) { animation-delay: 1.2s; }
.page-hero .hero-media .ph-tile:nth-child(4n) { animation-delay: 1.8s; }
@keyframes phPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.04); opacity: 1; } }

/* -------------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------------- */
section.page { padding: 72px 0; border-top: 1px solid rgba(255, 255, 255, 0.07); }
:root.light section.page { border-top-color: rgba(10, 18, 38, 0.08); }
section.page h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.02;
  margin: 12px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
section.page .sub { margin: 18px 0 0; max-width: 68ch; color: rgba(248, 250, 252, 0.66); }
:root.light section.page .sub { color: rgba(10, 18, 38, 0.65); }

.grid { display: grid; gap: 18px; margin-top: 36px; }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) {
  .cols-2 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  scroll-margin-top: 120px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(1, 107, 255, 0.4); background: rgba(1, 107, 255, 0.06); }
:root.light .card { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
:root.light .card:hover { border-color: #016BFF; background: rgba(1, 107, 255, 0.04); }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { margin: 0; font-size: 0.92rem; color: rgba(248, 250, 252, 0.66); }
:root.light .card p { color: rgba(10, 18, 38, 0.66); }
.card .icn-lg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(1, 107, 255, 0.18);
  border: 1px solid rgba(1, 107, 255, 0.25);
  color: #7FB2FF;
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 14px;
}
:root.light .card .icn-lg { background: rgba(1, 107, 255, 0.1); color: #016BFF; border-color: rgba(1, 107, 255, 0.2); }

/* Steps (numbered) */
.steps { margin-top: 32px; }
.step { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.step:first-child { border-top: 0; }
:root.light .step { border-top-color: rgba(10, 18, 38, 0.08); }
.step .n {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 2.4rem; color: rgba(255, 255, 255, 0.28);
  min-width: 64px; line-height: 1;
}
:root.light .step .n { color: rgba(10, 18, 38, 0.28); }
.step h3 { margin: 0 0 6px; font-size: 1.22rem; }
.step p { margin: 0; color: rgba(248, 250, 252, 0.66); }
:root.light .step p { color: rgba(10, 18, 38, 0.65); }

/* Feature row (alt 2-col image+text) */
.feature-row { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; margin-top: 28px; }
@media (min-width: 760px) { .feature-row { grid-template-columns: 1fr 1fr; gap: 48px; } }
.feature-row.reverse > :first-child { order: 2; }
@media (min-width: 760px) { .feature-row.reverse > :first-child { order: 1; } }
.feature-row .visual {
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(1, 107, 255, 0.22), rgba(2, 4, 10, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
:root.light .feature-row .visual { background: linear-gradient(140deg, rgba(1, 107, 255, 0.1), rgba(10, 18, 38, 0.04)); border-color: rgba(10, 18, 38, 0.08); }
.feature-row .visual .vmock {
  position: absolute; inset: 0; padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-row .visual .vmock .row { display: flex; gap: 8px; flex: 1; }
.feature-row .visual .vmock .row > div { flex: 1; border-radius: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); }

/* Pricing card */
.pricing-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 36px; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.price-card.featured {
  border-color: rgba(1, 107, 255, 0.5);
  background: linear-gradient(160deg, rgba(1, 107, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px rgba(1, 107, 255, 0.18);
}
:root.light .price-card { border-color: rgba(10, 18, 38, 0.12); background: rgba(10, 18, 38, 0.02); }
:root.light .price-card.featured { background: linear-gradient(160deg, rgba(1, 107, 255, 0.06), rgba(10, 18, 38, 0.02)); box-shadow: 0 30px 80px rgba(1, 107, 255, 0.1); }
.price-card .badge {
  position: absolute; top: -12px; left: 24px;
  background: #016BFF; color: #fff;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.price-card h3 { margin: 0; font-size: 1.3rem; }
.price-card .price {
  font-family: "Bebas Neue", Inter, sans-serif;
  font-size: 2.8rem; line-height: 1; color: #fff; text-transform: uppercase;
}
:root.light .price-card .price { color: #0a1226; }
.price-card .price small { font-family: Inter, sans-serif; font-size: 0.78rem; font-weight: 600; color: rgba(248, 250, 252, 0.55); margin-left: 6px; }
:root.light .price-card .price small { color: rgba(10, 18, 38, 0.55); }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.price-card li::before {
  content: "✓"; color: #4D94FF; font-weight: 800; flex-shrink: 0;
}

/* Comparison table */
.cmp { margin-top: 36px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); border-radius: 18px; overflow: hidden; }
:root.light .cmp { border-color: rgba(10, 18, 38, 0.12); background: rgba(10, 18, 38, 0.02); }
.cmp-wrap { overflow-x: auto; }
.cmp table { width: 100%; min-width: 720px; border-collapse: collapse; text-align: left; }
.cmp th, .cmp td { padding: 14px 18px; font-size: 0.88rem; }
.cmp thead th { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248, 250, 252, 0.5); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
:root.light .cmp thead th { color: rgba(10, 18, 38, 0.5); border-bottom-color: rgba(10, 18, 38, 0.1); }
.cmp tbody tr { border-top: 1px solid rgba(255, 255, 255, 0.06); }
:root.light .cmp tbody tr { border-top-color: rgba(10, 18, 38, 0.06); }
.cmp th[scope="row"] { font-weight: 600; color: rgba(248, 250, 252, 0.85); }
:root.light .cmp th[scope="row"] { color: rgba(10, 18, 38, 0.85); }
.cmp td { color: rgba(248, 250, 252, 0.7); }
:root.light .cmp td { color: rgba(10, 18, 38, 0.7); }

/* Breadcrumb — refined pill trail with a home glyph + current-page chip */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 4px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.5);
}
:root.light .breadcrumb { color: rgba(10, 18, 38, 0.5); }
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(248, 250, 252, 0.62);
  text-decoration: none;
  transition: color 0.2s;
}
:root.light .breadcrumb a { color: rgba(10, 18, 38, 0.6); }
.breadcrumb a:hover { color: #4D94FF; }
.breadcrumb a[href="/"]::before {
  content: "";
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9.5 12 3l9 6.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9.5 12 3l9 6.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.breadcrumb .sep {
  opacity: 0.4;
  font-size: 0.8rem;
  transform: translateY(-0.5px);
}
.breadcrumb > span:last-child {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.92);
  font-weight: 700;
}
:root.light .breadcrumb > span:last-child {
  background: rgba(10, 18, 38, 0.04);
  border-color: rgba(10, 18, 38, 0.08);
  color: #0a1226;
}

/* FAQ */
.faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 12px;
}
:root.light .faq details { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #fff;
}
:root.light .faq summary { color: #0a1226; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
:root.light .faq summary::after { color: rgba(10, 18, 38, 0.5); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; color: rgba(248, 250, 252, 0.7); font-size: 0.94rem; }
:root.light .faq details p { color: rgba(10, 18, 38, 0.7); }

/* Crosslinks grid */
.crosslinks { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
@media (min-width: 760px) { .crosslinks { grid-template-columns: repeat(3, 1fr); } }
.crosslink {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.crosslink:hover {
  border-color: rgba(1, 107, 255, 0.5);
  transform: translateY(-3px);
  background: rgba(1, 107, 255, 0.05);
}
:root.light .crosslink { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
:root.light .crosslink:hover { background: rgba(1, 107, 255, 0.04); }
.crosslink .k {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: #7FB2FF;
}
:root.light .crosslink .k { color: #0159D6; }
.crosslink h3 { margin: 10px 0 6px; font-size: 1.12rem; }
.crosslink p { margin: 0; font-size: 0.9rem; color: rgba(248, 250, 252, 0.6); }
:root.light .crosslink p { color: rgba(10, 18, 38, 0.62); }
.crosslink .arrow { margin-top: 12px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #4D94FF; }
.crosslink .arrow::after { content: " →"; }

/* CTA band */
.band { text-align: center; background: linear-gradient(140deg, #05070c, #000 45%, #0b1015); border-radius: 28px; padding: 56px 24px; border: 1px solid rgba(255, 255, 255, 0.1); }
:root.light .band { background: linear-gradient(140deg, #ffffff, #f0f4fb 50%, #e6eef9); border-color: rgba(10, 18, 38, 0.1); }
.band h2 { margin: 8px 0 0; }
.band p { margin: 16px auto 0; max-width: 56ch; color: rgba(248, 250, 252, 0.7); }
:root.light .band p { color: rgba(10, 18, 38, 0.7); }
.band .cta-row { justify-content: center; margin-top: 26px; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}
@media (min-width: 760px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
:root.light .stat-strip { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
.stat-strip .stat .v { font-family: "Bebas Neue", Inter, sans-serif; font-size: 2.4rem; line-height: 1; color: #fff; }
:root.light .stat-strip .stat .v { color: #0a1226; }
.stat-strip .stat .l { font-size: 0.74rem; color: rgba(248, 250, 252, 0.55); margin-top: 4px; }
:root.light .stat-strip .stat .l { color: rgba(10, 18, 38, 0.55); }

/* Model chips */
.model-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.model-chips .chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.85);
}
:root.light .model-chips .chip { border-color: rgba(10, 18, 38, 0.12); background: rgba(10, 18, 38, 0.04); color: rgba(10, 18, 38, 0.78); }

/* Footer */
footer.site { position: relative; padding: 56px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
footer.site::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 107, 255, 0.4), transparent);
}
:root.light footer.site { border-top-color: rgba(10, 18, 38, 0.08); }
footer.site .row { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 760px) { footer.site .row { grid-template-columns: 1.4fr 2fr; } }
footer.site .foot-brand p { font-size: 0.86rem; color: rgba(248, 250, 252, 0.55); margin: 14px 0 0; max-width: 36ch; }
:root.light footer.site .foot-brand p { color: rgba(10, 18, 38, 0.6); }
footer.site .foot-brand .btn { margin-top: 20px; }
footer.site .foot-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 760px) { footer.site .foot-cols { grid-template-columns: repeat(4, 1fr); } }
footer.site .foot-cols h4 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(125, 211, 252, 0.85); margin: 0 0 12px; }
:root.light footer.site .foot-cols h4 { color: #0159D6; }
footer.site .foot-cols a { display: block; padding: 4px 0; font-size: 0.86rem; color: rgba(248, 250, 252, 0.7); transition: color 0.2s; }
footer.site .foot-cols a:hover { color: #fff; }
:root.light footer.site .foot-cols a { color: rgba(10, 18, 38, 0.7); }
:root.light footer.site .foot-cols a:hover { color: #0a1226; }
footer.site .meta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.78rem; color: rgba(248, 250, 252, 0.5); }
:root.light footer.site .meta { border-top-color: rgba(10, 18, 38, 0.08); color: rgba(10, 18, 38, 0.5); }
footer.site .meta a:hover { color: #4D94FF; }
footer.site .meta p { margin: 0; }
footer.site .meta .meta-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
footer.site .meta .langs { display: inline-flex; align-items: center; gap: 8px; }
footer.site .meta .langs svg { width: 14px; height: 14px; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   SVG icons (replace the letter placeholders)
   ------------------------------------------------------------------------- */
.card .icn-lg svg,
.nav-link .icn svg,
.benefit .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.card .icn-lg svg { width: 22px; height: 22px; }
.nav-link .icn svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   Benefit list (icon + text rows)
   ------------------------------------------------------------------------- */
.benefits { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 680px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .benefits.three { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.benefit:hover { border-color: rgba(1, 107, 255, 0.35); background: rgba(1, 107, 255, 0.05); transform: translateY(-2px); }
:root.light .benefit { border-color: rgba(10, 18, 38, 0.08); background: rgba(10, 18, 38, 0.02); }
.benefit .ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(1, 107, 255, 0.16); color: #7FB2FF;
  border: 1px solid rgba(1, 107, 255, 0.25);
}
:root.light .benefit .ic { background: rgba(1, 107, 255, 0.1); color: #016BFF; border-color: rgba(1, 107, 255, 0.2); }
.benefit .bd h3 { margin: 0 0 4px; font-size: 1rem; }
.benefit .bd p { margin: 0; font-size: 0.88rem; color: rgba(248, 250, 252, 0.6); }
:root.light .benefit .bd p { color: rgba(10, 18, 38, 0.62); }

/* -------------------------------------------------------------------------
   Alternating feature rows with a live media mock
   ------------------------------------------------------------------------- */
.frow { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; margin-top: 40px; }
@media (min-width: 900px) { .frow { grid-template-columns: 1fr 1fr; gap: 56px; } .frow + .frow { margin-top: 64px; } }
.frow .copy .eyebrow { margin-bottom: 12px; }
.frow .copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 14px; line-height: 1.1; letter-spacing: -0.01em; }
.frow .copy p { margin: 0; color: rgba(248, 250, 252, 0.66); font-size: 1rem; }
:root.light .frow .copy p { color: rgba(10, 18, 38, 0.66); }
.frow .copy ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.frow .copy li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: rgba(248, 250, 252, 0.8); }
:root.light .frow .copy li { color: rgba(10, 18, 38, 0.78); }
.frow .copy li svg { width: 18px; height: 18px; stroke: #4D94FF; fill: none; flex-shrink: 0; margin-top: 2px; }
.frow.reverse .media { order: -1; }
@media (min-width: 900px) { .frow.reverse .media { order: 1; } .frow.reverse .copy { order: 2; } }
.mock {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(1, 107, 255, 0.22), rgba(2, 4, 10, 0.7));
  aspect-ratio: 4 / 3; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
:root.light .mock { border-color: rgba(10, 18, 38, 0.1); box-shadow: 0 30px 70px rgba(10, 18, 38, 0.14); }
.mock .grid-tiles {
  position: absolute; inset: 0; padding: 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 10px;
}
.mock .tile {
  border-radius: 12px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 107, 255, 0.5), rgba(125, 211, 252, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: tilePulse 6s ease-in-out infinite;
}
.mock .tile:nth-child(2n) { animation-delay: 0.7s; }
.mock .tile:nth-child(3n) { animation-delay: 1.4s; }
.mock .tile:nth-child(5n) { animation-delay: 2.1s; }
.mock .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45)); }
@keyframes tilePulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.05); opacity: 1; } }
.mock .badge-lg {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; background: rgba(0, 0, 0, 0.6); color: #fff; backdrop-filter: blur(8px);
}

/* -------------------------------------------------------------------------
   Pricing (real cards)
   ------------------------------------------------------------------------- */
.pricing-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.035);
  border-radius: 24px; padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.plan:hover { transform: translateY(-4px); }
:root.light .plan { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
.plan.featured {
  border-color: rgba(1, 107, 255, 0.5);
  background: linear-gradient(165deg, rgba(1, 107, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 40px 110px rgba(1, 107, 255, 0.2);
}
:root.light .plan.featured { background: linear-gradient(165deg, rgba(1, 107, 255, 0.07), rgba(10, 18, 38, 0.02)); }
.plan .plan-badge {
  position: absolute; top: -13px; left: 30px;
  background: #016BFF; color: #fff;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; box-shadow: 0 10px 30px rgba(1, 107, 255, 0.45);
}
.plan .plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan .plan-name { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(248, 250, 252, 0.55); }
:root.light .plan .plan-name { color: rgba(10, 18, 38, 0.55); }
.plan .plan-credits {
  border-radius: 999px; padding: 5px 11px; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06); color: rgba(248, 250, 252, 0.6);
}
.plan.featured .plan-credits { background: rgba(1, 107, 255, 0.2); color: #7FB2FF; }
:root.light .plan .plan-credits { background: rgba(10, 18, 38, 0.06); color: rgba(10, 18, 38, 0.6); }
.plan .plan-tag { font-size: 0.9rem; color: rgba(248, 250, 252, 0.62); margin: 0; }
:root.light .plan .plan-tag { color: rgba(10, 18, 38, 0.62); }
.plan .plan-price { display: flex; align-items: baseline; gap: 8px; }
.plan .plan-price .amt { font-family: "Bebas Neue", Inter, sans-serif; font-size: 3rem; line-height: 1; text-transform: uppercase; color: #fff; }
:root.light .plan .plan-price .amt { color: #0a1226; }
.plan .plan-price .per { font-size: 0.8rem; font-weight: 600; color: rgba(248, 250, 252, 0.55); }
:root.light .plan .plan-price .per { color: rgba(10, 18, 38, 0.55); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(248, 250, 252, 0.82); }
:root.light .plan li { color: rgba(10, 18, 38, 0.8); }
.plan li svg { width: 16px; height: 16px; stroke: #4D94FF; fill: none; flex-shrink: 0; margin-top: 3px; }
.plan .plan-cta { margin-top: auto; }
.plan .plan-cta .btn { width: 100%; justify-content: center; }

/* Credit packs */
.packs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
@media (min-width: 760px) { .packs { grid-template-columns: repeat(4, 1fr); } }
.pack {
  position: relative; text-align: center; padding: 24px 18px; border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, transform 0.25s;
}
.pack:hover { border-color: rgba(1, 107, 255, 0.4); transform: translateY(-3px); }
:root.light .pack { border-color: rgba(10, 18, 38, 0.1); background: rgba(10, 18, 38, 0.02); }
.pack .pack-credits { font-family: "Bebas Neue", Inter, sans-serif; font-size: 2.2rem; line-height: 1; color: #fff; }
:root.light .pack .pack-credits { color: #0a1226; }
.pack .pack-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248, 250, 252, 0.5); margin-top: 4px; }
:root.light .pack .pack-label { color: rgba(10, 18, 38, 0.5); }
.pack .pack-price { margin-top: 12px; font-size: 1.1rem; font-weight: 700; color: #7FB2FF; }
.pack .pack-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #016BFF; color: #fff; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}

/* -------------------------------------------------------------------------
   Testimonial / logo quotes are intentionally omitted (no verified data).
   ------------------------------------------------------------------------- */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grad, .ph-tile, .tile { animation: none !important; }
  .btn:hover, .card:hover, .crosslink:hover, .benefit:hover, .plan:hover, .pack:hover { transform: none !important; }
}
