:root {
  --bg: #020611;
  --panel: rgba(7, 14, 34, 0.78);
  --panel-strong: rgba(9, 18, 46, 0.94);
  --panel-soft: rgba(16, 26, 58, 0.66);
  --text: #f2f7ff;
  --muted: #a9b4d0;
  --line: rgba(140, 214, 255, 0.16);
  --blue: #3a95ff;
  --cyan: #8beeff;
  --navy: #0a216d;
  --steel: #cad4ec;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --content-width: min(1060px, calc(100vw - 28px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(45, 140, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(139, 238, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #040915 0%, #020611 48%, #030817 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 122, 255, 0.32) 0%, rgba(32, 122, 255, 0) 72%);
  filter: blur(14px);
}

body::after {
  right: -180px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 238, 255, 0.2) 0%, rgba(139, 238, 255, 0) 70%);
  filter: blur(22px);
}

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

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

.site-shell {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 28px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  margin-top: 14px;
  padding: clamp(12px, 1.6vw, 14px) clamp(16px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 8, 24, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: clamp(40px, 3.5vw, 48px);
  height: clamp(40px, 3.5vw, 48px);
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.brand-copy strong {
  font-size: clamp(0.84rem, 0.95vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero,
.section,
.metrics,
.site-footer {
  margin-top: clamp(16px, 2vw, 22px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(14px, 1.8vw, 18px);
  align-items: center;
  padding: clamp(16px, 2.1vw, 22px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(145deg, rgba(10, 20, 48, 0.92), rgba(6, 11, 28, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: clip;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p:last-child,
.service-card p,
.timeline p,
.company-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.62;
  font-size: clamp(0.92rem, 0.95vw, 0.97rem);
}

.hero-text {
  max-width: 54ch;
  margin: 12px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #041225;
  background: linear-gradient(135deg, #b8f8ff, #55b0ff 55%, #91c3ff 100%);
  box-shadow: 0 18px 28px rgba(42, 128, 255, 0.3);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(151, 220, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 7px 10px;
  border: 1px solid rgba(139, 238, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 18, 46, 0.72);
  color: #dbe8ff;
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  min-height: clamp(220px, 28vw, 320px);
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1 / 1.08;
}

.logo-stage svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 45px rgba(2, 7, 20, 0.65));
}

.glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(26px);
}

.glow-left {
  width: 100px;
  height: 110px;
  top: 26px;
  left: 14px;
  background: rgba(54, 139, 255, 0.24);
}

.glow-right {
  width: 105px;
  height: 110px;
  right: 10px;
  top: 40px;
  background: rgba(139, 238, 255, 0.2);
}

.hero-card {
  position: absolute;
  z-index: 3;
  width: min(100%, 150px);
  padding: 12px 12px 10px;
  border: 1px solid rgba(145, 205, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(7, 16, 42, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 0.74rem;
  line-height: 1.3;
}

.card-top {
  top: 0;
  right: 0;
}

.card-bottom {
  left: 0;
  bottom: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.metrics article,
.service-card,
.timeline article,
.company-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.metrics article {
  padding: 18px;
}

.metrics strong,
.service-card h3,
.timeline h3,
.company-card h3 {
  display: block;
  margin: 0 0 8px;
  font-size: clamp(0.95rem, 1.05vw, 1rem);
}

.metrics span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.section {
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(180deg, rgba(8, 15, 36, 0.92), rgba(4, 9, 22, 0.78));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 18px;
}

.section-heading.narrow {
  max-width: 700px;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.service-grid,
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px;
}

.service-card,
.timeline article,
.company-card {
  padding: 18px;
}

.service-card {
  min-height: 176px;
  background:
    radial-gradient(circle at top right, rgba(80, 160, 255, 0.12), transparent 36%),
    var(--panel-soft);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 168px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(150, 235, 255, 0.18), rgba(58, 149, 255, 0.18));
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.company {
  background:
    radial-gradient(circle at right top, rgba(34, 111, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 15, 36, 0.92), rgba(4, 9, 22, 0.78));
}

.statement-card {
  min-height: 100%;
}

.details-card dl {
  margin: 0;
}

.details-card div + div {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(155, 215, 255, 0.1);
}

.details-card dt {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details-card dd {
  margin: 6px 0 0;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.9rem;
}

.details-card a {
  color: #d9f5ff;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  padding: clamp(18px, 2vw, 22px);
  background:
    linear-gradient(135deg, rgba(12, 32, 89, 0.92), rgba(5, 12, 32, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
}

.contact-actions .button {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
  font-size: 0.84rem;
}

.contact-actions .button.button-primary {
  width: 100%;
  justify-self: start;
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.contact-actions .text-link {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.text-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.site-footer {
  padding: 12px 8px 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
  }

  .hero-visual {
    min-height: 340px;
  }

  .card-top {
    right: 0;
  }

  .card-bottom {
    left: 0;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 22px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-card {
    position: relative;
    max-width: none;
    inset: auto;
    margin-top: 12px;
  }

  .logo-stage {
    width: min(100%, 220px);
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 20px, 100vw - 20px);
  }

  .topbar {
    top: 10px;
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .metrics article,
  .service-card,
  .timeline article,
  .company-card {
    padding: 16px;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions .button {
    white-space: normal;
  }

  .hero-visual {
    min-height: auto;
  }
}