:root{
  --bg:#ffffff;
  --card:#ffffff;
  --alt:#f7f9fc;
  --text:#1f2937;        /* dark grey text */
  --muted:#6b7280;       /* muted grey */
  --border:rgba(15,23,42,.10);
  --accent:#6fe3d6;      /* logo teal */
  --shadow: 0 10px 24px rgba(15,23,42,.06);
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; }
.logo{
  height:46px;
  width:auto;
  display:block;
}

.footer-logo{
  height:40px;
}
.brand-mark{
  width:36px; height:36px;
  border-radius:10px;
  display:grid; place-items:center;
  background: rgba(106,228,255,.14);
  border: 1px solid rgba(106,228,255,.35);
}
.brand-text{ font-size:18px; }

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}

.nav{ display:flex; align-items:center; gap:10px; }
.nav-link{
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  opacity:.9;
}
.nav-link:hover{ background: rgba(255,255,255,.06); opacity:1; }
.nav-cta{ border:1px solid rgba(106,228,255,.35); }
.dropdown-panel::before{
  content:"";
  position:absolute;
  left:0;
  top:-12px;
  width:100%;
  height:12px;
}
.dropdown{ position:relative; }
.dropdown-panel{
  position:absolute;
  top: 36px;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:10px;
  display:none;
}
.dropdown-panel a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  color:var(--text);
  opacity:.9;
}
.dropdown-panel a:hover{
  background: #f1f5f9;
  opacity:1;
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel{
  display:block;
}
.dropdown-panel a{ color: var(--text);
                 }
.dropdown-panel{
  transform: translateY(6px);
  opacity: 0;
  transition: all .18s ease;
}
.dropdown-panel{
  transition: opacity .15s ease, transform .15s ease;
}
.dropdown:hover .dropdown-panel{
  display:block;
  transform: translateY(0);
  opacity: 1;
}

.hero{ padding:60px 0 30px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(106,228,255,.25);
  background: rgba(106,228,255,.08);
  color: var(--muted);
  font-size: 13px;
}
h1{ font-size: clamp(34px, 4vw, 52px); line-height:1.1; margin:14px 0 10px; }
.accent{ color: var(--accent); }
.lead{ color: var(--muted); font-size:18px; line-height:1.6; margin: 0 0 18px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn:hover{ background: rgba(255,255,255,.07); }
.btn.primary{
  border:1px solid rgba(106,228,255,.35);
  background: rgba(106,228,255,.12);
}
.btn.small{ padding:10px 12px; border-radius:12px; }

.stats{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
.stat{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.stat-big{ font-weight:800; font-size:18px; }
.stat-small{ color: var(--muted); font-size:13px; margin-top:2px; }

.hero-card{
  border:1px solid var(--border);
  background: var(--card);
  border-radius:20px;
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h3{ margin:0 0 10px; }
.checklist{ margin:0; padding-left:18px; color: var(--muted); line-height:1.7; }
.mini-cta{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--border);
}
.muted{ color: var(--muted); }

.strip{
  padding:16px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.strip-row{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.strip-logos{ display:flex; gap:10px; flex-wrap:wrap; }
.logo-pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color: var(--muted);
  font-size:13px;
}

.section{ padding:54px 0; }
.section.alt{ background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 8px; font-size:28px; }
.section-head p{ margin:0; color: var(--muted); line-height:1.6; }

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--border);
  background: var(--card);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color: var(--muted); line-height:1.6; }
.card ul{ margin:0; padding-left:18px; color: var(--muted); line-height:1.7; }
.card.post .link{ margin-top:6px; display:inline-block; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.panel{
  border:1px solid var(--border);
  background: rgba(15,22,35,.45);
  border-radius:18px;
  padding:16px;
}
.chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.chips span{
  border:1px solid var(--border);
  background: var(--card);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color: var(--muted);
}

.callout{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(106,228,255,.28);
  background: rgba(106,228,255,.08);
}

.plain{ margin:0; padding-left:18px; color: var(--muted); line-height:1.7; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.form label{ display:block; color: var(--muted); font-size:14px; margin-bottom:10px; }
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(106,228,255,.4); }
.tiny{ font-size:12px; }

.footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  background: rgba(0,0,0,.10);
}
.footer-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--text); }

@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .menu-btn{ display:block; }
  .nav{
    position:absolute;
    right:4%;
    top:64px;
    width:min(360px, 92%);
    flex-direction:column;
    align-items:stretch;
    background: rgba(15,22,35,.95);
    border:1px solid var(--border);
    border-radius:18px;
    padding:10px;
    display:none;
    box-shadow: var(--shadow);
  }
  .nav.show{ display:flex; }
  .dropdown-panel{
    position: static;
    display:block;
    border:none;
    box-shadow:none;
    background: transparent;
    padding:0 0 6px 0;
  }
  .dropdown-panel a{ padding:10px 12px; }
  .grid-2, .contact-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
}









