:root {
  --navy: #06194b;
  --navy-2: #102963;
  --blue: #1266f3;
  --blue-2: #18a8ff;
  --sky: #eef8ff;
  --ink: #17233f;
  --muted: #62708d;
  --line: rgba(16, 57, 126, 0.13);
  --card: rgba(255, 255, 255, 0.86);
  --white: #ffffff;
  --orange: #f26f22;
  --green: #2fa46c;
  --purple: #6e49c9;
  --teal: #15839d;
  --gold: #c88916;
  --shadow: 0 22px 60px rgba(14, 38, 86, 0.12);
  --shadow-soft: 0 12px 34px rgba(15, 48, 104, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 245, 218, 0.84), transparent 27rem),
    radial-gradient(circle at 96% 10%, rgba(221, 244, 255, 0.95), transparent 34rem),
    linear-gradient(135deg, #fffdf8 0%, #f8fcff 52%, #edf8ff 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 18px;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  border-radius: 12px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(17, 75, 148, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(7, 26, 74, 0.08);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  line-height: 1;
}

.brand-lockup img {
  width: 176px;
  height: auto;
  object-fit: contain;
}

.brand-separator {
  width: 1px;
  height: 27px;
  background: rgba(6, 25, 75, 0.16);
}

.brand-product {
  color: var(--navy);
  font-weight: 760;
  font-size: 1.25rem;
  letter-spacing: -0.055em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 760;
  font-size: 0.96rem;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(18, 102, 243, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(18, 102, 243, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: white;
  background: linear-gradient(135deg, #0f55d7, #0c98ed);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(18, 102, 243, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 5px auto;
  display: block;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 76px;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.decor-dots {
  width: 150px;
  height: 150px;
  opacity: 0.52;
  background-image: radial-gradient(rgba(27, 110, 209, 0.34) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.decor-dots--left {
  top: 38px;
  left: 28px;
}

.decor-dots--right {
  top: 96px;
  right: 64px;
}

.decor-orbit {
  border-radius: 50%;
  border: 1px solid rgba(25, 118, 217, 0.13);
  opacity: 0.78;
}

.decor-orbit--one {
  top: -168px;
  right: -112px;
  width: 430px;
  height: 730px;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(235, 247, 255, 0.62), transparent 60%);
}

.decor-orbit--two {
  bottom: 380px;
  right: 140px;
  width: 400px;
  height: 260px;
  border-color: rgba(202, 143, 35, 0.14);
  transform: rotate(-17deg);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  margin: 0 auto 18px;
}

.hero-brand img {
  width: clamp(220px, 31vw, 370px);
  height: auto;
  object-fit: contain;
}

.hero-brand span {
  color: var(--navy);
  font-size: clamp(1.55rem, 3.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 1030px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(4rem, 9vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-headline {
  max-width: 1120px;
  margin: 16px auto 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 860;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-subtitle {
  max-width: 780px;
  margin: 20px auto 0;
  color: #2e3b58;
  font-size: clamp(1rem, 1.75vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 40px rgba(18, 102, 243, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(18, 102, 243, 0.2);
  box-shadow: var(--shadow-soft);
}

.center-divider {
  width: 164px;
  height: 28px;
  margin: 30px auto 24px;
  position: relative;
}

.center-divider::before,
.center-divider::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.center-divider::before {
  left: 0;
}

.center-divider::after {
  right: 0;
  transform: scaleX(-1);
}

.center-divider span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
  box-shadow: 0 0 0 7px rgba(18, 102, 243, 0.08);
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 30px;
  align-items: end;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 26px 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 94% 6%, rgba(30, 124, 245, 0.075), transparent 10rem),
    linear-gradient(180deg, rgba(255,255,255,.32), transparent 44%);
}

.number-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(7, 26, 74, 0.16);
}

.badge-blue { background: linear-gradient(135deg, #0a5aca, #2aa9ff); }
.badge-orange { background: linear-gradient(135deg, #d95612, #ff963b); }
.badge-green { background: linear-gradient(135deg, #1f7d4f, #51c98c); }
.badge-purple { background: linear-gradient(135deg, #4e32a5, #845ee1); }
.badge-teal { background: linear-gradient(135deg, #08748b, #35bad8); }
.badge-gold { background: linear-gradient(135deg, #a9650a, #f0ab2e); }
.badge-sky { background: linear-gradient(135deg, #0b60c7, #30b7ff); }
.badge-navy { background: linear-gradient(135deg, #06194b, #315db4); }

.feature-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 18px;
  align-items: center;
}

.feature-icon {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding-top: 16px;
}

.feature-icon svg {
  width: 88px;
  height: 88px;
  overflow: visible;
  filter: drop-shadow(0 14px 18px rgba(15, 55, 118, 0.14));
}

.feature-copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.feature-copy ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #1f2d4d;
  font-size: 0.96rem;
  line-height: 1.5;
}

.feature-copy li::marker {
  color: var(--blue);
}

.compact-list {
  columns: 1;
}

.vision-text {
  margin: 0;
  color: #223254;
  font-size: 0.93rem;
  line-height: 1.55;
}

.card-note {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 0;
  padding: 10px 14px;
  border-radius: 13px;
  color: #0b438e;
  background: rgba(18, 102, 243, 0.08);
  font-size: 0.9rem;
  font-weight: 780;
}

.card-note svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-note strong {
  color: inherit;
}

.note-blue { background: rgba(18, 102, 243, 0.08); color: #0a4aaa; }
.note-orange { background: rgba(242, 111, 34, 0.11); color: #b94b12; }
.note-green { background: rgba(47, 164, 108, 0.11); color: #1e754a; }
.note-purple { background: rgba(110, 73, 201, 0.11); color: #5234ab; }
.note-teal { background: rgba(21, 131, 157, 0.11); color: #0a6679; }
.note-gold { background: rgba(200, 137, 22, 0.12); color: #946113; }
.note-sky { background: rgba(18, 134, 220, 0.10); color: #0c5b9b; }
.note-navy { background: rgba(6, 25, 75, 0.08); color: var(--navy); }

.visual-panel {
  position: relative;
  align-self: stretch;
  min-height: 735px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 12% 2% 0;
  border-radius: 42% 58% 45% 55%;
  background: radial-gradient(circle at 52% 50%, rgba(219, 242, 255, 0.9), rgba(255,255,255,0) 63%);
  filter: blur(6px);
}

.visual-panel img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 20px 38px rgba(21, 69, 137, 0.10));
}

.platform-flow {
  max-width: 1060px;
  margin: 34px auto 0;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 28px);
  border: 1px solid rgba(18, 102, 243, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.flow-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 760;
  white-space: nowrap;
}

.flow-item svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 11px;
  color: var(--blue);
  background: rgba(18, 102, 243, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-arrow {
  color: var(--navy);
  font-size: 1.55rem;
  opacity: .88;
}

.bottom-tagline {
  margin: 17px 0 54px;
  text-align: center;
  color: var(--blue);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 520;
}

.growth-section {
  position: relative;
  padding: 72px 0 78px;
  border-block: 1px solid rgba(18, 102, 243, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.split-layout {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 890;
  line-height: 1;
  letter-spacing: -0.065em;
}

.section-copy p:not(.eyebrow),
.cta-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.72;
}

.roadmap-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(61, 188, 255, 0.20), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 255, 0.82));
  box-shadow: var(--shadow);
}

.roadmap-card {
  padding: 20px;
}

.roadmap-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.roadmap-tab {
  border: 1px solid rgba(18, 102, 243, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(18, 102, 243, 0.06);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.roadmap-tab:hover,
.roadmap-tab.active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  transform: translateY(-1px);
}

.roadmap-content {
  min-height: 220px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 10%, rgba(82, 196, 255, 0.22), transparent 14rem),
    linear-gradient(135deg, #fbfdff, #edf7ff);
}

.roadmap-content span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(18, 102, 243, 0.10);
  font-size: .84rem;
  font-weight: 900;
}

.roadmap-content h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.roadmap-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-section {
  padding: 78px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.demo-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(6, 25, 75, 0.16);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.demo-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 102, 243, 0.11);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(18, 102, 243, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand img {
  width: 145px;
}

.footer-brand .brand-product {
  font-size: 1.04rem;
}

.footer-inner p {
  margin: 0;
}

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

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

@media (max-width: 1120px) {
  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: auto;
    margin-top: 10px;
  }

  .visual-panel img {
    width: min(620px, 88vw);
  }
}

@media (max-width: 880px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand-lockup--nav img {
    width: 142px;
  }

  .brand-lockup--nav .brand-product {
    font-size: 1.02rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-brand {
    gap: 12px;
  }

  .feature-grid,
  .split-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .platform-flow {
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }
}

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

  .decor-dots--right {
    display: none;
  }

  .hero-brand {
    flex-wrap: wrap;
  }

  .hero-brand img {
    width: min(260px, 82vw);
  }

  .hero-brand span {
    font-size: 1.55rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.2rem);
  }

  .hero-headline {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }

  .feature-card {
    padding: 24px 16px 16px;
  }

  .feature-card__body {
    grid-template-columns: 94px 1fr;
    gap: 12px;
  }

  .feature-icon svg {
    width: 74px;
    height: 74px;
  }

  .feature-copy ul,
  .vision-text,
  .card-note {
    font-size: .9rem;
  }

  .platform-flow {
    align-items: stretch;
    gap: 10px;
  }

  .flow-item {
    flex: 1 1 140px;
    justify-content: center;
  }

  .bottom-tagline {
    margin-bottom: 44px;
  }

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

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

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