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

:root {
  --green: #1D9E75;
  --green-light: #E1F5EE;
  --green-glow: rgba(29,158,117,0.12);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #181818;
  --white: #ffffff;
  --gray: #9a9994;
  --border: rgba(255,255,255,0.07);
  --border-green: rgba(29,158,117,0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(29,158,117,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
body:has(a:hover) .cursor { transform: translate(-50%,-50%) scale(2.5); }
body:has(a:hover) .cursor-ring { width: 50px; height: 50px; opacity: 0.5; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 56px;
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.nav-cta:hover {
  border-color: var(--green);
  background: rgba(29,158,117,0.1);
  color: var(--white) !important;
}

/* TICKER */
.ticker-wrap {
  background: var(--green);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerMove 24s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: rgba(0,0,0,0.65);
}
.t-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.35); flex-shrink: 0; }
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION COMMONS */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
  max-width: 500px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: 3px;
  padding: 13px 30px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  cursor: none;
}
.btn-solid {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}
.btn-solid:hover { background: #17a87c; transform: translateY(-1px); color: var(--white); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: none;
  padding-left: 0; padding-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.32s; }
.reveal-d4 { transition-delay: 0.44s; }

/* GRID OVERLAY */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 1;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 56px 0;
  background: var(--dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--white);
  display: block;
}
.footer-logo-text span { color: var(--green); }
.footer-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-newsletter { display: flex; gap: 8px; }
.footer-input {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.footer-input::placeholder { color: rgba(255,255,255,0.2); }
.footer-input:focus { border-color: var(--green); }
.footer-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-submit:hover { background: #17a87c; }
.footer-col-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col-links { list-style: none; }
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}
.footer-bottom span.green { color: var(--green); }

/* NOISE TEXTURE */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.5;
}
