:root {
  --bg: #0a0f16;
  --bg-soft: #131b27;
  --panel: rgba(16, 23, 33, 0.84);
  --panel-light: #edf5fc;
  --text: #eef6ff;
  --text-dim: #9eb2c8;
  --text-dark: #0f1723;
  --line: rgba(238, 246, 255, 0.1);
  --accent: #24b7ff;
  --accent-warm: #8edcff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(36, 183, 255, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(10, 125, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #080d13 0%, #0a0f16 55%, #121a25 100%);
  color: var(--text);
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-light {
  background: rgba(237, 245, 252, 0.98);
  color: var(--text-dark);
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(13, 20, 30, 0.98), rgba(9, 14, 22, 0.98)),
    linear-gradient(90deg, rgba(36, 183, 255, 0.08), transparent 40%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-light .eyebrow {
  color: #0d7dcf;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 12ch;
}

.hero-copy h1 {
  max-width: 14ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  line-height: 1.7;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 22, 0.78);
  border-bottom: 1px solid rgba(238, 246, 255, 0.07);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

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

.brand-logo {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 28px rgba(36, 183, 255, 0.22));
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.2em;
}

.brand-text span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav>a:not(.button) {
  color: var(--text-dim);
  font-size: 0.95rem;
}

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

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

.button-primary {
  color: #07111b;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 18px 35px rgba(36, 183, 255, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(142, 220, 255, 0.2);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(142, 220, 255, 0.18);
  background: transparent;
}

.button-ghost-dark {
  color: var(--text-dark);
  border-color: rgba(15, 23, 35, 0.14);
  background: rgba(15, 23, 35, 0.04);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.24rem auto;
  background: var(--text);
}

.hero {
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

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

.hero-lead {
  max-width: 62ch;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  color: var(--text-dim);
}

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

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 56ch;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-dim);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.hero-panel,
.signal-grid {
  display: grid;
  gap: 1rem;
}

.panel-card,
.signal-card,
.service-card,
.outcome-card,
.proof-card,
.highlight-card,
.cta-panel,
.timeline-item {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 0.25rem);
}

.panel-label {
  margin-bottom: 0.7rem;
  color: var(--accent-warm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  max-width: unset;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.industry-tags span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border: 1px solid rgba(238, 246, 255, 0.08);
}

.signal-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
}

.signal-value,
.outcome-index {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.signal-value {
  color: var(--accent);
  font-size: 0.95rem;
}

.signal-title {
  margin-top: 0.35rem;
  font-weight: 700;
  font-size: 1.08rem;
}

.signal-text,
.service-card p,
.proof-card p,
.highlight-card p,
.industry-list p {
  margin-top: 0.65rem;
  color: var(--text-dim);
}

.trust-strip {
  padding: 1rem 0;
  border-top: 1px solid rgba(238, 246, 255, 0.06);
  border-bottom: 1px solid rgba(238, 246, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.split-intro,
.proof-layout,
.about-layout,
.industries-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.section-intro {
  max-width: 58ch;
  color: inherit;
  opacity: 0.82;
}

.section-copy {
  display: grid;
  gap: 1rem;
  max-width: 60ch;
}

.outcome-grid,
.services-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

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

.outcome-card,
.timeline-item {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 32, 47, 0.08);
  box-shadow: 0 20px 50px rgba(16, 32, 47, 0.08);
}

.outcome-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.outcome-index {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #0d7dcf;
  font-size: 0.85rem;
}

.outcome-card p,
.timeline-item p {
  margin-top: 0.75rem;
  color: rgba(16, 32, 47, 0.78);
}

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

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.service-icon,
.timeline-step {
  display: inline-grid;
  place-items: center;
  border-radius: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(36, 183, 255, 0.2), rgba(142, 220, 255, 0.2));
  color: var(--accent);
}

.industry-list {
  display: grid;
  gap: 1rem;
}

.industry-list article {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(238, 246, 255, 0.08);
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: var(--radius);
}

.timeline-step {
  min-width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #07111b;
}

.proof-stack,
.about-highlights {
  display: grid;
  gap: 1rem;
}

.proof-card,
.highlight-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
}

.proof-card-muted {
  background: rgba(255, 255, 255, 0.04);
  border-style: dashed;
}

.about-panel {
  display: grid;
  gap: 1rem;
}

.highlight-card span {
  display: inline-block;
  color: var(--accent-warm);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.35rem);
  background:
    linear-gradient(135deg, rgba(36, 183, 255, 0.14), rgba(142, 220, 255, 0.16)),
    rgba(237, 245, 252, 0.98);
  border-color: rgba(16, 32, 47, 0.08);
  box-shadow: 0 24px 70px rgba(16, 32, 47, 0.16);
  color: var(--text-dark);
}

.cta-panel p:not(.eyebrow) {
  margin-top: 0.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(238, 246, 255, 0.07);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.footer-logo {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 22px rgba(36, 183, 255, 0.18));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
}

.hero-orb,
.grid-glow {
  position: absolute;
  pointer-events: none;
}

.hero-orb {
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.22;
}

.hero-orb-one {
  top: 3rem;
  left: -8rem;
  background: #24b7ff;
}

.hero-orb-two {
  right: -8rem;
  bottom: 0;
  background: #0a7dff;
}

.grid-glow {
  inset: 2rem 0 auto;
  height: 24rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  opacity: 0.22;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(238, 246, 255, 0.08);
    background: rgba(10, 15, 22, 0.96);
    box-shadow: var(--shadow);
  }

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

  .hero-layout,
  .split-intro,
  .proof-layout,
  .about-layout,
  .industries-layout,
  .cta-panel,
  .services-grid,
  .outcome-grid,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .topbar-inner {
    min-height: 4.6rem;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-ghost,
  .button-ghost-dark {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
