:root {
  --navy: #00172E;
  --white: #FEFEFE;
  --accent-light: #4299e1;
  --gray: #8899aa;
  --border: rgba(255,255,255,0.07);
  --font: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--navy); color: var(--white); min-height: 100vh; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 72px;
  background: rgba(0,23,46,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  cursor: pointer; display: flex; align-items: center; height: 100%;
  padding: 16px 0; text-decoration: none;
}
.nav-logo img {
  height: 32px; width: auto; display: block;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gray); text-decoration: none;
  cursor: pointer; transition: color .2s;
  background: none; border: none; font-family: var(--font);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 190;
  background: rgba(0,23,46,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 6vw 32px;
  display: flex; flex-direction: column; gap: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  display: block; padding: 13px 0;
  font-size: 13px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gray); text-decoration: none;
  cursor: pointer; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 72px; min-height: 100vh; }

/* ── HERO ── */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 80px 6vw 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,110,181,.16) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-60%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-60%) scale(1.1); opacity: .7; }
}

.hero-logo-mark {
  position: relative; z-index: 1; margin-bottom: 40px;
  animation: fadeUp .9s ease both;
}

.hero-logo-mark img {
  height: 110px; width: auto; display: block;
  mix-blend-mode: overlay;  
}

.hero-eyebrow {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 600; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 20px; animation: fadeUp .9s .1s ease both;
}
.hero-title {
  position: relative; z-index: 1;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800; letter-spacing: -.01em; line-height: 1.07;
  max-width: 800px; animation: fadeUp .9s .2s ease both;
}
.hero-title span { color: var(--accent-light); }
.hero-sub {
  position: relative; z-index: 1; margin-top: 24px;
  font-size: 1rem; font-weight: 300; color: var(--gray);
  max-width: 520px; line-height: 1.75; animation: fadeUp .9s .3s ease both;
}
.hero-cta {
  position: relative; z-index: 1; margin-top: 44px;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .9s .4s ease both;
}
.scroll-hint {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 56px; animation: fadeUp 1s .8s ease both;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gray);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-primary { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--white); }

/* ── SECTIONS ── */
section { padding: 100px 6vw; }
.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -.01em; line-height: 1.15; max-width: 680px;
}
.section-body {
  font-size: .95rem; font-weight: 300; color: var(--gray);
  line-height: 1.8; max-width: 560px; margin-top: 20px;
}

/* About */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; border-top: 1px solid var(--border);
}
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  padding: 32px 28px; transition: background .2s;
}
.stat-card:hover { background: rgba(255,255,255,.06); }
.stat-num { font-size: 2.6rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.stat-label { font-size: .78rem; font-weight: 400; color: var(--gray); letter-spacing: .08em; margin-top: 6px; }

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
}
@media (max-width: 900px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 44px 36px; background: rgba(255,255,255,.02);
  border: 1px solid var(--border); transition: background .25s;
}
.value-card:hover { background: rgba(255,255,255,.05); }
.value-icon { width: 44px; height: 44px; margin-bottom: 24px; display: flex; align-items: center; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--accent-light); fill: none; stroke-width: 1.5; }
.value-title { font-size: .9rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 10px; }
.value-text  { font-size: .82rem; font-weight: 300; color: var(--gray); line-height: 1.7; }

/* Services */
.services-section { background: rgba(255,255,255,.015); border-top: 1px solid var(--border); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px; margin-top: 60px;
}
.service-card {
  padding: 40px 36px; border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: border-color .25s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--accent-light); transition: height .3s;
}
.service-card:hover { border-color: rgba(66,153,225,.3); }
.service-card:hover::before { height: 100%; }
.service-num { font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--accent-light); margin-bottom: 20px; }
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.service-text { font-size: .82rem; font-weight: 300; color: var(--gray); line-height: 1.7; }

/* CTA Banner */
.cta-banner {
  border-top: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 32px; padding: 100px 6vw;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; max-width: 620px; line-height: 1.1; }

/* ── SIMPLE FOOTER ── */
.simple-footer {
  border-top: 1px solid var(--border);
  padding: 32px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.simple-footer .footer-info {
  font-size: .78rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}
.simple-footer .footer-info strong {
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.simple-footer .footer-links {
  display: flex;
  gap: 24px;
}
.simple-footer .footer-links a {
  font-size: .78rem;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.simple-footer .footer-links a:hover {
  color: var(--white);
}

/* ── CONTENT PAGES ── */
.content-page { max-width: 800px; margin: 0 auto; padding: 80px 6vw 100px; }
.content-page .page-label {
  font-size: 10px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 12px;
}
.content-page h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.content-page .updated { font-size: .8rem; color: var(--gray); margin-bottom: 56px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.content-page h2 { font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 44px 0 14px; }
.content-page p { font-size: .9rem; font-weight: 300; color: var(--gray); line-height: 1.85; margin-bottom: 12px; }
.content-page ul { margin: 12px 0 12px 20px; }
.content-page li { font-size: .9rem; font-weight: 300; color: var(--gray); line-height: 1.85; margin-bottom: 6px; }
.content-page a { color: var(--accent-light); text-decoration: none; }
.content-page a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .simple-footer { flex-direction: column; align-items: flex-start; }
}
