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

:root {
  --bg:          #09090E;
  --bg-card:     #111118;
  --bg-card2:    #16161F;
  --border:      rgba(255,255,255,0.08);
  --border-hi:   rgba(255,255,255,0.14);
  --cyan:        #06B6D4;
  --cyan-dim:    rgba(6,182,212,0.12);
  --cyan-border: rgba(6,182,212,0.3);
  --white:       #FFFFFF;
  --text-1:      #F8FAFC;
  --text-2:      #94A3B8;
  --text-3:      #475569;
  --radius:      8px;
  --radius-lg:   12px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* ---- LAYOUT ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }
.divider { height: 1px; background: var(--border); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #050810;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-1);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hi);
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); }

/* ---- LOGO ---- */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
}
.logo-mark svg { display: block; flex-shrink: 0; }
.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.logo-wordmark .lw-brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.03em;
}
.logo-wordmark .lw-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(9,9,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 0 15px;
  height: 64px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-trigger:hover,
.nav-links > li > a.active,
.nav-links > li.open > .nav-trigger { color: var(--text-1); }
.nav-links > li > a.active {
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
  margin-bottom: -2px;
}
.nav-trigger .chev {
  width: 14px; height: 14px;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.15s;
  flex-shrink: 0;
}
.nav-links > li.open .chev { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  background: #12121A;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 300;
}
.nav-links > li.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.05); }
.nav-dropdown .dd-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--cyan);
  margin-top: 1px;
}
.nav-dropdown .dd-text { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown .dd-label { font-size: 13px; font-weight: 500; color: var(--text-1); line-height: 1.2; }
.nav-dropdown .dd-desc  { font-size: 11px; color: var(--text-3); line-height: 1.4; }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hi);
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-nav-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.28); }
.btn-nav-primary {
  font-size: 13px;
  font-weight: 600;
  color: #050810;
  background: var(--cyan);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-nav-primary:hover { opacity: 0.85; }

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  padding: 80px 0 72px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 720px; margin-bottom: 1.25rem; }
.page-hero .sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
}

/* ---- FOOTER ---- */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo .lw-brand { font-size: 15px; }
.footer-logo .lw-sub   { font-size: 12px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 13px; color: var(--text-2); text-decoration: none; }
.footer-links a:hover { color: var(--text-1); }
.footer-copy { font-size: 12px; color: var(--text-3); }

/* ---- HERO (home) ---- */
#hero { padding: 120px 0 100px; position: relative; }
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.hero-wordmark {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.hero-wordmark .lw-brand { font-size: 28px; }
.hero-wordmark .lw-sub  { font-size: 17px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--cyan); }
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat { background: var(--bg-card); padding: 1.5rem; text-align: center; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label { font-size: 12px; color: var(--text-3); font-weight: 400; }

/* ---- TICKER ---- */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 2rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.ticker-track {
  display: flex;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.ticker-track span {
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.ticker-track span.hi { color: var(--cyan); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- PHILOSOPHY ---- */
#philosophy { background: var(--bg-card); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.philosophy-text h2 { margin-bottom: 1.25rem; }
.philosophy-text p { color: var(--text-2); font-size: 15px; line-height: 1.9; margin-bottom: 1rem; }
.blockquote {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--cyan);
  background: var(--cyan-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.8;
}
.pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--border-hi); }
.pillar-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 15px;
}
.pillar-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.pillar-desc  { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ---- SERVICES ---- */
.services-header { margin-bottom: 3rem; }
.services-header h2 { margin-bottom: 0.75rem; }
.services-header p { color: var(--text-2); font-size: 16px; max-width: 560px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card { background: var(--bg-card); padding: 2.25rem; transition: background 0.2s; }
.service-card:hover { background: var(--bg-card2); }
.service-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.875rem; color: var(--text-1); font-size: 1.05rem; }
.service-desc { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.service-list li { font-size: 13px; color: var(--text-2); display: flex; align-items: baseline; gap: 8px; }
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.verticals { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2.5rem; align-items: center; }
.vertical-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-right: 4px; }
.vtag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--text-2);
}

/* ---- ABOUT ---- */
.about-section { background: var(--bg-card); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
.about-sidebar { position: sticky; top: 84px; }
.about-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.about-name { font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; letter-spacing: -0.02em; }
.about-role { font-size: 13px; color: var(--cyan); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.about-sidebar p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; }
.certs { display: flex; flex-wrap: wrap; gap: 6px; }
.cert {
  background: var(--bg-card2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-body h3 { font-size: 1rem; font-weight: 600; color: var(--text-1); margin-bottom: 0.75rem; margin-top: 2.5rem; }
.about-body h3:first-child { margin-top: 0; }
.about-body p { font-size: 14px; color: var(--text-2); line-height: 1.9; margin-bottom: 1rem; }
.engagements { display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.engagement {
  padding: 1.1rem 1.25rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color 0.2s;
}
.engagement:hover { border-color: var(--border-hi); border-left-color: var(--cyan); }
.engagement-co   { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.engagement-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1rem; }
.outcome { padding: 1rem; background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); }
.outcome strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.outcome span   { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ---- COVERAGE ---- */
.coverage-header { margin-bottom: 3rem; }
.coverage-header h2 { margin-bottom: 0.75rem; }
.coverage-header p { color: var(--text-2); font-size: 15px; max-width: 540px; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cov-card { background: var(--bg-card); padding: 1.375rem 1.5rem; transition: background 0.2s; }
.cov-card:hover { background: var(--bg-card2); }
.cov-name  { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.cov-scope { font-size: 12px; color: var(--text-2); line-height: 1.55; margin-bottom: 8px; }
.cov-tag {
  display: inline-block;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--bg-card); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { color: var(--text-2); font-size: 15px; line-height: 1.9; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.contact-item a { color: var(--cyan); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-icon {
  width: 32px; height: 32px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-form {
  background: var(--bg-card2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
label { display: block; font-size: 12px; font-weight: 500; color: var(--text-2); letter-spacing: 0.03em; margin-bottom: 6px; }
.f-input, .f-textarea, .f-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 9px 13px;
  color: var(--text-1);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.f-input::placeholder, .f-textarea::placeholder { color: var(--text-3); }
.f-input:focus, .f-textarea:focus, .f-select:focus { border-color: var(--cyan); }
.f-textarea { min-height: 100px; resize: vertical; }
.f-select { appearance: none; cursor: pointer; color: var(--text-2); }
.form-submit {
  width: 100%;
  background: var(--cyan);
  color: #050810;
  border: none;
  border-radius: var(--radius);
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.15s;
  letter-spacing: 0.01em;
}
.form-submit:hover { opacity: 0.85; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links > li > a,
  .nav-trigger { padding: 0 10px; font-size: 13px; }
  .btn-nav-ghost { display: none; }
  .logo-wordmark .lw-sub { display: none; }
}
@media (max-width: 900px) {
  .philosophy-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .outcomes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .page-hero { padding: 56px 0 48px; }
}
@media (max-width: 640px) {
  .nav-links > li > a,
  .nav-trigger { padding: 0 8px; font-size: 12px; }
  .nav-inner { gap: 0.5rem; }
}
@media (max-width: 560px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
