/* Kornet landing — design system. Light, layered, trustworthy. Brand: BRAND.md */

:root {
  --azure: #2a65f1;
  --indigo: #353ef1;
  --cyan: #3ec8ef;

  --ink-900: #1b2030;
  --ink-700: #333333;
  --ink-500: #5b6577;
  --muted: #6b7280;

  --bg: #f7f9fc;
  --bg-soft: #eef2fb;
  --card: #ffffff;
  --line: #e5e8f0;
  --line-soft: #eef1f7;

  --success: #16b36a;
  --danger: #e5484d;
  --warning: #f5a524;

  --gradient: linear-gradient(125deg, #3ec8ef 0%, #2a65f1 55%, #353ef1 100%);
  --shadow-sm: 0 1px 2px rgba(27, 32, 48, 0.05), 0 2px 8px rgba(27, 32, 48, 0.05);
  --shadow-md: 0 2px 4px rgba(27, 32, 48, 0.05), 0 12px 32px rgba(27, 32, 48, 0.08);
  --shadow-lg: 0 8px 24px rgba(27, 32, 48, 0.08), 0 30px 60px rgba(27, 32, 48, 0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { color: var(--azure); text-decoration: none; }
a:hover { color: var(--indigo); }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .section-sm { padding: 32px 0; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--azure);
}
.eyebrow.on-dark { color: #bcd0ff; }

.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; color: var(--ink-500); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient); color: #fff; border: none; box-shadow: 0 10px 24px -10px rgba(42, 101, 241, .8); }
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 16px 30px -10px rgba(42, 101, 241, .9); }
.btn-solid { background: var(--azure); color: #fff; border: none; }
.btn-solid:hover { color: #fff; background: var(--indigo); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink-700); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink-900); background: var(--bg); border-color: #d4d9e6; }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { color: #fff; background: rgba(255,255,255,.18); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 249, 252, .82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 12px rgba(27,32,48,.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
/* flex:none on the link (the flex item) so the lockup is never squeezed
   horizontally by a tight bar, which would distort the logo. */
.nav-inner > a:first-child { flex: none; }
.nav-logo { height: 30px; width: auto; max-width: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-500); font-size: .94rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink-900); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 76px 0 60px; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(42,101,241,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,101,241,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 20%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 70% 20%, #000, transparent 72%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); margin: 18px 0 20px; }
.hero h1 .grad { color: var(--azure); }
.hero-sub { font-size: 1.18rem; color: var(--ink-500); max-width: 35ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-micro { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; color: var(--ink-700); }
.hero-micro svg { width: 16px; height: 16px; color: var(--success); flex: none; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: 46ch; }
  .hero h1 { font-size: clamp(1.85rem, 6.2vw, 2.6rem); overflow-wrap: break-word; }
  .browser.clip-tall { max-height: 320px; }
}
@media (max-width: 560px) {
  /* Keep the wordmark on phones instead of swapping in the bare symbol: the
     name is worth more than the few pixels it costs. Shrinking the lockup and
     the CTA is what buys back the room. */
  .nav-cta .btn { padding: 10px 14px; font-size: .88rem; }
  .nav-logo { height: 25px; }
}
@media (max-width: 360px) {
  /* 320px phones: the bar is at capacity, so trim both sides a little more. */
  .nav-cta .btn { padding: 9px 11px; font-size: .8rem; }
  .nav-logo { height: 22px; }
}

/* key reassurance directly under the hero CTA */
.hero-assure {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px; font-size: .98rem; font-weight: 600; color: var(--ink-700);
}
.hero-assure svg { width: 19px; height: 19px; color: var(--success); flex: none; }

/* ---- browser frame ---- */
.browser { border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #f1f4fa; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d4d9e6; display: inline-block; }
.browser-bar i:nth-child(1) { background: #f0b6b8; } .browser-bar i:nth-child(2) { background: #f6d79b; } .browser-bar i:nth-child(3) { background: #b6e0c2; }
.browser-bar .url { margin-left: 10px; font-size: .76rem; color: var(--muted); font-family: 'JetBrains Mono', ui-monospace, monospace; }
.browser img { width: 100%; display: block; }
.browser.clip-tall { max-height: 460px; }
.browser.clip-tall img { object-fit: cover; object-position: top; }

.hero-visual { position: relative; }
.hero-img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; bottom: -18px; left: -16px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 15px; box-shadow: var(--shadow-md);
}
.hero-badge .dot { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(22,179,106,.12); color: var(--success); }
.hero-badge .dot svg { width: 19px; height: 19px; }
.hero-badge b { font-family: 'IBM Plex Sans', sans-serif; font-size: .92rem; color: var(--ink-900); display: block; }
.hero-badge small { font-size: .78rem; color: var(--muted); }
@media (max-width: 900px) { .hero-badge { display: none; } }

/* ---- trust strip ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { padding: 26px 22px; text-align: center; border-right: 1px solid var(--line-soft); }
.trust-item:last-child { border-right: 0; }
.trust-item b { font-family: 'IBM Plex Sans', sans-serif; display: block; font-size: 1.02rem; color: var(--ink-900); margin-bottom: 2px; }
.trust-item span { font-size: .86rem; color: var(--ink-500); }
@media (max-width: 760px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
}

/* ---- why it matters ---- */
.matters { background: var(--bg); }
.matters-card {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 36px; box-shadow: var(--shadow-sm);
  max-width: 880px; margin: 0 auto;
}
.matters-card .icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(229,72,77,.1); color: var(--danger); }
.matters-card .icon svg { width: 28px; height: 28px; }
.matters-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.matters-card p { color: var(--ink-500); }
@media (max-width: 560px) { .matters-card { grid-template-columns: 1fr; text-align: left; padding: 26px; } }

/* ---- founder note ---- */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 36px; box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto;
}
.founder-photo {
  width: 72px; height: 72px; border-radius: 50%; background: var(--ink-900);
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.7rem;
  object-fit: cover;
}
.founder-quote { font-size: 1.12rem; line-height: 1.55; color: var(--ink-900); }
.founder-by { margin-top: 12px; color: var(--ink-500); }
.founder-by b { color: var(--ink-700); }
.founder-trust { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 16px; }
.founder-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--ink-500); }
.founder-trust svg { width: 15px; height: 15px; color: var(--success); flex: none; }
@media (max-width: 560px) {
  .founder { grid-template-columns: 1fr; text-align: left; padding: 20px 22px; }
  .founder-photo { display: none; }
  .founder-quote { font-size: 1.02rem; }
}

/* ---- steps ---- */
.steps { display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 40px; box-shadow: var(--shadow-sm);
}
.step:nth-child(even) .step-media { order: -1; }
.step-num { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.step-num b { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: var(--gradient); color: #fff; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 1.1rem; font-weight: 600; display: grid; place-items: center; }
.step-num span { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--azure); }
.step h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step p { color: var(--ink-500); margin-bottom: 14px; }
.step .note { display: inline-flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: var(--ink-500); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; }
.step .note svg { width: 17px; height: 17px; color: var(--azure); flex: none; margin-top: 2px; }
.step-media img { border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-md); width: 100%; }
.step-illu { aspect-ratio: 4/3; border-radius: 14px; background: linear-gradient(135deg, #eef4ff, #e7f7fc); border: 1px solid var(--line); display: grid; place-items: center; }
.step-illu svg { width: 80px; height: 80px; color: var(--azure); opacity: .9; }
@media (max-width: 840px) {
  .step { grid-template-columns: 1fr; gap: 26px; padding: 30px 26px; }
  .step:nth-child(even) .step-media { order: 0; }
  .step-media { order: 0 !important; }
}
@media (max-width: 640px) {
  /* Steps 1–2 show a login/connect screenshot that adds height without much
     persuasive weight on mobile — steps 3–4 (live scan, report) carry the proof. */
  .steps > .step:nth-child(1) .step-media,
  .steps > .step:nth-child(2) .step-media {
    display: none;
  }
}

/* ---- features ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(42,101,241,.09); color: var(--azure); margin-bottom: 18px; }
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; color: var(--ink-500); }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* ---- showcase ---- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.showcase + .showcase { margin-top: 70px; }
.showcase:nth-child(even) .showcase-media { order: -1; }
.showcase h3 { font-size: 1.7rem; margin-bottom: 14px; }
.showcase p { color: var(--ink-500); margin-bottom: 18px; font-size: 1.04rem; }
.showcase ul { list-style: none; display: grid; gap: 11px; }
.showcase li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-700); }
.showcase li svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 3px; }
@media (max-width: 840px) {
  .showcase { grid-template-columns: 1fr; gap: 28px; }
  .showcase:nth-child(even) .showcase-media { order: 0; }
}

/* ---- pricing ---- */
.pricing-wrap { display: grid; place-items: center; }
.price-card { width: 100%; max-width: 540px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.price-top { padding: 36px 38px 30px; border-bottom: 1px solid var(--line); position: relative; }
.price-tag { display: inline-flex; align-items: baseline; gap: 8px; }
.price-tag .amt { font-family: 'IBM Plex Sans', sans-serif; font-size: 3.4rem; font-weight: 700; color: var(--ink-900); line-height: 1; }
.price-tag .per { color: var(--ink-500); font-size: 1rem; }
.price-top h3 { font-size: 1.3rem; margin: 4px 0 6px; }
.price-top p { color: var(--ink-500); font-size: .98rem; }
.price-pill { position: absolute; top: 30px; right: 38px; font-size: .76rem; font-weight: 600; color: var(--success); background: rgba(22,179,106,.1); padding: 6px 12px; border-radius: 999px; }
.price-body { padding: 28px 38px 34px; }
.price-body ul { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; }
.price-body li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.price-body li svg { width: 20px; height: 20px; color: var(--azure); flex: none; margin-top: 2px; }
.price-note { margin-top: 20px; font-size: .88rem; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.price-note svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--warning); }

/* ---- callout / guarantee ---- */
.callout { background: var(--ink-900); color: #fff; border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden; }
.callout::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 100% 0, rgba(62,200,239,.18), transparent 60%); pointer-events: none; }
.callout-inner { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.callout .shield { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--cyan); }
.callout .shield svg { width: 34px; height: 34px; }
.callout h2 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.callout p { color: #c7cee0; max-width: none; }
.callout a { color: var(--cyan); font-weight: 600; }
.callout a:hover { color: #fff; }
@media (max-width: 620px) { .callout { padding: 32px 26px; } .callout-inner { grid-template-columns: 1fr; gap: 18px; } }

/* ---- scope / good to know ---- */
.scope { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px; max-width: 900px; margin: 0 auto; }
.scope-item { display: flex; gap: 13px; align-items: flex-start; }
.scope-item .mk { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; margin-top: 1px; }
.scope-item .mk svg { width: 17px; height: 17px; }
.scope-item .mk.yes { background: rgba(22,179,106,.12); color: var(--success); }
.scope-item .mk.no { background: rgba(107,114,128,.12); color: var(--muted); }
.scope-item b { font-family: 'IBM Plex Sans', sans-serif; font-size: 1rem; color: var(--ink-900); display: block; }
.scope-item span { font-size: .92rem; color: var(--ink-500); }
@media (max-width: 640px) { .scope { grid-template-columns: 1fr; } }

/* ---- faq ---- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq details[open] { border-color: #cdd6ec; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--ink-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.04rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 20px; height: 20px; color: var(--azure); flex: none; transition: transform .2s; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 24px 22px; color: var(--ink-500); }
.faq .answer a { font-weight: 500; }

/* ---- cta band ---- */
.cta-band { background: var(--gradient); border-radius: var(--radius-lg); padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,40,.18), rgba(20,24,40,.34)); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: #fff; font-size: 1.1rem; margin-bottom: 28px; }
.cta-band .white-btn { background: #fff; color: var(--indigo); border: none; box-shadow: 0 10px 28px -10px rgba(0,0,0,.4); }
.cta-band .white-btn:hover { color: var(--indigo); background: #f3f5ff; transform: translateY(-1px); }
.cta-sub { margin-top: 18px; font-size: .9rem; color: #fff; opacity: .92; }
@media (max-width: 560px) { .cta-band { padding: 40px 24px; } }

/* ---- footer ---- */
.footer { background: var(--ink-900); color: #c7cee0; padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; color: #9aa3b8; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: #c7cee0; font-size: .94rem; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; font-size: .84rem; color: #8089a0; }
.footer-bottom .legal { max-width: 60ch; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---- comparison table ---- */
.compare-wrap { max-width: 820px; margin: 44px auto 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.compare thead th { font-family: 'IBM Plex Sans', sans-serif; font-size: .95rem; color: var(--ink-900); background: var(--bg); }
.compare thead th.kornet-col { color: var(--azure); }
.compare th.kornet-col, .compare td.kornet-col { background: rgba(42,101,241,.045); border-left: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.compare tbody th { font-weight: 500; color: var(--ink-500); font-family: 'Inter', sans-serif; font-size: .94rem; }
.compare td { font-size: .95rem; color: var(--ink-700); }
.compare td.kornet-col { font-weight: 600; color: var(--ink-900); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare .ck { display: inline-flex; align-items: center; gap: 8px; }
.compare .ck svg { width: 17px; height: 17px; flex: none; }
.compare .ck.yes svg { color: var(--success); }
.compare td .muted-x svg { width: 16px; height: 16px; color: var(--muted); margin-right: 7px; vertical-align: -3px; }
.compare-foot { text-align: center; font-size: .84rem; color: var(--muted); margin-top: 14px; }

.compare-mobile { display: none; }
@media (max-width: 640px) {
  /* A 3-column table reads cramped at phone widths — swap it for a compact stacked list. */
  .compare-wrap { display: none; }
  .compare-mobile { display: grid; gap: 10px; max-width: 480px; margin: 34px auto 0; }
  .compare-mobile-row { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
  .compare-mobile-row .label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 5px; }
  .compare-mobile-row b { font-family: 'IBM Plex Sans', sans-serif; color: var(--azure); font-size: 1rem; display: block; }
  .compare-mobile-row small { color: var(--ink-500); font-size: .84rem; }
}

/* ---- safety / trust panel ---- */
.safe { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); max-width: 980px; margin: 0 auto; }
.safe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 8px; }
.safe-item .ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(22,179,106,.1); color: var(--success); margin-bottom: 13px; }
.safe-item .ico svg { width: 22px; height: 22px; }
.safe-item b { font-family: 'IBM Plex Sans', sans-serif; font-size: 1rem; color: var(--ink-900); display: block; margin-bottom: 4px; }
.safe-item p { font-size: .9rem; color: var(--ink-500); }
.safe-head { text-align: center; margin-bottom: 30px; }
.safe-head h3 { font-size: 1.4rem; margin-bottom: 8px; }
.safe-head p { color: var(--ink-500); }
@media (max-width: 800px) { .safe-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } .safe { padding: 30px 26px; } }
@media (max-width: 460px) { .safe-grid { grid-template-columns: 1fr; } }

/* ---- scan card (step 3 visual) ---- */
.scan-card { background: var(--ink-900); border-radius: 16px; padding: 28px; color: #fff; box-shadow: var(--shadow-md); }
.scan-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.scan-mark { width: 46px; height: 46px; border-radius: 12px; background: rgba(62,200,239,.14); display: grid; place-items: center; flex: none; }
.scan-mark img { width: 26px; height: 26px; }
.scan-top b { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.02rem; display: block; }
.scan-top span { font-size: .84rem; color: #9fb0d6; }
.scan-bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; margin-bottom: 8px; }
.scan-bar i { display: block; height: 100%; width: 72%; border-radius: 99px; background: var(--gradient); background-size: 200% 100%; animation: kl-shimmer 1.8s linear infinite; }
@keyframes kl-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.scan-stats { display: flex; justify-content: space-between; font-size: .8rem; color: #9fb0d6; margin-bottom: 20px; }
.scan-steps { display: grid; gap: 11px; }
.scan-step { display: flex; align-items: center; gap: 11px; font-size: .92rem; }
.scan-step .mk { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.scan-step .mk svg { width: 14px; height: 14px; }
.scan-step.done .mk { background: rgba(22,179,106,.18); color: #4ad991; }
.scan-step.active .mk { background: rgba(62,200,239,.18); color: var(--cyan); }
.scan-step.active { color: #fff; }
.scan-step.done { color: #c7d2ea; }
.scan-step .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); animation: kl-pulse 1.4s ease-in-out infinite; }
@keyframes kl-pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* ---- accessibility ---- */
a:focus-visible, .btn:focus-visible, summary:focus-visible, details:focus-visible {
  outline: 3px solid var(--azure); outline-offset: 2px; border-radius: 8px;
}
.cta-band .white-btn:focus-visible, .btn-primary:focus-visible { outline-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .btn, .feature, .scan-bar i, .scan-step .pulse { transition: none !important; animation: none !important; }
}

/* ---- legal page ---- */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal-page p, .legal-page li { color: var(--ink-700); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page li { margin-bottom: 8px; }
.legal-page .lead { font-size: 1.1rem; color: var(--ink-500); }
.legal-page .box { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--azure); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.legal-page .box p:last-child { margin-bottom: 0; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; font-size: .94rem; margin-bottom: 28px; }
.back-link svg { width: 16px; height: 16px; }

/* ---- cookie consent ---- */
.consent {
  position: fixed; z-index: 200; left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: flex-end;
  opacity: 0; transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.consent.is-visible { opacity: 1; transform: translateY(0); }
.consent-inner {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%; max-width: 460px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
}
.consent-copy h2 { font-size: .96rem; margin: 0 0 5px; }
.consent-copy p { font-size: .85rem; line-height: 1.5; color: var(--ink-500); margin: 0; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions .btn { padding: 9px 18px; font-size: .9rem; }
@media (max-width: 720px) {
  .consent-inner { gap: 12px; padding: 16px; }
  .consent-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; }
}
