/* ═══════════════════════════════════════════════════════════════════════════
   AURETHIS — Premium Editorial Design System v3.0
   Navy #081A3A · Gold #D4AF37 · Inter
   Inspired by: Apple, Stripe, Linear, Notion, The Verge, Wirecutter
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────────────────── */
:root {
  --navy: #081A3A;
  --navy-light: #0F2248;
  --navy-mid: #1A2D52;
  --navy-50: rgba(8,26,58,0.05);
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8962E;
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --slate: #6B7280;
  --slate-light: #9CA3AF;
  --slate-200: #E5E7EB;
  --slate-100: #F3F4F6;
  --gray-bg: #F9FAFB;
  --text: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition: 250ms var(--ease-out);
  --transition-slow: 400ms var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Skip Link ──────────────────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; z-index: 9999; padding: 12px 24px; background: var(--gold); color: var(--navy); font-weight: 600; font-size: 0.9rem; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--max-w-narrow); }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, .h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 750; letter-spacing: -0.035em; line-height: 1.1; color: var(--navy); }
h2, .h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; color: var(--navy); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.3; color: var(--navy); }
h4, .h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; color: var(--navy); }
p, .body { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.small { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); }
.caption { font-size: 0.75rem; line-height: 1.5; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* ── Section Common ─────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--gray { background: var(--gray-bg); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__label { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
.section__title { margin-bottom: 16px; }
.section__subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section__action { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--gold); font-weight: 600; font-size: 0.9rem; transition: gap var(--transition); }
.section__action:hover { gap: 10px; }
.section__action::after { content: '→'; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; line-height: 1; transition: all var(--transition); position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); opacity: 0; transition: opacity var(--transition); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn--primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn--primary:hover { box-shadow: 0 6px 24px rgba(212,175,55,0.35); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn--secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--slate-200); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(8,26,58,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(212,175,55,0.1); height: var(--nav-h); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 32px; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; pointer-events: none; flex-shrink: 0; }
.nav__wordmark { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link { padding: 8px 16px; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; border-radius: 6px; transition: all var(--transition); }
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__link--active { color: var(--gold); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__search { padding: 8px; color: rgba(255,255,255,0.5); border-radius: 6px; transition: all var(--transition); }
.nav__search:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.nav__toggle { display: none; padding: 8px; color: var(--white); border-radius: 6px; }
@media (max-width: 768px) {
  .nav__links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(8,26,58,0.98); flex-direction: column; padding: 16px; gap: 4px; border-bottom: 1px solid rgba(212,175,55,0.1); }
  .nav__links--open { display: flex; }
  .nav__toggle { display: block; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: linear-gradient(150deg, #060E24 0%, #081A3A 35%, #0A1E3D 65%, #061530 100%); min-height: 85vh; display: flex; align-items: center; padding: 120px 0 80px; }
.hero__canvas { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none; }
.hero__orb--1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -200px; right: -100px; animation: orbFloat 20s ease-in-out infinite; }
.hero__orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, #4F46E5 0%, transparent 70%); bottom: -100px; left: -100px; animation: orbFloat 25s ease-in-out infinite reverse; }
.hero__orb--3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%); top: 50%; left: 50%; animation: orbFloat 30s ease-in-out infinite; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%); }
.hero__container { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.hero__content { max-width: 800px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px 6px 8px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); border-radius: 100px; font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero__subtitle { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.7; margin-bottom: 36px; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__trust-text { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.5px; }
.hero__trust-logos { display: flex; gap: 24px; align-items: center; }
.hero__trust-logo { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.25); letter-spacing: -0.01em; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero__content { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
}

/* ── Stats (Live Data Ready) ─────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--slate-200); border-radius: var(--radius); overflow: hidden; }
.stats__item { background: var(--white); padding: 32px 24px; text-align: center; }
.stats__icon { font-size: 1.25rem; margin-bottom: 8px; }
.stats__number { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.stats__number--pending { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.stats__label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ── Card Grid ───────────────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

/* ── Editorial Card ──────────────────────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card:focus-within { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card__media { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card__media::after { content: ''; position: absolute; inset: 0; border-bottom: 3px solid var(--gold); }
.card__media-text { color: rgba(255,255,255,0.15); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card__badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.card__badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card__badge--gold { background: var(--gold); color: var(--navy); }
.card__badge--green { background: #D1FAE5; color: #065F46; }
.card__badge--blue { background: #DBEAFE; color: #1E40AF; }
.card__badge--purple { background: #EDE9FE; color: #5B21B6; }
.card__badge--navy { background: var(--navy); color: var(--gold); }
.card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.card__rating-value { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--gold); }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card__summary { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.card__meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.card__meta-item { display: flex; align-items: center; gap: 4px; }
.card__pros { font-size: 0.82rem; color: var(--text); margin-bottom: 12px; padding-left: 16px; }
.card__pros li { margin-bottom: 3px; position: relative; line-height: 1.5; }
.card__pros li::before { content: ''; width: 4px; height: 4px; background: #10B981; border-radius: 50%; position: absolute; left: -12px; top: 8px; }
.card__cons { font-size: 0.82rem; color: var(--text); margin-bottom: 16px; padding-left: 16px; }
.card__cons li { margin-bottom: 3px; position: relative; line-height: 1.5; }
.card__cons li::before { content: ''; width: 4px; height: 4px; background: #EF4444; border-radius: 50%; position: absolute; left: -12px; top: 8px; }
.card .btn { margin-top: auto; }
.card--featured { border-top: 3px solid var(--gold); }
.card--featured .card__media::after { display: none; }

/* ── Comparison Card ────────────────────────────────────────────────────── */
.card--comparison { }
.card__vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; padding: 20px 0; margin-bottom: 12px; }
.card__tool { text-align: center; }
.card__tool-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.card__tool-rating { font-size: 0.85rem; color: var(--gold); }
.card__vs-divider { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; }
.card__winner { text-align: center; margin-bottom: 12px; }
.card__winner-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; background: var(--gold); color: var(--navy); border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card__best { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.card__verdict { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; flex: 1; }

/* ── Guide Card ──────────────────────────────────────────────────────────── */
.card--guide { }
.card__guide-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card__guide-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--navy-50); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.card__guide-meta { flex: 1; }
.card__guide-difficulty { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.card__guide-difficulty--beginner { background: #D1FAE5; color: #065F46; }
.card__guide-difficulty--intermediate { background: #DBEAFE; color: #1E40AF; }
.card__guide-difficulty--advanced { background: #FEE2E2; color: #991B1B; }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.05) 0%, transparent 60%); pointer-events: none; }
.newsletter::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.newsletter__inner { position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.7; }
.newsletter__form { display: flex; gap: 12px; }
.newsletter__form input { flex: 1; padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.95rem; outline: none; transition: all var(--transition); }
.newsletter__form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter__form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter__footnote { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 16px; }
@media (max-width: 480px) { .newsletter__form { flex-direction: column; } }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #060E24; padding: 64px 0 32px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo { width: 28px; height: 28px; border-radius: 50%; object-fit: contain; pointer-events: none; }
.footer__logo-text { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer__desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer h4 { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a:not(.footer__social a) { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer a:not(.footer__social a):hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ── Loading Skeleton ────────────────────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--slate-100) 25%, var(--gray-bg) 50%, var(--slate-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton--text { height: 14px; margin-bottom: 8px; width: 80%; }
.skeleton--title { height: 24px; margin-bottom: 12px; width: 60%; }
.skeleton--image { height: 180px; border-radius: var(--radius); }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.animate { animation: slideUp 0.5s var(--ease-out) both; }
.animate--fade { animation-name: fadeIn; }
.animate--scale { animation-name: scaleIn; }
.animate--delay-1 { animation-delay: 0.1s; }
.animate--delay-2 { animation-delay: 0.2s; }
.animate--delay-3 { animation-delay: 0.3s; }
.animate--delay-4 { animation-delay: 0.4s; }
.animate--delay-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ── Print Styles ────────────────────────────────────────────────────────── */
@media print {
  .nav, .newsletter, .footer, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: ' (' attr(href) ')'; }
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.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; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
