@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --ink: #0d0d0d;
  --paper: #f5f2eb;
  --paper2: #ede9df;
  --accent: #e8401c;
  --accent2: #2563d4;
  --accent3: #14a364;
  --gold: #f5a623;
  --muted: #6b6456;
  --border: rgba(13,13,13,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--paper); border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; font-size: 14px; font-weight: 500; }
.nav-links a { text-decoration: none; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-cta { background: var(--ink); color: var(--paper); font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 10px 22px; text-decoration: none; letter-spacing: .5px; transition: background .2s; text-transform: uppercase; }
.nav-cta:hover { background: var(--accent); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 120px 48px 60px; background: var(--ink); color: var(--paper); }
.page-hero-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-hero-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); font-weight: 800; letter-spacing: -2px; line-height: 1; }
.page-hero p { font-size: 18px; color: rgba(245,242,235,.55); max-width: 520px; font-weight: 300; line-height: 1.65; margin-top: 16px; }

/* ── SECTION ── */
.section { padding: 80px 48px; }
.section-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.section-h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 48px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 14px 32px; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; transition: transform .15s, box-shadow .15s; box-shadow: 4px 4px 0 var(--ink); display: inline-block; }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-outline { background: transparent; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 13px 30px; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; border: 2px solid var(--ink); display: inline-block; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ── TICKER ── */
.ticker { background: var(--accent); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; padding: 0 32px; display: flex; align-items: center; gap: 12px; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--accent); padding: 70px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; color: #fff; line-height: 1; margin-bottom: 8px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 300; }
.btn-white { background: #fff; color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 14px; padding: 16px 36px; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; flex-shrink: 0; box-shadow: 4px 4px 0 rgba(0,0,0,.2); transition: transform .15s, box-shadow .15s; display: inline-block; }
.btn-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.25); }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper); padding: 60px 48px 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; }
.footer-brand-name span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: rgba(245,242,235,.4); line-height: 1.65; font-weight: 300; max-width: 240px; margin-bottom: 20px; }
.footer-col-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(245,242,235,.35); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: rgba(245,242,235,.6); font-size: 14px; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(245,242,235,.3); flex-wrap: wrap; gap: 10px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(13,13,13,.85); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--paper); max-width: 480px; width: 100%; padding: 44px; position: relative; animation: fadeUp .3s ease; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--muted); }
.modal-close:hover { color: var(--ink); }
.modal h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; color: var(--muted); }
.form-input, .form-select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); background: var(--paper2); color: var(--ink); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color .2s; }
.form-input:focus, .form-select:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn { width: 100%; padding: 15px; background: var(--accent); color: #fff; border: none; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-top: 6px; transition: background .2s; }
.submit-btn:hover { background: #c22e0e; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero, .section { padding-left: 20px; padding-right: 20px; }
  .cta-banner { padding: 48px 20px; flex-direction: column; align-items: flex-start; }
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
