@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;700;900&family=Cabinet+Grotesk:wght@300;400;700;900&display=swap');

:root {
  --bg: #F2F2F2;
  --bg-soft: #EAEAEA;
  --ink: #111111;
  --ink-deep: #000000;
  --ink-80: rgba(0,0,0,0.8);
  --ink-60: rgba(0,0,0,0.6);
  --ink-40: rgba(0,0,0,0.4);
  --ink-20: rgba(0,0,0,0.15);
  --ink-10: rgba(0,0,0,0.06);
  --white: #FFFFFF;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Satoshi', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink-20); border-radius: 2px; }

/* CURSOR */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--ink); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s ease, height .3s ease, opacity .3s ease;
  opacity: .5;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--ink-10);
  transition: padding .3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px; width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--ink);
  display: none;
}
.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--ink);
  padding: 10px 24px; border-radius: 100px;
  transition: background .3s ease, color .3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--white); }

/* Hero nav variant (dark background) */
nav.nav-hero { background: transparent; border-bottom-color: transparent; }
nav.nav-hero .nav-logo-text { color: var(--white); }
nav.nav-hero .nav-links a { color: var(--white); }
nav.nav-hero .nav-links a::after { background: var(--white); }
nav.nav-hero .nav-cta { color: var(--white); border-color: rgba(255,255,255,0.5); }
nav.nav-hero .nav-cta:hover { background: var(--white); color: var(--ink); }
nav.nav-hero #nav-logo-dark { display: none; }
nav.nav-hero #nav-logo-light { display: block; }
nav:not(.nav-hero) #nav-logo-dark { display: block; }
nav:not(.nav-hero) #nav-logo-light { display: none; }

/* PAGE HERO */
.page-hero {
  min-height: 60vh; padding: 180px 60px 120px;
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.page-eyebrow span { width: 36px; height: 1px; background: var(--ink-60); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 112px); font-weight: 900;
  line-height: .92; letter-spacing: -.04em;
}
.page-title em { font-style: italic; font-weight: 300; color: var(--ink-60); }
.page-subtitle { font-size: 18px; color: var(--ink-60); max-width: 520px; line-height: 1.65; margin-top: 28px; }

/* SECTION HELPERS */
.container, .section-pad { max-width: 1400px; margin: 0 auto; padding: 120px 60px; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px,4.5vw,68px); font-weight: 900;
  line-height: 1; letter-spacing: -.035em;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  color: var(--white); background: var(--ink-deep);
  padding: 16px 36px; border-radius: 100px; text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: #222; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink-20); padding-bottom: 4px;
  transition: border-color .3s ease;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  color: var(--ink); background: transparent;
  padding: 16px 36px; border-radius: 100px; text-decoration: none;
  border: 1px solid var(--ink-20);
  transition: border-color .3s ease, background .3s ease;
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

/* DIVIDER */
.divider { height: 1px; background: var(--ink-10); margin: 0 60px; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-scale { opacity: 0; transform: scale(.93); }

/* FOOTER */
footer.site-footer {
  background: #0A0A0A; color: var(--white);
  padding: 80px 60px 48px; margin-top: 160px;
  position: relative; overflow: hidden;
}
footer.site-footer .footer-bg-text {
  position: absolute; bottom: -30px; right: -40px;
  font-family: var(--font-display); font-size: 220px; font-weight: 900;
  letter-spacing: -.06em; color: rgba(255,255,255,.04); pointer-events: none;
}
.footer-cta-inner {
  text-align: center; padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 56px;
}
.footer-cta-sub {
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 24px;
}
.footer-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(40px,6vw,96px); font-weight: 900;
  line-height: .95; letter-spacing: -.04em; margin-bottom: 48px;
}
.footer-cta-heading em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.35); }
.magnetic-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
  color: var(--ink); background: var(--white);
  padding: 20px 48px; border-radius: 100px; text-decoration: none;
  transition: transform .3s ease;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; filter: invert(1) brightness(2); }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 900; letter-spacing: -.04em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 6px; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.45); text-decoration: none; transition: color .3s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); text-align: right; }

/* HAMBURGER */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s, opacity .3s;
}
nav.nav-hero .nav-hamburger span { background: var(--white); }
.nav-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--ink); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-display); font-size: 36px; font-weight: 900;
  color: var(--white); text-decoration: none; letter-spacing: -.03em;
}
.nav-mobile-close {
  position: absolute; top: 28px; right: 28px;
  font-size: 32px; color: var(--white); background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
}

@media (max-width: 1024px) {
  nav { padding: 14px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero, .section-pad, .container { padding-left: 28px; padding-right: 28px; }
  .divider { margin: 0 28px; }
  footer.site-footer { padding: 60px 28px 40px; margin-top: 80px; }
  .footer-bottom { flex-direction: column; gap: 28px; align-items: flex-start; }
}
