:root {
  --black: #02050b;
  --ink: #050b16;
  --navy: #071426;
  --navy-2: #0a1d34;
  --blue: #0b63f6;
  --cyan: #00aeef;
  --white: #ffffff;
  --text: #e8f2ff;
  --muted: #9cadbd;
  --line: rgba(0, 174, 239, 0.22);
  --line-strong: rgba(0, 174, 239, 0.44);
  --panel: rgba(6, 18, 34, 0.76);
  --panel-solid: #08182d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.12), transparent 520px),
    linear-gradient(135deg, var(--black) 0%, var(--navy) 54%, #020817 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 78%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(2, 5, 11, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.brand-fallback {
  line-height: 1;
  letter-spacing: 0;
}

.brand-fallback strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
}

.brand-fallback span {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 11px 15px;
  background: rgba(0, 174, 239, 0.08);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: clamp(64px, 7vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  max-width: 840px;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
}

.lead {
  max-width: 700px;
  color: #d9e7f5;
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.65;
}

.section-heading {
  max-width: 870px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 34px rgba(0, 174, 239, 0.22);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  min-width: 0;
}

.signal-map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(10, 29, 52, 0.82), rgba(2, 8, 23, 0.9));
  box-shadow: var(--shadow);
}

.signal-map::before,
.signal-map::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 50%;
  animation: pulse-ring 5s ease-in-out infinite;
}

.signal-map::after {
  inset: 30%;
  animation-delay: 1.6s;
}

.signal-core,
.signal-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(2, 8, 23, 0.78);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.signal-core {
  inset: 50% auto auto 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  color: var(--cyan);
  font-size: 1.9rem;
  font-weight: 900;
}

.signal-node {
  min-width: 126px;
  min-height: 48px;
  padding: 12px 14px;
  color: #d9f6ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.node-produce {
  top: 52px;
  left: 48px;
}

.node-engage {
  top: 66px;
  right: 44px;
}

.node-connect {
  left: 36px;
  bottom: 118px;
}

.node-immersive {
  right: 36px;
  bottom: 110px;
}

.node-intelligence {
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.hero-proof div,
.pain-grid article,
.ecosystem-card,
.result-card,
.contact-form,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.hero-proof div {
  padding: 18px;
}

.hero-proof strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pain-grid article,
.ecosystem-card,
.result-card {
  padding: 24px;
}

.pain-grid span,
.ecosystem-card > span,
.solution-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.82rem;
}

.pain-grid p,
.ecosystem-card p,
.solution-row p,
.result-card span {
  color: var(--muted);
  line-height: 1.62;
}

.ecosystem {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 174, 239, 0.045));
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.ecosystem-orbit {
  margin-top: clamp(34px, 6vw, 64px);
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.ecosystem-oval {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 2px solid rgba(0, 174, 239, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(0, 174, 239, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(11, 99, 246, 0.14), rgba(0, 174, 239, 0.18), rgba(11, 99, 246, 0.1)),
    rgba(2, 8, 23, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 42px rgba(0, 174, 239, 0.2),
    inset 0 0 96px rgba(0, 174, 239, 0.14),
    var(--shadow);
  animation: ecosystem-glow 4.8s ease-in-out infinite;
}

.ecosystem-oval::before,
.ecosystem-oval::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 174, 239, 0.46);
  border-radius: 50%;
  animation: ecosystem-ring 5.6s ease-in-out infinite;
}

.ecosystem-oval::after {
  inset: 27%;
  border-color: rgba(255, 255, 255, 0.18);
  animation-delay: 1.4s;
}

.ecosystem-center,
.ecosystem-pill {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(2, 8, 23, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 24px rgba(0, 174, 239, 0.14);
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.ecosystem-center {
  top: 50%;
  left: 50%;
  width: min(260px, 46vw);
  min-height: 96px;
  padding: 18px 24px;
  transform: translate(-50%, -50%);
  color: var(--cyan);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  text-transform: uppercase;
  animation: ecosystem-core 3.8s ease-in-out infinite;
}

.ecosystem-pill {
  min-width: 148px;
  min-height: 50px;
  padding: 12px 18px;
  color: #d9f6ff;
  font-size: 0.94rem;
  animation: ecosystem-float 4.4s ease-in-out infinite;
}

.orbit-produce {
  top: 52px;
  left: 18%;
  animation-delay: 0s;
}

.orbit-engage {
  top: 52px;
  right: 18%;
  animation-delay: 0.45s;
}

.orbit-connect {
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  animation-name: ecosystem-float-left;
  animation-delay: 0.9s;
}

.orbit-immersive {
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  animation-name: ecosystem-float-right;
  animation-delay: 1.35s;
}

.orbit-intelligence {
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  animation-name: ecosystem-float-bottom;
  animation-delay: 1.8s;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 5vw, 54px);
}

.ecosystem-card {
  min-height: 260px;
}

.solution-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.solution-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) max-content;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.solution-row h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.solution-row p {
  margin-bottom: 0;
}

.solution-row a {
  color: var(--cyan);
  font-weight: 850;
}

.industries {
  background: rgba(255, 255, 255, 0.02);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-grid span,
.brand-wall span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #dcecff;
  font-weight: 750;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.result-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.32rem;
}

.result-card span {
  display: block;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.final-cta {
  padding-top: 48px;
}

.cta-panel {
  padding: clamp(32px, 6vw, 64px);
  background:
    linear-gradient(115deg, rgba(11, 99, 246, 0.24), rgba(0, 174, 239, 0.08)),
    var(--panel-solid);
}

.cta-panel h2 {
  max-width: 920px;
}

.contact {
  padding-top: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--cyan);
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form .full,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.14);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner a {
  color: var(--cyan);
  font-weight: 750;
}

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

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

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes ecosystem-glow {
  0%,
  100% {
    border-color: rgba(0, 174, 239, 0.62);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 34px rgba(0, 174, 239, 0.18),
      inset 0 0 86px rgba(0, 174, 239, 0.12),
      var(--shadow);
  }

  50% {
    border-color: rgba(0, 174, 239, 0.95);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 0 58px rgba(0, 174, 239, 0.32),
      inset 0 0 118px rgba(0, 174, 239, 0.2),
      var(--shadow);
  }
}

@keyframes ecosystem-ring {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes ecosystem-core {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes ecosystem-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ecosystem-float-left {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(8px);
  }
}

@keyframes ecosystem-float-right {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(-8px);
  }
}

@keyframes ecosystem-float-bottom {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes ecosystem-core-mobile {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.025);
  }
}

@keyframes ecosystem-float-mobile {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

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

  .hero-copy {
    max-width: 900px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-oval {
    min-height: 390px;
  }

  .orbit-produce {
    left: 12%;
  }

  .orbit-engage {
    right: 12%;
  }

  .orbit-connect {
    left: 4%;
  }

  .orbit-immersive {
    right: 4%;
  }

  .ecosystem-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(2, 5, 11, 0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 1px solid var(--line-strong) !important;
  }

  .split,
  .pain-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-row a {
    justify-self: start;
  }

  .ecosystem-oval {
    min-height: 500px;
    border-radius: var(--radius);
  }

  .ecosystem-center {
    top: 34px;
    width: calc(100% - 48px);
    transform: translateX(-50%);
    animation-name: ecosystem-core-mobile;
  }

  .ecosystem-pill {
    left: 50%;
    right: auto;
    width: calc(100% - 64px);
    transform: translateX(-50%);
  }

  .orbit-produce,
  .orbit-engage,
  .orbit-connect,
  .orbit-immersive,
  .orbit-intelligence {
    animation-name: ecosystem-float-mobile;
  }

  .orbit-produce {
    top: 158px;
  }

  .orbit-engage {
    top: 222px;
  }

  .orbit-connect {
    top: 286px;
  }

  .orbit-immersive {
    top: 350px;
  }

  .orbit-intelligence {
    top: 414px;
    bottom: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand-logo {
    height: 38px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .actions,
  .footer-inner {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .signal-map {
    min-height: 380px;
  }

  .signal-node {
    min-width: 104px;
    min-height: 42px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .signal-core {
    width: 92px;
    height: 92px;
  }

  .node-produce {
    top: 36px;
    left: 22px;
  }

  .node-engage {
    top: 44px;
    right: 18px;
  }

  .node-connect {
    left: 18px;
    bottom: 96px;
  }

  .node-immersive {
    right: 18px;
    bottom: 90px;
  }

  .hero-proof,
  .ecosystem-grid,
  .industry-grid,
  .brand-wall,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .ecosystem-card:last-child {
    grid-column: auto;
  }
}
