:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: #d8dee6;
  --paper: #f8fafc;
  --white: #ffffff;
  --blue: #2f67e8;
  --blue-dark: #1d4ed8;
  --cyan: #42b7d6;
  --green: #16a34a;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 103, 232, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #eef4ff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand,
.nav-links,
.hero-actions,
.download-group,
.cta-actions,
.footer-meta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(47, 103, 232, 0.16);
  box-shadow: 0 10px 26px rgba(47, 103, 232, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a,
.footer-meta a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-meta a:hover {
  color: var(--blue);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-action {
  padding: 0 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.nav-action:hover,
.store-badge:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(47, 103, 232, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 44px 0 54px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.65rem, 5.15vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.15rem);
}

h3 {
  font-size: 1.28rem;
  line-height: 1.16;
}

.hero-lede,
.section-heading,
.split-layout p,
.employer-panel p,
.trust-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.download-group,
.cta-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.download-group {
  margin-top: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  min-height: 64px;
  padding: 9px 14px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-badge:hover {
  border-color: rgba(47, 103, 232, 0.48);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.24);
}

.store-badge .store-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.store-badge svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.store-badge .store-copy {
  display: grid;
  gap: 2px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-badge b {
  font-size: 1rem;
}

.store-ios {
  background:
    linear-gradient(135deg, #1198ff 0%, #2f67e8 52%, #1744c8 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.store-ios .store-icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.store-google {
  background:
    linear-gradient(135deg, #111827 0%, #0f172a 58%, #172554 100%);
  border-color: rgba(255, 255, 255, 0.16);
}

.store-google .store-icon {
  background: var(--white);
}

.store-google .play-icon svg {
  width: 28px;
  height: 28px;
}

.play-blue {
  fill: #4285f4;
}

.play-green {
  fill: #34a853;
}

.play-yellow {
  fill: #fbbc04;
}

.play-red {
  fill: #ea4335;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding-top: 16px;
  border-top: 2px solid rgba(47, 103, 232, 0.18);
}

.hero-stats dt {
  margin-bottom: 6px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-art {
  position: relative;
  min-height: 650px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.signal-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 222, 230, 0.88);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card strong {
  margin-bottom: 4px;
}

.signal-card span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.signal-card-left {
  left: 24px;
  top: 34px;
}

.signal-card-right {
  right: 24px;
  bottom: 34px;
  top: auto;
}

.market-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -18px auto 0;
  padding: 18px;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.market-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.product {
  padding: 108px 0 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.workflow-visual {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workflow-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.feature-card {
  min-height: 302px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: rgba(47, 103, 232, 0.12);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 94px 0;
}

.split-layout p {
  max-width: 650px;
  margin: 24px 0 0;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.trust-grid article {
  position: relative;
  padding: 22px 22px 22px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.signal-list li::before,
.trust-grid article::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 4px;
  height: 34px;
  background: var(--blue);
  content: "";
}

.signal-list strong,
.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.signal-list span,
.trust-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.employers {
  padding: 92px 0;
}

.employer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(47, 103, 232, 0.1), rgba(66, 183, 214, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.employer-panel p {
  margin: 22px 0 0;
}

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

.workflow div {
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.workflow span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

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

.workflow small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
  gap: 58px;
  align-items: start;
  padding: 12px 0 102px;
}

.trust-copy p {
  max-width: 720px;
  margin: 24px 0 0;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article::before {
  background: var(--amber);
}

.cta {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.95)),
    var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 44px 0 34px;
}

.cta .eyebrow {
  color: #93c5fd;
}

.cta-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
}

.cta-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.cta h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
}

.cta-copy {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.store-badge-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.store-badge-light small {
  color: var(--muted);
}

.footer-meta {
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

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

  .hero,
  .section-heading,
  .feature-grid,
  .split-layout,
  .employer-panel,
  .trust,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-art {
    order: -1;
    min-height: 430px;
  }

  .hero-art img {
    height: 430px;
  }

  .market-strip {
    margin-top: 0;
  }

  .product,
  .employers,
  .split-layout {
    padding-block: 72px;
  }

  .trust {
    padding-bottom: 72px;
  }

  .cta-inner,
  .cta-actions {
    justify-items: start;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .section-shell,
  .market-strip {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.35rem, 10.6vw, 3.55rem);
  }

  .hero-stats,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-art img {
    height: 300px;
  }

  .signal-card {
    display: none;
  }

  .workflow-visual img {
    height: 240px;
  }

  .feature-card,
  .employer-panel {
    padding: 22px;
  }

  .store-badge {
    width: min(100%, 184px);
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
