:root {
  --navy: #061f4a;
  --navy-2: #0a2e66;
  --green: #16d14f;
  --cyan: #03b8c8;
  --ink: #071f49;
  --muted: #61708a;
  --line: #d9dee7;
  --paper: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(6, 31, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 209, 79, 0.18) 0 2px, transparent 3px) 0 0 / 34px 34px,
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 42%, #ffffff 100%);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 5px;
  background: rgba(6, 31, 74, 0.08);
}

.progress__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transition: width 120ms linear;
}

.topbar {
  position: fixed;
  top: 26px;
  left: 50%;
  z-index: 18;
  display: flex;
  width: min(1180px, calc(100% - 44px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(6, 31, 74, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 50px rgba(6, 31, 74, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0e3978);
  box-shadow: inset -7px -7px 0 rgba(22, 209, 79, 0.9);
}

.brand__text {
  font-size: 1.15rem;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav a.is-active,
.nav a:hover {
  color: var(--navy);
  background: rgba(3, 184, 200, 0.1);
}

.panel {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: 118px 24px 72px;
}

.panel__content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.hero__copy h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.94;
  color: var(--navy);
}

.hero__copy p,
.story__copy p,
.finale__copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  border: 2px dashed rgba(6, 31, 74, 0.14);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.orbit--one {
  inset: 14px 24px 78px 18px;
}

.orbit--two {
  inset: 72px 78px 24px 82px;
  animation-direction: reverse;
}

.screen-stack {
  position: absolute;
  inset: 72px 16px auto;
  height: 310px;
  padding: 24px;
  border: 1px solid rgba(6, 31, 74, 0.1);
  border-radius: 8px;
  background: linear-gradient(160deg, #ffffff, #eef6fa);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.screen-stack::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 54%;
  height: 62%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 209, 79, 0.95), rgba(3, 184, 200, 0.95));
  content: "";
  z-index: -1;
}

.screen-stack__header {
  display: flex;
  gap: 8px;
}

.screen-stack__header span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(6, 31, 74, 0.22);
}

.screen-stack__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 28px;
}

.screen-stack__grid div {
  min-height: 76px;
  border-radius: 8px;
  background: rgba(6, 31, 74, 0.08);
}

.screen-stack__grid div:first-child {
  grid-row: span 2;
  min-height: 168px;
  background: linear-gradient(145deg, rgba(6, 31, 74, 0.92), rgba(10, 46, 102, 0.92));
}

.status {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 7px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(6, 31, 74, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

.status--secure {
  left: 0;
  bottom: 82px;
}

.status--live {
  right: 0;
  bottom: 22px;
}

.next-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateX(-50%);
}

.next-cue span {
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transform: rotate(45deg);
}

.story {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(238, 246, 250, 0.68));
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.story__grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.story__grid--reverse .story__copy {
  grid-column: 1;
  grid-row: 1;
}

.story__grid--reverse .story__visual {
  grid-column: 2;
}

.story__copy h2,
.finale__copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  font-weight: 900;
  line-height: 0.95;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.signal-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(6, 31, 74, 0.1);
  border-radius: 7px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.route {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: min(36vw, 520px);
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-50%);
}

.route__dash {
  position: absolute;
  inset: -10% auto -10% 50%;
  width: 64px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 0 14px, rgba(255, 255, 255, 0.75) 14px 28px) center / 8px 28px repeat-y,
    #d8dde4;
  transform: translateX(-50%) rotate(16deg);
}

.route--reverse .route__dash {
  transform: translateX(-50%) rotate(-16deg);
}

.route__node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 22px 50px rgba(6, 31, 74, 0.18);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.story__visual {
  position: relative;
  min-height: 460px;
}

.workstation {
  position: absolute;
  inset: 70px 28px auto;
}

.workstation__screen {
  display: grid;
  height: 286px;
  place-items: center;
  border: 14px solid var(--navy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 31, 74, 0.82), rgba(10, 46, 102, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.1) 18px 20px);
  box-shadow: var(--shadow);
}

.workstation__base {
  width: 180px;
  height: 26px;
  margin: 26px auto 0;
  border-radius: 6px;
  background: var(--navy);
}

.lock {
  position: relative;
  width: 132px;
  height: 108px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.lock::before {
  position: absolute;
  right: 24px;
  bottom: 84px;
  left: 24px;
  height: 78px;
  border: 16px solid var(--white);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  content: "";
}

.lock span {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 14px;
  height: 34px;
  border-radius: 999px;
  background: var(--navy);
  transform: translateX(-50%);
}

.barrier {
  position: absolute;
  top: 210px;
  width: 34px;
  height: 210px;
  border-radius: 7px;
  background: repeating-linear-gradient(45deg, var(--green) 0 18px, var(--navy) 18px 36px);
  box-shadow: 0 18px 40px rgba(6, 31, 74, 0.16);
}

.barrier--left {
  left: 0;
}

.barrier--right {
  right: 0;
}

.dashboard {
  min-height: 430px;
  padding: 22px;
  border: 1px solid rgba(6, 31, 74, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard__top {
  display: flex;
  gap: 8px;
}

.dashboard__top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(6, 31, 74, 0.2);
}

.dashboard__body {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  grid-template-rows: 230px 98px;
  gap: 18px;
  margin-top: 28px;
}

.radial {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, #ffffff 0 42%, transparent 43%),
    conic-gradient(var(--green) 0 78%, rgba(6, 31, 74, 0.08) 78% 100%);
}

.radial span {
  color: var(--navy);
  font-size: 4rem;
  font-weight: 900;
}

.bars {
  display: flex;
  align-items: end;
  gap: 14px;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
}

.timeline span {
  border-radius: 8px;
  background: rgba(3, 184, 200, 0.12);
}

.stream-frame {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), #092d64);
  box-shadow: var(--shadow);
}

.stream-frame__chrome {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  font-weight: 900;
}

.rec-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #ff244d;
  box-shadow: 0 0 0 9px rgba(255, 36, 77, 0.15);
}

.stream-frame__screen {
  position: relative;
  height: 376px;
  margin: 0 18px 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(180deg, #f5fbff, #dff3f8);
}

.wave {
  position: absolute;
  border: 3px solid rgba(3, 184, 200, 0.7);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}

.wave--one {
  inset: 68px 100px;
}

.wave--two {
  inset: 34px 58px;
  animation-delay: 0.7s;
}

.mini-window {
  position: absolute;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(6, 31, 74, 0.14);
}

.mini-window--a {
  top: 76px;
  left: 54px;
  width: 190px;
  height: 118px;
}

.mini-window--b {
  right: 64px;
  bottom: 62px;
  width: 230px;
  height: 132px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.cursor {
  position: absolute;
  top: 46%;
  left: 46%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 30px solid var(--navy);
  border-right: 18px solid transparent;
  filter: drop-shadow(0 12px 16px rgba(6, 31, 74, 0.18));
  transform: rotate(-18deg);
}

.finale {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 25%, rgba(22, 209, 79, 0.22), transparent 24%),
    radial-gradient(circle at 82% 65%, rgba(3, 184, 200, 0.2), transparent 24%),
    linear-gradient(145deg, var(--navy), #020f25);
}

.finale__grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(32px, 8vw, 118px);
  align-items: center;
}

.seal {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.seal__ring {
  position: absolute;
  width: min(420px, 74vw);
  aspect-ratio: 1;
  border: 20px solid rgba(255, 255, 255, 0.09);
  border-top-color: var(--green);
  border-right-color: var(--cyan);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.seal__core {
  display: grid;
  width: min(300px, 58vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08), 0 36px 80px rgba(0, 0, 0, 0.28);
}

.seal__core span {
  display: block;
  max-width: 92%;
  color: var(--white);
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.finale__copy h2,
.finale__copy p {
  color: var(--white);
}

.finale__copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.outcomes div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.outcomes strong,
.outcomes span {
  display: block;
}

.outcomes strong {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.outcomes span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.32;
}

.benefits {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(3, 184, 200, 0.18), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(22, 209, 79, 0.2), transparent 26%),
    linear-gradient(145deg, #031734, var(--navy));
}

.benefits::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 72px 72px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.benefits__content {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.benefits__copy {
  max-width: 940px;
}

.benefits__copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
}

.benefits__copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  font-weight: 700;
  line-height: 1.44;
}

.benefit-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.benefit-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.benefit-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.44;
}

.benefits__closing {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 900;
}

.control-scale {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.control-scale i {
  position: absolute;
  inset: 0 38% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.82;
    transform: scale(0.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

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

@media (max-width: 900px) {
  .topbar {
    top: 14px;
    width: min(100% - 24px, 680px);
  }

  .nav {
    display: none;
  }

  .panel {
    padding: 104px 18px 58px;
  }

  .hero__content,
  .story__grid,
  .story__grid--reverse,
  .finale__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story__grid--reverse .story__copy,
  .story__grid--reverse .story__visual {
    grid-column: auto;
    grid-row: auto;
  }

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

  .hero__visual,
  .story__visual,
  .seal {
    min-height: 360px;
  }

  .route {
    left: auto;
    right: -42px;
    width: 180px;
    opacity: 0.45;
  }

  .route__dash {
    width: 42px;
  }

  .route__node {
    width: 56px;
    height: 56px;
    border-width: 6px;
    font-size: 0.82rem;
  }

  .screen-stack {
    inset: 36px 10px auto;
    height: 260px;
  }

  .workstation {
    inset: 42px 18px auto;
  }

  .workstation__screen {
    height: 230px;
  }

  .barrier {
    height: 150px;
  }

  .dashboard__body {
    grid-template-columns: 1fr;
    grid-template-rows: 170px 170px 70px;
  }

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

  .benefit-board {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hero__copy p,
  .story__copy p,
  .finale__copy p,
  .benefits__copy p {
    font-size: 1rem;
  }

  .story__copy h2,
  .finale__copy h2,
  .benefits__copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .signal-list span {
    width: 100%;
    justify-content: center;
  }

  .status {
    font-size: 0.72rem;
  }

  .status--secure {
    bottom: 54px;
  }

  .status--live {
    bottom: 0;
  }

  .benefits__closing {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
