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

:root {
  --black: #060608;
  --dark: #0d0d10;
  --panel: #111115;
  --border: #1e1e24;
  --white: #e8eaed;
  --white-dim: rgba(232,234,237,0.6);
  --white-faint: rgba(232,234,237,0.1);
  --teal: #00c2c7;
  --teal-dim: rgba(0,194,199,0.15);
  --teal-faint: rgba(0,194,199,0.06);
  --muted: #4a4a55;
  --serif: 'Cormorant Garamond', serif;
  --mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(0,194,199,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 21px; }
.nav-logo-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--teal);
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}
.nav-cta:hover { background: #00a8ad; }

/* PAGE WRAPPER */
.page { padding-top: 72px; min-height: 100vh; }

/* SECTION SPACING */
section { padding: 96px 56px; }
section.tight { padding: 64px 56px; }

/* EYEBROW */
.eyebrow {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--teal);
  opacity: 0.6;
}

/* DISPLAY HEADING */
.display {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--teal); }

.display-lg {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.display-lg em { font-style: italic; color: var(--teal); }

/* RULE */
.teal-rule { width: 48px; height: 1px; background: var(--teal); opacity: 0.7; margin: 28px 0; }

/* BODY TEXT */
.body-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
}
.body-text em { color: var(--white); font-style: italic; }

/* TEAL DOT */
.teal-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 8px;
  vertical-align: middle;
}

/* DIVIDER */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 56px;
}

/* FOOTER */
footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 64px 56px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo svg { width: 28px; height: 18px; }
.footer-tagline { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--white-dim); line-height: 1.6; }
.footer-col-title { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 10px; color: var(--muted); }
.footer-copy span { color: var(--teal); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-2 { animation: fadeUp 0.8s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.8s 0.3s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.8s 0.45s ease forwards; opacity: 0; }

/* BUTTONS */
.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-teal:hover { background: #00a8ad; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* NOISE TEXTURE OVERLAY */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* SHARED JS cursor + active nav */
