/* LeadIdeal v7 — Bento Brutalist · Hebrew RTL · FB lander
   Design rules: pure black bg, sharp 2px borders, brand gradient
   (violet → pink → amber) accent. Aurora used sparingly behind the
   hero to add warmth without softening the brutalist grid. */

:root {
  --bg: #0A0A0A;
  --bg-2: #141414;
  --fg: #FAFAFA;
  --muted: #8A8A8A;
  --dim: #2A2A2A;
  --accent: #A855F7;
  --accent-press: #7C3AED;
  --brand-violet: #7C3AED;
  --brand-pink: #EC4899;
  --brand-amber: #F59E0B;
  /* "OK / verified" used to be green (#34D399). Reusing the brand violet here
     so badges, consent-checked state, and trust-strip icons read as one
     accent color instead of a competing green. */
  --ok: #A855F7;
}

html, body {
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

a { color: inherit; }
* { box-sizing: border-box; }

/* ── Bento surfaces ───────────────────────────────────────────── */
.bento {
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: 8px;
  padding: 28px;
  position: relative;
}
.bento--soft {
  background: var(--bg-2);
  border: 2px solid var(--dim);
}
.bento--accent {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid var(--accent);
}
.bento--inverted {
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--fg);
}
.bento--clickable {
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.bento--clickable:hover { transform: translateY(-2px); border-color: var(--accent); }
.bento--accent.bento--clickable:hover { transform: translateY(-2px); background: var(--accent-press); border-color: var(--accent-press); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 2px solid var(--fg);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-press); border-color: var(--accent-press); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn--inverted { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.btn--full { width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .4; cursor: not-allowed; transform: none; }

/* ── Eyebrow / numeral / label ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.numeral {
  font-family: inherit;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--accent);
}

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(36px, 5.5vw, 64px); }
h2 { font-size: clamp(26px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; }

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  border-bottom: 2px solid var(--dim);
  padding: 18px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__icon { width: 38px; height: 38px; display: block; filter: brightness(0) invert(1); }
.nav__name { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; }

/* White-tint utility: collapses any colored PNG to pure white, alpha preserved */
.icon--white { filter: brightness(0) invert(1); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { padding: 56px 0 24px; position: relative; }
@media (min-width: 768px) { .hero { padding: 88px 0 40px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 2fr 1fr; gap: 16px; }
}
.hero-main { padding: 36px 28px 32px; }
@media (min-width: 900px) { .hero-main { padding: 56px 48px; } }

.hero-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border: 2px solid var(--fg);
  border-radius: 999px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .hero-pill { font-size: 13px; } }

.hero-headline { margin-bottom: 18px; }
.hero-headline .accent {
  color: var(--fg);
  animation: accent-reveal 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s 1 both;
}
.hero-sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 580px; }
@media (min-width: 768px) { .hero-sub { font-size: 19px; } }

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-rows: auto auto; gap: 16px; align-content: stretch; }

/* Hero ICP example — concrete, specific claim under the CTAs */
.hero-icp-example {
  margin-top: 22px;
  padding: 12px 16px 12px 14px;
  border-right: 3px solid var(--accent);
  background: rgba(168,85,247,.06);
  border-radius: 6px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero-icp-example__bullet { color: var(--accent); flex-shrink: 0; font-weight: 900; }
.hero-icp-example strong { color: var(--accent); font-weight: 800; }

/* Operational proof tiles (replace decorative stats) */
.proof-tile {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-tile__outcome {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.005em;
  padding-bottom: 4px;
}
.proof-tile__outcome .tabular,
.proof-tile__outcome .mono { color: var(--accent); font-weight: 900; }
.proof-tile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dim);
  font-size: 12px;
  color: var(--muted);
  direction: ltr;
}
.proof-tile__filename { color: var(--fg); font-weight: 700; }
.proof-tile__counter { color: var(--muted); }
.proof-tile__caption {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: 4px;
}

/* CSV-style proof rows */
.proof-csv__rows { display: flex; flex-direction: column; gap: 10px; direction: ltr; }
.proof-row {
  display: grid;
  grid-template-columns: minmax(80px, auto) 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.proof-row__cell { color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proof-row__badges { display: flex; gap: 6px; flex-shrink: 0; }

/* Masked data — looks like a real string, redacted for preview */
.masked {
  display: inline-block;
  background: var(--dim);
  color: transparent;
  letter-spacing: -0.05em;
  font-size: .9em;
  padding: 0 2px;
  border-radius: 2px;
  vertical-align: middle;
  user-select: none;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1.5px solid var(--ok);
  color: var(--ok);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(168,85,247,.06);
  font-family: 'Heebo', sans-serif;
  white-space: nowrap;
}
.badge--enrich {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
  background: rgba(236,72,153,.06);
}

/* Outreach draft tile */
.proof-outreach__fields { display: flex; flex-direction: column; gap: 6px; direction: ltr; }
.proof-outreach__field {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  font-size: 12px;
  align-items: baseline;
}
.proof-field__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 700;
}
.proof-field__value {
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.proof-outreach__body {
  font-size: 12px;
  line-height: 1.55;
  color: var(--fg);
  direction: ltr;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--dim);
}
.proof-outreach__body .dim { color: var(--muted); }

/* ── Section spacing ─────────────────────────────────────────── */
.section { padding: 32px 0 56px; }
@media (min-width: 768px) { .section { padding: 56px 0 88px; } }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ── Steps (how it works) ────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.step__num { display: block; font-size: 14px; font-weight: 900; letter-spacing: .2em; color: var(--accent); margin-bottom: 24px; }
.step__title { margin-bottom: 10px; }
.step__body { color: var(--muted); font-size: 15px; }

/* ── Sample table ─────────────────────────────────────────────── */
.sample-wrap { padding: 0; overflow: hidden; }
.sample-table { width: 100%; border-collapse: collapse; }
.sample-table thead { background: var(--bg-2); }
.sample-table th, .sample-table td {
  padding: 16px 20px;
  text-align: right;
  border-bottom: 2px solid var(--dim);
  font-size: 14px;
}
.sample-table th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.sample-table tbody tr:last-child td { border-bottom: none; }
.sample-table .col-en { direction: ltr; text-align: right; unicode-bidi: isolate; }

/* ── Pricing ──────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card { display: flex; flex-direction: column; padding: 28px 24px; }
.price-card__tier { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.price-card__name { font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.price-card__name-hint { font-size: 11px; color: var(--muted); }
.price-card__price-row { display: flex; align-items: baseline; gap: 10px; }
.price-card__nis { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; }
.price-card__usd { font-size: 14px; color: var(--muted); }
.price-card--accent .price-card__usd { color: rgba(10,10,10,.6); }
.price-card__note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.price-card--accent .price-card__note { color: rgba(10,10,10,.7); }
.price-card__features { list-style: none; padding: 0; margin: 22px 0; flex: 1; }
.price-card__features li { padding: 7px 0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.price-card__features li svg { flex-shrink: 0; margin-top: 3px; }
.price-card__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
}
.price-card--accent .price-card__badge {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}

/* ── Who-it's-for grid ──────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
@media (min-width: 700px)  { .who-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1100px) { .who-grid { grid-template-columns: repeat(4, 1fr); } }
.who-card {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-2);
  border: 2px solid var(--dim);
  transition: border-color .15s ease, transform .15s ease;
}
.who-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.who-card__name {
  font-weight: 900;
  font-size: 15px;
  color: var(--fg);
}
.who-card__sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Early-access card ──────────────────────────────────────── */
.early-access-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 2px solid var(--accent);
}
.early-access-card h3 {
  font-size: clamp(22px, 3vw, 30px);
}

/* ── Testimonial ──────────────────────────────────────────────── */
.testimonial { max-width: 760px; margin: 0 auto; }
.testimonial blockquote { margin: 0; font-size: clamp(18px, 2.3vw, 24px); font-weight: 700; line-height: 1.5; }
.testimonial-mark { color: var(--accent); font-size: 80px; line-height: 1; font-weight: 900; margin-bottom: 4px; display: block; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 2px solid var(--dim); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.testimonial-name { font-weight: 900; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; padding: 0; }
.faq-item { border-bottom: 2px solid var(--dim); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--accent); transition: transform .15s ease; flex-shrink: 0; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── Final CTA strip ─────────────────────────────────────────── */
.final-cta {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.final-cta__ducky {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 6px 0 rgba(10,10,10,.18));
  flex-shrink: 0;
  transform: scaleX(-1);
}
.final-cta__body { width: 100%; }
@media (min-width: 768px) {
  .final-cta { flex-direction: row; text-align: right; padding: 48px 56px; gap: 36px; }
  .final-cta__ducky { width: 140px; height: 140px; }
  .final-cta__body { flex: 1; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer { border-top: 2px solid var(--dim); padding: 32px 0; margin-top: 24px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }
.footer__inner a { transition: color .12s ease; }
.footer__inner a:hover { color: var(--fg); }

/* sticky-mobile removed — chat FAB is the sole mobile CTA */

/* ── Checkout page ───────────────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 2px solid var(--dim); }
.summary-row:last-child { border-bottom: none; }
.summary-row .lbl { font-size: 13px; color: var(--muted); font-weight: 700; }
.summary-row .val { font-size: 15px; font-weight: 800; }
.summary-row .val.big { font-size: 28px; font-variant-numeric: tabular-nums; }
.summary-row .val.accent { color: var(--accent); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--dim);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  transition: border-color .12s ease;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder { color: var(--muted); opacity: .55; }
.form-input.invalid, .form-select.invalid { border-color: var(--accent); }
.form-error { font-size: 12px; color: var(--accent); margin-top: 4px; min-height: 14px; font-weight: 700; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 2px solid var(--dim);
  border-radius: 6px;
  margin: 8px 0 16px;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease;
}
.consent:hover { border-color: var(--muted); }
.consent.checked { border-color: var(--accent); background: rgba(168,85,247,.06); }
.consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent-label { font-size: 14px; line-height: 1.55; }
.consent-label a { color: var(--accent); text-decoration: underline; }

.paypal-mount { margin-top: 8px; min-height: 56px; }
.paypal-gate {
  background: var(--bg-2);
  border: 2px dashed var(--dim);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 12px 18px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 700;
  z-index: 200;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast.ok { border-color: var(--ok); }

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-section { padding: 0 0 32px; }
@media (min-width: 768px) { .trust-section { padding: 8px 0 56px; } }
.trust-strip {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  align-items: center;
  font-size: 13px;
  color: var(--fg);
  font-weight: 700;
}
@media (min-width: 768px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); gap: 14px 24px; padding: 18px 28px; }
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-strip__item svg { color: var(--ok); flex-shrink: 0; }

/* ── Audit form ──────────────────────────────────────────────── */
.audit-form-bento { max-width: 560px; margin: 0 auto; }
.audit-fields { margin-bottom: 20px; }
.audit-disclaimer { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }
.field-error { font-size: 12px; color: var(--accent); margin-top: 4px; min-height: 1em; }

/* Headline text sweep: white text gently brushed by a pale violet→pink
   highlight that matches the brand gradient. The stops are deliberately
   pale (violet-300 / pink-200) and the highlight band is narrow (48-52%)
   so the sweep reads as a subtle shimmer, not a saturated flash. Fires
   once on load and then stays at the final position. */
.hero-headline {
  background: linear-gradient(to right,
    var(--fg) 0%,
    var(--fg) 46%,
    #d8b4fe 49%,
    #fbcfe8 50%,
    #d8b4fe 51%,
    var(--fg) 54%,
    var(--fg) 100%
  );
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-text-sweep 2.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s 1 both;
}
@keyframes hero-text-sweep {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
@keyframes accent-reveal {
  0%   { color: var(--fg); }
  21%  { color: var(--fg); }
  38%  { color: var(--accent); }
  100% { color: var(--accent); }
}
/* ── Mobile spacing polish ──────────────────────────────────── */
@media (max-width: 640px) {
  .bento { padding: 20px 18px; }
  .hero-main { padding: 24px 20px 24px; }
  .price-card { padding: 22px 18px; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 15.5px; }
  .faq-item summary { padding: 18px 18px; font-size: 15px; }
  .faq-item .answer { padding: 0 18px 18px; font-size: 14.5px; }
  .sample-table th, .sample-table td { padding: 12px 14px; font-size: 13px; }
  .trust-strip { padding: 14px 18px; font-size: 12.5px; }
  .testimonial blockquote { font-size: 17px; }
  .final-cta { padding: 32px 22px; }
  /* Hero pill wraps gracefully on small screens */
  .hero-pill { font-size: 11px; padding: 5px 10px; white-space: normal; text-align: center; }
  /* Full-width CTA buttons in hero on mobile */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Proof tiles: compact on mobile */
  .hero-stats { gap: 12px; }
  .proof-tile { padding: 14px 14px 12px; gap: 10px; }
  .proof-tile__outcome { font-size: 13px; }
  /* ICP example note: tighter */
  .hero-icp-example { font-size: 13px; padding: 10px 14px; }
  /* Reserve space only for FAB (no sticky CTA bar anymore) */
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ── RTL helpers ─────────────────────────────────────────────── */
[dir="rtl"] .arrow-cta { transform: scaleX(-1); }

/* ── Brand gradient system ───────────────────────────────────────
   Shared with chat.leadideal.com (web-v3/app/globals.css). Single
   source of truth for the v7 brand gradient (violet → pink → amber
   at 135°). Aurora opacity is tuned higher than the chat's because
   it's rendered against pure black instead of white. */
.brand-gradient {
  background-image: linear-gradient(135deg, var(--brand-violet) 0%, var(--brand-pink) 55%, var(--brand-amber) 100%);
}
.brand-gradient-text {
  background-image: linear-gradient(135deg, var(--brand-violet) 0%, var(--brand-pink) 55%, var(--brand-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-glow {
  box-shadow:
    0 14px 36px -10px rgba(236, 72, 153, 0.55),
    0 6px 14px -4px rgba(124, 58, 237, 0.40);
}
.brand-glow-sm {
  box-shadow:
    0 6px 16px -6px rgba(236, 72, 153, 0.45),
    0 2px 8px -4px rgba(124, 58, 237, 0.30);
}

/* Aurora — three soft radial gradients applied directly as a static
   background. NO filter: blur(), NO animation — the radial fall-off
   (transparent at ~70%) already gives the soft glow look, and dropping
   blur removes the only expensive operation. Total GPU cost: one paint
   on initial render, then zero per frame.

   mask-image fades the aurora out smoothly at the bottom 30% of the
   section so it blends into the black page below instead of cutting at
   a hard line where .hero ends. Same on top (small fade) so the nav
   doesn't sit on a hard violet edge either. */
.brand-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  contain: strict;
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(124, 58, 237, 0.22), transparent 70%),
    radial-gradient(70% 70% at 10% 100%, rgba(236, 72, 153, 0.16), transparent 70%),
    radial-gradient(40% 40% at 30% 60%, rgba(245, 158, 11, 0.10), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 60%, transparent 100%);
}

@keyframes brand-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.brand-pulse { animation: brand-pulse 2.2s ease-in-out infinite; }

.brand-chip-hover {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease;
}
.brand-chip-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(236, 72, 153, 0.50);
}

/* Make all primary CTAs read as brand-gradient with glow. Keeps the
   existing 2px border-radius geometry. Black text against the gradient
   has acceptable contrast across all three stops. */
.btn--primary {
  background-image: linear-gradient(135deg, var(--brand-violet) 0%, var(--brand-pink) 55%, var(--brand-amber) 100%) !important;
  background-color: var(--brand-pink) !important;
  border-color: transparent !important;
  color: var(--bg) !important;
  box-shadow:
    0 10px 28px -10px rgba(236, 72, 153, 0.50),
    0 4px 10px -4px rgba(124, 58, 237, 0.30);
}
.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow:
    0 14px 36px -10px rgba(236, 72, 153, 0.65),
    0 6px 14px -4px rgba(124, 58, 237, 0.40);
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .brand-pulse { animation: none !important; }
  .brand-chip-hover:hover { transform: none; }
}

/* Small screens: kill the CTA pulse too (it's GPU-cheap but every
   continuous animation adds up on low-end devices). */
@media (max-width: 480px) {
  .brand-pulse { animation: none; }
}
