@font-face {
  font-family: 'Stolzl';
  src: url('../fonts/stolzl-book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Stolzl';
  src: url('../fonts/stolzl-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e62336;
  --black: #000000;
  --white: #ffffff;
  --off: #0a0a0a;
  --gray: #f0f0ee;
  --mid: #888888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Stolzl', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.2;
  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: 32px 64px;
  transition: background .4s;
}
nav.scrolled {
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { position: relative; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  letter-spacing: .06em;
  transition: color .2s;
  padding: 8px 22px;
  display: block;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-arrow { font-size: 9px; opacity: .35; margin-left: 3px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  left: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 260px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
}
.nav-links li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  font-size: 12px;
  letter-spacing: .04em;
  padding: 11px 22px;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.04); }
.dd-tag {
  color: var(--red);
  font-size: 10px;
  letter-spacing: .1em;
  margin-right: 10px;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .03em;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--red); background: var(--red); color: #fff; }

/* ─── TICKER ─── */
.ticker-wrap {
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  padding: 18px 0;
}
.ticker { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker-item { font-size: 11px; letter-spacing: .14em; color: rgba(255,255,255,.25); padding: 0 44px; white-space: nowrap; }
.tdot { color: var(--red); margin-right: 44px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 18px 44px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: 'Stolzl', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(230,35,54,.4); }
.btn-primary span { transition: transform .2s; }
.btn-primary:hover span { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s;
  font-family: 'Stolzl', sans-serif;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ─── SECTION LABELS ─── */
.label-red { font-size: 11px; letter-spacing: .18em; color: var(--red); margin-bottom: 28px; display: block; }
.label-gray { font-size: 11px; letter-spacing: .18em; color: var(--mid); margin-bottom: 20px; display: block; }

/* ─── PILLS ─── */
.pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
}

/* ─── FORMS ─── */
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; letter-spacing: .12em; color: #aaa; margin-bottom: 9px; }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: 'Stolzl', sans-serif;
  font-size: 15px;
  font-weight: 400;
  background: #f4f4f2;
  border: none;
  border-radius: 12px;
  padding: 17px 20px;
  color: #000;
  outline: none;
  transition: box-shadow .2s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { box-shadow: 0 0 0 2px var(--red); }
.form-field textarea { min-height: 100px; }
.btn-submit {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 19px 0;
  border-radius: 100px;
  font-family: 'Stolzl', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,35,54,.28); }
.form-note { font-size: 12px; color: #bbb; text-align: center; margin-top: 14px; }

/* ─── CTA SECTION (shared) ─── */
.cta-section { background: #fff; color: #000; padding: 140px 64px; }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.cta-h2 { font-size: clamp(40px,4.5vw,64px); font-weight: 500; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 20px; }
.cta-h2 em { font-style: italic; }
.cta-sub { font-size: 17px; color: #888; line-height: 1.65; margin-bottom: 36px; }
.cta-steps { display: flex; flex-direction: column; gap: 14px; }
.cta-step { display: flex; align-items: center; gap: 14px; font-size: 13px; color: #999; }
.step-num { width: 24px; height: 24px; border-radius: 30%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 500; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer img { height: 22px; width: auto; }
footer svg { height: 22px; width: auto; }
.footer-mid { display: flex; gap: 32px; }
.footer-mid a { color: rgba(255,255,255,.28); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-mid a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 7px 18px;
  transition: all .2s;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* ─── BRAND SHAPE util ─── */
.dot-shape path { fill: var(--red); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── DIVIDER ─── */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent); }

/* ─── FOOTER LEGAL ─── */
.footer-legal{width:100%;padding:0 64px 28px;display:flex;gap:24px;justify-content:flex-end}
.footer-legal a{color:rgba(255,255,255,.28);text-decoration:none;font-size:11px;letter-spacing:.04em;transition:color .2s}
.footer-legal a:hover{color:rgba(255,255,255,.6)}
