:root {
  --navy-950: #071426;
  --navy-900: #0a1730;
  --navy-800: #10213f;
  --blue-500: #006fff;
  --blue-400: #2d8cff;
  --blue-200: #9dc9ff;
  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #edf2f7;
  --gray-200: #dbe4ef;
  --gray-500: #6b7a90;
  --gray-700: #334155;
  --ink: #0c1628;
  --line: rgba(148, 163, 184, 0.26);
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 111, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 36%, #f6f8fb 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 111, 255, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 74px;
  border-bottom: 1px solid rgba(219, 228, 239, 0.82);
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy-950);
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-500));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 111, 255, 0.24);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.28rem;
  box-shadow: 0 12px 32px rgba(7, 20, 38, 0.06);
}

.nav-links a {
  border-radius: 6px;
  padding: 0.56rem 0.7rem;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 760;
}

.nav-links a:hover {
  background: var(--gray-100);
  color: var(--blue-500);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: clamp(3.4rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3.55rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 620px;
  margin: 1.45rem 0 0;
  color: var(--gray-700);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.82rem 1rem;
  font-weight: 850;
}

.button.primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 111, 255, 0.25);
}

.button.primary:hover {
  background: #005fe0;
}

.button.secondary {
  border-color: var(--gray-200);
  background: var(--white);
  color: var(--navy-950);
}

.button.secondary:hover {
  border-color: rgba(0, 111, 255, 0.35);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-metrics div {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.9rem;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.hero-metrics span {
  margin-top: 0.2rem;
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(157, 201, 255, 0.36);
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow:
    0 34px 90px rgba(7, 20, 38, 0.26),
    0 0 0 8px rgba(255, 255, 255, 0.82);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 20, 38, 0.32)),
    radial-gradient(circle at 78% 18%, rgba(0, 111, 255, 0.24), transparent 22rem);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  z-index: 2;
  width: min(180px, 42%);
  border: 1px solid rgba(157, 201, 255, 0.36);
  border-radius: 8px;
  background: rgba(7, 20, 38, 0.78);
  color: var(--white);
  padding: 0.85rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.floating-panel span,
.floating-panel small {
  display: block;
  color: var(--blue-200);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.8rem;
  line-height: 1;
}

.floating-panel small {
  margin-top: 0.35rem;
  color: #c8d7ea;
  text-transform: none;
}

.panel-ai {
  left: 1rem;
  bottom: 1rem;
}

.panel-flow {
  right: 1rem;
  top: 1rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-200);
  box-shadow: var(--shadow);
}

.trust-band span {
  display: grid;
  min-height: 68px;
  place-items: center;
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.75rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(250px, 0.5fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 1.35rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.clients h2,
.contact h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section-heading p:last-child,
.clients-copy p,
.contact p {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.02rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 1.1rem;
  box-shadow: 0 14px 38px rgba(7, 20, 38, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 111, 255, 0.34);
  box-shadow: 0 24px 52px rgba(7, 20, 38, 0.12);
}

.product-card.featured,
.product-card.highlighted {
  background:
    radial-gradient(circle at 12% 4%, rgba(45, 140, 255, 0.24), transparent 14rem),
    var(--navy-950);
  color: var(--white);
}

.product-kicker {
  width: fit-content;
  border: 1px solid rgba(0, 111, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 111, 255, 0.08);
  color: var(--blue-500);
  padding: 0.32rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.featured .product-kicker,
.highlighted .product-kicker {
  border-color: rgba(157, 201, 255, 0.28);
  background: rgba(157, 201, 255, 0.13);
  color: var(--blue-200);
}

.product-card h3 {
  margin: 1.4rem 0 0.65rem;
  font-size: 1.42rem;
  line-height: 1.06;
}

.product-card p {
  margin: 0;
  color: var(--gray-500);
}

.featured p,
.highlighted p {
  color: #c7d5e8;
}

.product-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--blue-500);
  font-weight: 850;
}

.featured a,
.highlighted a {
  color: var(--blue-200);
}

.product-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.use-cases {
  border-top: 1px solid var(--gray-200);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.case-grid article {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 1.1rem;
}

.case-grid span {
  color: var(--blue-500);
  font-size: 0.82rem;
  font-weight: 950;
}

.case-grid h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.2rem;
}

.case-grid p {
  margin: 0;
  color: var(--gray-500);
}

.demos {
  border-top: 1px solid var(--gray-200);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 0.85rem;
  box-shadow: 0 18px 48px rgba(7, 20, 38, 0.08);
}

.demo-window {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 111, 255, 0.08), transparent 50%),
    var(--gray-50);
  padding: 1rem;
}

.demo-window.dark {
  border-color: rgba(157, 201, 255, 0.18);
  background:
    radial-gradient(circle at center, rgba(0, 111, 255, 0.22), transparent 13rem),
    var(--navy-950);
}

.window-bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-200);
}

.dashboard-lines {
  display: grid;
  gap: 0.5rem;
}

.line {
  display: block;
  width: 70%;
  height: 10px;
  border-radius: 99px;
  background: #c9d6e6;
}

.line.wide {
  width: 92%;
}

.line.short {
  width: 48%;
}

.chart-bars {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 120px;
}

.chart-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-500));
}

.ai-orb {
  width: 92px;
  height: 92px;
  margin: 1.6rem auto 1.2rem;
  border: 1px solid rgba(157, 201, 255, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-200), var(--blue-500) 38%, transparent 40%),
    rgba(0, 111, 255, 0.16);
  box-shadow: 0 0 42px rgba(0, 111, 255, 0.42);
}

.automation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.automation-flow span {
  border: 1px solid rgba(157, 201, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.38rem 0.56rem;
  font-size: 0.76rem;
  font-weight: 850;
}

.automation-flow i {
  width: 24px;
  height: 1px;
  background: var(--blue-400);
}

.terminal-lines {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.terminal-lines span {
  height: 8px;
  border-radius: 99px;
  background: rgba(157, 201, 255, 0.32);
}

.terminal-lines span:nth-child(2) {
  width: 72%;
}

.terminal-lines span:nth-child(3) {
  width: 54%;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  height: 100%;
}

.kanban div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 0.65rem;
}

.kanban span {
  display: block;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dce8f8, #f8fbff);
}

.demo-card h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.2rem;
}

.demo-card p {
  margin: 0 0 0.3rem;
  color: var(--gray-500);
}

.clients {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  border-top: 1px solid var(--gray-200);
}

.clients-copy p {
  max-width: 620px;
  margin-top: 1rem;
}

.client-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.client-segments span {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  padding: 0.72rem 0.85rem;
  color: var(--gray-700);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.05);
}

.plans {
  border-top: 1px solid var(--gray-200);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  display: flex;
  min-height: 386px;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 1.2rem;
  box-shadow: 0 16px 46px rgba(7, 20, 38, 0.06);
}

.plan-card.preferred {
  border-color: rgba(0, 111, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(0, 111, 255, 0.08), transparent 38%),
    var(--white);
  box-shadow: 0 24px 64px rgba(0, 111, 255, 0.14);
}

.plan-label {
  width: fit-content;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--blue-500);
  padding: 0.35rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.65rem;
}

.plan-card p {
  margin: 0;
  color: var(--gray-500);
}

.plan-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--gray-700);
  font-weight: 720;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
}

.plan-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--blue-500);
  font-weight: 900;
}

.plan-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 111, 255, 0.46), transparent 20rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact h2 {
  max-width: 820px;
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: #c7d5e8;
}

.contact p {
  max-width: 720px;
  margin-top: 1rem;
}

.contact .button.primary {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy-950);
  box-shadow: none;
}

.contact .button.primary:hover {
  background: var(--gray-100);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
  padding: 1.3rem 0 2rem;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--blue-500);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header::before {
    height: 132px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .nav-links a {
    flex: 1 0 auto;
    text-align: center;
  }

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

  .hero {
    min-height: auto;
    padding-top: 2.4rem;
  }

  .hero-visual img {
    min-height: 420px;
  }

  .trust-band,
  .case-grid,
  .demo-grid,
  .plan-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header::before {
    height: 136px;
  }

  .hero-metrics,
  .trust-band,
  .product-grid,
  .case-grid,
  .demo-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-visual img {
    min-height: 340px;
  }

  .floating-panel {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0.75rem;
  }

  .panel-ai,
  .panel-flow {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .section {
    padding: 3.4rem 0;
  }

  .product-card,
  .plan-card {
    min-height: auto;
  }

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