/* =============================================================
   1. Tokens — paleta extraída del logo (negro / blanco / dorado)
   ============================================================= */
:root {
  --bg: #16130f;
  --bg-2: #1d1811;
  --bg-3: #262019;
  --paper: #211c15;
  --cream: #f6f2e7;
  --cream-2: #d8d0bd;
  --cream-3: #948a72;
  --gold: #e3b23c;
  --gold-2: #b9861f;
  --gold-soft: rgba(227, 178, 60, .14);
  --bad: #d1573d;
  --good: #7fb069;
  --line: rgba(246, 242, 231, .12);
  --line-strong: rgba(246, 242, 231, .24);

  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --nav-h: 74px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.62;
  color: var(--cream-2); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip; overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; color: var(--cream); }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #1a1408; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--cream); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem; }
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container-narrow { width: 100%; max-width: 820px; margin-inline: auto; padding-inline: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(227,178,60,.35);
  padding: .45em .9em; border-radius: 999px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px rgba(127,176,105,.2); }
.section { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin-top: .8rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.8rem; border-radius: 10px;
  font-family: var(--display); font-size: .95rem; letter-spacing: .02em; text-transform: uppercase;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #1a1408; box-shadow: 0 12px 30px -14px rgba(227,178,60,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(227,178,60,.85); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.2rem 2rem; font-size: 1.05rem; }

/* =============================================================
   4. Nav
   ============================================================= */
.nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center;
  background: rgba(22, 19, 15, .6); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .4s var(--ease-out), background .4s var(--ease-out); }
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(22, 19, 15, .92); }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; flex-direction: column; line-height: .92; font-family: var(--display); }
.brand span { font-size: 1.05rem; letter-spacing: .01em; }
.brand .l1 { color: var(--cream); }
.brand .l1 em, .brand .l1 i { color: var(--gold); font-style: normal; }
.brand .l2 { color: var(--gold); font-size: 1.05rem; }
.brand .l2 em, .brand .l2 i { color: var(--cream); font-style: normal; }

.nav-links { display: none; align-items: center; gap: 1.8rem; font-size: .9rem; }
.nav-links a { position: relative; padding-block: .3rem; color: var(--cream-2); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--gold); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  width: 260px; padding: .6rem; margin-top: .7rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: .65rem .8rem; border-radius: 8px; font-size: .86rem; color: var(--cream-2); }
.dropdown a:hover { background: var(--bg-3); color: var(--gold); }
.dropdown a::after { display: none; }
.nav-cta { display: none; }
@media (min-width: 1080px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } }

.nav-burger { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 8px; }
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--cream); position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--cream); }
.nav-burger span::before { top: -5px; } .nav-burger span::after { top: 5px; }
@media (min-width: 1080px) { .nav-burger { display: none; } }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90; background: var(--bg); padding: 2rem 1.5rem; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s; overflow-y: auto; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.2rem; color: var(--cream); }
.mobile-menu .sub a { font-size: .95rem; font-family: var(--sans); color: var(--cream-2); padding-left: 1rem; }
@media (min-width: 1080px) { .mobile-menu { display: none; } }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { position: relative; padding-top: clamp(3rem, 8vw, 5.5rem); padding-bottom: clamp(3rem, 7vw, 5rem); overflow: clip; }
.hero-mesh { position: absolute; inset: -10% -10% 20% -10%; z-index: -1;
  background: radial-gradient(38% 34% at 18% 15%, rgba(227,178,60,.24), transparent 70%),
              radial-gradient(30% 30% at 90% 10%, rgba(227,178,60,.12), transparent 70%);
  filter: blur(80px) saturate(130%); animation: meshDrift 28s ease-in-out infinite; }
@keyframes meshDrift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-2%,1.5%,0) scale(1.07); } }
.hero-grid { display: grid; gap: clamp(2.2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero-eyebrow { font-family: var(--display); font-size: .85rem; letter-spacing: .16em; color: var(--gold); }
.hero-title { font-size: clamp(2.3rem, 5.6vw, 4rem); margin-top: .8rem; max-width: 15ch; }
.hero-sub { font-family: var(--sans); text-transform: none; font-size: 1.1rem; color: var(--cream-2); margin-top: 1.2rem; max-width: 48ch; font-weight: 400; letter-spacing: normal; }
.check-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .98rem; color: var(--cream-2); }
.check-list .ico { color: var(--good); flex-shrink: 0; margin-top: .2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.lead-card {
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); border-radius: 20px; padding: 1.8rem;
}
.lead-card h3 { font-size: 1.25rem; }
.lead-card p { font-family: var(--sans); text-transform: none; font-size: .88rem; color: var(--cream-3); margin-top: .5rem; font-weight: 400; }
.lead-form { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .78rem; color: var(--cream-3); font-family: var(--mono); letter-spacing: .04em; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--line); color: var(--cream);
  font-family: var(--sans); font-size: .95rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .8rem; color: var(--cream-3); }
.field-check input { width: 16px; height: 16px; margin-top: .15rem; accent-color: var(--gold); }
.form-note { font-size: .78rem; color: var(--cream-3); text-align: center; margin-top: .3rem; }
.form-success { display: none; text-align: center; padding: 1.2rem 0; }
.form-success.is-shown { display: block; }
.form-success .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-inline: auto; color: var(--gold); }
.form-success p { font-family: var(--sans); text-transform: none; font-weight: 400; color: var(--cream-2); margin-top: .9rem; font-size: .92rem; }

/* =============================================================
   6. Stat bar
   ============================================================= */
.stat-bar { border-block: 1px solid var(--line); background: var(--bg-2); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 1.8rem 1.2rem; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: 0; }
.stat-num { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--gold); }
.stat-label { font-size: .82rem; color: var(--cream-3); margin-top: .3rem; }

/* =============================================================
   7. Pros / cons
   ============================================================= */
.pc-grid { display: grid; gap: 1.2rem; }
@media (min-width: 860px) { .pc-grid { grid-template-columns: 1fr 1fr; } }
.pc-card { border: 1px solid var(--line); border-radius: 18px; padding: 2rem; background: var(--bg-2); }
.pc-card h3 { font-size: 1.2rem; }
.pc-card ul { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .8rem; }
.pc-card li { display: flex; gap: .7rem; font-size: .95rem; color: var(--cream-2); align-items: flex-start; }
.pc-bad .ico { color: var(--bad); }
.pc-good .ico { color: var(--good); }
.pc-good { border-color: rgba(127,176,105,.3); }

/* =============================================================
   8. Steps
   ============================================================= */
.steps-grid { display: grid; gap: 1.2rem; counter-reset: step; }
@media (min-width: 860px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.8rem; background: var(--bg-2); }
.step-num { font-family: var(--display); font-size: 2.6rem; color: var(--gold-soft); -webkit-text-stroke: 1.5px var(--gold); color: transparent; }
.step-card h3 { margin-top: .8rem; font-size: 1.15rem; }
.step-card p { font-family: var(--sans); text-transform: none; font-weight: 400; font-size: .92rem; color: var(--cream-3); margin-top: .6rem; }
.step-card .btn { margin-top: 1.2rem; }

/* =============================================================
   9. Pricing
   ============================================================= */
.price-card { max-width: 460px; margin-inline: auto; border: 1px solid var(--gold); border-radius: 22px; padding: 2.4rem; background: linear-gradient(165deg, var(--bg-3), var(--bg-2)); text-align: center; position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; inset: -40% -10% auto -10%; height: 60%; background: radial-gradient(closest-side, rgba(227,178,60,.22), transparent); pointer-events: none; }
.price-amount { font-family: var(--display); font-size: clamp(3rem, 7vw, 4.2rem); color: var(--gold); margin-top: 1rem; }
.price-amount span { font-size: 1.1rem; color: var(--cream-3); font-family: var(--sans); text-transform: none; }
.price-card .check-list { text-align: left; margin-top: 1.6rem; }
.price-card .btn { margin-top: 1.8rem; }

/* =============================================================
   10. Course curriculum
   ============================================================= */
.curriculum { display: flex; flex-direction: column; gap: .9rem; }
.curr-item { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); overflow: hidden; }
.curr-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.5rem; cursor: pointer; }
.curr-head h3 { font-size: 1rem; letter-spacing: .01em; }
.curr-tag { font-family: var(--mono); font-size: .72rem; color: var(--gold); letter-spacing: .08em; }
.curr-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease-out); }
.curr-item.is-open .curr-icon { transform: rotate(45deg); }
.curr-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.curr-item.is-open .curr-body { max-height: 800px; }
.curr-body-inner { padding: 0 1.5rem 1.4rem; font-size: .92rem; color: var(--cream-2); }
.curr-body-inner ul { display: flex; flex-direction: column; gap: .45rem; margin-top: .4rem; }
.curr-body-inner li::before { content: "— "; color: var(--gold); }

/* =============================================================
   11. FAQ
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--cream); font-size: .98rem; }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease-out); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 1.5rem 1.3rem; font-size: .93rem; color: var(--cream-2); }

/* =============================================================
   12. Cards grid (courses / resources / broker cards)
   ============================================================= */
.card-grid { display: grid; gap: 1.2rem; perspective: 1200px; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.tilt-card {
  --mx: 50%; --my: 50%;
  position: relative; padding: 1.9rem 1.7rem; border: 1px solid var(--line); border-radius: 18px; background: var(--bg-2);
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
  transform-style: preserve-3d; will-change: transform;
}
.tilt-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(220px circle at var(--mx) var(--my), var(--gold-soft), transparent 70%); opacity: 0; transition: opacity .4s var(--ease-out); pointer-events: none; }
.tilt-card:hover { border-color: var(--line-strong); }
.tilt-card:hover::before { opacity: 1; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--bg-3); color: var(--gold); border: 1px solid var(--line); }
.card-icon svg { width: 20px; height: 20px; }
.tilt-card h3 { font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
.tilt-card .tag { font-family: var(--mono); font-size: .74rem; color: var(--cream-3); text-transform: uppercase; letter-spacing: .06em; }
.tilt-card p { font-family: var(--sans); font-size: .92rem; color: var(--cream-2); flex: 1; }
.tilt-card .cta { display: inline-flex; align-items: center; gap: .4em; font-size: .88rem; font-weight: 600; color: var(--gold); }
.tilt-card .cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.tilt-card:hover .cta svg { transform: translate(2px, -2px); }

/* =============================================================
   13. Ticker
   ============================================================= */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerScroll 32s linear infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation-duration: 60s; } }
.ticker-item { font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); padding-block: .8rem; padding-inline: 1.5rem; display: inline-flex; align-items: center; gap: 1.5rem; }
.ticker-item::after { content: "◆"; color: var(--gold); font-size: .55rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   14. Legal
   ============================================================= */
.legal { border: 1px solid var(--line); border-radius: 18px; background: var(--bg-2); padding: clamp(1.8rem, 4vw, 2.6rem); }
.legal h2 { font-size: 1.4rem; }
.legal p { font-family: var(--sans); text-transform: none; font-weight: 400; color: var(--cream-3); font-size: .9rem; margin-top: .9rem; max-width: 70ch; }
.legal p + p { margin-top: .6rem; }

/* =============================================================
   15. Founder / about strip
   ============================================================= */
.about-strip { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 860px) { .about-strip { grid-template-columns: .8fr 1.2fr; } }
.about-avatar { aspect-ratio: 1; border-radius: 20px; background: linear-gradient(155deg, var(--bg-3), var(--bg)); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-avatar .mark { font-family: var(--display); font-size: 3.4rem; color: var(--gold); }
.about-strip h3 { font-size: 1.6rem; }
.about-strip p { font-family: var(--sans); text-transform: none; font-weight: 400; color: var(--cream-2); margin-top: .9rem; font-size: 1rem; max-width: 58ch; }

/* =============================================================
   16. Final CTA
   ============================================================= */
.final-cta { text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.final-cta h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.final-cta p { font-family: var(--sans); text-transform: none; font-weight: 400; color: var(--cream-2); max-width: 48ch; margin: 1rem auto 0; }
.final-cta .hero-actions { justify-content: center; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { padding-block: 3rem 2.2rem; }
.footer-grid { display: grid; gap: 2.2rem; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { font-family: var(--sans); text-transform: none; font-weight: 400; color: var(--cream-3); font-size: .88rem; margin-top: .8rem; max-width: 32ch; }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; color: var(--cream-3); }
.footer-col ul { margin-top: .9rem; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .88rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-copy { font-size: .8rem; color: var(--cream-3); }
.footer-socials { display: flex; gap: .8rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--cream-2); transition: border-color .3s var(--ease-out), color .3s var(--ease-out); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-socials svg { width: 15px; height: 15px; }

/* =============================================================
   18. Splash
   ============================================================= */
.splash { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; background: var(--bg); transition: opacity .6s var(--ease-out), visibility .6s; animation: splashSafety .01s 4.5s forwards; }
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-mark { font-family: var(--display); letter-spacing: .04em; color: var(--cream); font-size: 1.1rem; display: flex; align-items: center; gap: .7rem; }
.splash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: splashPulse 1.1s ease-in-out infinite; }
@keyframes splashPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* =============================================================
   19. Page hero (inner pages, smaller)
   ============================================================= */
.page-hero { padding-top: clamp(2.6rem, 6vw, 4rem); padding-bottom: clamp(2rem, 5vw, 3rem); }
.breadcrumb { font-family: var(--mono); font-size: .78rem; color: var(--cream-3); display: flex; align-items: center; gap: .5em; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: .8rem; max-width: 20ch; }
.page-hero .hero-sub { max-width: 60ch; }

/* =============================================================
   20. Responsive misc
   ============================================================= */
@media (max-width: 719px) {
  .hero-actions .btn, .final-cta .btn { width: 100%; }
  .hero-actions, .final-cta .hero-actions { flex-direction: column; }
}
