/* ============ GLOBAL TOKENS & SHARED UTILITIES ============
   Ported from the Angular app's src/styles.css so the MVC front end matches
   the same visual language. Component-specific styles live in home.css /
   layout.css. */

:root{
  --bg-950:#0F1115;
  --bg-900:#14171D;
  --surface-800:#1B1F27;
  --surface-700:#232833;
  --border-muted:#2C3140;
  --white-soft:#F8F9FA;
  --gray-200:#E4E6EA;
  --gray-300:#C7CBD1;
  --gray-400:#9BA1AC;
  --gray-600:#6B7280;
  --red-500:#E53935;
  --red-600:#D0281F;
  --red-glow:rgba(229,57,53,0.35);
  --green-500:#22C55E;
  --amber-500:#F5A623;
  --blue-500:#4A90E2;
  --radius-sm:12px;
  --radius-md:16px;
  --radius-lg:20px;
  --shadow-card: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-card-hover: 0 16px 50px rgba(0,0,0,0.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg-950);
  color:var(--white-soft);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-top:0;
}
h1,h2,h3,h4,.font-display{ font-family:'Manrope', sans-serif; font-weight:800; letter-spacing:-0.02em; margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--red-500); outline-offset:3px; border-radius:4px; }
.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; }

.container{ max-width:1360px; margin:0 auto; padding:0 32px; }
@media (max-width:768px){ .container{ padding:0 20px; } }

.section{ padding:110px 0; }
@media (max-width:900px){ .section{ padding:72px 0; } }
.section-alt{ background:var(--bg-900); }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(32px,4vw,46px); margin-bottom:18px; }
.section-head p{ font-size:17px; color:var(--gray-400); margin:0; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--red-500); margin-bottom:16px;
}
.eyebrow::before{ content:''; width:18px; height:2px; background:var(--red-500); display:inline-block; }

/* fade-up scroll reveal, toggled by site.js (IntersectionObserver) */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:52px; padding:0 28px; border-radius:14px; font-weight:700; font-size:15px;
  border:none; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--red-500); color:#fff; box-shadow:0 8px 24px var(--red-glow); }
.btn-primary:hover{ background:var(--red-600); transform:translateY(-2px); box-shadow:0 12px 32px var(--red-glow); color:#fff; }
.btn-secondary{ background:rgba(255,255,255,0.06); color:var(--white-soft); border:1px solid rgba(255,255,255,0.14); backdrop-filter:blur(6px); }
.btn-secondary:hover{ background:rgba(255,255,255,0.12); transform:translateY(-2px); color:var(--white-soft); }
.btn-ghost{ background:transparent; color:var(--gray-200); border:1px solid var(--border-muted); }
.btn-ghost:hover{ border-color:var(--red-500); color:var(--red-500); }
.btn-sm{ height:42px; padding:0 20px; font-size:14px; border-radius:12px; }
.btn:active{ transform:scale(.97); }
.btn:disabled{ opacity:.65; cursor:not-allowed; transform:none !important; }

.breadcrumb{ display:flex; gap:8px; font-size:13px; color:var(--gray-400); margin-bottom:20px; }
.breadcrumb a:hover{ color:var(--red-500); }

/* long-form content — legal pages (Privacy Policy, Terms of Service) */
.legal-content{ color:var(--gray-300); font-size:15px; }
.legal-content .updated{ color:var(--gray-600); font-size:13px; margin-bottom:40px; }
.legal-content h3{ font-size:22px; margin:44px 0 14px; }
.legal-content h3:first-of-type{ margin-top:0; }
.legal-content p{ margin:0 0 16px; line-height:1.75; }
.legal-content ul, .legal-content ol{ margin:0 0 16px; padding-left:22px; display:flex; flex-direction:column; gap:8px; }
.legal-content li{ line-height:1.7; }
.legal-content a{ color:var(--red-500); border-bottom:1px dashed var(--red-500); }
.legal-content a:hover{ color:var(--red-600); border-color:var(--red-600); }
.legal-content strong{ color:var(--white-soft); }
