* {
  box-sizing: border-box;
}

:root {
  --navy: #071a3b;
  --blue: #0877f9;
  --blue-2: #1769ed;
  --green: #13b96f;
  --ink: #172d52;
  --muted: #607492;
  --line: #dce6f1;
  --soft: #f6faff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(21, 49, 82, .10);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 72px), 1428px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 70px;
  border-bottom: 1px solid rgba(216, 226, 239, .86);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.logo-link img {
  width: 174px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 28px;
}

.nav-link,
.nav-drop > summary {
  position: relative;
  min-height: 69px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: #193255;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
}

.nav-drop {
  position: relative;
}

.nav-drop summary::-webkit-details-marker {
  display: none;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  width: 235px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-drop-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  color: #294565;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-drop-menu a:hover {
  background: #f4f8fe;
}

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

.lang-chip {
  min-height: 40px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: #193255;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.login-link {
  color: #0766dc;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.demo-btn,
.primary-btn,
.secondary-btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.demo-btn,
.primary-btn {
  border: 1px solid var(--blue);
  background: linear-gradient(135deg, #0877f9, #1269e9);
  color: #fff;
  box-shadow: 0 10px 25px rgba(8,119,249,.19);
}

.secondary-btn {
  border: 1.5px solid var(--blue);
  color: #076be7;
  background: rgba(255,255,255,.96);
}

.demo-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 474px;
  border-bottom: 1px solid #e4ebf4;
  background:
    radial-gradient(circle at 18% 17%,
      rgba(13, 119, 249, .08),
      transparent 31%),
    linear-gradient(90deg, #f9fcff 0%, #fff 48%, #f2f8fc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg,
      transparent 0 53%,
      rgba(111, 177, 220, .055) 53% 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 474px;
  display: grid;
  grid-template-columns:
    minmax(470px, .84fr)
    minmax(650px, 1.16fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 43px 0 37px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #5a7191;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(45px, 4.15vw, 64px);
  line-height: 1.015;
  letter-spacing: -.042em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 645px;
  margin: 17px 0 22px;
  color: #536987;
  font-size: 18px;
  line-height: 1.48;
}

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

.capabilities {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 13px;
}

.capability {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 9px;
}

.capability-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,228,240,.7);
  border-radius: 11px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(28,57,91,.06);
  font-size: 19px;
}

.capability strong {
  display: block;
  overflow: hidden;
  color: #193256;
  font-size: 12.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.capability small {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #71829b;
  font-size: 10.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-stage {
  position: relative;
  height: 410px;
  align-self: end;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 30px 0 20px 50px;
  border-radius: 34px;
  opacity: .88;
  background:
    radial-gradient(circle at 75% 16%,
      rgba(255,255,255,.92),
      transparent 25%),
    linear-gradient(135deg,
      rgba(231,243,250,.6),
      rgba(246,250,253,.2));
  filter: blur(.2px);
}

.laptop {
  position: absolute;
  width: 72%;
  height: 309px;
  right: 1.5%;
  top: 29px;
  z-index: 3;
  border: 9px solid #121b2b;
  border-bottom-width: 13px;
  border-radius: 16px 16px 8px 8px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(8,32,62,.25);
}

.laptop::after {
  content: "";
  position: absolute;
  width: 112%;
  height: 17px;
  left: -6%;
  bottom: -27px;
  border-radius: 2px 2px 18px 18px;
  background:
    linear-gradient(180deg,#e4e9ef,#97a6b5);
  box-shadow: 0 8px 12px rgba(19,40,62,.16);
}

.screen {
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #f7faff;
}

.screen-head {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #e3eaf3;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}

.screen-body {
  height: calc(100% - 43px);
  display: grid;
  grid-template-columns: 94px 1fr;
}

.screen-sidebar {
  padding: 11px 9px;
  background: #fff;
  border-right: 1px solid #e4ebf4;
}

.screen-nav {
  padding: 7px 8px;
  margin-bottom: 5px;
  border-radius: 5px;
  color: #405877;
  font-size: 8px;
  font-weight: 700;
}

.screen-nav.active {
  background: #0877f9;
  color: #fff;
}

.screen-content {
  padding: 16px;
}

.mock-greeting {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 850;
}

.mock-sub {
  margin-top: -9px;
  margin-bottom: 13px;
  color: #74849a;
  font-size: 7px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}

.mock-kpi {
  min-height: 58px;
  padding: 8px;
  border: 1px solid #e2eaf3;
  border-radius: 7px;
  background: #fff;
  font-size: 7px;
}

.mock-kpi strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.mock-lower {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1.65fr .9fr;
  gap: 8px;
}

.mock-chart,
.mock-quick {
  min-height: 90px;
  padding: 9px;
  border: 1px solid #e2eaf3;
  border-radius: 7px;
  background: #fff;
  font-size: 7px;
}

.chart-svg {
  width: 100%;
  height: 61px;
  margin-top: 7px;
}

.quick-row {
  padding: 5px;
  margin-top: 4px;
  border-radius: 4px;
  background: #f7faff;
}

.phone {
  position: absolute;
  z-index: 5;
  left: 5.5%;
  bottom: 21px;
  width: 137px;
  height: 283px;
  border: 7px solid #111a2a;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 44px rgba(10,35,66,.27);
}

.phone::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  top: 7px;
  left: 50%;
  border-radius: 999px;
  background: #111a2a;
  transform: translateX(-50%);
}

.phone-inner {
  padding: 29px 10px 10px;
}

.phone-brand {
  margin-bottom: 15px;
  color: #086ee7;
  font-size: 12px;
  font-weight: 850;
}

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

.phone-tile {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 7px 3px;
  border-radius: 8px;
  background: #f7faff;
  color: #234060;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
}

.phone-icon {
  color: #0877f9;
  font-size: 15px;
}

.phone-tabs {
  position: absolute;
  right: 8px;
  bottom: 9px;
  left: 8px;
  padding-top: 8px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #edf1f6;
  color: #71839a;
  font-size: 7px;
}

.community-box {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 31px;
  width: 92px;
  min-height: 128px;
  padding: 16px 11px;
  border-radius: 6px;
  background:
    linear-gradient(160deg,#fff,#eaf7f2);
  box-shadow: 0 14px 28px rgba(16,55,80,.11);
  color: #17304f;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.14;
}

.community-mark {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 22px;
}

.metrics-wrap {
  padding-top: 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(20,50,84,.04);
}

.metric {
  min-height: 105px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 12px;
  align-items: center;
  border-right: 1px solid #e5ebf3;
}

.metric:last-child {
  border-right: 0;
}

.metric-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 23px;
  font-weight: 800;
}

.green {
  color: #0ca85e;
  background: #e8f8ee;
}

.blue {
  color: #126ee5;
  background: #eaf2ff;
}

.purple {
  color: #8747ed;
  background: #f1eaff;
}

.orange {
  color: #f67d16;
  background: #fff0e4;
}

.teal {
  color: #14a7a7;
  background: #e6f7f7;
}

.metric-label {
  color: #263b5c;
  font-size: 12px;
  font-weight: 750;
}

.metric-value {
  display: block;
  margin-top: 2px;
  color: #071b3c;
  font-size: 20px;
  font-weight: 880;
}

.metric-note {
  display: block;
  margin-top: 2px;
  color: #647993;
  font-size: 10px;
}

.metric-note.good {
  color: #12a65f;
}

.experience {
  padding: 27px 0 31px;
}

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-row h2 {
  margin: 3px 0 0;
  font-size: 27px;
  letter-spacing: -.025em;
}

.section-copy {
  margin: 0;
  color: #607491;
  font-size: 13px;
}

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

.persona {
  position: relative;
  min-height: 139px;
  padding: 19px 46px 18px 19px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-content: start;
  border: 1px solid #dfe7f1;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(22,50,83,.03);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.persona:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(22,50,83,.08);
}

.persona-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 21px;
}

.persona h3 {
  margin: 6px 0 5px;
  font-size: 15px;
}

.persona p {
  margin: 0;
  color: #526987;
  font-size: 11.5px;
  line-height: 1.5;
}

.persona-arrow {
  position: absolute;
  top: 25px;
  right: 18px;
  color: #44617f;
  font-size: 18px;
}

.contact-strip {
  margin: 0 0 30px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 14px;
  background:
    linear-gradient(110deg,#f6faff,#eef8f5);
}

.contact-strip h3 {
  margin: 0;
  font-size: 20px;
}

.contact-strip p {
  margin: 4px 0 0;
  color: #5c718f;
  font-size: 13px;
}

.contact-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid #e4ebf4;
  background: #fff;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.footer-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  color: #506783;
  font-size: 12px;
}

.footer-links a {
  text-decoration: none;
}

.social {
  font-weight: 900;
  color: #435a79;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1230px) {
  .shell {
    width: min(calc(100% - 48px), 1180px);
  }

  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .hero h1 {
    font-size: 51px;
  }

  .community-box {
    display: none;
  }

  .metric {
    padding-inline: 15px;
  }
}

@media (max-width: 980px) {
  .main-nav,
  .lang-chip {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-size: 20px;
  }

  .header-actions {
    gap: 10px;
  }

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

  .hero-copy {
    padding-bottom: 5px;
  }

  .product-stage {
    width: min(100%, 760px);
    height: 380px;
    margin-inline: auto;
  }

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

  .metric {
    border-bottom: 1px solid #e5ebf3;
  }

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

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

  .site-header {
    height: 64px;
  }

  .logo-link img {
    width: 147px;
  }

  .login-link {
    display: none;
  }

  .demo-btn {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .product-stage {
    height: 305px;
  }

  .laptop {
    width: 82%;
    height: 223px;
    top: 27px;
  }

  .phone {
    width: 102px;
    height: 213px;
    left: 1%;
  }

  .phone-grid {
    gap: 5px;
  }

  .phone-tile {
    min-height: 42px;
    font-size: 7px;
  }

  .screen-body {
    grid-template-columns: 63px 1fr;
  }

  .screen-sidebar {
    padding: 8px 5px;
  }

  .screen-nav {
    padding: 5px 3px;
    font-size: 6px;
  }

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

  .mock-kpi:nth-child(n+3) {
    display: none;
  }

  .mock-lower {
    grid-template-columns: 1fr;
  }

  .mock-quick {
    display: none;
  }

  .metrics,
  .personas {
    grid-template-columns: 1fr;
  }

  .section-row {
    display: block;
  }

  .section-copy {
    margin-top: 8px;
  }

  .contact-strip {
    display: block;
  }

  .contact-actions {
    margin-top: 16px;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .footer-inner {
    padding: 20px 0;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
