@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --teal: #1B6B7B;
  --deep-teal: #1A2E32;
  --light-teal: #4DB8CC;
  --off-white: #F5F2EE;
  --linen: #E8E2D9;
  --sand: #D9D2C8;
  --warm-grey: #7A7470;
  --black: #1A1A1A;
  --border: rgba(26,26,26,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--off-white);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--off-white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--deep-teal) !important; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--off-white);
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--deep-teal); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }

/* TYPOGRAPHY */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 16px;
}

.lead {
  font-size: 17px;
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

/* PROOF STRIP */
.proof-strip {
  background: var(--linen);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 60px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--warm-grey);
  white-space: nowrap;
}

.proof-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}

/* FOOTER */
footer {
  background: var(--deep-teal);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(245,242,238,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

footer p {
  font-size: 13px;
  color: rgba(245,242,238,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .proof-strip { padding: 16px 24px; gap: 16px; }
}
