/* ============ FONTS ============ */
@font-face {
  font-family: 'Clash Display Medium';
  src: url('https://framerusercontent.com/modules/assets/hxrqS9ptU942Y44dI99I0PVsH4~ww7U8xP5mRQD2Y1E4c0a0555ZO4yXSqQBP9j6yPxTHs.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display Semibold';
  src: url('https://framerusercontent.com/modules/assets/ZNkYeGbyRG5ktxq44gsjzSuO8~oc3DpihxEWOrzvYSgk8QQcooNIXwoqGPfnaFlo4vvcc.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Clash Display Medium', 'Inter', sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPE PRESETS ============ */
.t-hero {
  font-family: 'Clash Display Semibold', sans-serif;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 100%;
  text-transform: uppercase;
}
.t-title {
  font-family: 'Clash Display Semibold', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 100%;
  text-transform: uppercase;
}
.t-subtitle {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 120%;
}
.t-section-label {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 120%;
  text-transform: uppercase;
}
.t-eyebrow {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 120%;
  text-transform: uppercase;
}
.t-small {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 100%;
  text-transform: uppercase;
}
.t-body {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 150%;
}
.t-stat-num {
  font-family: 'Clash Display Semibold', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 100%;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #000;
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 120%;
  transition: opacity 0.2s;
}
.nav-menu a:hover { opacity: 0.55; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #D2F65A;
  color: #000 !important;
  border: 1px solid #000;
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #c6ea4e; transform: translateY(-1px); }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  padding: 20px 0;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  padding-right: 56px;
}
.marquee-track span {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee-track .dot {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 20px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee--dark { background: #000; color: #fff; border-color: #000; }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid #000;
  padding: 80px 48px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 48px;
}
.footer-left .flogo { height: 28px; margin-bottom: 48px; }
.footer-socials { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-socials a {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.footer-socials a:hover { opacity: 0.55; }
.footer-right img { width: 220px; height: auto; }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 48px;
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-family: 'Clash Display Medium', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-menu { gap: 16px; }
  .nav-menu li.hide-mobile { display: none; }
  footer { grid-template-columns: 1fr; padding: 60px 20px 30px; }
  .footer-right img { width: 160px; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 12px; }
}
