:root {
  --deep-navy: #0a1024;
  --teal-depth: #0d3b4d;
  --vibrant-teal: #00d1c2;
  --electric-aqua: #00f0ff;
  --glow-aqua: #b6fff5;
  --text: #f1ffff;
  --muted: #8fb1be;
  --muted-strong: #b9d8df;
  --surface: rgba(9, 20, 45, 0.7);
  --surface-strong: rgba(9, 20, 45, 0.92);
  --surface-soft: rgba(13, 59, 77, 0.3);
  --border: rgba(0, 240, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 209, 194, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(0, 240, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #07101f 0%, var(--deep-navy) 40%, #081121 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(182, 255, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 245, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.page-glow {
  position: fixed;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-glow-left {
  top: 7rem;
  left: -8rem;
  background: rgba(0, 209, 194, 0.12);
}

.page-glow-right {
  top: 12rem;
  right: -8rem;
  background: rgba(0, 240, 255, 0.12);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-symbol-frame,
.brand-wordmark-frame {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-symbol-frame {
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
}

.brand-wordmark-frame {
  width: 6.4rem;
}

.brand-symbol,
.brand-wordmark {
  display: block;
  filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.16));
}

.brand-symbol {
  width: auto;
  height: 100%;
}

.brand-wordmark {
  width: 100%;
  height: auto;
}

.site-nav {
  display: inline-flex;
  gap: 1.3rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--electric-aqua);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2.8rem 0 2rem;
}

.hero-copy,
.hero-panel,
.service-card,
.approach-card,
.contact-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(182, 255, 245, 0.04), rgba(10, 16, 36, 0.02)),
    var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius-xl);
  animation: fade-up 700ms ease both;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--electric-aqua);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  margin: 0.5rem 0 0.2rem;
  color: var(--glow-aqua);
}

.hero-text,
.service-card p,
.approach-card p,
.section-heading p,
.panel-card p,
.hero-point p,
.contact-note,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  margin-top: 1.4rem;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--vibrant-teal), var(--electric-aqua));
  color: var(--deep-navy);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 36px rgba(0, 240, 255, 0.32);
}

.button-secondary {
  border: 1px solid rgba(182, 255, 245, 0.18);
  background: rgba(10, 16, 36, 0.4);
  color: var(--glow-aqua);
}

.hero-points {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.point-line {
  width: 2px;
  min-height: 3.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--electric-aqua), transparent);
}

.hero-point strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--glow-aqua);
  font-size: 0.98rem;
}

.hero-panel {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  animation: fade-up 700ms 120ms ease both;
}

.logo-frame {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(182, 255, 245, 0.12);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 240, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(10, 16, 36, 0.8), rgba(13, 59, 77, 0.52));
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 245, 0.35), transparent);
}

.hero-logo {
  display: block;
  width: min(100%, 28rem);
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 0 34px rgba(0, 240, 255, 0.12));
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-card {
  padding: 1.2rem;
  border: 1px solid rgba(182, 255, 245, 0.1);
  border-radius: var(--radius-md);
  background: rgba(7, 16, 31, 0.5);
}

.panel-card-wide {
  grid-column: 1 / -1;
}

.panel-label,
.service-number {
  margin-bottom: 0.6rem;
  color: var(--electric-aqua);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-card h2,
.service-card h3,
.approach-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section {
  padding: 2.3rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.service-grid,
.approach-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.approach-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  animation: fade-up 700ms ease both;
}

.service-card:nth-child(2),
.approach-card:nth-child(2) {
  animation-delay: 100ms;
}

.service-card:nth-child(3),
.approach-card:nth-child(3) {
  animation-delay: 200ms;
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 240, 255, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(8, 17, 33, 0.96), rgba(13, 59, 77, 0.72));
  animation: fade-up 700ms ease both;
}

.contact-copy {
  max-width: 40rem;
}

.contact-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
}

.contact-link {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(182, 255, 245, 0.18);
  border-radius: 999px;
  background: rgba(182, 255, 245, 0.08);
  color: var(--glow-aqua);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-note {
  font-size: 0.9rem;
  text-align: right;
}

.site-footer {
  padding: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .approach-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero,
  .contact-card {
    display: grid;
  }

  .logo-frame {
    min-height: 18rem;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.5rem;
  }

  .site-header,
  .site-footer {
    gap: 1rem;
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .brand {
    gap: 0.72rem;
  }

  .brand-symbol-frame {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-wordmark-frame {
    width: 5.7rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .approach-card,
  .contact-card {
    border-radius: 24px;
  }

  .logo-frame {
    min-height: 14rem;
  }

  .hero-logo {
    width: min(100%, 21rem);
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: stretch;
  }

  .contact-link,
  .contact-note {
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .approach-card,
  .contact-card {
    animation: none;
  }
}
