/* SUPERCARTAS landing
   Register: brand. Dark, muted portfolio surface with the logo as the one
   bold moment. Committed color only in the hero + P/L accents. */

:root {
  --bg:         oklch(0.15 0.03 250);
  --surface:    oklch(0.20 0.03 250);
  --surface-2:  oklch(0.24 0.03 250);
  --ink:        oklch(0.96 0.01 250);
  --ink-muted:  oklch(0.72 0.02 250);
  --ink-faint:  oklch(0.55 0.02 250);
  --brand:      oklch(0.60 0.19 250);
  --brand-ink:  oklch(0.16 0.05 250);
  --gold:       oklch(0.78 0.15 80);
  --gain:       oklch(0.70 0.17 145);
  --loss:       oklch(0.65 0.22 22);
  --line:       oklch(0.30 0.02 250 / 0.6);
  --line-soft:  oklch(0.30 0.02 250 / 0.35);

  --shadow-1: 0 1px 0 oklch(1 0 0 / 0.04) inset, 0 20px 40px -30px oklch(0 0 0 / 0.6);
  --radius: 14px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--brand); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
:where(h1, h2, h3, h4) {
  font-family: "Bricolage Grotesque", "Manrope", ui-sans-serif, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; max-width: 68ch; }

.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;
}
.skip {
  position: absolute; top: -100px; left: 12px;
  background: var(--surface); color: var(--ink);
  padding: 10px 14px; border-radius: 8px; z-index: 100;
  transition: top 200ms var(--ease-out);
}
.skip:focus { top: 12px; }

/* ------------------------------------------------------------ layout */

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }

.section { padding: 96px 0; border-top: 1px solid var(--line-soft); }
.section:first-of-type { border-top: 0; }
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  color: var(--ink);
}
.tag {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

/* ------------------------------------------------------------ nav */

.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { height: 26px; width: auto; }
.nav-links {
  display: none; gap: 28px; margin-left: auto; margin-right: 8px;
  font-size: 0.9375rem; color: var(--ink-muted); font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 720px) { .nav-links { display: inline-flex; } }

.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 18px;
  min-height: 44px;
  font: inherit; font-weight: 700;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out),
              color 180ms var(--ease-out), transform 120ms var(--ease-out);
}
.btn:hover { background: color-mix(in oklab, var(--surface-2) 60%, var(--surface)); border-color: var(--ink-faint); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-sm { padding: 8px 14px; min-height: 36px; font-size: 0.875rem; border-radius: 8px; }
.btn-primary {
  --btn-bg: var(--brand);
  --btn-fg: oklch(0.98 0.01 250);
  border-color: color-mix(in oklab, var(--brand) 70%, black);
}
.btn-primary:hover {
  background: color-mix(in oklab, var(--brand) 88%, white);
  border-color: color-mix(in oklab, var(--brand) 60%, black);
  color: oklch(0.99 0.01 250);
}

/* ------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding: 56px 24px 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(60% 60% at 30% 40%,
              color-mix(in oklab, var(--brand) 22%, transparent),
              transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "copy"
    "form";
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .hero { padding: 88px 24px 72px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-areas:
      "logo copy"
      "logo form";
    column-gap: 56px;
    row-gap: 40px;
    align-items: end;
  }
}

.hero-logo { grid-area: logo; }
.hero-logo img {
  width: 100%; max-width: 720px; height: auto;
  filter: drop-shadow(0 30px 40px oklch(0 0 0 / 0.4))
          drop-shadow(0 4px 12px oklch(0 0 0 / 0.25));
}
@media (min-width: 900px) {
  .hero-logo img { max-width: none; margin-left: -24px; }
}

.hero-copy { grid-area: copy; }
@media (min-width: 900px) { .hero-copy { text-align: right; margin-left: auto; max-width: 460px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 12px; border: 1px solid var(--line);
  border-radius: 999px; background: color-mix(in oklab, var(--surface) 60%, transparent);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5.8vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
}
.h1-em {
  display: block;
  font-weight: 500;
  color: var(--ink-muted);
  font-style: italic;
  font-variation-settings: "opsz" 96;
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 42ch;
}
@media (min-width: 900px) { .hero-sub { margin-left: auto; } }

.hero-form-wrap { grid-area: form; }
@media (min-width: 900px) {
  .hero-form-wrap { max-width: 460px; margin-left: auto; }
}

.waitlist {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.waitlist-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 480px) {
  .waitlist-row { grid-template-columns: 1fr auto; }
}
.waitlist input[type="email"] {
  padding: 12px 14px;
  min-height: 44px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9375rem;
  transition: border-color 160ms var(--ease-out);
}
.waitlist input[type="email"]::placeholder { color: var(--ink-faint); }
.waitlist input[type="email"]:focus { border-color: var(--brand); outline: none; }
.waitlist input[aria-invalid="true"] { border-color: var(--loss); }

.waitlist-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 0.8125rem; color: var(--ink-faint);
}
.waitlist-note strong { color: var(--ink-muted); font-weight: 700; }
.dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gain);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--gain) 22%, transparent);
}
.waitlist-msg {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--gain);
}

.hero-rule {
  height: 1px;
  margin-top: 56px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

/* ------------------------------------------------------------ features */

.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
  .feat-hero { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .feat-grid { grid-template-columns: 3fr 2fr; }
  .feat-hero {
    grid-column: 1 / 2;
    grid-row: 1 / span 3;
  }
}

.feat {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.feat:hover { border-color: var(--ink-faint); background: color-mix(in oklab, var(--surface) 60%, var(--surface-2)); }
.feat h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.125rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.feat p { color: var(--ink-muted); font-size: 0.9375rem; }
.feat-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: color-mix(in oklab, var(--brand) 14%, var(--surface));
  color: var(--brand);
  margin-bottom: 18px;
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
}

.feat-hero {
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  background: var(--surface);
  border-color: var(--line);
}
.feat-hero .feat-head h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  margin-bottom: 12px;
}
.feat-hero .feat-head p { color: var(--ink-muted); }

.chart-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px 12px;
  background: color-mix(in oklab, var(--bg) 60%, var(--surface));
}
.chart-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 12px;
}
.chart-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 4px;
}
.chart-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.chart-cent { color: var(--ink-faint); font-weight: 500; }
.chart-delta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--surface) 50%, transparent);
  font-variant-numeric: tabular-nums;
}
.chart-delta-up { color: var(--gain); border-color: color-mix(in oklab, var(--gain) 40%, var(--line)); }
.chart-pct { color: var(--ink-muted); font-weight: 500; }
.chart-range { color: var(--ink-faint); font-weight: 500; }

.chart-svg { width: 100%; height: 180px; display: block; }
.chart-grid line { stroke: var(--line-soft); stroke-dasharray: 3 4; }
.chart-dot { stroke: var(--bg); stroke-width: 2; }
.chart-dot-up   { fill: var(--gain); }
.chart-dot-down { fill: var(--loss); }
.chart-dot-now  { fill: var(--gain);
  filter: drop-shadow(0 0 8px color-mix(in oklab, var(--gain) 55%, transparent)); }

.chart-ticks {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-top: 4px;
  font-size: 0.75rem; color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.chart-ticks span { text-align: center; }

/* ------------------------------------------------------------ diffs */

.section-diffs .section-head { margin-bottom: 32px; }
.diffs {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line-soft);
}
.diffs li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: padding 200ms var(--ease-out);
}
.diffs li:hover { padding-left: 12px; }
.diff-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.diff-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--ink);
  font-weight: 500;
}

/* ------------------------------------------------------------ pricing */

.beta-banner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--gold) 12%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--gold) 30%, var(--line));
  color: var(--gold);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}
.beta-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--gold) 22%, transparent);
}

.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .plans { grid-template-columns: 1fr 1fr; }
}

.plan {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 24px;
}
.plan-pro {
  border-color: color-mix(in oklab, var(--gold) 45%, var(--line));
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--gold) 6%, var(--surface)),
      var(--surface) 60%);
}
.plan-ribbon {
  position: absolute; top: -12px; right: 24px;
  padding: 4px 12px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--brand-ink);
  background: var(--gold);
  border-radius: 999px;
  text-transform: uppercase;
}
.plan-head { display: flex; flex-direction: column; gap: 6px; }
.plan-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.plan-price { display: flex; align-items: baseline; gap: 10px; }
.plan-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-unit { font-size: 0.875rem; color: var(--ink-faint); }
.plan-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.plan-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}
.plan-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 25%, transparent);
  border: 1px solid var(--brand);
}
.plan-list li::after {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------ FAQ */

.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color 160ms var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--brand); }
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; left: 3px; right: 3px; top: calc(50% - 1px);
  height: 1.5px; background: var(--ink-muted);
  transition: transform 240ms var(--ease-out), background 160ms var(--ease-out);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--brand); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-out);
}
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; min-height: 0; }
.faq-inner p {
  padding: 0 4px 22px;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  max-width: 62ch;
}

/* ------------------------------------------------------------ footer */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 56px;
  background: color-mix(in oklab, var(--bg) 92%, black);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    gap: 32px;
  }
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { height: 21px; width: auto; }
.footer-brand p { font-size: 0.8125rem; color: var(--ink-faint); }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.footer-links a:hover { color: var(--ink); }
.footer-legal {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.8125rem; color: var(--ink-faint);
}
.footer-legal a[aria-disabled="true"] { color: var(--ink-faint); cursor: not-allowed; }
.footer-legal a[aria-disabled="true"]:hover { color: var(--ink-faint); }

/* ------------------------------------------------------------ reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================ P2 additions */

.btn-lg { padding: 14px 22px; min-height: 50px; font-size: 1.0625rem; }
.btn-gold {
  --btn-bg: var(--gold);
  --btn-fg: oklch(0.2 0.05 80);
  border-color: color-mix(in oklab, var(--gold) 70%, black);
  font-weight: 700;
}
.btn-gold:hover {
  background: color-mix(in oklab, var(--gold) 88%, white);
  color: oklch(0.18 0.05 80);
}

.store-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.store-badges-center { justify-content: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.store-badge:hover { border-color: var(--ink-faint); color: var(--ink); background: var(--surface-2); }
.store-badge svg { flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 0.6875rem; color: var(--ink-faint); }
.store-badge strong { font-size: 0.9375rem; font-weight: 700; }

/* ------------------------------------------------------------ hero2 */

.hero2 {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
}
.hero2::before {
  content: "";
  position: absolute; inset: -20% -30% auto;
  height: 120%;
  background: radial-gradient(45% 55% at 72% 40%,
              color-mix(in oklab, var(--brand) 16%, transparent),
              transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}
.hero2-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero2 { padding: 88px 0 72px; }
  .hero2-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
}
.hero2-logo { margin-bottom: 28px; }
.hero2-logo img {
  width: min(100%, 460px); height: auto;
  filter: drop-shadow(0 20px 30px oklch(0 0 0 / 0.4));
}
.hero2-copy h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.04;
}
.h1-hi { color: var(--gain); }
.hero2-copy .hero-sub { margin-top: 20px; }
.hero2-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.hero2-visual {
  position: relative;
  display: flex; justify-content: center;
  padding: 24px 0;
}
.phone-hero { width: 280px; }
@media (min-width: 960px) { .phone-hero { width: 300px; } }

.float-chip {
  position: absolute;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px;
  background: color-mix(in oklab, var(--surface) 86%, transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.float-chip-a { top: 12%; left: 0; }
.float-chip-b { bottom: 10%; right: 0; }
@media (max-width: 640px) {
  .float-chip-a { left: -6px; }
  .float-chip-b { right: -6px; }
}
.float-label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint);
}
.float-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.125rem; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.float-delta { font-size: 0.75rem; font-weight: 700; color: var(--gain); }

/* ------------------------------------------------------------ stats band */

.stats { padding: 24px 0 8px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.45; }

.section-sub {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  max-width: 54ch;
}

/* ------------------------------------------------------------ bento */

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento { grid-template-columns: repeat(3, 1fr); } }
.bento-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
  display: flex; flex-direction: column;
}
.bento-card:hover { border-color: var(--ink-faint); background: color-mix(in oklab, var(--surface) 60%, var(--surface-2)); }
.bento-card h3 {
  font-size: 1.125rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.bento-card p { color: var(--ink-muted); font-size: 0.9375rem; }
@media (min-width: 1024px) { .bento-wide { grid-column: span 2; } }
.bento-chart { width: 100%; height: 110px; margin-top: auto; padding-top: 20px; }

/* ------------------------------------------------------------ AI chips */

.feat-ai { position: relative; }
.ai-chip {
  position: absolute; top: 24px; right: 24px;
  padding: 3px 10px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--brand), oklch(0.62 0.18 300));
  border-radius: 999px;
  box-shadow: 0 0 14px color-mix(in oklab, var(--brand) 45%, transparent);
}
.ai-tier {
  display: inline-block;
  padding: 1px 9px;
  font-size: 0.75rem; font-weight: 700;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 20%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--brand) 40%, var(--line));
  color: var(--ink);
  white-space: nowrap;
}
.ai-tier-pro {
  background: color-mix(in oklab, var(--gold) 18%, var(--surface));
  border-color: color-mix(in oklab, var(--gold) 45%, var(--line));
  color: var(--gold);
}

/* ------------------------------------------------------------ phone mockup */

.phone {
  position: relative;
  width: 250px;
  max-width: 100%;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  border-radius: 38px;
  background: oklch(0.12 0.02 250);
  border: 3px solid oklch(0.32 0.02 250);
  box-shadow:
    0 0 0 1px oklch(0.08 0.01 250),
    inset 0 0 0 2px oklch(0.08 0.01 250),
    0 40px 70px -30px oklch(0 0 0 / 0.7);
  padding: 10px;
}
.phone-island {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 74px; height: 20px;
  border-radius: 999px;
  background: oklch(0.05 0.01 250);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(0.17 0.03 250), oklch(0.13 0.03 250));
  border: 1px solid oklch(0.25 0.02 250);
}

.app {
  height: 100%;
  display: flex; flex-direction: column;
  padding: 12px 14px 14px;
  gap: 10px;
  font-size: 11px;
}
.app-status {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-muted);
  font-size: 10px; font-weight: 700;
  padding: 2px 4px 0;
}
.app-sig {
  width: 34px; height: 8px;
  border-radius: 3px;
  background: repeating-linear-gradient(to right, var(--ink-faint) 0 4px, transparent 4px 7px);
  opacity: 0.8;
}
.app-head { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.app-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.app-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.app-amt em { font-style: normal; color: var(--ink-faint); font-weight: 500; }
.app-delta { font-size: 10px; font-weight: 700; color: var(--gain); }
.app-chart { width: 100%; height: 64px; }
.app-tabs {
  display: flex; gap: 6px;
  font-size: 9px; font-weight: 700;
  color: var(--ink-faint);
}
.app-tabs span { padding: 3px 8px; border-radius: 999px; }
.app-tabs .on { background: var(--surface-2); color: var(--ink); }
.app-list { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.app-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px; align-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  background: oklch(0.20 0.03 250 / 0.7);
  border: 1px solid oklch(0.28 0.02 250 / 0.6);
}
.app-thumb {
  width: 20px; height: 28px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--brand), oklch(0.45 0.12 290));
  opacity: 0.85;
}
.app-name { display: flex; flex-direction: column; min-width: 0; }
.app-name strong {
  font-size: 10px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-name small { font-size: 8.5px; color: var(--ink-faint); }
.app-price {
  display: flex; flex-direction: column; align-items: flex-end;
  font-size: 10px; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.app-price em { font-style: normal; font-size: 8.5px; font-weight: 700; }
.app-price .up { color: var(--gain); }
.app-price .down { color: var(--loss); }

/* scan screen */
.scan {
  height: 100%;
  display: flex; flex-direction: column;
  padding: 12px 14px 16px;
  gap: 12px;
}
.scan-view {
  position: relative;
  flex: 1;
  border-radius: 14px;
  background: oklch(0.10 0.02 250);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scan-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2.5px solid var(--brand);
  opacity: 0.9;
}
.scan-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.scan-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.scan-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.scan-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }
.scan-card {
  width: 58%;
  aspect-ratio: 63 / 88;
  border-radius: 8px;
  background: linear-gradient(160deg, oklch(0.35 0.08 270), oklch(0.25 0.06 250));
  border: 2px solid oklch(0.45 0.06 260);
  padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.scan-card-art {
  flex: 1;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--brand), oklch(0.55 0.15 320));
  opacity: 0.8;
}
.scan-card-lines { display: flex; flex-direction: column; gap: 4px; }
.scan-card-lines i {
  height: 5px; border-radius: 3px;
  background: oklch(0.6 0.02 250 / 0.5);
}
.scan-card-lines i:last-child { width: 60%; }
.scan-beam {
  position: absolute; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  box-shadow: 0 0 12px var(--brand);
  animation: beam 2.4s ease-in-out infinite;
}
@keyframes beam {
  0%, 100% { top: 16%; }
  50% { top: 82%; }
}
@media (prefers-reduced-motion: reduce) { .scan-beam { animation: none; top: 50%; } }
.scan-result {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: oklch(0.20 0.03 250 / 0.85);
  border: 1px solid color-mix(in oklab, var(--brand) 35%, var(--line));
}
.scan-result .ai-chip { position: static; flex-shrink: 0; }
.scan-result-txt { display: flex; flex-direction: column; min-width: 0; }
.scan-result-txt strong {
  font-size: 10.5px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scan-result-txt small { font-size: 9px; color: var(--gain); font-weight: 700; }
.scan-shutter {
  width: 44px; height: 44px;
  margin: 0 auto;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: oklch(0.9 0.01 250 / 0.15);
}

/* ------------------------------------------------------------ strip */

.strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .strip-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
}
.strip-copy h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.game-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.game-chips span {
  padding: 6px 14px;
  font-size: 0.8125rem; font-weight: 700;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ------------------------------------------------------------ pro card */

.pro-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, var(--gold) 35%, var(--line));
  background:
    radial-gradient(80% 100% at 85% 0%,
      color-mix(in oklab, var(--gold) 10%, transparent),
      transparent 60%),
    var(--surface);
}
@media (min-width: 960px) {
  .pro-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
}
.pro-badge {
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 18px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(0.2 0.05 80);
  background: var(--gold);
  border-radius: 999px;
}
.pro-copy h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.pro-copy p { color: var(--ink-muted); }
.pro-price { display: flex; align-items: baseline; gap: 12px; margin: 24px 0; }
.pro-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700; color: var(--ink);
  line-height: 1;
}
.pro-unit { font-size: 0.875rem; color: var(--ink-faint); max-width: 24ch; }

.pro-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in oklab, var(--bg) 55%, var(--surface));
  font-size: 0.875rem;
}
.pro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-muted);
}
.pro-row:last-child { border-bottom: 0; }
.pro-row-head {
  background: var(--surface-2);
  font-weight: 700; color: var(--ink);
  font-size: 0.8125rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.pro-col { color: var(--gold); font-weight: 700; }
.pro-row-head .pro-col { color: var(--gold); }

/* ------------------------------------------------------------ final CTA */

.final-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 90% at 50% 0%,
      color-mix(in oklab, var(--brand) 12%, transparent),
      transparent 70%),
    var(--surface);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.final-icon {
  width: 96px; height: 96px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 22px;
  background: linear-gradient(160deg, oklch(0.30 0.07 255), oklch(0.17 0.05 260));
  border: 1px solid oklch(0.42 0.05 260 / 0.6);
  box-shadow:
    0 18px 40px -12px oklch(0 0 0 / 0.75),
    0 0 26px color-mix(in oklab, var(--brand) 28%, transparent),
    inset 0 1px 0 oklch(1 0 0 / 0.18);
}
.final-cta h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.final-cta p { color: var(--ink-muted); max-width: 46ch; }

/* ------------------------------------------------------------ footer cols */

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
@media (min-width: 760px) {
  .footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.875rem; color: var(--ink-muted); }
.footer-col a:hover { color: var(--ink); }
.footer-col-title {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8125rem; color: var(--ink-faint);
}

/* ------------------------------------------------------------ ticker (from P3) */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: color-mix(in oklab, var(--bg) 80%, black);
  padding: 8px 0;
}
.ticker-track {
  display: flex; gap: 40px;
  width: max-content;
  animation: ticker 46s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
.tk {
  font-size: 0.75rem; font-weight: 700;
  color: var(--ink-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.tk em { font-style: normal; margin-left: 6px; }
.tk .up { color: var(--gain); }
.tk .down { color: var(--loss); }

/* fix: flex column align-items:stretch was inflating the wordmark width */
.footer-brand img { align-self: flex-start; }

/* ------------------------------------------------------------ nav Pro (gold) */

.nav-pro {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 13px;
  border: 1px solid color-mix(in oklab, var(--gold) 50%, var(--line));
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  background: linear-gradient(120deg,
    color-mix(in oklab, var(--gold) 14%, transparent),
    transparent 65%);
  box-shadow: 0 0 12px color-mix(in oklab, var(--gold) 15%, transparent);
}
.nav-pro { font-size: 0.9375rem; }
.nav-pro span { font-size: 0.75em; }
.nav-pro:hover {
  color: color-mix(in oklab, var(--gold) 75%, white);
  border-color: var(--gold);
  box-shadow: 0 0 18px color-mix(in oklab, var(--gold) 30%, transparent);
}

/* CTA button spans exactly the combined width of the two store badges */
.hero2-cta { align-items: stretch; width: max-content; max-width: 100%; }
.hero2-cta .btn-lg { width: 100%; }
.hero2-cta .store-badges { flex-wrap: nowrap; }
@media (max-width: 480px) {
  .hero2-cta { width: 100%; }
  .hero2-cta .store-badges { flex-wrap: wrap; }
}

/* hero2 copy is left-aligned; neutralize the old right-aligned hero rule */
.hero2-copy .hero-sub { margin-left: 0; }

/* Pro pill sits between nav links and the app CTA */
.nav-inner .nav-pro { margin-left: auto; }
@media (min-width: 720px) { .nav-inner .nav-pro { margin-left: 0; } }

/* ------------------------------------------------------------ índice SUPERCARTAS */

.soon-chip {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-ink);
  background: linear-gradient(120deg, var(--brand), oklch(0.62 0.18 300));
  border-radius: 999px;
  box-shadow: 0 0 14px color-mix(in oklab, var(--brand) 40%, transparent);
}

.index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .index-grid { grid-template-columns: repeat(3, 1fr); } }
.idx {
  padding: 24px;
  background: color-mix(in oklab, var(--bg) 55%, var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.idx:hover { border-color: var(--ink-faint); transform: translateY(-2px); }
.idx-head { display: flex; flex-direction: column; gap: 2px; }
.idx-code {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.0625rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.idx-era {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint);
}
.idx-quote { display: flex; align-items: baseline; gap: 10px; }
.idx-value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.625rem; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.idx-delta { font-size: 0.8125rem; font-weight: 700; }
.idx-delta.up { color: var(--gain); }
.idx-delta.down { color: var(--loss); }
.idx-spark { width: 100%; height: 48px; }
.idx-note { font-size: 0.75rem; color: var(--ink-faint); }
.market-note { margin-top: 20px; font-size: 0.8125rem; color: var(--ink-faint); }

/* ------------------------------------------------------------ social / comunidad */

.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.post-card:hover { border-color: var(--ink-faint); transform: translateY(-2px); }
.post-head { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700;
  color: oklch(0.98 0.01 250);
  background: var(--av, var(--brand));
  flex-shrink: 0;
}
.post-user { display: flex; flex-direction: column; line-height: 1.3; }
.post-user strong { font-size: 0.9375rem; color: var(--ink); }
.post-user small { font-size: 0.75rem; color: var(--ink-faint); }
.post-media {
  border-radius: 10px;
  background: color-mix(in oklab, var(--bg) 60%, var(--surface));
  border: 1px solid var(--line-soft);
  padding: 18px;
  display: flex; justify-content: center;
}
.post-thumb {
  width: 84px;
  aspect-ratio: 63 / 88;
  border-radius: 6px;
  background: var(--card, linear-gradient(150deg, var(--brand), oklch(0.4 0.1 300)));
  box-shadow: 0 10px 22px -10px oklch(0 0 0 / 0.6);
}
.post-text { font-size: 0.9375rem; color: var(--ink-muted); }
.post-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.8125rem; color: var(--ink-faint);
  margin-top: auto;
}
.post-tag {
  margin-left: auto;
  padding: 2px 10px;
  font-size: 0.6875rem; font-weight: 700;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 16%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--brand) 30%, var(--line));
  color: var(--ink-muted);
}
.social-cta { display: flex; justify-content: center; margin-top: 32px; }

/* ------------------------------------------------------------ AI badge (llamativo) */

.ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 11px 3px;
  border-radius: 999px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 0.82em;
  letter-spacing: 0.09em;
  line-height: 1.35;
  color: oklch(0.99 0.01 300);
  background: linear-gradient(115deg,
    oklch(0.55 0.22 262),
    oklch(0.58 0.26 305),
    oklch(0.63 0.25 340),
    oklch(0.58 0.26 305),
    oklch(0.55 0.22 262));
  background-size: 320% 100%;
  border: 1px solid oklch(0.75 0.15 305 / 0.55);
  box-shadow:
    0 0 14px oklch(0.6 0.25 310 / 0.5),
    0 0 34px oklch(0.6 0.25 310 / 0.22),
    inset 0 1px 0 oklch(1 0 0 / 0.3);
  animation: aiShift 3.6s ease-in-out infinite;
  vertical-align: baseline;
  white-space: nowrap;
}
.ai-badge::before {
  content: "✦";
  font-size: 0.85em;
  animation: aiSparkle 1.8s ease-in-out infinite;
}
@keyframes aiShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes aiSparkle {
  0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1; }
  50%      { transform: scale(1.35) rotate(20deg); opacity: 0.75; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-badge, .ai-badge::before { animation: none; }
}
.ai-badge-lg { font-size: 1em; padding: 4px 16px 5px; }

/* corner chip on cards reuses the same look */
.ai-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: oklch(0.99 0.01 300);
  background: linear-gradient(115deg,
    oklch(0.55 0.22 262),
    oklch(0.58 0.26 305),
    oklch(0.63 0.25 340),
    oklch(0.58 0.26 305),
    oklch(0.55 0.22 262));
  background-size: 320% 100%;
  border: 1px solid oklch(0.75 0.15 305 / 0.55);
  border-radius: 999px;
  box-shadow:
    0 0 14px oklch(0.6 0.25 310 / 0.5),
    0 0 34px oklch(0.6 0.25 310 / 0.22),
    inset 0 1px 0 oklch(1 0 0 / 0.3);
  animation: aiShift 3.6s ease-in-out infinite;
}
.ai-chip::before {
  content: "✦";
  font-size: 0.85em;
  animation: aiSparkle 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ai-chip, .ai-chip::before { animation: none; }
}

/* tiers: bebé = gradiente marca, Legendaria = dorado */
.ai-tier {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 11px;
  font-weight: 800;
  font-size: 0.78em;
  letter-spacing: 0.05em;
  border-radius: 999px;
  color: oklch(0.99 0.01 300);
  background: linear-gradient(115deg, oklch(0.52 0.19 255), oklch(0.58 0.22 290), oklch(0.52 0.19 255));
  background-size: 280% 100%;
  border: 1px solid oklch(0.7 0.14 275 / 0.5);
  box-shadow: 0 0 10px oklch(0.55 0.2 275 / 0.4);
  animation: aiShift 4s ease-in-out infinite;
  white-space: nowrap;
}
.ai-tier::before { content: "🍼"; font-size: 0.9em; }
.ai-tier-pro {
  color: oklch(0.18 0.05 60);
  background: linear-gradient(115deg,
    oklch(0.78 0.16 85),
    oklch(0.72 0.19 55),
    oklch(0.66 0.24 35),
    oklch(0.72 0.19 55),
    oklch(0.78 0.16 85));
  background-size: 320% 100%;
  border: 1px solid oklch(0.7 0.18 55 / 0.7);
  box-shadow:
    0 0 14px oklch(0.7 0.2 45 / 0.55),
    0 0 34px oklch(0.7 0.2 45 / 0.25),
    inset 0 1px 0 oklch(1 0 0 / 0.35);
}
.ai-tier-pro::before { content: "🌟"; }
@media (prefers-reduced-motion: reduce) { .ai-tier { animation: none; } }

/* ------------------------------------------------------------ mobile fixes */

/* Nav CTA must never wrap; free up room so logo + Pro + CTA fit on one line */
.nav-inner .btn { white-space: nowrap; }
@media (max-width: 560px) {
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .nav-brand img { height: 20px; }
  .nav-pro { padding: 4px 10px; font-size: 0.875rem; }
}

/* Free vs Pro comparison scrolls horizontally instead of squishing */
@media (max-width: 640px) {
  .pro-table { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .pro-row { min-width: 520px; }
}
