@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600;700&family=Onest:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #101828;
  --text: #151923;
  --muted: #667085;
  --line: #e7ebf2;
  --paper: #fbfcff;
  --panel: #ffffff;
  --surface-soft: #f5f7fb;
  --accent: #2f6fed;
  --accent-2: #e7685d;
  --accent-3: #5c6ac4;
  --green: #168f6f;
  --amber: #d99628;
  --soft: #eef4ff;
  --shadow: 0 24px 70px rgba(27, 36, 57, 0.1);
}

* {
  box-sizing: border-box;
}
img,
svg,
video,
canvas {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: 76px;
  font-family: Onest, Inter, Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(231, 104, 93, 0.07), transparent 34%),
    linear-gradient(245deg, rgba(47, 111, 237, 0.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfcff 38%, #f7f9fd 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(90deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(#000, transparent 78%);
}
a {
  color: inherit;
  text-decoration: none;
}
pre,
code {
  overflow-wrap: anywhere;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(251, 252, 255, 0.76);
  backdrop-filter: blur(22px);
}
.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(214, 221, 233, 0.86);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.13), rgba(231, 104, 93, 0.08));
}
.links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}
.links a:hover {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #263244);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--ink);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
  cursor: pointer;
}
.button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(16, 24, 40, 0.14);
  box-shadow: none;
}
.hero {
  position: relative;
  padding: 78px 0 72px;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 20px 4% auto;
  height: 620px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(231, 104, 93, 0.14), transparent 36%),
    linear-gradient(245deg, rgba(47, 111, 237, 0.16), transparent 38%),
    repeating-linear-gradient(135deg, rgba(16, 24, 40, 0.04) 0 1px, transparent 1px 20px);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}
h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(38px, 6vw, 72px);
  max-width: 900px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
}
h3 {
  font-size: 22px;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.visual {
  background: var(--ink);
  color: #eef4ff;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.visual-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.visual-row:last-child {
  border-bottom: 0;
}
.metric {
  color: #b9c7ff;
  font-weight: 800;
}
.section {
  padding: 64px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p {
  max-width: 640px;
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.screens-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.screens-grid img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top left;
  background: var(--ink);
}
.screens-grid figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 22px;
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 16px 38px rgba(27, 36, 57, 0.06);
}
.card p,
.muted {
  color: var(--muted);
}
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-meta a {
  color: var(--accent);
}
.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.post-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 9px;
  background: rgba(245, 247, 251, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.post-card-meta img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  background: var(--soft);
  color: var(--accent);
  border: 1px solid #dbe5ff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
}
.band {
  background: rgba(255, 255, 255, 0.68);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  color: #fff;
  font-weight: 800;
}
.two {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.article-body {
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--line);
  padding: 46px 0 72px;
}
.article-body .wrap {
  max-width: 880px;
}
.article-body .article-layout {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 44px;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-body p,
.article-body li {
  color: #40514a;
  font-size: 18px;
}
.article-body h2 {
  margin-top: 38px;
  scroll-margin-top: 130px;
  font-size: 30px;
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ol {
  list-style: decimal;
}
.article-body p + p {
  margin-top: 14px;
}
.article-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(27, 36, 57, 0.07);
}
.article-toc span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-toc nav {
  display: grid;
  gap: 8px;
}
.article-toc a {
  padding: 10px 12px;
  color: #40514a;
  background: rgba(247, 250, 255, 0.78);
  border: 1px solid rgba(205, 213, 223, 0.62);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}
.article-toc a:hover {
  color: var(--accent);
  border-color: rgba(231, 104, 93, 0.32);
  background: #fff7f5;
}
.article-summary,
.article-block {
  margin: 30px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(27, 36, 57, 0.07);
}
.article-summary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92));
}
.article-summary span,
.article-block > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-summary p,
.article-block p,
.article-block ul {
  margin: 0;
}
.article-block h3 {
  margin-bottom: 12px;
}
.article-block ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}
.article-block li::marker {
  color: var(--accent);
}
.article-block.warning {
  background: linear-gradient(135deg, #fff7f5, #fff);
  border-color: rgba(231, 104, 93, 0.28);
}
.article-block.definition {
  background: linear-gradient(135deg, #f7fbff, #fff);
}
.article-block.metric-block > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.article-block.metric-block article {
  padding: 16px;
  background: rgba(247, 250, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.article-block.metric-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.article-block.article-cta {
  background: linear-gradient(135deg, var(--ink), #213657);
  color: #fff;
}
.article-block.article-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.article-meta > img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}
.article-meta div {
  display: grid;
  gap: 2px;
  margin-right: 4px;
}
.article-meta strong {
  color: var(--ink);
  font-size: 16px;
}
.article-meta div span,
.article-meta > span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}
.article-meta > span {
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.section-actions {
  margin-top: 24px;
}
.topic-row {
  margin-bottom: 24px;
}
.cluster-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.cluster-nav a,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.cluster-nav a.active,
.pagination [aria-current="page"] {
  color: #fff;
  border-color: var(--ink);
  background: linear-gradient(135deg, var(--ink), var(--accent));
}
.pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.pagination div {
  display: flex;
  gap: 8px;
}
.blog-faq {
  margin-top: 34px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}
.faq-list p {
  margin: 12px 0 0;
}
.link-panel {
  display: grid;
  gap: 10px;
  margin: 32px 0;
  padding: 22px;
  background: linear-gradient(135deg, #fff7f5, #f3f7fc);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.link-panel a {
  color: var(--accent);
  font-weight: 800;
}
.author-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  margin: 34px 0;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.88)),
    linear-gradient(135deg, rgba(47, 111, 237, 0.08), transparent 60%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(27, 36, 57, 0.07);
}
.author-box img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.author-box span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.author-box h3 {
  margin: 4px 0 8px;
}
.author-box p {
  margin: 0;
  color: var(--muted);
}
.contact-funnel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 46px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.92)),
    linear-gradient(135deg, rgba(47, 111, 237, 0.08), rgba(231, 104, 93, 0.07));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(16, 24, 40, 0.08);
}
.contact-funnel h2 {
  margin-top: 6px;
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lead-form.compact {
  grid-template-columns: 1fr;
  gap: 10px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.lead-form .full,
.lead-form-actions.full {
  grid-column: 1 / -1;
}
.lead-form label > span {
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 221, 233, 0.95);
  border-radius: 14px;
  outline: none;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.lead-form textarea {
  resize: vertical;
  line-height: 1.5;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(47, 111, 237, 0.62);
  box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.12);
}
.lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
}
.lead-consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: flex-start;
}
.lead-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.lead-consent span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.lead-consent a,
.lead-consent a:visited,
.lead-consent a:hover {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--accent);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.lead-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.lead-form-actions p {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.lead-form-actions p[data-state="success"] {
  color: var(--green);
  font-weight: 800;
}
.lead-form-actions p[data-state="error"] {
  color: var(--accent-2);
  font-weight: 800;
}
.lead-modal[hidden] {
  display: none;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(16px);
}
.lead-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96)),
    linear-gradient(135deg, rgba(231, 104, 93, 0.12), rgba(47, 111, 237, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
}
.lead-modal-copy {
  padding: 8px 4px;
}
.lead-modal-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}
.lead-modal-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.post-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 34px 0;
}
.post-nav a {
  min-height: 110px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  font-weight: 800;
}
.post-nav span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.product-panel {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.product-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(231, 104, 93, 0.24), rgba(47, 111, 237, 0.26), rgba(16, 24, 40, 0.12));
  filter: blur(18px);
  opacity: 0.28;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 18px;
  color: #98a2b3;
}
.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
}
.window-bar span:nth-child(2) {
  background: var(--amber);
}
.window-bar span:nth-child(3) {
  background: var(--green);
}
.window-bar code {
  margin-left: 8px;
  font-size: 12px;
}
.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94)),
    linear-gradient(90deg, rgba(47, 111, 237, 0.09), transparent 42%);
  border: 1px solid rgba(214, 221, 233, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.mini-label,
.metric-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.score-card strong {
  display: block;
  margin-top: 7px;
  color: #0b1220;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}
.score-card p {
  max-width: 430px;
  margin: 10px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}
.score-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 8px;
  flex: 0 0 auto;
  min-width: 320px;
}
.score-summary.compact {
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  min-width: 200px;
}
.score-summary span {
  display: grid;
  gap: 7px;
  padding: 12px 13px;
  color: #667085;
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.score-summary b {
  color: #0b1220;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.metric-card {
  position: relative;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 27px;
}
.metric-card i {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.metric-card i.warn {
  background: var(--amber);
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.pipeline span {
  padding: 10px 10px;
  color: #667085;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(214, 221, 233, 0.86);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.pipeline .active {
  color: #0b1220;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(47, 111, 237, 0.32);
  box-shadow: inset 0 3px 0 var(--accent);
}
.footer {
  padding: 38px 0;
  background: var(--ink);
  color: #d9e8e3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer a {
  color: #9ee6d9;
}

.landing {
  overflow: visible;
}
.landing svg {
  display: block;
  width: 100%;
  height: 100%;
}
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 8px 24px;
  background: rgba(251, 252, 255, 0.76);
  backdrop-filter: blur(22px);
}
.landing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  min-height: 58px;
  margin: 0 auto;
  padding: 0 14px 0 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(214, 221, 233, 0.86);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}
.landing-brand,
.landing-links,
.trust-row,
.hero-actions {
  display: flex;
  align-items: center;
}
.landing-brand {
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
}
.landing-brand-mark {
  width: 34px;
  height: 34px;
  display: block;
}
.landing-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.landing-brand svg,
.module-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.landing-links {
  gap: 24px;
  color: #4a5568;
  font-size: 15px;
  font-weight: 700;
}
.landing-links a:hover {
  color: var(--ink);
}
.mobile-contact-link,
.mobile-cta-link {
  display: none;
}
.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-social,
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ink);
  border: 1px solid rgba(214, 221, 233, 0.92);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}
.header-social {
  width: 44px;
  border-radius: 14px;
  color: #2f6fed;
  letter-spacing: 0;
}
.header-phone {
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 120;
  display: grid;
  min-width: 280px;
  max-width: 360px;
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 20px;
  box-shadow: 0 34px 90px rgba(27, 36, 57, 0.22);
  transform: translateX(-50%);
}
.nav-dropdown:not([open]) .nav-dropdown-panel {
  display: none;
}
.nav-dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #344054;
  line-height: 1.35;
}
.nav-dropdown-panel a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}
.nav-burger {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: #fff;
  border: 1px solid rgba(214, 221, 233, 0.92);
  border-radius: 14px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}
.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(16, 24, 40, 0.92);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #263244);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.16);
  font-size: 14px;
  font-weight: 700;
}
.landing-hero {
  --hero-grid-x: 0px;
  --hero-grid-y: 0px;
  --hero-lines-x: 0px;
  --hero-lines-y: 0px;
  --hero-card-x: 0px;
  --hero-card-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  isolation: isolate;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 28px 72px;
}
.landing-hero::before {
  position: absolute;
  inset: 0 28px auto;
  height: min(760px, 100%);
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(47, 111, 237, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(16, 24, 40, 0.12) 1px, transparent 1.8px),
    radial-gradient(ellipse at 50% 34%, rgba(47, 111, 237, 0.08), transparent 56%),
    radial-gradient(ellipse at 42% 45%, rgba(231, 104, 93, 0.065), transparent 58%);
  background-position: center, center, center, center, center;
  background-size:
    72px 72px,
    72px 72px,
    72px 72px,
    100% 100%,
    100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
  opacity: 0.8;
}
.hero-motion-bg {
  position: absolute;
  inset: 0 28px auto;
  z-index: 0;
  height: min(760px, 100%);
  overflow: hidden;
  pointer-events: none;
  border-radius: 28px;
  contain: paint;
}
.hero-motion-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}
.landing-hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}
.landing-hero-copy {
  text-align: center;
}
.landing-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.94;
  text-wrap: balance;
}
.landing-hero-copy p,
.landing-section-head p,
.split p,
.price-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.landing-hero-copy p {
  max-width: 720px;
  margin: 26px auto 0;
}
.hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.evidence-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin: 30px auto 0;
}
.evidence-row div {
  padding: 18px;
  border: 1px solid rgba(214, 221, 233, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(27, 36, 57, 0.06);
}
.evidence-row strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}
.evidence-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.trust-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span,
.logo-strip span {
  color: #475467;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.trust-row span {
  padding: 8px 12px;
}
.hero-panel,
.review-card,
.price-card,
.module-card,
.landing figure {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(214, 221, 233, 0.9);
  box-shadow: 0 24px 70px rgba(27, 36, 57, 0.1);
}
.hero-panel {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  overflow: hidden;
  border-radius: 26px;
  transform: translate3d(var(--hero-card-x), var(--hero-card-y), 0);
  transition: transform 0.18s ease-out;
}
.hero-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.2), rgba(16, 24, 40, 0.12));
  filter: blur(18px);
  opacity: 0.22;
}
.hero-panel::after {
  position: absolute;
  top: 58px;
  right: -120px;
  width: 280px;
  height: 220px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.08));
}
.hero-panel .metric {
  position: relative;
  min-height: 92px;
  padding: 16px 16px 44px;
  color: var(--ink);
  border: 1px solid rgba(214, 221, 233, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045);
}
.hero-panel .metric strong {
  display: block;
  margin-top: 14px;
  color: #0b1220;
  font-size: 29px;
  letter-spacing: 0;
}
.hero-panel .metric i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 143, 111, 0.09);
  font-style: normal;
}
.hero-panel .metric i.warn {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 150, 40, 0.1);
}
.hero-panel .metric i.danger {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(231, 104, 93, 0.1);
}
.hero-panel .metric i:not(:empty) {
  width: auto;
  max-width: calc(100% - 28px);
  height: 28px;
  gap: 7px;
  padding: 0 10px;
  color: #344054;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 221, 233, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.hero-panel .metric i:not(:empty)::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 143, 111, 0.09);
  content: "";
}
.hero-panel .metric i.warn:not(:empty)::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 150, 40, 0.1);
}
.hero-panel .metric i.danger:not(:empty)::before {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(231, 104, 93, 0.1);
}
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .landing-hero {
    --hero-grid-x: 0px;
    --hero-grid-y: 0px;
    --hero-lines-x: 0px;
    --hero-lines-y: 0px;
    --hero-card-x: 0px;
    --hero-card-y: 0px;
  }
  .hero-panel {
    transition: none;
  }
}
.insight-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(214, 221, 233, 0.9);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}
.insight-card b,
.insight-card strong {
  display: block;
  color: #9f3129;
  font-size: 12px;
  text-transform: uppercase;
}
.insight-card span {
  display: block;
  max-width: 300px;
  margin-top: 4px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.product-peek {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #111827;
  border: 0;
  border-radius: 22px;
  cursor: zoom-in;
}
.product-peek img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top left;
  opacity: 0.86;
}
.product-peek span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.logo-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px 46px;
  flex-wrap: wrap;
}
.logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
}
.mobile-page-guide {
  display: none;
}
.landing-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 28px;
}
.landing-section-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.landing-section h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
}
.landing-section-head p,
.split p {
  margin-top: 18px;
}
.module-grid,
.screens-grid,
.pricing {
  display: grid;
  gap: 18px;
}
.module-grid {
  grid-template-columns: repeat(3, 1fr);
}
.module-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-radius: 28px;
  overflow: hidden;
}
.module-card.red {
  background: linear-gradient(145deg, #fff, #fff4f2);
}
.module-card.blue {
  background: linear-gradient(145deg, #fff, #f2f6ff);
}
.module-card.purple {
  background: linear-gradient(145deg, #fff, #f2f6fb);
}
.module-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  border-radius: 18px;
  color: #fff;
}
.red .module-icon {
  background: linear-gradient(135deg, var(--accent-2), #9f3129);
}
.blue .module-icon {
  background: linear-gradient(135deg, var(--accent), #1e4fc3);
}
.purple .module-icon {
  background: linear-gradient(135deg, #293241, #1e4fc3);
}
.module-card > span,
.landing figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.module-card h3 {
  margin-top: 14px;
  font-size: 32px;
}
.module-card p,
.deep-copy p,
.check-list p,
.quality-row p,
.capability p,
.timeline-step p {
  color: var(--muted);
  line-height: 1.65;
}
.deep-dive {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}
.deep-copy {
  max-width: 620px;
}
.deep-copy p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.78;
}
.deep-panel,
.quality-card {
  padding: 28px;
  border: 1px solid rgba(214, 221, 233, 0.94);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 72px rgba(27, 36, 57, 0.11);
}
.red-dive .deep-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 245, 0.9));
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.panel-top b,
.panel-top span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.panel-top span {
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), #9f3129);
  border-radius: 999px;
}
.check-list {
  display: grid;
  gap: 12px;
}
.check-list article,
.reader-grid article,
.capability,
.timeline-step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(27, 36, 57, 0.07);
}
.check-list article {
  padding: 18px;
  border-radius: 20px;
}
.quality-dive {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}
.quality-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 246, 255, 0.92));
}
.quality-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.quality-score span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.quality-score strong {
  font-size: 56px;
  line-height: 0.9;
}
.quality-row {
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
}
.quality-row i {
  display: block;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #293241);
}
.reader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reader-grid article {
  min-height: 190px;
  padding: 28px;
  border-radius: 28px;
}
.reader-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.reader-grid p {
  margin-top: 34px;
  color: #344054;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.capability {
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
}
.capability b {
  color: var(--accent);
  font-size: 13px;
}
.capability h3 {
  margin-top: 42px;
  font-size: 22px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
}
.split > div:first-child {
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.46));
  border: 1px solid var(--line);
}
.landing-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.landing-steps div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 650;
}
.review-card {
  padding: 22px;
  border-radius: 28px;
}
.review-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-weight: 700;
}
.review-line strong {
  color: var(--green);
}
.review-line.danger strong {
  color: #9f3129;
}
.review-line.warn strong {
  color: var(--amber);
}
.landing pre {
  margin: 22px 0 0;
  padding: 18px;
  overflow: auto;
  color: #e9eefb;
  background: #111827;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.timeline-step {
  min-height: 230px;
  padding: 30px;
  border-radius: 26px;
}
.timeline-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  font-weight: 800;
}
.timeline-step h3 {
  margin-top: 42px;
  font-size: 26px;
}
.screens {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1220px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1220px) / 2 + 28px));
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.65), rgba(255, 255, 255, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.screens .screens-grid {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}
.landing figure {
  position: relative;
  min-width: 260px;
  margin: 0;
  padding: 10px;
  border-radius: 26px;
}
.landing figure button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}
.landing figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top left;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.landing figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 2px;
}
.landing figure em {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(21, 25, 35, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.screens-page {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1220px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1220px) / 2 + 28px));
}
.screen-features {
  display: grid;
  gap: 28px;
}
.screen-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(27, 36, 57, 0.08);
}
.screen-feature:nth-child(even) {
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr);
}
.screen-feature:nth-child(even) .screen-feature-media {
  order: 2;
}
.screen-feature-media button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 20px;
  cursor: zoom-in;
}
.screen-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top left;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.screen-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(16, 24, 40, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.screen-feature-copy {
  padding: 10px;
}
.screen-feature-copy h3 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}
.screen-feature-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
.pricing {
  grid-template-columns: 1fr 1fr;
}
.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border-radius: 32px;
}
.price-card h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.04;
}
.price-card p {
  margin-bottom: 30px;
}
.price-card .button {
  margin-top: auto;
}
.price-card.enterprise {
  background: linear-gradient(145deg, #fff, #f2f6fb);
}
.faq {
  max-width: 900px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary span {
  font-size: 18px;
  font-weight: 800;
}
.faq-item summary b {
  color: var(--accent);
  font-size: 24px;
}
.faq-item p {
  max-width: 720px;
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-page .wrap {
  max-width: 900px;
}
.legal-updated {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 8px 12px;
  color: #475467;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}
.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-page section:first-of-type {
  border-top: 0;
}
.legal-page h2 {
  font-size: clamp(24px, 3vw, 34px);
}
.legal-note {
  margin-top: 20px;
  padding: 18px 20px;
  color: #475467;
  border: 1px solid rgba(214, 221, 233, 0.9);
  border-radius: 18px;
  background: #f8fbff;
}
.landing-footer {
  padding: 46px clamp(20px, 5vw, 72px) 28px;
  color: #c7d2e5;
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 111, 237, 0.24), transparent 34%),
    linear-gradient(135deg, #0b1220 0%, #121a2c 54%, #0b1220 100%);
  border-top: 1px solid rgba(214, 221, 233, 0.14);
}
.footer-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}
.footer-brand,
.footer-links,
.footer-bottom,
.footer-logo {
  display: flex;
}
.footer-brand {
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(214, 221, 233, 0.14);
}
.footer-logo {
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}
.footer-logo img {
  width: 38px;
  height: 38px;
}
.footer-brand p {
  max-width: 560px;
  margin: 0;
  color: #a8b3c7;
  font-size: 15px;
  line-height: 1.7;
}
.footer-brand code,
.footer-bottom,
.footer-links b {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}
.footer-brand code {
  padding: 10px 12px;
  color: #dbe7ff;
  border: 1px solid rgba(219, 231, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 34px 0;
}
.footer-links div {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-links b {
  margin-bottom: 4px;
  color: #f8fbff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a {
  color: #a8b3c7;
  font-size: 14px;
  line-height: 1.35;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: #7f8da3;
  border-top: 1px solid rgba(214, 221, 233, 0.14);
  font-size: 12px;
}
.footer-bottom span:last-child {
  display: flex;
  gap: 14px;
}
.footer-bottom a {
  color: #a8b3c7;
}
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #263244);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.22);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
}
.cookie-notice[hidden] {
  display: none;
}
.cookie-notice {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(560px, calc(100vw - 48px));
  padding: 12px 14px;
  color: #344054;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 221, 233, 0.96);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.16);
  font-size: 13px;
  line-height: 1.4;
}
.cookie-notice p {
  margin: 0;
}
.cookie-notice a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
}
.cookie-notice button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  color: #fff;
  background: #101828;
  border: 1px solid #101828;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.lead-popup[hidden] {
  display: none;
}
.lead-popup {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 70;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100dvh - 120px);
  overflow: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(214, 221, 233, 0.96);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
  transform: translateY(14px);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.lead-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.lead-popup-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.1), rgba(231, 104, 93, 0.08));
  border: 1px solid var(--line);
  border-radius: 12px;
}
.lead-popup-mark img {
  width: 25px;
  height: 25px;
}
.lead-popup > div:last-child {
  min-width: 0;
}
.lead-popup > div > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead-popup h2 {
  margin: 2px 28px 5px 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}
.lead-popup p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.lead-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}
.lead-popup .lead-form input,
.lead-popup .lead-form select,
.lead-popup .lead-form textarea {
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 13px;
}
.lead-popup .lead-form label > span {
  color: #344054;
  font-size: 12px;
}
.lead-popup .lead-form textarea {
  max-height: 86px;
}
.lead-popup .lead-consent {
  gap: 8px !important;
  padding: 9px 10px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(214, 221, 233, 0.72);
  border-radius: 12px;
}
.lead-popup .lead-consent input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 1px;
}
.lead-popup .lead-consent span {
  font-size: 11.5px;
  line-height: 1.4;
}
.lead-popup .lead-consent a,
.lead-popup .lead-consent a:visited,
.lead-popup .lead-consent a:hover {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--accent);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.lead-popup .lead-form-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
}
.lead-popup .lead-form-actions .button {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox[hidden] {
  display: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
}
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}
.lightbox-panel {
  width: min(1180px, 94vw);
  max-height: 88vh;
  overflow: auto;
  padding: 12px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
}
.lightbox-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.lightbox-panel div {
  padding: 14px 8px 4px;
  color: #344054;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .header-phone span {
    display: none;
  }
  .header-phone {
    width: 44px;
    padding: 0;
    border-radius: 14px;
  }
  .header-phone::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.6 1.27h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.85a16 16 0 0 0 6.29 6.29l1.85-1.85a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 82px;
  }
  .topbar {
    padding: 8px 0;
  }
  .nav {
    align-items: flex-start;
    padding: 14px;
  }
  .links {
    display: none;
  }
  .hero-grid,
  .two,
  .grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .visual {
    min-height: auto;
  }
  .screens-grid img {
    height: 240px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .author-box {
    grid-template-columns: 1fr;
  }
  .article-body .article-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
    order: -1;
  }
  .article-block.metric-block > div {
    grid-template-columns: 1fr;
  }
  .contact-funnel,
  .lead-modal-panel,
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-modal {
    align-items: end;
    padding: 0;
  }
  .lead-modal-panel {
    width: 100%;
    max-height: 92dvh;
    padding: 20px 16px 32px;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .lead-modal-copy {
    padding: 0;
  }
  .lead-modal-copy h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .lead-modal-copy p {
    font-size: 15px;
  }
  .lead-modal-close {
    top: 12px;
    right: 12px;
  }
  .pagination {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-panel,
  .hero-panel,
  .deep-panel,
  .quality-card,
  .review-card,
  .screen-feature,
  .module-card,
  .price-card,
  .capability,
  .timeline-step,
  .reader-grid article,
  .landing figure {
    min-width: 0;
    max-width: 100%;
  }
  .score-card {
    align-items: stretch;
  }
  .score-copy {
    min-width: 0;
  }
  .score-card strong,
  .landing-section h2,
  .module-card h3,
  .capability h3,
  .timeline-step h3,
  .screen-feature-copy h3 {
    overflow-wrap: anywhere;
  }
  .score-summary,
  .score-summary.compact {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .score-summary.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .window-bar {
    min-width: 0;
  }
  .window-bar code {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pipeline span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .landing pre {
    max-width: 100%;
    white-space: pre-wrap;
  }
  .screens,
  .screens-page {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer-brand code {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .metrics-grid,
  .pipeline {
    grid-template-columns: 1fr;
  }
  .landing-nav {
    padding: 8px 12px;
  }
  .landing-nav-inner {
    position: relative;
    gap: 8px;
    min-height: 58px;
    padding: 8px 10px 8px 14px;
  }
  .landing-brand {
    margin-right: auto;
  }
  .landing-header-actions {
    gap: 10px;
  }
  .header-social,
  .header-phone {
    min-height: 44px;
    width: 44px;
    padding: 0;
    border-radius: 14px;
    font-size: 12px;
  }
  .header-phone::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.6 1.27h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.85a16 16 0 0 0 6.29 6.29l1.85-1.85a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }
  .header-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .landing-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 130;
    align-items: stretch;
    gap: 8px;
    max-height: min(68vh, 520px);
    overflow: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(214, 221, 233, 0.92);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
    font-size: 14px;
  }
  .landing-links.nav-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .landing-links a,
  .landing-links summary {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid rgba(214, 221, 233, 0.7);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.25;
  }
  .mobile-contact-link {
    display: flex;
  }
  .mobile-cta-link,
  .mobile-cta-link:visited,
  .mobile-cta-link:hover {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #101828;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    border: 1px solid #101828;
  }
  .landing-links .mobile-cta-link:hover,
  .landing-links .mobile-cta-link:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #1e4fc3);
  }
  .nav-burger {
    display: flex;
  }
  .landing-cta {
    display: none;
  }
  .nav-dropdown {
    grid-column: 1 / -1;
  }
  .nav-dropdown summary {
    justify-content: space-between;
  }
  .nav-dropdown-panel {
    position: static;
    display: grid;
    gap: 6px;
    min-width: 0;
    max-width: none;
    max-height: min(32vh, 260px);
    overflow: auto;
    margin-top: 8px;
    padding: 6px;
    box-shadow: none;
    transform: none;
  }
  .landing-hero,
  .split,
  .deep-dive,
  .quality-dive,
  .pricing {
    grid-template-columns: 1fr;
  }
  .module-grid,
  .capability-grid,
  .reader-grid,
  .timeline,
  .evidence-row,
  .screen-feature,
  .screen-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .screen-feature:nth-child(even) .screen-feature-media {
    order: 0;
  }
  .landing-hero {
    padding: 58px 18px 64px;
  }
  .mobile-page-guide {
    display: block;
    width: min(100% - 36px, 720px);
    margin: -10px auto 18px;
    padding: 0;
    overflow: hidden;
  }
  .mobile-page-guide > span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
  }
  .mobile-page-guide > div {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }
  .mobile-page-guide a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    color: #344054;
    border: 1px solid rgba(214, 221, 233, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    scroll-snap-align: start;
  }
  .mobile-page-guide b {
    color: var(--accent);
  }
  .landing-hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }
  .landing-hero-copy p,
  .landing-section-head p,
  .split p,
  .price-card p,
  .deep-copy p,
  .screen-feature-copy p {
    font-size: 16px;
    line-height: 1.62;
  }
  .landing-section {
    padding: 52px 18px;
  }
  .score-card {
    flex-wrap: wrap;
    gap: 14px;
  }
  .landing-steps div,
  .review-line {
    align-items: flex-start;
  }
  .landing-steps div {
    min-width: 0;
  }
  .review-line span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .screens .screens-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .landing figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
  .landing-steps + a {
    display: inline-flex;
    margin-top: 24px;
  }
  .screen-feature {
    gap: 18px;
    padding: 12px;
    border-radius: 22px;
  }
  .screen-feature-media img {
    border-radius: 16px;
  }
  .screen-feature-copy {
    padding: 4px 2px 6px;
  }
  .screen-feature-copy h3 {
    font-size: 26px;
    line-height: 1.12;
  }
  .landing-footer {
    padding: 34px 18px 24px;
  }
  .footer-brand,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lead-popup {
    display: none;
  }
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .cookie-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: stretch;
    flex-direction: column;
    width: auto;
  }
  .cookie-notice button {
    width: 100%;
  }
  body:has(.cookie-notice:not([hidden])) .scroll-top {
    bottom: 154px;
  }
}

@media (max-width: 520px) {
  .landing-brand {
    font-size: 19px;
  }
  .landing-hero {
    padding: 44px 16px 54px;
    gap: 26px;
  }
  .landing-hero h1 {
    font-size: 34px;
  }
  .hero-actions,
  .button {
    width: 100%;
  }
  .hero-actions .button,
  .price-card .button,
  .split .button {
    width: 100%;
  }
  .score-summary,
  .score-summary.compact {
    grid-template-columns: 1fr;
  }
  .score-summary span {
    min-width: 0;
  }
  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .evidence-row div,
  .module-card,
  .price-card,
  .deep-panel,
  .quality-card,
  .split > div:first-child {
    padding: 22px;
    border-radius: 22px;
  }
  .quality-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .quality-score {
    display: grid;
    gap: 10px;
    align-items: start;
    justify-content: start;
    margin-bottom: 18px;
  }
  .quality-score strong {
    max-width: 100%;
    font-size: 34px;
    line-height: 1;
    overflow-wrap: anywhere;
  }
  .quality-row {
    padding: 16px 0 18px;
  }
  .quality-row p {
    font-size: 16px;
    line-height: 1.58;
  }
  .hero-panel {
    padding: 10px;
    border-radius: 20px;
  }
  .landing-hero .evidence-row,
  .landing-hero .trust-row {
    display: none;
  }
  .landing-hero .hero-panel .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .landing-hero .hero-panel .metric {
    min-height: 74px;
    padding: 11px 11px 38px;
    border-radius: 14px;
  }
  .landing-hero .hero-panel .metric span {
    font-size: 11px;
    line-height: 1.2;
  }
  .landing-hero .hero-panel .metric strong {
    margin-top: 8px;
    font-size: 21px;
  }
  .landing-hero .hero-panel .metric i:not(:empty) {
    right: 10px;
    bottom: 10px;
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }
  .landing-hero .insight-card {
    display: none;
  }
  .product-peek img {
    height: 190px;
  }
  .screen-features {
    gap: 18px;
  }
  .screen-feature-media img {
    aspect-ratio: 4 / 3;
  }
  .lightbox {
    padding: 12px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 380px) {
  .landing-brand {
    gap: 8px;
    font-size: 18px;
  }
  .landing-brand-mark {
    width: 30px;
    height: 30px;
  }
  .header-social,
  .header-phone,
  .nav-burger {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 12px;
  }
}
