:root {
  --ink: #07111f;
  --ink-2: #12233a;
  --muted: #5e6b82;
  --line: rgba(15, 27, 44, 0.12);
  --paper: #f6f8fc;
  --white: #ffffff;
  --blue: #1463ff;
  --cyan: #05b8d7;
  --green: #10b981;
  --orange: #ff7a1a;
  --magenta: #d946ef;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 19, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  font-weight: 900;
  background:
    radial-gradient(circle at 70% 25%, var(--orange), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--cyan) 55%, var(--green));
  box-shadow: 0 10px 30px rgba(20, 99, 255, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.nav a:hover,
.header-action:hover,
.site-footer a:hover {
  color: var(--white);
}

.header-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(30px, 5vw, 68px);
  min-height: 640px;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 4vw, 68px) 54px;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(7, 17, 31, 0.96), rgba(12, 38, 70, 0.92) 45%, rgba(10, 107, 121, 0.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%231463ff'/%3E%3Cstop offset='.48' stop-color='%2305b8d7'/%3E%3Cstop offset='1' stop-color='%23ff7a1a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='%2307111f'/%3E%3Cg opacity='.5'%3E%3Cpath d='M70 730 C340 540 480 810 720 580 S1110 290 1530 430' fill='none' stroke='url(%23g)' stroke-width='90' stroke-linecap='round'/%3E%3Cpath d='M-120 250 C210 90 440 300 730 180 S1220 70 1690 210' fill='none' stroke='%2310b981' stroke-width='42' stroke-linecap='round' opacity='.42'/%3E%3C/g%3E%3Cg opacity='.28' fill='%23ffffff'%3E%3Ccircle cx='210' cy='210' r='4'/%3E%3Ccircle cx='320' cy='310' r='3'/%3E%3Ccircle cx='1210' cy='150' r='4'/%3E%3Ccircle cx='1390' cy='640' r='3'/%3E%3Ccircle cx='920' cy='730' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 34px rgba(20, 99, 255, 0.32);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button.dark.secondary {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.2);
}

.button.dark.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-window {
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 0 0 18px;
}

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

.window-bar span:nth-child(2) {
  background: var(--cyan);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

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

.metric-grid article {
  min-height: 128px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.metric-grid small,
.metric-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.metric-grid strong {
  display: block;
  margin: 16px 0 6px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.46);
}

.timeline span {
  width: var(--w);
  height: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  padding: 22px 16px;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
  background: var(--white);
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 68px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.product-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(8, 19, 36, 0.08);
}

.product-card.highlight {
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), #0c315d 54%, #0e8090);
}

.product-card h3 {
  margin: 24px 0 12px;
  font-size: 1.48rem;
}

.product-card p,
.product-card li,
.feature-list span,
.company-copy p,
.company-data .note,
.legal-content p {
  color: var(--muted);
  line-height: 1.7;
}

.product-card.highlight p,
.product-card.highlight li {
  color: rgba(255, 255, 255, 0.76);
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.product-icon.teal {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.product-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: #f4f7fb;
}

.feature-list article:nth-child(2) {
  border-left-color: var(--green);
}

.feature-list article:nth-child(3) {
  border-left-color: var(--orange);
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.company-data {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.company-data h3 {
  margin-bottom: 18px;
}

.company-data dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-data div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.company-data dt {
  color: rgba(255, 255, 255, 0.58);
}

.company-data dd {
  margin: 0;
  font-weight: 800;
}

.company-data .note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 4vw, 68px);
  background: linear-gradient(135deg, #e6f7ff, #fff3e6 52%, #ecfdf5);
}

.contact-band h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 4vw, 68px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  background: var(--white);
}

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 22px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .product-grid,
  .split-section,
  .company-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 38px;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .company-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}
