:root {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #040914;
  --surface: #0b1629;
  --surface-alt: #122035;
  --card: #0f1c31;
  --accent: #64f2d7;
  --accent-strong: #3c89ff;
  --accent-soft: rgba(100, 242, 215, 0.14);
  --text: #f6fbff;
  --muted: #9db3d4;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  background: radial-gradient(circle at top, rgba(100, 242, 215, 0.08), rgba(4, 9, 20, 1));
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 950px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 9, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.4rem 0.7rem;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--text);
}

.header-cta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.btn {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  color: #041124;
  box-shadow: 0 15px 30px rgba(58, 169, 255, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--muted);
}

.site-nav ul#nav-list {
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .site-nav ul {
    position: absolute;
    top: 110%;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    padding: 1rem;
    flex-direction: column;
    gap: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }

  .site-nav[data-open="true"] ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}

.hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at top, rgba(58, 169, 255, 0.25), transparent 55%);
}

.hero {
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 20% 20%, rgba(60, 137, 255, 0.4), transparent 55%);
  z-index: 0;
}

.hero::after {
  background: radial-gradient(circle at 80% 10%, rgba(100, 242, 215, 0.3), transparent 60%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-media {
  border-radius: 1.5rem;
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 420px;
  box-shadow: 0 35px 60px rgba(4, 9, 20, 0.6);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-stats article {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-stats .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section {
  padding: 4rem 0;
}

.section.trust {
  background: var(--surface);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-grid article {
  padding: 1.75rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(15, 27, 47, 0.9), rgba(19, 33, 59, 0.95));
}

.section.highlights {
  background: var(--surface-alt);
}

.highlight-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.highlight-list li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.highlight-list span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(60, 137, 255, 0.8), rgba(100, 242, 215, 0.8));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #041124;
}

.section.services {
  background: var(--surface-alt);
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-stack {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(4, 9, 20, 0.35);
}

.card ul {
  margin-top: 0.8rem;
  list-style: disc;
  margin-left: 1.4rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.section.experience {
  background: linear-gradient(120deg, #060b16, #0f1f37);
}

.section-copy.light p {
  color: #c5d7ef;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline article {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(6, 10, 19, 0.6);
  border-radius: 0.8rem;
}

.timeline span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section.approach {
  background: var(--surface);
}

.pillars {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pillars article {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(100, 242, 215, 0.08), rgba(15, 28, 48, 0.95));
}

.section.process {
  background: linear-gradient(180deg, rgba(15, 29, 51, 0.9), #070d19);
}

.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-grid article {
  padding: 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(4, 9, 20, 0.7), rgba(15, 35, 63, 0.9));
  box-shadow: 0 25px 50px rgba(4, 9, 20, 0.4);
}

.section.quote {
  background: var(--surface);
}

.quote-card {
  padding: 2rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(10, 19, 33, 0.95), rgba(23, 38, 64, 0.95));
  box-shadow: 0 30px 60px rgba(4, 9, 20, 0.45);
  text-align: center;
}

.quote-body {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.quote-author {
  font-weight: 600;
  color: var(--accent);
}

.section.cta {
  background: linear-gradient(135deg, #0b1322, #152a42);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(4, 9, 20, 0.7);
  padding: 1.75rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

.cta-panel .small {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  background: #03070f;
  border-top: 1px solid var(--border);
}

.site-footer p {
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero-media {
    min-height: 280px;
  }

  .site-nav ul {
    right: 0.5rem;
  }
}
