:root {
  color-scheme: dark;
  --brand-cyan: #00aee8;
  --brand-blue: #0c5ed8;
  --brand-indigo: #2c248f;
  --brand-violet: #712bc4;
  --brand-magenta: #d8257c;
  --brand-orange: #ff4a1f;
  --ink: #f8fbff;
  --ink-soft: #c7d2e2;
  --muted: #93a2b8;
  --line: rgba(216, 231, 255, 0.13);
  --surface: #02060e;
  --surface-blue: #07111f;
  --spectrum: linear-gradient(100deg, var(--brand-cyan), var(--brand-blue) 30%, var(--brand-violet) 58%, var(--brand-magenta) 78%, var(--brand-orange));
  --max: 1390px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 174, 232, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(216, 37, 124, 0.08), transparent 28rem),
    linear-gradient(180deg, #02060e 0%, #050a14 48%, #02060e 100%);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  height: 108px;
  grid-template-columns: 390px 1fr 220px;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(2rem, 5vw, 4.75rem);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 14, 0.88);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 360px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(2.2rem, 5vw, 4.2rem);
  color: rgba(248, 251, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 600;
}

.site-nav a,
.header-cta {
  transition: color 170ms ease, transform 170ms ease, background 170ms ease;
}

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

.header-cta {
  justify-self: end;
  border-radius: 6px;
  padding: 1rem 1.7rem;
  background: var(--spectrum);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(43, 36, 143, 0.22);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-panel {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(2rem, 5vw, 4.75rem);
}

.hero {
  min-height: 738px;
  padding-top: 156px;
  padding-bottom: 2.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(216, 37, 124, 0.18), transparent 28rem),
    radial-gradient(circle at 44% 14%, rgba(0, 174, 232, 0.14), transparent 34rem),
    linear-gradient(120deg, #02060e 0%, #061126 58%, #080714 100%);
}

.hero::before {
  position: absolute;
  inset: 108px 0 0 41%;
  content: "";
  background-image:
    linear-gradient(rgba(0, 174, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 37, 124, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 80%, transparent);
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -8rem;
  width: 74vw;
  height: 18rem;
  content: "";
  transform: skewX(-17deg);
  background: linear-gradient(90deg, rgba(0, 174, 232, 0.12), rgba(113, 43, 196, 0.16), rgba(255, 74, 31, 0.13));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(680px, 1.05fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 650px;
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.9rem 1.7rem;
  font-size: 1.02rem;
  font-weight: 700;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button span {
  font-size: 1.45rem;
  line-height: 0;
}

.button-primary {
  background: var(--spectrum);
  color: #fff;
  box-shadow: 0 18px 38px rgba(43, 36, 143, 0.22);
}

.button-secondary {
  border-color: rgba(0, 174, 232, 0.34);
  background: rgba(255, 255, 255, 0.055);
  color: #eaf7ff;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 460px;
}

.suite-panel {
  position: relative;
  width: min(690px, 50vw);
  overflow: hidden;
  border: 1px solid rgba(0, 174, 232, 0.22);
  border-radius: 24px;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 20% 16%, rgba(0, 174, 232, 0.2), transparent 17rem),
    radial-gradient(circle at 82% 82%, rgba(255, 74, 31, 0.24), transparent 17rem),
    linear-gradient(145deg, rgba(2, 9, 17, 0.98), rgba(5, 15, 27, 0.98));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.1),
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 55px rgba(0, 174, 232, 0.16);
}

.suite-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(120, 223, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 223, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.58;
}

.suite-panel-head,
.suite-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(120, 223, 255, 0.15);
  background: rgba(2, 8, 14, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.suite-panel-head {
  border-radius: 16px;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
}

.suite-panel-head span,
.suite-card > span {
  display: block;
  color: #35fff0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.suite-panel-head strong {
  display: block;
  max-width: 560px;
  margin-top: 0.65rem;
  color: #f8fbff;
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.suite-panel-head small {
  display: block;
  margin-top: 1.05rem;
  color: rgba(248, 251, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 800;
}

.suite-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.suite-card {
  min-height: 154px;
  border-radius: 14px;
  padding: 1rem;
}

.suite-card > span {
  color: rgba(248, 251, 255, 0.78);
  font-size: 0.67rem;
}

.risk-card {
  text-align: center;
}

.risk-ring {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 1rem auto 0.35rem;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #07111f 0 48%, transparent 49%),
    conic-gradient(var(--brand-cyan) 0 38%, var(--brand-violet) 38% 62%, var(--brand-orange) 62% 78%, rgba(255, 255, 255, 0.14) 78% 100%);
}

.risk-ring strong {
  color: #f8fbff;
  font-size: 1.45rem;
}

.risk-card small {
  color: rgba(248, 251, 255, 0.72);
}

.activity-card svg {
  width: 100%;
  margin-top: 0.9rem;
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 1;
}

.activity-card .line-cyan,
.activity-card .line-orange {
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-card .line-cyan {
  stroke: var(--brand-cyan);
}

.activity-card .line-orange {
  stroke: var(--brand-orange);
  opacity: 0.88;
}

.policy-card p {
  display: grid;
  grid-template-columns: 1rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  margin: 1rem 0 0;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.88rem;
}

.policy-card i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-cyan);
}

.policy-card p:nth-child(3) i {
  background: var(--brand-blue);
}

.policy-card p:nth-child(4) i {
  background: var(--brand-orange);
}

.policy-card strong {
  color: #fff;
}

.services {
  padding-top: 2.8rem;
  padding-bottom: 3.4rem;
  background:
    linear-gradient(180deg, #02060e, #050b16);
}

.services-shell {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}

.services-intro,
.service-card {
  min-height: 210px;
  padding: 1.5rem 1.6rem;
}

.services-intro {
  padding-left: 0.2rem;
}

.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--brand-violet);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.services-intro h2,
.section-heading h2,
.product-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.13;
}

.services-intro p,
.service-card p,
.step p,
.product-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.services-intro p {
  max-width: 300px;
}

.service-card {
  border-left: 1px solid var(--line);
  position: relative;
  text-align: center;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  content: "";
  background: var(--spectrum);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--brand-blue);
  filter: drop-shadow(0 10px 18px rgba(12, 94, 216, 0.16));
}

.service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.service-card h3 {
  margin: 1.2rem 0 0.7rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.product-shell,
.section-heading,
.approach-steps,
.contact-card {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.products {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 174, 232, 0.2), transparent 22rem),
    radial-gradient(circle at 84% 12%, rgba(216, 37, 124, 0.18), transparent 24rem),
    linear-gradient(135deg, #061329 0%, #100b35 60%, #1a0b2a 100%);
  color: #fff;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.product-copy h2 {
  color: #fff;
}

.product-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
}

.product-copy .button {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: #061329;
}

.product-visual {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 174, 232, 0.22), transparent 16rem),
    radial-gradient(circle at 82% 14%, rgba(255, 74, 31, 0.26), transparent 16rem),
    radial-gradient(circle at 70% 80%, rgba(216, 37, 124, 0.2), transparent 18rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.product-topline,
.workflow-line span,
.decision-board div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 20, 31, 0.66);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  border-radius: 16px;
  padding: 1rem;
}

.product-topline strong,
.product-topline small {
  display: block;
}

.product-topline strong {
  color: #fff;
  font-size: 1.45rem;
}

.product-topline small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.guard-glyph {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(53, 255, 240, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 174, 232, 0.22), rgba(113, 43, 196, 0.2) 58%, rgba(255, 74, 31, 0.24)),
    rgba(2, 8, 14, 0.78);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.workflow-line {
  display: grid;
  gap: 0.85rem;
  margin-top: 3.4rem;
}

.workflow-line span {
  border-left: 3px solid var(--brand-cyan);
  border-radius: 14px;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.workflow-line span:nth-child(3) {
  border-left-color: var(--brand-magenta);
}

.workflow-line span:nth-child(2) {
  border-left-color: var(--brand-blue);
}

.workflow-line span:nth-child(4) {
  border-left-color: var(--brand-orange);
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.decision-board div {
  border-radius: 14px;
  padding: 1rem;
}

.decision-board small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-board strong {
  display: block;
  margin-top: 0.5rem;
  color: #fff;
}

.approach,
.contact {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 174, 232, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(255, 74, 31, 0.08), transparent 20rem),
    linear-gradient(180deg, #07111f, #02060e);
}

.section-heading {
  margin-bottom: 2.4rem;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.step {
  border-top: 2px solid transparent;
  border-image: var(--spectrum) 1;
  padding-top: 1.4rem;
}

.step span {
  color: var(--brand-violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.step h3 {
  margin: 1.2rem 0 0.7rem;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.16;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)) padding-box,
    var(--spectrum) border-box;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(2rem, 5vw, 4.75rem);
  border-top: 1px solid var(--line);
  background: #02060e;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #78dfff;
  font-weight: 800;
}

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

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

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 310px 1fr 190px;
  }

  .brand-logo {
    width: 285px;
  }

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

  .hero-media {
    min-height: 420px;
  }

  .suite-panel {
    width: min(100%, 760px);
  }

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

  .services-intro,
  .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 78px;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-inline: 1.25rem;
  }

  .brand-logo {
    width: 205px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 35;
  }

  body.nav-open .site-header {
    height: 100dvh;
    align-items: flex-start;
    background: rgba(2, 6, 14, 0.98);
  }

  body.nav-open .brand-link,
  body.nav-open .nav-toggle {
    margin-top: 0.8rem;
  }

  .site-nav {
    position: absolute;
    inset: 0;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(2, 6, 14, 0.96);
    font-size: 1.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

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

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-inline: 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.2rem);
    line-height: 1.08;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

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

  .services-shell,
  .product-shell,
  .approach-steps,
  .contact-card,
  .decision-board {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: left;
  }

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