:root {
  --ink: #020617;
  --navy: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #dbe3ec;
  --soft: #f8fafc;
  --panel: #ffffff;
  --blue: #0369a1;
  --blue-dark: #075985;
  --green: #0f766e;
  --cyan-soft: #ecfeff;
  --ring: rgba(3, 105, 161, 0.35);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid var(--ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
  color: #fff;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 34px rgba(3, 105, 161, 0.32);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.75) 48%, rgba(15, 23, 42, 0.38) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 136px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.68fr);
  gap: 46px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

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

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

.metric {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.platform-preview {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.screen {
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--ink);
}

.screen-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.screen-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.screen-body {
  padding: 18px;
}

.screen-body p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  min-height: 96px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.bar {
  height: 8px;
  border-radius: 999px;
  margin: 9px 0;
  background: #dbeafe;
}

.bar:nth-child(3) {
  width: 74%;
  background: #ccfbf1;
}

.bar:nth-child(4) {
  width: 54%;
  background: #fef3c7;
}

.section {
  padding: 86px 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-kicker {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  color: var(--slate);
  font-size: 18px;
}

.proof-band {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--slate);
  font-weight: 800;
  background: var(--soft);
}

.problem {
  background: #fff;
}

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

.item,
.product,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.item {
  padding: 24px;
}

.item p,
.product p,
.step p {
  margin-bottom: 0;
  color: var(--slate);
}

.products {
  background: var(--soft);
}

.product {
  min-height: 252px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--blue);
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #155e75;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--slate);
  font-size: 14px;
}

.product li {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.product li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.partnership {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.mode-list {
  display: grid;
  gap: 12px;
}

.mode {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.mode strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.mode span {
  color: var(--slate);
}

.work {
  background: #edf3f8;
}

.step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.cta {
  padding: 82px 0;
  background: var(--navy);
  color: #fff;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.76);
}

.form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

.page-hero {
  padding: 136px 0 56px;
  background: var(--navy);
  color: #fff;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.legal {
  padding: 62px 0 86px;
  background: #fff;
}

.legal article {
  max-width: 860px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal p,
.legal li {
  color: var(--slate);
}

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

.legal ul {
  padding-left: 22px;
}

.footer {
  padding: 26px 0;
  background: #020617;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .platform-preview {
    max-width: 620px;
  }

  .proof-row,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .topbar .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 118px 0 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .hero-metrics,
  .proof-row,
  .grid-3,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .form .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }
}

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