*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif; background: #fff; color: #1d1d1f; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; height: 44px; display: flex; align-items: center; background: rgba(255,255,255,0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0,0,0,0.08); }
.nav-logo { position: absolute; left: 22px; font-size: .88rem; font-weight: 700; color: #1d1d1f; letter-spacing: -.01em; }
.nav-logo span { font-weight: 300; }
.nav-links { display: flex; align-items: center; margin: 0 auto; }
.nav-links a { font-size: .72rem; color: #6e6e73; font-weight: 300; padding: 0 14px; line-height: 44px; transition: color .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #1d1d1f; }
.nav-cta { position: absolute; right: 22px; font-size: .72rem; color: #0071e3; font-weight: 400; white-space: nowrap; transition: opacity .2s; }
.nav-cta:hover { opacity: .7; }
.mob-btn { display: none; background: none; border: none; color: #1d1d1f; font-size: 1.1rem; cursor: pointer; position: absolute; right: 16px; }
.mob-menu { display: none; position: fixed; top: 44px; left: 0; right: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.08); z-index: 998; flex-direction: column; }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: .9rem; color: #6e6e73; padding: 13px 22px; border-bottom: 1px solid rgba(0,0,0,0.06); font-weight: 300; }
.mob-menu a:last-child { border: none; color: #0071e3; }

/* RING */
/* ring drawn via canvas in index.html */
@keyframes dotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } }

/* BUTTONS */
.btn-blue { background: #0071e3; color: #fff; padding: 11px 28px; border-radius: 980px; font-size: .82rem; font-weight: 400; transition: opacity .2s; display: inline-flex; align-items: center; gap: 5px; }
.btn-blue:hover { opacity: .88; }
.btn-link { color: #0071e3; font-size: .82rem; font-weight: 400; display: inline-flex; align-items: center; gap: 3px; transition: opacity .2s; }
.btn-link:hover { opacity: .7; }

/* SHARED */
.eyebrow { font-size: .72rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: #bf6800; display: block; margin-bottom: 14px; }
.big-h { font-size: clamp(2.25rem,5vw,3.75rem); font-weight: 700; letter-spacing: -.05em; line-height: .95; color: #1d1d1f; margin-bottom: 14px; }
.big-h .lt { font-weight: 100; color: rgba(29,29,31,.28); }
.big-h .gd { color: #bf6800; }

/* SCROLL FADE */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.25,.1,.25,1), transform .75s cubic-bezier(.25,.1,.25,1); }
.fade.in { opacity: 1; transform: none; }
.fd1 { transition-delay: .1s; } .fd2 { transition-delay: .2s; } .fd3 { transition-delay: .3s; }

/* FOOTER */
footer { border-top: 1px solid rgba(0,0,0,0.08); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; background: #fff; }
.fl { font-size: .72rem; font-weight: 700; color: #1d1d1f; }
.fl span { font-weight: 300; }
.fc { font-size: .6rem; color: #86868b; font-weight: 300; }

@media(max-width:680px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mob-btn { display: block; }
  footer { padding: 14px 16px; }
}
