/* ============================================================
   S.E.E.Comm — Global Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --teal:        #8CBFB9;
  --teal-light:  #B2D5D1;
  --teal-dark:   #5A9E97;

  /* Subsidiary brand colours */
  --solis-gold:  #F5A623;
  --sky-silver:  #C8D0DC;
  --blue-steel:  #2E6DA4;
  --high-lime:   #8FC43A;
  --charcoal:    #1A1E23;
  --navy:        #0F1318;
  --off-white:   #F4F5F3;
  --white:       #FFFFFF;
  --mid-grey:    #7A8590;
  --text-dark:   #2C3038;
  --text-body:   #4A5260;
  --text-muted:  #5A6475;
  --border-teal: rgba(140,191,185,0.3);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 900px) {
  .container { padding: 0 28px; }
}

/* ── Typography helpers ─────────────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-label--light { color: var(--teal); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title--light { color: var(--white); }
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-title--light em { color: var(--teal-light); }

.section-subtitle {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}
.section-subtitle--light { color: rgba(255,255,255,0.5); }

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(15,19,24,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 60px;
  box-shadow: 0 1px 0 rgba(140,191,185,0.1);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal-light); }
.nav-partner-btn {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-partner-btn:hover {
  background: var(--teal);
  color: var(--navy);
}
@media (max-width: 900px) {
  nav { padding: 22px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,0.3) 0%, rgba(10,14,20,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 64px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .section-label { color: var(--teal); margin-bottom: 12px; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
}
.page-hero-title em { font-style: italic; color: var(--teal-light); }
@media (max-width: 900px) {
  .page-hero-content { padding: 0 28px 48px; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(140,191,185,0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--teal); }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  font-weight: 300;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.footer-rule {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-rule span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}
.footer-rule p {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.cta-strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-strip-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-strip-heading em { font-style: italic; color: var(--teal-light); }
.cta-strip-sub {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  max-width: 520px;
}
.cta-strip-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}
.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 36px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.cta-strip-btn:hover { background: var(--teal-light); transform: translateY(-2px); }
.cta-strip-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  text-align: center;
}
@media (max-width: 900px) {
  .cta-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip-action { min-width: unset; }
}

/* ── NDA MODAL ──────────────────────────────────────────────── */
.nda-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,8,12,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nda-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.nda-modal {
  background: var(--off-white);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  scrollbar-width: thin;
  scrollbar-color: var(--teal-light) transparent;
}
.nda-backdrop.open .nda-modal {
  transform: translateY(0) scale(1);
}
.nda-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--mid-grey);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  transition: color 0.2s;
}
.nda-close:hover { color: var(--charcoal); }
.nda-step { padding: 52px 52px 48px; }
.nda-step--hidden { display: none; }
.nda-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 10px;
}
.nda-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.nda-intro {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
}
.nda-form { display: flex; flex-direction: column; gap: 20px; }
.nda-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nda-field { display: flex; flex-direction: column; gap: 7px; }
.nda-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}
.nda-field label span { color: var(--teal-dark); }
.nda-field input,
.nda-field select {
  background: var(--white);
  border: 1px solid var(--border-teal);
  border-radius: 0;
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.nda-field input:focus,
.nda-field select:focus { border-color: var(--teal-dark); }
.nda-field input::placeholder { color: #A8B0BC; }
.nda-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}
.nda-next-btn:hover { background: var(--teal-dark); }
.nda-doc-wrap {
  background: var(--white);
  border: 1px solid var(--border-teal);
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal-light) transparent;
}
.nda-doc {
  padding: 36px 40px;
  font-size: 0.83rem;
  line-height: 1.8;
  color: #3A424F;
  font-weight: 300;
}
.nda-doc-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.nda-doc h3 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  margin-bottom: 20px;
  text-align: center;
}
.nda-doc h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 20px 0 8px;
}
.nda-doc p { margin-bottom: 10px; }
.nda-doc-footer-note { margin-top: 20px; font-style: italic; color: #7A8590; }
.nda-doc-sigblock { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #DDE2DF; }
.nda-doc-sigcol { display: flex; flex-direction: column; gap: 0.25rem; }
.nda-doc-siglabel { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #7A8590; margin: 0; }
.nda-doc-signame { font-size: 1rem; font-weight: 600; color: #1A1E23; margin: 0.25rem 0 0; }
.nda-doc-sigtitle { font-size: 0.85rem; color: #4A5260; margin: 0; }
.nda-doc-sigaddress { font-size: 0.75rem; color: #7A8590; margin: 0.5rem 0 0; }
.nda-sig-section { margin-top: 8px; }
.nda-sig-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.nda-canvas-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-teal);
  border-bottom: 2px solid var(--teal-dark);
  margin-bottom: 8px;
  overflow: hidden;
}
#sigCanvas {
  display: block;
  width: 100%;
  height: 140px;
  cursor: crosshair;
  touch-action: none;
}
.nda-clear-sig {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: 1px solid var(--border-teal);
  color: var(--mid-grey);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.nda-clear-sig:hover { color: var(--charcoal); border-color: var(--teal-dark); }
.nda-sig-hint {
  font-size: 0.75rem;
  color: #A8B0BC;
  font-weight: 300;
  margin-bottom: 24px;
}
.nda-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin-bottom: 28px;
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 300;
}
.nda-checkbox-wrap input { display: none; }
.nda-checkbox-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid rgba(140,191,185,0.5);
  background: var(--white);
  margin-top: 2px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.nda-checkbox-wrap input:checked + .nda-checkbox-box {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.nda-checkbox-wrap input:checked + .nda-checkbox-box::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.nda-sig-actions { display: flex; gap: 16px; align-items: center; }
.nda-back-btn {
  background: none;
  border: 1px solid var(--border-teal);
  color: var(--mid-grey);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.nda-back-btn:hover { color: var(--charcoal); border-color: var(--charcoal); }
.nda-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  transition: background 0.25s;
}
.nda-submit-btn:hover { background: var(--charcoal); }
.nda-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 10px;
}
.nda-confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(90,158,151,0.12);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  margin-bottom: 28px;
}
.nda-confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.nda-confirm-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 16px;
}
.nda-confirm-email {
  font-size: 0.82rem;
  color: var(--mid-grey);
  font-weight: 300;
  margin-bottom: 36px;
}
.nda-done-btn {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.25s;
}
.nda-done-btn:hover { background: var(--teal-dark); }

@media (max-width: 900px) {
  .nda-step { padding: 36px 28px; }
  .nda-field-row { grid-template-columns: 1fr; }
  .nda-title { font-size: 2rem; }
}
/* ============================================================
   S.E.E.Comm — Mobile Navigation
   Add these rules to the bottom of assets/global.css
   ============================================================ */

/* ── Hamburger button ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F4F5F3;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate burger into X when open */
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ────────────────────────────────────── */
.nav-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #0F1318;
  border-left: 1px solid rgba(140, 191, 185, 0.15);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  padding: 2rem;
  box-sizing: border-box;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #F4F5F3;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0.25rem 0.5rem;
}

.nav-mobile__close:hover { opacity: 1; }

.nav-mobile__links {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.nav-mobile__links li {
  border-bottom: 1px solid rgba(140, 191, 185, 0.1);
}

.nav-mobile__links li:first-child {
  border-top: 1px solid rgba(140, 191, 185, 0.1);
}

.nav-mobile__links a {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4F5F3;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile__links a:hover,
.nav-mobile__links a.active {
  color: #8CBFB9;
}

.nav-mobile__cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background: #5A9E97;
  color: #F4F5F3;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}

.nav-mobile__cta:hover { background: #8CBFB9; }

/* ── Backdrop ───────────────────────────────────────────────── */
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 9, 0.6);
  z-index: 999;
  backdrop-filter: blur(2px);
}

.nav-mobile-backdrop.open {
  display: block;
}

/* ── Show burger, hide desktop items on mobile ──────────────── */
@media (max-width: 860px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }

  .nav-partner-btn--desktop {
    display: none !important;
  }
}
.about-link {
  color: #F4F5F3 !important;
  border-bottom-color: #F4F5F3 !important;
}

.about-link:hover {
  color: #8CBFB9 !important;
  border-bottom-color: #8CBFB9 !important;
}
