/* ============================================================================
   DOWNLOAD SIU — Design System  "Aurora Glass"
   Single shared stylesheet for every page of downloadsiu.com
   ----------------------------------------------------------------------------
   0.  Tokens
   1.  Reset & base
   2.  Layout primitives
   3.  Ambient background (aurora + grain)
   4.  Typography
   5.  Buttons, pills & badges
   6.  Surfaces & cards
   7.  Navbar + mobile drawer
   8.  Hero
   9.  Marquee
   10. Stats
   11. Bento / feature grids
   12. Mode compare (ECO / PRO)
   13. Steps
   14. Carousel
   15. Pricing
   16. Compare table
   17. Reviews
   18. FAQ / accordions
   19. Forms & modals
   20. Guides (TIPS)
   21. Legal prose (PRIVACY)
   22. Status pages (payment)
   23. Footer
   24. Motion & utilities
   25. Responsive refinements
   ========================================================================== */

/* ---------------------------------------------------------------- 0. TOKENS */
:root {
  /* Brand — sampled from the SIU logo (violet → cyan) */
  --violet:      #8b5cf6;
  --violet-2:    #a78bfa;
  --indigo:      #6366f1;
  --cyan:        #22d3ee;
  --cyan-2:      #67e8f9;
  --magenta:     #d946ef;
  --mint:        #34d399;
  --amber:       #fbbf24;
  --rose:        #fb7185;

  /* Surfaces */
  --bg:          #05060f;
  --bg-2:        #080b1c;
  --ink:         #0b0f24;

  /* Text */
  --text:        #eef1ff;
  --text-2:      #b3bcdc;
  --text-3:      #7d87ab;

  /* Glass */
  --glass:       rgba(255, 255, 255, .035);
  --glass-2:     rgba(255, 255, 255, .06);
  --line:        rgba(255, 255, 255, .09);
  --line-2:      rgba(255, 255, 255, .16);

  /* Gradients */
  --grad-brand:  linear-gradient(120deg, var(--violet) 0%, var(--indigo) 45%, var(--cyan) 100%);
  --grad-warm:   linear-gradient(120deg, var(--magenta) 0%, var(--violet) 60%, var(--indigo) 100%);
  --grad-text:   linear-gradient(100deg, #ffffff 0%, #c9c4ff 35%, #7ee9ff 75%, #ffffff 100%);

  /* Glow */
  --glow-violet: 0 0 0 1px rgba(139, 92, 246, .35), 0 18px 60px -18px rgba(139, 92, 246, .75);
  --glow-cyan:   0 0 0 1px rgba(34, 211, 238, .30), 0 18px 60px -20px rgba(34, 211, 238, .55);
  --shadow-sm:   0 2px 10px rgba(0, 0, 0, .35);
  --shadow-md:   0 18px 45px -22px rgba(0, 0, 0, .9);
  --shadow-lg:   0 40px 90px -40px rgba(0, 0, 0, 1);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Rhythm */
  --gutter:  clamp(1rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 9vw, 7.5rem);
  --maxw:    1200px;
  --maxw-narrow: 820px;

  /* Type */
  --font-display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 72px;
}

/* ------------------------------------------------------- 1. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  padding-bottom: env(safe-area-inset-bottom);
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }

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

button, input, select, textarea { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

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

::selection { background: rgba(139, 92, 246, .45); color: #fff; }

/* Custom scrollbar (desktop) */
@media (pointer: fine) {
  * { scrollbar-width: thin; scrollbar-color: rgba(139,92,246,.55) transparent; }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--violet), var(--indigo));
    border-radius: 99px;
    border: 2px solid var(--bg);
  }
  ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--violet-2), var(--cyan)); }
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 999;
  padding: .7rem 1.1rem;
  background: var(--violet);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ------------------------------------------------ 2. LAYOUT PRIMITIVES */
.wrap {
  width: min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.wrap--narrow { width: min(var(--maxw-narrow), 100% - (var(--gutter) * 2)); }
.wrap--wide   { width: min(1380px, 100% - (var(--gutter) * 2)); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--flush-top { padding-top: 0; }

.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}
.section-head--left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--text-2); font-size: 1.075rem; }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.cluster { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.cluster--center { justify-content: center; }

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  margin-block: clamp(2rem, 5vw, 3.5rem);
}

/* --------------------------------------- 3. AMBIENT BACKGROUND (AURORA) */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(139, 92, 246, .22), transparent 60%),
    radial-gradient(1000px 640px at 88% 4%,  rgba(34, 211, 238, .16), transparent 62%),
    radial-gradient(900px 900px at 50% 108%, rgba(217, 70, 239, .14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 46vmax; height: 46vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .28;
  will-change: transform;
}
.aurora::before {
  background: radial-gradient(circle, var(--violet), transparent 65%);
  top: -12vmax; left: -10vmax;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora::after {
  background: radial-gradient(circle, var(--cyan), transparent 65%);
  bottom: -16vmax; right: -12vmax;
  animation: drift-b 32s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(14vmax, 8vmax, 0) scale(1.18); }
}
@keyframes drift-b {
  from { transform: translate3d(0,0,0) scale(1.1); }
  to   { transform: translate3d(-12vmax, -10vmax, 0) scale(.92); }
}

/* Fine grain — kills gradient banding, adds a premium film texture */
.grain {
  position: fixed;
  inset: -50%;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Scroll progress bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-brand);
  z-index: 300;
  will-change: transform;
}

/* ------------------------------------------------------ 4. TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 1.35rem + 4.4vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 1.15rem + 2.9vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1.02rem + .8vw, 1.55rem); line-height: 1.22; }
h4 { font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem); line-height: 1.3; }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan-2);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.section-head--left .eyebrow::before { display: none; }

.grad-text {
  background: var(--grad-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.lead {
  font-size: clamp(1.05rem, 1rem + .45vw, 1.3rem);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 46rem;
}
.center .lead, .section-head .lead { margin-inline: auto; }

.muted { color: var(--text-2); }
.dim   { color: var(--text-3); font-size: .9rem; }
.mono  { font-family: var(--font-mono); }

/* --------------------------------------- 5. BUTTONS, PILLS & BADGES */
.btn {
  --btn-bg: var(--grad-brand);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .85rem 1.65rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .975rem;
  letter-spacing: .01em;
  color: #fff;
  background: var(--btn-bg);
  background-size: 180% auto;
  box-shadow: 0 10px 30px -12px rgba(99, 102, 241, .85);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .5s var(--ease), opacity .2s;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 18px 44px -14px rgba(139, 92, 246, .95);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.btn--lg { min-height: 58px; padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .875rem; }
.btn--block { width: 100%; }

.btn--ghost {
  background: var(--glass-2);
  box-shadow: inset 0 0 0 1px var(--line-2);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.6), 0 14px 34px -18px rgba(139,92,246,.7);
}

.btn--outline {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--outline:hover { background: var(--glass-2); box-shadow: inset 0 0 0 1px var(--violet-2); }

.btn--quiet {
  background: transparent;
  box-shadow: none;
  color: var(--text-2);
  min-height: 42px;
  padding: .5rem .9rem;
}
.btn--quiet:hover { color: var(--text); background: var(--glass-2); box-shadow: none; transform: none; }

.btn-icon { width: 1.15em; height: 1.15em; flex: none; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .95rem;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pill strong { color: var(--text); font-weight: 600; }

.pill--live { border-color: rgba(52, 211, 153, .35); color: #a7f3d0; }
.pill--live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
  animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping {
  70%  { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad-warm);
  color: #fff;
  white-space: nowrap;
}
.badge--soft {
  background: rgba(139, 92, 246, .14);
  border: 1px solid rgba(139, 92, 246, .4);
  color: var(--violet-2);
}
.badge--mint { background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.4); color: #6ee7b7; }
.badge--cyan { background: rgba(34,211,238,.14); border: 1px solid rgba(34,211,238,.4); color: var(--cyan-2); }
.badge--amber{ background: rgba(251,191,36,.14); border: 1px solid rgba(251,191,36,.4); color: #fcd34d; }

/* Icon tile used across feature/mode/step cards */
.icon-tile {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(139,92,246,.22), rgba(34,211,238,.12));
  border: 1px solid var(--line-2);
  color: var(--cyan-2);
  flex: none;
  transition: transform .35s var(--ease), border-color .35s, color .35s;
}
.icon-tile svg { width: 24px; height: 24px; }

/* ------------------------------------------------ 6. SURFACES & CARDS */
.card {
  position: relative;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s, background .4s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,.25), transparent 40%, transparent 60%, rgba(139,92,246,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, .45);
  box-shadow: var(--shadow-lg), 0 0 60px -30px rgba(139, 92, 246, .9);
  background: var(--glass-2);
}
.card:hover::before { opacity: 1; }
.card:hover .icon-tile { transform: translateY(-2px) scale(1.06); border-color: rgba(34,211,238,.5); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--text-2); }

.card--flat:hover { transform: none; }
.card--pad-lg { padding: clamp(1.8rem, 4vw, 3rem); }

/* Spotlight follows the cursor (JS sets --mx/--my) */
.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(139, 92, 246, .16), transparent 65%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.spotlight:hover::after { opacity: 1; }

/* Highlight callout */
.callout {
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.1rem, 2.4vw, 1.75rem);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, rgba(139,92,246,.1), rgba(34,211,238,.06));
  border: 1px solid rgba(139, 92, 246, .28);
  border-left: 3px solid var(--violet);
}
.callout p { color: var(--text-2); }
.callout strong { color: var(--text); }

.callout--mint { background: rgba(52,211,153,.07); border-color: rgba(52,211,153,.3); border-left-color: var(--mint); }
.callout--amber{ background: rgba(251,191,36,.07); border-color: rgba(251,191,36,.3); border-left-color: var(--amber); }

/* ------------------------------------------- 7. NAVBAR + MOBILE DRAWER */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
  padding-top: env(safe-area-inset-top);
}
.nav.is-stuck {
  background: rgba(6, 8, 20, .78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px -30px #000;
}
.nav__inner {
  width: min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 14px rgba(139, 92, 246, .65));
  transition: transform .5s var(--ease), filter .5s;
}
.brand:hover img { transform: rotate(-6deg) scale(1.06); filter: drop-shadow(0 0 20px rgba(34, 211, 238, .8)); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.brand__name span { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .24em; color: var(--text-3); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  position: relative;
  display: block;
  padding: .6rem .85rem;
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .25s, background .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .34rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: .6rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--glass);
  place-items: center;
  flex: none;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .35s var(--ease), opacity .2s var(--ease), width .35s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 199;
  display: grid;
  align-content: start;
  gap: .35rem;
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 1.5rem) var(--gutter) 2.5rem;
  background: rgba(5, 6, 15, .96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}
.drawer.is-open a { animation: drawer-in .45s var(--ease-out) forwards; }
.drawer.is-open a:nth-child(1) { animation-delay: .04s; }
.drawer.is-open a:nth-child(2) { animation-delay: .08s; }
.drawer.is-open a:nth-child(3) { animation-delay: .12s; }
.drawer.is-open a:nth-child(4) { animation-delay: .16s; }
.drawer.is-open a:nth-child(5) { animation-delay: .20s; }
.drawer.is-open a:nth-child(6) { animation-delay: .24s; }
.drawer.is-open a:nth-child(7) { animation-delay: .28s; }
@keyframes drawer-in { to { opacity: 1; transform: translateY(0); } }
.drawer a span { color: var(--text-3); font-size: 1rem; }
.drawer .btn {
  margin-top: 1.6rem;
  opacity: 1;
  transform: none;
  justify-content: center;
  border-bottom: 0;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  min-height: 56px;
}
body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------- 8. HERO */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 8vw, 6.5rem); }
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 40rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.5rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; color: var(--text-3); font-size: .86rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* App screenshot frame */
.showcase {
  position: relative;
  perspective: 1400px;
}
.showcase__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, rgba(139,92,246,.14), rgba(6,8,20,.9));
  box-shadow: var(--shadow-lg), 0 0 90px -40px rgba(139, 92, 246, .9);
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .8s var(--ease);
}
.showcase:hover .showcase__frame { transform: rotateY(-2deg) rotateX(1deg) translateY(-4px); }
.showcase__bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem .9rem;
  background: rgba(255,255,255,.045);
  border-bottom: 1px solid var(--line);
}
.showcase__bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff5f57; display: block;
}
.showcase__bar i:nth-child(2) { background: #febc2e; }
.showcase__bar i:nth-child(3) { background: #28c840; }
.showcase__bar b {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: .06em;
}
.showcase__frame img { width: 100%; }

.showcase__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: var(--r-pill);
  background: rgba(10, 13, 32, .82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.showcase__chip--1 { top: 12%; left: -6%; color: var(--cyan-2); }
.showcase__chip--2 { bottom: 16%; right: -5%; color: var(--violet-2); animation-delay: -2s; }
.showcase__chip--3 { bottom: -3%; left: 12%; color: #6ee7b7; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------------------------------------------------------- 9. MARQUEE */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--glass);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}
.marquee__item b { color: var(--cyan-2); font-weight: 700; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ 10. STATS */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.stat {
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem;
  text-align: center;
  background: rgba(8, 11, 28, .8);
  transition: background .35s var(--ease);
}
.stat:hover { background: rgba(139, 92, 246, .1); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.85rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Nested spans (used by the count-up script) keep the clipped gradient */
.stat__num > span,
.rating-score__num > span {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label {
  margin-top: .5rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ------------------------------------------------------------ 11. BENTO */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.bento > * { grid-column: span 6; }
.bento__icon-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }

@media (min-width: 700px) {
  .bento > * { grid-column: span 3; }
  .bento > .bento--wide { grid-column: span 6; }
}
@media (min-width: 1000px) {
  .bento > * { grid-column: span 2; }
  .bento > .bento--wide { grid-column: span 4; }
  .bento > .bento--tall { grid-row: span 2; }
  /* Para filas de EXACTAMENTE 2 tarjetas: 4+4 no cabe en 6 columnas y la
     segunda se cae a una fila propia dejando un hueco a la derecha. span 3
     hace que las dos ocupen la fila entera sin sobrar espacio. */
  .bento > .bento--half { grid-column: span 3; }
}

.bento--wide { display: flex; flex-direction: column; justify-content: center; }
.bento--half { display: flex; flex-direction: column; justify-content: center; }
/* Para una tarjeta que queda sola en su fila (p.ej. la 4ª de un grupo de 4):
   ocupar toda la fila en vez de dejar un hueco al lado. span 6 = fila
   completa en cualquier tamaño, no hace falta repetirlo por breakpoint. */
.bento > .bento--full { grid-column: span 6; }

.feature-list { display: grid; gap: .6rem; margin-top: 1.1rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--text-2);
  font-size: .93rem;
}
.feature-list li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: .22em;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
    rgba(52, 211, 153, .14);
}
.feature-list li.is-off { color: var(--text-3); }
.feature-list li.is-off::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb7185' stroke-width='3.2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 11px no-repeat,
    rgba(251, 113, 133, .12);
}

/* ------------------------------------------------------ 12. MODE COMPARE */
.modes { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
@media (min-width: 860px) { .modes { grid-template-columns: 1fr 1fr; } }

.mode {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.mode::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--mode-accent, var(--grad-brand));
}
.mode:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.mode--eco  { --mode-accent: linear-gradient(90deg, #34d399, #22d3ee); }
.mode--pro  { --mode-accent: linear-gradient(90deg, #8b5cf6, #d946ef); }
.mode__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.mode__meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--text-3);
}
.mode__meter-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.mode__meter-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--mode-accent);
  width: var(--load, 30%);
  transition: width 1.1s var(--ease);
}

/* ------------------------------------------------------------ 13. STEPS */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .9;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--text-2); }

/* --------------------------------------------------------- 14. CAROUSEL */
.carousel { position: relative; }
.carousel__viewport {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #04050d;
  box-shadow: var(--shadow-lg), 0 0 80px -40px rgba(139, 92, 246, .8);
  aspect-ratio: 986 / 643;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .7s var(--ease), transform .9s var(--ease), visibility .7s;
}
.carousel__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 4vw, 2.6rem) clamp(1rem, 3vw, 2rem) clamp(3.4rem, 6vw, 4rem);
  background: linear-gradient(to top, rgba(4, 5, 13, .96) 12%, rgba(4, 5, 13, .7) 45%, transparent);
  text-align: center;
}
.carousel__caption h3 { font-size: clamp(1.05rem, .95rem + .7vw, 1.5rem); margin-bottom: .3rem; }
.carousel__caption p { color: var(--text-2); font-size: clamp(.84rem, .8rem + .25vw, .98rem); }

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 5, 13, .6);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  opacity: .75;
  transition: opacity .3s, background .3s, transform .3s var(--ease);
  z-index: 4;
}
.carousel__nav:hover { opacity: 1; background: rgba(139, 92, 246, .85); transform: translateY(-50%) scale(1.08); }
.carousel__nav--prev { left: clamp(.5rem, 1.6vw, 1.1rem); }
.carousel__nav--next { right: clamp(.5rem, 1.6vw, 1.1rem); }
.carousel__nav svg { width: 20px; height: 20px; }

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(.9rem, 2.4vw, 1.4rem);
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 4;
}
.carousel__dot {
  width: 34px; height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.25);
  transition: background .3s, width .35s var(--ease);
}
.carousel__dot.is-active { width: 52px; background: var(--dot, var(--cyan)); box-shadow: 0 0 14px var(--dot, var(--cyan)); }

/* Thumbnail rail */
.carousel__thumbs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.carousel__thumb {
  position: relative;
  width: clamp(66px, 11vw, 104px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: .5;
  transition: opacity .3s, border-color .3s, transform .3s var(--ease);
}
.carousel__thumb img { aspect-ratio: 986/643; object-fit: cover; width: 100%; }
.carousel__thumb:hover { opacity: .85; transform: translateY(-2px); }
.carousel__thumb.is-active { opacity: 1; border-color: var(--dot, var(--cyan)); box-shadow: 0 0 18px -6px var(--dot, var(--cyan)); }

/* ---------------------------------------------------------- 15. PRICING */
/* Tres planes de pago desde que el trial se activa dentro de la app.
   max-width + margin auto: con solo tres tarjetas, dejarlas ocupar los 1200 px
   del contenedor las estira demasiado y quedan desangeladas. Acotadas a 1020
   tienen el ancho justo y el bloque queda centrado en la pagina. */
.pricing {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.6rem);
  align-items: start;
  max-width: 1020px;
  margin-inline: auto;
}
/* Hasta 620 px van una debajo de otra. Entre 620 y 900, dos arriba y una
   abajo CENTRADA (de ahi el truco del grid-column en la ultima). */
@media (min-width: 620px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .pricing > .plan:last-child { grid-column: 1 / -1; max-width: calc(50% - .8rem); justify-self: center; }
}
@media (min-width: 900px) {
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .pricing > .plan:last-child { grid-column: auto; max-width: none; justify-self: stretch; }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(139,92,246,.45); box-shadow: var(--shadow-lg); }
.plan--featured {
  border-color: rgba(139, 92, 246, .55);
  background: linear-gradient(170deg, rgba(139,92,246,.14), rgba(255,255,255,.03));
  box-shadow: 0 0 0 1px rgba(139,92,246,.25), 0 40px 90px -50px rgba(139,92,246,.9);
}
@media (min-width: 900px) { .plan--featured { transform: scale(1.035); } .plan--featured:hover { transform: scale(1.035) translateY(-6px); } }
.plan__badge { position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%); }
.plan__name { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--violet-2); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: .6rem 0 .2rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
}
.plan__price small { font-size: .85rem; font-weight: 500; color: var(--text-3); letter-spacing: 0; }
.plan__desc { color: var(--text-2); font-size: .92rem; min-height: 2.6em; }
.plan .feature-list { margin: 1.25rem 0 1.75rem; flex: 1; }
.plan .btn { width: 100%; }
.plan__note { margin-top: .75rem; font-size: .76rem; color: var(--text-3); text-align: center; }

.save-tag {
  display: inline-block;
  margin-left: .4rem;
  padding: .15rem .5rem;
  border-radius: var(--r-pill);
  background: rgba(52, 211, 153, .15);
  border: 1px solid rgba(52, 211, 153, .35);
  color: #6ee7b7;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  vertical-align: middle;
}

/* ----------------------------------------------------- 16. COMPARE TABLE */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .92rem;
}
.table th, .table td {
  padding: .95rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.table thead th {
  position: sticky;
  top: 0;
  background: rgba(10, 13, 32, .95);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  z-index: 2;
}
.table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}
.table tbody tr:hover td, .table tbody tr:hover th { background: rgba(139, 92, 246, .07); }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }
.table .yes { color: var(--mint); font-weight: 700; }
.table .no  { color: var(--text-3); }
.table .col-featured { background: rgba(139, 92, 246, .09); }

/* ---------------------------------------------------------- 17. REVIEWS */
.rating-summary {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 760px) { .rating-summary { grid-template-columns: auto 1fr; } }
.rating-score {
  text-align: center;
  padding-right: clamp(0rem, 3vw, 2.5rem);
}
.rating-score__num {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 2.4rem + 3vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ---- Rating distribution bars ---- */
.rating-bars { display: grid; gap: .7rem; }
.rating-bar {
  display: grid;
  grid-template-columns: minmax(3.6rem, auto) minmax(0, 1fr) minmax(4.4rem, auto);
  align-items: center;
  gap: .9rem;
  font-size: .84rem;
  line-height: 1.4;
  color: var(--text-3);
}
.rating-bar__label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.rating-bar__label svg { width: 13px; height: 13px; color: var(--amber); flex: none; }
.rating-bar__track {
  position: relative;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  overflow: hidden;
}
.rating-bar__fill {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 99px;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, #f59e0b, var(--amber) 55%, #fde68a);
  box-shadow: 0 0 18px -5px rgba(251, 191, 36, .9);
  transition: width 1.4s var(--ease);
}
.rating-bar__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.45) 50%, transparent 75%);
  transform: translateX(-100%);
  animation: bar-sheen 3.4s var(--ease) 1.2s infinite;
}
@keyframes bar-sheen { to { transform: translateX(200%); } }
.rating-bar__val {
  text-align: right;
  white-space: nowrap;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}
.rating-bar__val b { color: var(--text); font-weight: 600; }

/* ---- Sub-score breakdown ---- */
.subscores { display: grid; gap: 1.15rem; }
@media (min-width: 660px) { .subscores { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 4vw, 3rem); } }
.subscore { display: grid; gap: .45rem; min-width: 0; }
.subscore__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  font-size: .88rem;
  line-height: 1.4;
}
.subscore__name { color: var(--text-2); min-width: 0; }
.subscore__val {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.subscore__track {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  overflow: hidden;
}
.subscore__fill {
  display: block;
  height: 100%;
  border-radius: 99px;
  width: var(--pct, 0%);
  background: var(--grad-brand);
  box-shadow: 0 0 16px -5px rgba(139, 92, 246, .95);
  transition: width 1.4s var(--ease);
}

.stars { color: var(--amber); letter-spacing: .14em; font-size: 1rem; line-height: 1.3; }
.stars--lg { font-size: 1.35rem; }
.stars .off { opacity: .22; }

.reviews { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
@media (min-width: 700px)  { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.review { display: flex; flex-direction: column; gap: .9rem; min-width: 0; }

/* Grid (not flex) + minmax(0,1fr) + explicit line-heights: the name and the
   meta line can never collide or ride over the avatar, at any width or zoom. */
.review__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: .85rem;
}
.review__avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  color: #fff;
  flex: none;
}
.review__id {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}
.review__name {
  font-weight: 600;
  font-size: .96rem;
  line-height: 1.35;
  color: var(--text);
  overflow-wrap: anywhere;
}
.review__meta {
  font-size: .78rem;
  line-height: 1.35;
  color: var(--text-3);
  overflow-wrap: anywhere;
}
.review__text { color: var(--text-2); font-size: .95rem; flex: 1; }

.review__foot {
  display: grid;
  gap: .55rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  line-height: 1.4;
  color: var(--text-3);
}
.review__foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1rem;
  flex-wrap: wrap;
}
.verified { display: inline-flex; align-items: center; gap: .35rem; color: var(--mint); }
.review__helpful-track {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}
.review__helpful-fill {
  display: block;
  height: 100%;
  border-radius: 99px;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transition: width 1.3s var(--ease);
}

/* -------------------------------------------------------------- 18. FAQ */
.faq { display: grid; gap: .75rem; }
.faq__item {
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--glass);
  overflow: hidden;
  transition: border-color .35s, background .35s;
}
.faq__item:hover { border-color: var(--line-2); }
.faq__item.is-open { border-color: rgba(139, 92, 246, .45); background: rgba(139, 92, 246, .06); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 2.4vw, 1.5rem);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(.96rem, .93rem + .2vw, 1.06rem);
  color: var(--text);
  min-height: 56px;
}
.faq__icon {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform .4s var(--ease), border-color .3s, background .3s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.5px;
  border-radius: 2px;
  background: var(--cyan-2);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .25s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.is-open .faq__icon { transform: rotate(180deg); background: rgba(139,92,246,.2); border-color: rgba(139,92,246,.5); }
.is-open .faq__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 clamp(1rem, 2.4vw, 1.5rem) 1.3rem;
  color: var(--text-2);
  font-size: .96rem;
}

/* ----------------------------------------------------- 19. FORMS & MODALS */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field > label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field .req { color: var(--rose); }
.field__hint { font-size: .78rem; color: var(--text-3); }

.input, input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(4, 5, 13, .6);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
}
textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3bcdc' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.8rem;
  cursor: pointer;
}
select option { background: #0b0f24; color: var(--text); }

input::placeholder, textarea::placeholder { color: var(--text-3); opacity: .75; }

.input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(4, 5, 13, .85);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .16);
}
input.error, select.error, textarea.error { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(251, 113, 133, .12); }
input.valid, select.valid, textarea.valid { border-color: rgba(52, 211, 153, .55); }

.field-error {
  display: none;
  font-size: .8rem;
  color: var(--rose);
}
.field-error.show { display: block; }

.char-counter { font-size: .76rem; color: var(--text-3); text-align: right; }
.char-counter.warning { color: var(--amber); }
.char-counter.error   { color: var(--rose); }

.pc-code-required {
  display: none;
  font-size: .8rem;
  color: var(--amber);
}
.pc-code-required.show { display: block; }

/* Alert messages (shared by every page's JS) */
.msg {
  display: none;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  line-height: 1.55;
  border: 1px solid;
}
.msg.show, .msg[style*="block"] { display: block; }
.msg--error,   .error-msg   { background: rgba(251,113,133,.1); border: 1px solid rgba(251,113,133,.45); color: #fda4af; }
.msg--success, .success-msg { background: rgba(52,211,153,.1);  border: 1px solid rgba(52,211,153,.45);  color: #6ee7b7; }
.msg--info,    .info-msg    { background: rgba(99,102,241,.1);  border: 1px solid rgba(99,102,241,.45);  color: #c7d2fe; }
.msg--warn,    .warning-box { background: rgba(251,191,36,.1);  border: 1px solid rgba(251,191,36,.45);  color: #fcd34d; }
.error-msg, .success-msg, .info-msg, .warning-box {
  display: none;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .88rem;
  line-height: 1.55;
}

/* payment-success.html toggles these with .className = 'message success|error' */
.message {
  display: none;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  line-height: 1.6;
  text-align: left;
  border: 1px solid var(--line-2);
  color: var(--text-2);
}
.message.success { background: rgba(52,211,153,.1);  border-color: rgba(52,211,153,.45); color: #6ee7b7; }
.message.error   { background: rgba(251,113,133,.1); border-color: rgba(251,113,133,.45); color: #fda4af; }
.message.warning { background: rgba(251,191,36,.1);  border-color: rgba(251,191,36,.45); color: #fcd34d; }
.message strong  { color: inherit; }

.form-result { display: none; padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .9rem; }
.form-result.success { display: block; background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.45); color: #6ee7b7; }
.form-result.error   { display: block; background: rgba(251,113,133,.1); border: 1px solid rgba(251,113,133,.45); color: #fda4af; }

/* License code display */
.license-display, .license-box {
  width: 100%;
  min-height: 130px;
  padding: 1.1rem;
  border-radius: var(--r-md);
  background: rgba(2, 3, 8, .9);
  border: 1px solid rgba(52, 211, 153, .35);
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 1.65;
  color: #6ee7b7;
  white-space: pre-wrap;
  word-break: break-all;
  text-align: left;
  resize: none;
  outline: none;
  box-shadow: inset 0 0 40px -20px rgba(52, 211, 153, .6);
}
.license-box { margin-top: .5rem; }
.license-box.lifetime { border-color: rgba(251, 191, 36, .45); color: #fcd34d; box-shadow: inset 0 0 40px -20px rgba(251,191,36,.6); }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(2, 3, 8, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--gutter);
  overflow-y: auto;
}
.modal-overlay.active { display: grid; place-items: center; }
.modal-content {
  width: min(520px, 100%);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, #0d1230, #070a18);
  border: 1px solid rgba(139, 92, 246, .4);
  box-shadow: 0 60px 120px -50px #000, 0 0 90px -50px rgba(139, 92, 246, .9);
  animation: modal-in .4s var(--ease-out);
  max-height: calc(100dvh - var(--gutter) * 2);
  overflow-y: auto;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-content h3 { margin-bottom: .5rem; }
.modal-content > p { color: var(--text-2); font-size: .92rem; margin-bottom: 1.5rem; }
.modal-content .form { margin-bottom: 1.25rem; }
.modal-content > * + .msg,
.modal-content > * + .error-msg,
.modal-content > * + .success-msg,
.modal-content > * + .info-msg,
.modal-content > * + .warning-box { margin-top: .9rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-2);
  transition: background .25s, color .25s;
}
.modal-close:hover { background: var(--glass-2); color: var(--text); }
.modal-head { position: relative; }

.modal-buttons { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.25rem; }
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .7rem 1.4rem;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  transition: transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 10px 26px -14px rgba(139,92,246,.9);
}
.copy-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(139,92,246,1); }
.close-btn {
  min-height: 46px;
  padding: .7rem 1.4rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  color: var(--text-2);
  font-size: .88rem;
  transition: background .25s, color .25s;
}
.close-btn:hover { background: var(--glass-2); color: var(--text); }

/* ------------------------------------------------------ 20. GUIDES (TIPS) */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 500;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-2); background: var(--glass-2); }
.filter-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 26px -14px rgba(139, 92, 246, .95);
}

.guides { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
@media (min-width: 680px)  { .guides { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .guides { grid-template-columns: repeat(3, 1fr); } }

.guide { display: flex; flex-direction: column; gap: .85rem; text-align: left; align-items: stretch; }
.guide.is-hidden { display: none; }
.guide__meta { display: flex; align-items: center; gap: .75rem; font-size: .78rem; color: var(--text-3); }
.guide__toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: .5rem;
  color: var(--cyan-2);
  font-size: .86rem;
  font-weight: 600;
}
.guide__toggle svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.guide.is-open .guide__toggle svg { transform: rotate(180deg); }
.guide__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.guide.is-open .guide__body { grid-template-rows: 1fr; }
.guide__body > div { overflow: hidden; }
.guide__body p { color: var(--text-2); font-size: .9rem; margin-top: .85rem; }
.guide__body strong { color: var(--text); }

/* ------------------------------------------------- 21. LEGAL PROSE (PRIVACY) */
.legal-layout { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 980px) { .legal-layout { grid-template-columns: 260px 1fr; } }

.toc {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  padding: 1.35rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.toc h4 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); margin-bottom: .9rem; }
.toc a {
  display: block;
  padding: .45rem .6rem;
  border-radius: var(--r-xs);
  border-left: 2px solid transparent;
  font-size: .88rem;
  color: var(--text-2);
  transition: all .25s;
}
.toc a:hover, .toc a.is-active { color: var(--text); background: var(--glass-2); border-left-color: var(--violet); }
@media (max-width: 979px) { .toc { position: static; } }

.prose { max-width: 72ch; }
.prose h2 {
  margin-top: 0;
  padding-bottom: .85rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.prose h3 {
  margin-top: 2.4rem;
  margin-bottom: .7rem;
  font-size: clamp(1.02rem, .96rem + .4vw, 1.2rem);
  color: var(--violet-2);
}
.prose p, .prose li { color: var(--text-2); font-size: .96rem; }
.prose p + p { margin-top: .85rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--cyan-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--cyan); }
.prose ul { display: grid; gap: .6rem; margin: 1rem 0; }
.prose ul li { position: relative; padding-left: 1.35rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.prose .callout { margin: 1.5rem 0; }
/* Buttons and leads keep their own look even inside prose */
.prose a.btn { color: #fff; text-decoration: none; }
.prose .lead { font-size: clamp(1.05rem, 1rem + .45vw, 1.3rem); color: var(--text-2); }
.prose .cta-band { text-align: center; }
.legal-section + .legal-section { margin-top: clamp(3rem, 7vw, 5rem); }
.legal-section { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* ------------------------------------------------- 22. STATUS PAGES (PAYMENT) */
.status-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem) var(--gutter);
}
.status-card {
  width: min(620px, 100%);
  padding: clamp(1.75rem, 5vw, 3rem);
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, rgba(139,92,246,.1), rgba(6,8,20,.9));
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), 0 0 100px -50px rgba(139, 92, 246, .9);
  text-align: center;
}
.status-card > .form, .status-card > form { text-align: left; }
.status-icon {
  width: 78px; height: 78px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .4);
  color: var(--mint);
  animation: pop .55s var(--ease-out) both;
}
.status-icon svg { width: 38px; height: 38px; }
.status-icon--warn { background: rgba(251,191,36,.12); border-color: rgba(251,191,36,.4); color: var(--amber); }
@keyframes pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }

.session-info {
  margin: 1.25rem 0;
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.3);
  font-size: .82rem;
  color: var(--text-2);
}
.session-id { font-family: var(--font-mono); font-size: .7rem; color: var(--cyan-2); word-break: break-all; margin-top: .35rem; }

.license-info { display: grid; gap: .35rem; justify-items: center; margin: 1.5rem 0 1rem; }
.plan-badge {
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan-lifetime { background: rgba(251,191,36,.15); border: 1px solid rgba(251,191,36,.45); color: #fcd34d; }
.plan-anual    { background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.45); color: #d8b4fe; }
.plan-mensual  { background: rgba(96,165,250,.15); border: 1px solid rgba(96,165,250,.45); color: #93c5fd; }
.plan-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.expiry { font-size: .85rem; color: var(--text-3); }
.expiry.lifetime { color: var(--amber); }

.instructions {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  text-align: left;
}
.instructions strong { display: block; margin-bottom: .75rem; font-family: var(--font-display); font-size: .92rem; }
.instructions ol { display: grid; gap: .5rem; counter-reset: ins; }
.instructions li {
  position: relative;
  padding-left: 2rem;
  font-size: .9rem;
  color: var(--text-2);
}
.instructions li::before {
  counter-increment: ins;
  content: counter(ins);
  position: absolute;
  left: 0; top: .05em;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(139,92,246,.2);
  border: 1px solid rgba(139,92,246,.45);
  font-size: .72rem;
  font-weight: 700;
  color: var(--violet-2);
}

/* ----------------------------------------------------------- 23. FOOTER */
.footer {
  margin-top: clamp(3rem, 8vw, 6rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, .05));
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer__about p { color: var(--text-3); font-size: .9rem; max-width: 34ch; margin-top: 1rem; }
.footer h4 {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { font-size: .92rem; color: var(--text-2); transition: color .25s, transform .25s; display: inline-block; }
.footer__col a:hover { color: var(--cyan-2); transform: translateX(3px); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--text-3);
}
.footer__bottom p { margin: 0; }

/* ------------------------------------------------- 24. MOTION & UTILITIES */
/* The hidden state is gated behind .js-reveal (set on <html> by an inline
   snippet in each page's head). If the script never runs, nothing is ever
   hidden — an animation must never be able to swallow real content. */
.reveal {
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; will-change: auto; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.nowrap { white-space: nowrap; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1.5rem; }

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
  border-radius: var(--r-xl);
  border: 1px solid rgba(139, 92, 246, .35);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(139,92,246,.24), transparent 65%),
    radial-gradient(600px 300px at 85% 100%, rgba(34,211,238,.18), transparent 65%),
    rgba(255,255,255,.03);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: .9rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 1.9rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .js-reveal .reveal { opacity: 1; transform: none; }
  .aurora::before, .aurora::after { animation: none; }
  .marquee__track { animation: none; }
  .showcase__chip { animation: none; }
}

/* -------------------------------------------- 25. RESPONSIVE REFINEMENTS */
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

@media (max-width: 979px) {
  .showcase__frame { transform: none; }
  .showcase__chip--1 { left: 2%; }
  .showcase__chip--2 { right: 2%; }
  .showcase__chip--3 { left: 6%; bottom: 2%; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .btn--nav { display: none; }
  .nav__toggle { display: grid; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .hero__cta .btn { width: 100%; }
  .showcase__chip { font-size: .7rem; padding: .42rem .7rem; }
  .showcase__chip--3 { display: none; }
  .modal-buttons { flex-direction: column; }
  .modal-buttons .copy-btn, .modal-buttons .close-btn { width: 100%; }
  .rating-bar { grid-template-columns: 2.8rem 1fr 2.4rem; font-size: .78rem; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
  .brand__name { font-size: .95rem; }
  .brand img { width: 32px; height: 32px; }
}

/* Very wide screens — keep line lengths readable, scale the canvas */
@media (min-width: 1600px) {
  :root { --maxw: 1320px; }
}
