﻿@font-face {
  font-family: "Geist";
  src: url("./assets/fonts/geist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist";
  src: url("./assets/fonts/geist-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

:root {
  --font-sans:
    "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bg: #f8fafc;
  --paper: #ffffff;
  --paper-soft: #f3f7fa;
  --navy: #0f172a;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dce3ea;
  --line-strong: #cbd5e1;
  --blue: #006b9c;
  --blue-strong: #005f8f;
  --blue-soft: #e8f4fb;
  --green: #0f9f73;
  --green-soft: #dff8ea;
  --amber: #0f9f73;
  --amber-soft: #dff8ea;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-muted: #f3f7fa;
  --surface-border: var(--line);
  --shadow: 0 14px 42px rgba(15, 23, 42, 0.07);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 18px;
  --max: 1360px;
  --wide: 1440px;
  --page-gutter: 80px;
  --section-gutter: 40px;
  --native-icon: 24px;
  --native-action: 32px;
  --native-icon-radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 227, 234, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
  height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--ink);
}

.nav-links .nav-demo-link {
  border: 1px solid rgba(0, 107, 156, 0.18);
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 7px 11px;
  color: var(--blue);
}

.nav-links .nav-demo-link:hover {
  border-color: rgba(0, 107, 156, 0.32);
  color: var(--blue-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.login-link {
  color: var(--muted);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease;
}

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

.button-dark {
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.button-light {
  border-color: rgba(0, 107, 156, 0.24);
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.full-width {
  width: 100%;
}

.hero-section {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 48px;
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 520px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

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

.surface-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  overflow: hidden;
  margin: 0;
}

.hero-media {
  position: relative;
}

.hero-workflow {
  width: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.native-hero-workflow {
  background:
    radial-gradient(circle at 54% 50%, rgba(15, 159, 115, 0.07), transparent 25%),
    radial-gradient(circle at 12% 14%, rgba(0, 107, 156, 0.05), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  min-width: 0;
  padding: 0;
}

.native-workflow {
  position: relative;
  min-height: 510px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
}

.native-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.native-flow-base,
.native-flow-motion {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-flow-base {
  stroke: #c7d4e3;
  stroke-width: 2;
}

.native-flow-base-main {
  stroke: var(--blue);
  stroke-width: 2;
}

.native-flow-motion {
  animation: native-flow 1.8s linear infinite;
  opacity: 0.76;
  stroke: var(--blue);
  stroke-dasharray: 8 24;
  stroke-width: 2.5;
}

.native-flow-delay-1 {
  animation-delay: -0.55s;
}

.native-flow-delay-2 {
  animation-delay: -1.05s;
}

.native-flow-node {
  animation: native-node-pulse 2.3s ease-in-out infinite;
  fill: var(--blue);
  stroke: #ffffff;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(0, 107, 156, 0.28));
}

.native-flow-node-2,
.native-flow-node-4 {
  animation-delay: -0.7s;
}

.native-flow-node-3 {
  animation-delay: -1.3s;
}

.native-flow-node-5 {
  animation-delay: -1.7s;
}

.native-source-stack {
  display: contents;
}

.native-source-card,
.native-score-card,
.native-contact-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.native-source-card {
  left: 3.6%;
  width: 24.6%;
  padding: 12px;
}

.native-source-card-strong {
  border-color: rgba(0, 107, 156, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.native-card-portals {
  top: 5.2%;
}

.native-card-careers {
  top: 39.4%;
}

.native-card-trends {
  top: 73.6%;
}

.native-source-card h3,
.native-score-card h3,
.native-contact-group h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.native-list {
  display: grid;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.native-list span {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 0 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.native-list span:last-child {
  border-bottom: 0;
}

.native-logo {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  border-radius: var(--native-icon-radius);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.native-logo-image {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--native-icon-radius);
}

.native-logo-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.native-logo.linkedin {
  background: #0a66c2;
}

.native-logo.indeed {
  background: #2557a7;
}

.native-symbol {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  border-radius: var(--native-icon-radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.native-symbol-green {
  background: var(--green-soft);
  color: var(--green);
}

.native-symbol-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.native-symbol svg,
.native-job-icon svg,
.native-avatar svg,
.native-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.native-live i {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 159, 115, 0.12);
}

.native-live i::after {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  animation: native-live-pulse 1.7s ease-out infinite;
  background: rgba(15, 159, 115, 0.2);
  content: "";
}

.native-trend-list span {
  color: var(--blue);
}

.native-score-card {
  top: 34.2%;
  left: 36.5%;
  width: 22.6%;
  padding: 24px 20px 21px;
  text-align: center;
}

.native-score-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8fafc;
}

.native-score-tabs span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #94a3b8;
  font-size: 26px;
  font-weight: 600;
}

.native-score-tabs span:last-child {
  border-right: 0;
}

.native-score-tabs .active {
  background: var(--green-soft);
  color: var(--green);
}

.native-fit-meter {
  overflow: hidden;
  height: 9px;
  margin: 22px 0 14px;
  border-radius: 999px;
  background: #e2e8f0;
}

.native-fit-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.native-score-card p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.native-contact-card {
  top: 10%;
  right: 1.8%;
  width: 35%;
  padding: 18px;
}

.native-job-chip {
  display: flex;
  width: min(100%, 314px);
  min-height: 56px;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border-radius: 8px;
  background: var(--blue-soft);
  padding: 9px 12px;
  color: var(--blue);
}

.native-job-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.native-job-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.native-job-copy strong {
  overflow: hidden;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-job-copy small {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.native-job-copy small span {
  display: block;
}

.native-contact-group {
  margin-top: 22px;
}

.native-contact-group + .native-contact-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.native-contact-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) var(--native-action) var(--native-action);
  gap: 8px;
  align-items: center;
  min-height: 50px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 7px 8px;
}

.native-avatar {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.native-person {
  background: var(--blue-soft);
  color: var(--blue);
}

.native-avatar svg {
  width: 15px;
  height: 15px;
}

.native-contact-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-action {
  display: inline-flex;
  width: var(--native-action);
  height: var(--native-action);
  min-height: var(--native-action);
  flex: 0 0 var(--native-action);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 107, 156, 0.22);
  border-radius: 8px;
  background: #ffffff;
  padding: 0;
  color: var(--blue);
}

.native-action svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

@keyframes native-flow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes native-live-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.45);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes native-node-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.section {
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: 0 auto;
  padding: 82px 0;
}

.logo-section {
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: -22px auto 0;
  padding: 28px 0 34px;
}

.logo-section p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll-right 34s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-inline: 27px;
}

.logo-item {
  display: flex;
  width: 168px;
  height: 54px;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  display: block;
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
}

.logo-item-nelta img {
  max-width: 108px;
  max-height: 24px;
}

.logo-item-momento img {
  max-width: 138px;
  max-height: 34px;
}

@keyframes logo-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.section-tight {
  padding-top: 54px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2,
.demo-card h2 {
  margin-bottom: 14px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
}

.section-heading p,
.demo-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.flow-card {
  overflow: hidden;
  min-height: 390px;
  padding: 0;
}

.flow-card img {
  display: block;
  width: 100%;
  height: 218px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  object-fit: contain;
}

.flow-card-copy {
  padding: 22px;
}

.flow-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.flow-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  font-weight: 600;
}

.flow-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list.compact {
  margin-top: 22px;
}

.check-list.compact li {
  font-size: 16px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "\2713";
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.demo-section {
  width: 100%;
  margin-top: 22px;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--paper-soft) 20%, var(--paper-soft) 80%, var(--bg) 100%);
  padding: 72px var(--section-gutter);
}

.screenshot-section {
  padding-top: 64px;
}

.product-showcase {
  display: grid;
  gap: 72px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.product-feature-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
}

.product-feature-copy {
  max-width: 560px;
}

.feature-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.product-feature-copy h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
}

.product-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.product-shot {
  overflow: hidden;
  margin: 0;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot figcaption {
  padding: 16px 18px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.product-feature-service {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
}

.product-feature-service .product-feature-copy {
  order: 1;
}

.service-panel {
  order: 2;
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.78);
  padding: 30px;
}

.service-panel .check-list {
  margin-top: 0;
}

.demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 42px;
  color: var(--ink);
}

.demo-card .eyebrow {
  color: var(--blue);
}

.demo-card p {
  color: var(--muted);
}

.job-alert-demo {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  overflow: visible;
  border-color: rgba(15, 23, 42, 0.16);
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 107, 156, 0.2), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(15, 159, 115, 0.14), transparent 30%),
    linear-gradient(135deg, #101827 0%, #132436 54%, #0f172a 100%);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.18);
}

.job-alert-demo h2 {
  color: #ffffff;
}

.job-alert-demo .eyebrow {
  color: #70d5ff;
}

.job-alert-demo p {
  color: rgba(226, 232, 240, 0.82);
}

.demo-copy {
  max-width: 560px;
}

.demo-card-deck {
  position: relative;
  min-width: 0;
  padding: 0 26px 26px 0;
}

.demo-deck-layer {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.05), transparent 46%),
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.demo-deck-layer-back {
  inset: 28px 0 0 30px;
  border-color: rgba(0, 107, 156, 0.18);
  opacity: 0.58;
}

.demo-deck-layer-mid {
  inset: 14px 14px 14px 14px;
  border-color: rgba(0, 107, 156, 0.22);
  opacity: 0.84;
}

.demo-widget {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 16px;
  background: #fbfdfe;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 20px 56px rgba(2, 8, 23, 0.18);
}

.job-alert-demo-widget {
  display: flex;
  height: 410px;
  flex-direction: column;
  min-width: 0;
}

.demo-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.demo-widget-header > div {
  min-width: 0;
}

.demo-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-widget-header strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.demo-widget button {
  flex: 0 0 auto;
  min-height: 42px;
  border-color: var(--line-strong);
}

.demo-widget button:disabled {
  cursor: progress;
  opacity: 0.66;
}

.demo-result {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: var(--paper-soft);
  padding: 13px;
  color: var(--ink-soft);
  font-size: 13px;
}

.demo-result strong {
  color: var(--ink);
}

.demo-alert-feed {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  gap: 10px;
  overflow: auto;
  margin: 0 0 16px;
  padding-right: 4px;
}

.demo-alert-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-soft);
  padding: 12px 14px;
  color: var(--ink);
}

.demo-alert-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.demo-alert-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-soft);
  padding: 3px 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.demo-alert-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-alert-meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.demo-alert-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
}

.demo-alert-meta span,
.demo-alert-link {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 500;
}

.demo-alert-meta span {
  background: #ffffff;
  color: var(--ink-soft);
}

.demo-alert-link {
  flex: 0 0 auto;
  width: fit-content;
  background: #ffffff;
  color: var(--blue);
}

.demo-empty-state {
  min-height: 100%;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.crawler-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.crawler-dot.active {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 107, 156, 0.12);
}

.pricing-section {
  padding-top: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(0, 107, 156, 0.34);
  background: #ffffff;
}

.plan-name {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.price-card p {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.price-card .button {
  margin-top: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

.site-footer p {
  margin: 5px 0 0;
}

.site-footer a {
  font-weight: 500;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

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

@media (max-width: 820px) {
  .nav-shell {
    width: min(var(--max), calc(100vw - 28px));
  }

  .nav-links,
  .login-link {
    display: none;
  }

  .hero-section {
    padding-top: 46px;
  }

  .hero-grid,
  .section,
  .logo-section,
  .site-footer {
    width: min(var(--max), calc(100vw - 28px));
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .flow-grid,
  .demo-card,
  .pricing-grid,
  .product-feature,
  .product-feature-reverse {
    grid-template-columns: 1fr;
  }

  .product-feature-reverse .product-feature-copy {
    order: 2;
  }

  .logo-group {
    gap: 36px;
    padding-inline: 18px;
  }

  .logo-item {
    width: 138px;
  }

  .logo-item img {
    max-width: 132px;
    max-height: 38px;
  }

  .logo-section p {
    max-width: 340px;
    line-height: 1.45;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .demo-card h2 {
    font-size: 32px;
  }

  .demo-card {
    padding: 26px;
  }

  .hero-actions {
    max-width: 420px;
  }

  .demo-card-deck,
  .demo-widget {
    width: 100%;
    max-width: 100%;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  :root {
    --native-icon: 23px;
    --native-action: 28px;
  }

  .nav-shell {
    justify-content: flex-start;
    gap: 16px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .nav-actions {
    display: none;
  }

  .button-small {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero-copy,
  .hero-subtitle {
    max-width: calc(100vw - 28px);
  }

  .hero-subtitle {
    width: 340px;
  }

  h1 {
    width: 330px;
    max-width: 100%;
    font-size: 34px;
  }

  .native-hero-workflow {
    padding: 16px;
  }

  .native-workflow {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    aspect-ratio: auto;
    min-height: auto;
    overflow: visible;
    gap: 14px;
  }

  .native-flow-lines {
    display: none;
  }

  .native-source-stack {
    display: grid;
    width: min(100%, calc(100vw - 60px));
    gap: 14px;
  }

  .native-source-card,
  .native-score-card,
  .native-contact-card {
    position: static;
    inset: auto;
    width: min(100%, calc(100vw - 60px));
    min-width: 0;
  }

  .native-job-chip {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .native-contact-card {
    padding: 18px;
  }

  .native-contact-row {
    grid-template-columns: 28px minmax(0, 1fr) var(--native-action) var(--native-action);
    gap: 5px;
    margin-right: 32px;
    padding: 7px;
  }

  .native-avatar {
    width: 28px;
    height: 28px;
  }

  .native-contact-row strong {
    font-size: 11px;
  }

  .native-action {
    width: var(--native-action);
    height: var(--native-action);
    min-height: var(--native-action);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .demo-widget-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .job-alert-demo {
    overflow: hidden;
  }

  .demo-deck-layer {
    display: none;
  }

  .demo-widget {
    height: 440px;
    padding: 16px;
  }

  .demo-result {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .demo-result strong {
    grid-column: 2;
  }

  .demo-alert-meta-row {
    display: grid;
    justify-content: stretch;
  }

  .demo-section {
    width: 100%;
    padding: 58px 14px;
  }

  .demo-card {
    width: 100%;
  }
}

