/* ==========================================================================
   Engenheiro Marcão 1540 — Landing Page
   Blueprint-minimalist: navy canvas, gold hairlines, technical grid marks.
   ========================================================================== */

:root {
  --navy-950: #060e1f;
  --navy-900: #0a1830;
  --navy-800: #0d2145;
  --navy-700: #14336b;
  --navy-600: #1c4386;

  --gold-300: #f7e2a6;
  --gold-400: #f0cd6f;
  --gold-500: #e6b93d;
  --gold-600: #c89a2e;
  --gold-700: #9c7620;

  --paper: #f6f5f1;
  --paper-dim: #ece9e1;
  --ink: #0f1622;
  --ink-soft: #4a5162;

  --white: #ffffff;
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --line-on-dark-strong: rgba(255, 255, 255, 0.28);
  --line-on-light: rgba(15, 22, 34, 0.12);

  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gold-text { color: var(--gold-500); }

.section-pad { padding: 100px 0; }
@media (max-width: 720px) { .section-pad { padding: 68px 0; } }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-on-dark-strong);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn-dark-ghost {
  background: transparent;
  border-color: var(--line-on-light);
  color: var(--ink);
}
.btn-dark-ghost:hover { border-color: var(--navy-700); color: var(--navy-700); transform: translateY(-2px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(10, 24, 48, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--white); }
.brand .b-eng { font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 0.18em; opacity: 0.75; }
.brand .b-name { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: 0.01em; }
.brand .b-name em { font-style: normal; color: var(--gold-500); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--gold-500);
  border: 1px solid var(--line-on-dark-strong);
  border-radius: var(--radius);
  padding: 4px 12px;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-on-dark-strong);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--navy-950);
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-drawer .social-row { margin-top: 32px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 900px 700px at 82% 18%, rgba(230,185,61,0.10), transparent 60%),
    linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 46%, var(--navy-800) 100%);
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero-blueprint {
  position: absolute; inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: end;
}

.hero-copy { color: var(--white); padding-bottom: 20px; }
.hero-copy .eyebrow {
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-copy .eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold-400);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}
.hero-headline strong {
  display: block;
  font-weight: 900;
  color: var(--white);
  margin-top: 8px;
}
.hero-headline .accent { color: var(--gold-500); }

.hero-sub {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--white);
}
.hero-tag {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.hero-cta { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

.hero-number-badge {
  margin-top: 56px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.hero-number-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.9;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-number-badge .num-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  max-width: 120px;
  line-height: 1.4;
}

.hero-portrait {
  position: relative;
  height: 100%;
  align-self: flex-end;
  justify-self: end;
}
.hero-portrait figure {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 0 0 auto;
}
.hero-portrait img {
  width: 100%;
  height: auto;
  border-radius: 6px 6px 0 0;
  -webkit-mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  filter: saturate(1.04) contrast(1.02);
}
.hero-portrait .ring {
  position: absolute;
  top: -34px; right: -34px;
  width: 130px; height: 130px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0.55;
}
.hero-portrait .corner {
  position: absolute;
  width: 26px; height: 26px;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
  top: -14px; left: -14px;
  opacity: 0.8;
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-cue .stick {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold-500), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.25; } 50% { opacity: 1; } }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; justify-self: center; margin-bottom: 10px; }
  .hero-portrait figure { max-width: 240px; margin: 0 auto; }
  .hero { padding-top: 130px; text-align: left; }
}

/* ==========================================================================
   Bio
   ========================================================================== */
.bio { background: var(--paper); position: relative; }
.bio .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.bio-kicker { color: var(--gold-700); margin-bottom: 18px; }
.bio-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy-900);
  line-height: 1.15;
}
.bio-body p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 20px; }
.bio-manifesto {
  margin-top: 26px;
  padding-left: 22px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 25px);
  color: var(--navy-900);
  line-height: 1.35;
}
@media (max-width: 860px) {
  .bio .container { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillars { background: var(--navy-900); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
}
.pillar {
  background: var(--navy-900);
  padding: 38px 28px;
  color: var(--white);
}
.pillar .icon { color: var(--gold-500); margin-bottom: 22px; }
.pillar .icon svg { width: 30px; height: 30px; }
.pillar h3 { font-family: var(--font-display); font-weight: 800; font-size: 15.5px; letter-spacing: 0.01em; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
@media (max-width: 860px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Stat band
   ========================================================================== */
.stat-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stat-band .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.85;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-copy .eyebrow { color: var(--gold-400); margin-bottom: 16px; }
.stat-copy p.label { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 24px); margin-bottom: 14px; }
.stat-copy p.detail { color: rgba(255,255,255,0.62); max-width: 560px; margin-bottom: 10px; }
.stat-copy .src { font-size: 12px; color: rgba(255,255,255,0.4); }
@media (max-width: 760px) {
  .stat-band .container { grid-template-columns: 1fr; text-align: left; gap: 20px; }
}

/* ==========================================================================
   Propostas (accordion by eixo)
   ========================================================================== */
.propostas { background: var(--paper); }
.propostas-head { max-width: 640px; margin-bottom: 56px; }
.propostas-head .eyebrow { color: var(--gold-700); margin-bottom: 16px; }
.propostas-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3vw, 40px); color: var(--navy-900); margin-bottom: 14px;
}
.propostas-head p { color: var(--ink-soft); font-size: 16px; }

.axis-shell { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }

.axis-tabs {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.axis-tab {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-align: left;
  padding: 14px 16px;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.axis-tab .n { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--gold-700); }
.axis-tab .t { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.01em; }
.axis-tab:hover { background: rgba(15,22,34,0.04); }
.axis-tab.is-active {
  background: var(--white);
  border-left-color: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(15,22,34,0.06);
}
.axis-tab.is-active .t { color: var(--navy-900); }

.axis-panel { display: none; }
.axis-panel.is-active { display: block; animation: fadein 0.4s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.axis-panel-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line-on-light); }
.axis-panel-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy-900); margin-bottom: 8px; }
.axis-panel-head p { color: var(--ink-soft); font-size: 15px; }

.pl-item {
  border-bottom: 1px solid var(--line-on-light);
}
.pl-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  gap: 18px;
  -webkit-tap-highlight-color: transparent;
}
.pl-item summary::-webkit-details-marker { display: none; }

.pl-tag {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--gold-700);
  background: rgba(230,185,61,0.12);
  border: 1px solid rgba(230,185,61,0.35);
  padding: 5px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.pl-hook {
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy-900);
  line-height: 1.35;
}
.pl-chevron {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  transition: transform 0.35s var(--ease);
}
.pl-item[open] .pl-chevron { transform: rotate(45deg); }

.pl-body {
  padding: 0 4px 26px 4px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .axis-shell { grid-template-columns: 1fr; }
  .axis-tabs {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }
  .axis-tab { border-left: none; border-bottom: 2px solid transparent; padding: 10px 14px; }
  .axis-tab.is-active { border-left-color: transparent; border-bottom-color: var(--gold-500); }
}

/* ==========================================================================
   Voluntário / Form
   ========================================================================== */
.voluntario {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
}
.vol-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.vol-copy .eyebrow { color: var(--gold-400); margin-bottom: 18px; }
.vol-copy h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 16px; line-height: 1.2; }
.vol-copy p { color: rgba(255,255,255,0.6); font-size: 15.5px; margin-bottom: 28px; max-width: 420px; }

.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--gold-500); color: var(--gold-400); transform: translateY(-3px); }
.social-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 14px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 9px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark-strong);
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus { outline: none; border-color: var(--gold-500); background: rgba(255,255,255,0.07); }

.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-choice input { position: absolute; opacity: 0; pointer-events: none; }
.pill-choice span {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 999px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: all 0.25s var(--ease);
}
.pill-choice input:checked + span {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
}

.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.privacy-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  cursor: pointer;
}
.consent-check input {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--gold-500);
  flex: 0 0 auto;
}
.consent-check span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.consent-check a { color: var(--gold-400); text-decoration: underline; }
.consent-check a:hover { color: var(--gold-300); }

@media (max-width: 860px) {
  .vol-shell { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.55);
  padding: 50px 0 30px;
  border-top: 1px solid var(--line-on-dark);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 24px;
}
.footer-signature {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}
.footer-bottom .line2 { color: rgba(255,255,255,0.45); }
.footer-bottom .disclaimer { color: rgba(255,255,255,0.3); }
.footer-bottom .footer-links a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom .footer-links a:hover { color: var(--gold-400); }

/* ==========================================================================
   Legal page (Política de Privacidade)
   ========================================================================== */
.legal-page { background: var(--paper); padding-top: 150px; }
.legal-container { max-width: 760px; }
.legal-draft-flag {
  background: rgba(230,185,61,0.14);
  border: 1px solid rgba(230,185,61,0.4);
  color: var(--gold-700);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.6;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.legal-draft-flag code {
  background: rgba(15,22,34,0.06);
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 12px;
}
.legal-updated { color: var(--ink-soft); font-size: 13px; margin-top: 10px; margin-bottom: 40px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-900);
  margin-top: 34px;
  margin-bottom: 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }
.legal-pending {
  display: inline-block;
  background: rgba(200,50,50,0.08);
  color: #a83a3a;
  padding: 1px 4px;
  font-style: italic;
}

/* ==========================================================================
   Toast (form feedback)
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--white);
  color: var(--navy-900);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: transform 0.4s var(--ease);
  border-left: 3px solid var(--gold-500);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
