
:root {
  --navy-950: #04101e;
  --navy-900: #071526;
  --navy-850: #0a1d33;
  --navy-800: #102943;
  --blue-600: #1667e8;
  --blue-500: #2d7ff9;
  --cyan-400: #35c7dc;
  --green-500: #14b88a;
  --amber-400: #f2b84b;
  --ink-900: #101828;
  --ink-700: #344054;
  --ink-500: #667085;
  --line: #e0e7ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --shadow-lg: 0 30px 80px rgba(5, 24, 48, 0.18);
  --shadow-md: 0 18px 46px rgba(8, 32, 60, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-600);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 16, 30, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand img {
  flex: 0 0 auto;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-button {
  padding: 11px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .nav-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 127, 249, 0.25), transparent 30%),
    radial-gradient(circle at 14% 76%, rgba(53, 199, 220, 0.10), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 53%, var(--navy-850));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 68px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: #a9c8ff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(20, 184, 138, 0.12);
}

.hero h1 {
  max-width: 750px;
  margin: 24px 0 24px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(53, 199, 220, 0.62);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 18px 34px rgba(22, 103, 232, 0.30);
}

.button-primary img {
  border-radius: 7px;
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.button-dark {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 16px 32px rgba(7, 21, 38, 0.18);
}

.button-light {
  color: var(--navy-900);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.49);
  font-size: 12px;
  font-weight: 650;
}

.trust-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green-500);
  font-weight: 900;
}

.hero-preview {
  position: relative;
}

.preview-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: var(--navy-900);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.preview-toolbar {
  height: 52px;
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #06111f;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
}

.address-bar {
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
}

.secure-mark {
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
}

.preview-body {
  min-height: 432px;
  display: grid;
  grid-template-columns: 64px 1fr;
  background: #f5f8fc;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  background: var(--navy-850);
}

.preview-sidebar img {
  width: 31px;
  height: 31px;
  margin-bottom: 12px;
}

.preview-sidebar i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.preview-sidebar i.active {
  background: rgba(45, 127, 249, 0.72);
}

.preview-content {
  padding: 27px;
  color: var(--ink-900);
}

.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-heading > div {
  display: flex;
  flex-direction: column;
}

.preview-heading small,
.preview-card small {
  color: #8492a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.preview-heading strong {
  margin-top: 5px;
  font-size: 17px;
}

.preview-status {
  padding: 6px 8px;
  border-radius: 8px;
  color: #08795e;
  background: #e5f8f2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.preview-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #dfe8f2;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(8, 32, 60, 0.07);
}

.preview-card > img {
  width: 56px;
  height: 56px;
  border-radius: 15px;
}

.preview-card h2 {
  margin: 5px 0 4px;
  font-size: 15px;
}

.preview-card p {
  margin: 0;
  color: #7b899b;
  font-size: 9px;
}

.preview-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-600);
  background: #edf4ff;
  font-weight: 800;
}

.preview-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.preview-modules > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e2e9f1;
  border-radius: 14px;
  background: #fff;
}

.module-icon,
.capability-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 850;
}

.module-icon {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  border-radius: 10px;
  font-size: 12px;
}

.learning {
  background: linear-gradient(145deg, #2d7ff9, #1358c9);
}

.maintenance {
  background: linear-gradient(145deg, #21c6a1, #0f9579);
}

.preview-modules strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-modules small {
  overflow: hidden;
  color: #8592a4;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #e2e9f1;
  border-radius: 14px;
  background: #fff;
  color: #728096;
  font-size: 9px;
}

.preview-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #08795e;
}

.preview-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

.floating-note {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  color: #1b3454;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 850;
}

.note-one {
  left: -28px;
  bottom: 58px;
}

.note-two {
  right: -17px;
  top: 92px;
}

.portal-strip {
  color: #fff;
  background: var(--navy-900);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.strip-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.strip-grid strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.strip-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 45px;
}

.section-heading h2,
.cta-panel h2 {
  margin: 13px 0 15px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.cta-panel > div > p:last-child {
  margin: 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.75;
}

.applications-section {
  background: #fff;
}

.featured-app {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 12%, rgba(45, 127, 249, 0.08), transparent 25%),
    #fff;
  box-shadow: var(--shadow-md);
}

.featured-logo {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid #e0e8f1;
  border-radius: 24px;
  background: #f7faff;
}

.featured-logo img {
  width: 82px;
  height: 82px;
  border-radius: 21px;
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.live-badge,
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-badge {
  color: #08795e;
  background: #e7f8f3;
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

.type-badge {
  color: #275da8;
  background: #edf4ff;
}

.featured-copy h3 {
  margin: 17px 0 10px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.featured-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-500);
  line-height: 1.7;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.app-features span {
  padding: 8px 10px;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  color: var(--ink-700);
  background: #f9fbfd;
  font-size: 11px;
  font-weight: 700;
}

.featured-action {
  min-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
}

.featured-action small {
  color: #8a96a8;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.capabilities-section {
  background: var(--surface-soft);
}

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

.capability-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 32, 60, 0.06);
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(45, 127, 249, 0.045);
}

.capability-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  font-size: 24px;
}

.card-label {
  position: absolute;
  top: 34px;
  right: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #5a6a7f;
  background: #f1f5f9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  margin: 24px 0 12px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.capability-card > p {
  margin: 0;
  color: var(--ink-500);
  line-height: 1.7;
}

.capability-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  color: var(--ink-700);
  font-size: 14px;
}

.capability-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-500);
  font-weight: 900;
}

.process-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 218px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-card > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-600);
  background: #edf4ff;
  font-size: 12px;
  font-weight: 850;
}

.process-card h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  padding: 20px 0 88px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 50px 52px;
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 78% 12%, rgba(53, 199, 220, 0.23), transparent 30%),
    linear-gradient(135deg, var(--navy-850), var(--blue-600));
  box-shadow: 0 28px 70px rgba(22, 103, 232, 0.20);
}

.section-kicker.light {
  color: #b8d4ff;
}

.cta-panel h2 {
  font-size: clamp(31px, 4vw, 45px);
}

.cta-panel > div > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  padding: 38px 0;
  color: #fff;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.noscript-message {
  position: fixed;
  inset: auto 14px 14px;
  z-index: 300;
  padding: 13px 16px;
  border-radius: 12px;
  color: #fff;
  background: #b42318;
  text-align: center;
}

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

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

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

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

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

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-points {
    justify-content: center;
  }

  .hero-preview {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .featured-app {
    grid-template-columns: 100px 1fr;
  }

  .featured-logo {
    width: 100px;
    height: 100px;
  }

  .featured-logo img {
    width: 72px;
    height: 72px;
  }

  .featured-action {
    grid-column: 1 / -1;
    width: min(330px, 100%);
    justify-self: end;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 13px;
    right: 13px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: #08182a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
  }

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

  .site-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .site-nav .nav-button {
    text-align: center;
  }

  .hero {
    padding: 132px 0 74px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .preview-body {
    min-height: 390px;
    grid-template-columns: 48px 1fr;
  }

  .preview-content {
    padding: 20px 15px;
  }

  .preview-sidebar img {
    width: 28px;
    height: 28px;
  }

  .preview-card {
    grid-template-columns: 49px 1fr;
  }

  .preview-card > img {
    width: 49px;
    height: 49px;
  }

  .preview-arrow,
  .floating-note {
    display: none;
  }

  .preview-modules {
    grid-template-columns: 1fr;
  }

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

  .strip-grid > div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
  }

  .section {
    padding: 78px 0;
  }

  .featured-app {
    grid-template-columns: 1fr;
    padding: 27px 23px;
  }

  .featured-logo {
    width: 92px;
    height: 92px;
  }

  .featured-action {
    width: 100%;
    justify-self: stretch;
  }

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

  .cta-panel {
    padding: 38px 25px;
  }

  .cta-panel .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

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

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

  .strip-grid > div {
    min-height: 94px;
    padding: 17px 14px;
  }

  .strip-grid strong {
    font-size: 20px;
  }

  .preview-toolbar {
    grid-template-columns: 64px 1fr 20px;
  }
}
