:root {
  --navy-950: #04111a;
  --navy-900: #071722;
  --navy-850: #0a1d2a;
  --navy-800: #0d2636;
  --navy-700: #133a4f;
  --blue-500: #247da6;
  --cyan-400: #50b1da;
  --cyan-300: #81c8e7;
  --red-500: #ff1f2d;
  --red-400: #ff4450;
  --white: #f6fbfe;
  --muted: #9eb2be;
  --muted-light: #c6d3da;
  --line: rgba(174, 216, 234, 0.13);
  --glass: rgba(10, 30, 43, 0.72);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(36, 125, 166, 0.16), transparent 28rem),
    radial-gradient(circle at 5% 42%, rgba(255, 31, 45, 0.06), transparent 24rem),
    var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 9px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  display: block;
  object-fit: contain;
}

.brand span {
  font-size: 1.34rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 0 5px rgba(255, 68, 80, 0.11);
}

.text-link {
  color: var(--muted-light);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  min-height: calc(100vh - 92px);
  padding: 58px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process-heading h2,
.cta-section h2 {
  margin: 0;
  font-weight: 730;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.35rem, 6.15vw, 6.1rem);
}

.hero h1 span {
  color: var(--cyan-400);
}

.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted-light);
  font-size: clamp(1.02rem, 1.45vw, 1.17rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.93rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-500), #e91324);
  box-shadow: 0 18px 40px rgba(255, 31, 45, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 50px rgba(255, 31, 45, 0.3);
}

.button-secondary {
  color: var(--muted-light);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: rgba(129, 200, 231, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 15px;
}

.benefit-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--cyan-400);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 555px;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(36, 125, 166, 0.22), rgba(36, 125, 166, 0.02) 58%, transparent 72%);
  filter: blur(8px);
}

.network-card {
  position: relative;
  width: min(100%, 475px);
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(129, 200, 231, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(16, 48, 66, 0.88), rgba(7, 23, 34, 0.9)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.network-card::after {
  position: absolute;
  right: -35%;
  bottom: -58%;
  width: 400px;
  height: 400px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 31, 45, 0.055);
  filter: blur(1px);
}

.network-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.network-topline > div {
  display: grid;
  gap: 4px;
}

.network-label,
.network-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.network-topline strong {
  font-size: 1rem;
}

.live-badge {
  padding: 6px 9px;
  color: var(--cyan-300);
  border: 1px solid rgba(129, 200, 231, 0.17);
  border-radius: 999px;
  background: rgba(80, 177, 218, 0.08);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hex-network {
  position: relative;
  z-index: 1;
  height: 320px;
}

.hex {
  position: absolute;
  display: grid;
  width: 58px;
  aspect-ratio: 1.12 / 1;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  place-items: center;
  background: var(--blue-500);
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.24));
}

.hex-one {
  top: 45px;
  left: 66px;
  background: #1d6280;
  animation: float 5.2s ease-in-out infinite;
}

.hex-two {
  top: 67px;
  right: 67px;
  width: 74px;
  background: var(--red-500);
  animation: float 5.6s 500ms ease-in-out infinite;
}

.hex-three {
  bottom: 53px;
  left: 47px;
  width: 47px;
  background: var(--cyan-400);
  animation: float 4.8s 250ms ease-in-out infinite;
}

.hex-four {
  right: 36px;
  bottom: 42px;
  width: 78px;
  background: #0d3346;
  animation: float 6.2s 700ms ease-in-out infinite;
}

.hex-five {
  right: 143px;
  bottom: 16px;
  width: 45px;
  background: var(--cyan-300);
  animation: float 5.4s 150ms ease-in-out infinite;
}

.hex-core {
  top: 50%;
  left: 50%;
  width: 115px;
  background: linear-gradient(145deg, #123d51, #092533);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.34));
}

.hex-core img {
  width: 72px;
  height: 64px;
  object-fit: contain;
}

.connector {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 200, 231, 0.36), transparent);
  transform-origin: center;
}

.connector-a {
  top: 112px;
  left: 103px;
  width: 215px;
  transform: rotate(14deg);
}

.connector-b {
  top: 208px;
  left: 88px;
  width: 220px;
  transform: rotate(-18deg);
}

.connector-c {
  top: 202px;
  left: 175px;
  width: 176px;
  transform: rotate(28deg);
}

.network-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.network-stats div {
  display: grid;
  gap: 3px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.network-stats div:first-child {
  padding-left: 0;
}

.network-stats div:last-child {
  border-right: 0;
}

.network-stats strong {
  font-size: 0.83rem;
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  color: var(--muted-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 23, 34, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 650;
}

.note-one {
  top: 59px;
  right: -12px;
}

.note-two {
  bottom: 58px;
  left: -18px;
}

.note-icon {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--cyan-300);
  border-radius: 8px;
  background: rgba(80, 177, 218, 0.11);
  place-items: center;
  font-size: 0.65rem;
}

.groups-section,
.process-section {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: end;
  column-gap: clamp(30px, 7vw, 105px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.process-heading h2,
.cta-section h2 {
  font-size: clamp(2.25rem, 4.1vw, 4.2rem);
}

.section-heading > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.group-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(15, 46, 63, 0.58), rgba(7, 23, 34, 0.72));
}

.group-card::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  content: "";
  border-radius: 50%;
  background: rgba(80, 177, 218, 0.07);
  filter: blur(3px);
}

.group-card-accent::after {
  background: rgba(255, 31, 45, 0.06);
}

.group-number {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.group-icon {
  position: relative;
  width: 100px;
  height: 88px;
  margin: 34px 0 25px;
}

.group-icon span {
  position: absolute;
  display: block;
  width: 48px;
  aspect-ratio: 1.12 / 1;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.group-icon span:first-child {
  top: 0;
  left: 0;
  background: var(--cyan-400);
}

.group-icon span:nth-child(2) {
  top: 34px;
  left: 26px;
  background: #1d6381;
}

.group-icon span:last-child {
  top: 4px;
  left: 52px;
  background: #0d3346;
}

.group-icon-private span:first-child {
  background: var(--red-500);
}

.group-icon-private span:nth-child(2) {
  background: #0d3346;
}

.group-icon-private span:last-child {
  background: var(--cyan-300);
}

.group-card h3,
.process-list h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.group-card p {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 13px 0 26px;
  color: var(--muted);
}

.card-tag {
  position: absolute;
  bottom: 32px;
  left: 34px;
  z-index: 2;
  padding: 6px 10px;
  color: var(--muted-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
  font-weight: 650;
}

.process-heading {
  max-width: 760px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  min-height: 165px;
  padding: 4px 29px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list > li > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--cyan-300);
  border: 1px solid rgba(129, 200, 231, 0.16);
  border-radius: 10px;
  background: rgba(80, 177, 218, 0.07);
  place-items: center;
  font-size: 0.66rem;
  font-weight: 700;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  margin: 22px 0 112px;
  padding: 55px 58px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 72% 15%, rgba(255, 255, 255, 0.16), transparent 19rem),
    linear-gradient(135deg, #247da6, #14516d);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.cta-section::after {
  position: absolute;
  right: -60px;
  bottom: -95px;
  width: 270px;
  aspect-ratio: 1.12 / 1;
  content: "";
  opacity: 0.22;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: var(--red-500);
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-section .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-section h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.cta-section p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.button-light {
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.footer-brand {
  white-space: nowrap;
}

.footer-brand span {
  color: #718895;
}

.site-footer p {
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
}

.site-footer > a {
  color: var(--cyan-300);
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay-short {
  transition-delay: 100ms;
}

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

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 530px;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 45px;
    height: 40px;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 88px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .benefit-list {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .network-card {
    padding: 20px;
  }

  .hex-network {
    height: 285px;
    transform: scale(0.94);
  }

  .note-one {
    top: 18px;
    right: -4px;
  }

  .note-two {
    bottom: 8px;
    left: -2px;
  }

  .network-stats div {
    padding: 0 8px;
  }

  .network-stats strong {
    font-size: 0.72rem;
  }

  .groups-section,
  .process-section {
    padding: 88px 0;
  }

  .group-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .group-card {
    min-height: 380px;
    padding: 28px;
  }

  .card-tag {
    left: 28px;
  }

  .process-list {
    gap: 27px;
    margin-top: 48px;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: auto;
    padding: 0 0 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .cta-section {
    margin-bottom: 80px;
    padding: 40px 28px;
    border-radius: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 430px) {
  .network-label {
    display: none;
  }

  .network-card {
    width: calc(100% + 2px);
  }

  .hex-network {
    margin-inline: -20px;
    transform: scale(0.82);
  }

  .network-stats span {
    font-size: 0.62rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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