:root {
  --ink: #101722;
  --ink-2: #263241;
  --muted: #667184;
  --line: #dde3e9;
  --surface: #ffffff;
  --surface-2: #f5f7f8;
  --surface-3: #eaf5f1;
  --brand: #16806a;
  --brand-dark: #0f6655;
  --brand-light: #d7efe8;
  --indigo: #4338ca;
  --navy: #0e1520;
  --warm: #fff9ed;
  --warning: #8d5b00;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 64px rgba(21, 36, 50, .10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { max-width: 100%; }
button, input { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(67, 56, 202, .32); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--surface-2); }
.section--mint { background: var(--surface-3); }
.section--dark { color: white; background: var(--navy); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section--dark .eyebrow { color: #70dfc4; }
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(2.65rem, 6.3vw, 5.4rem); line-height: .98; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.4vw, 3.8rem); line-height: 1.04; }
h3 { margin-bottom: 10px; font-size: 1.2rem; line-height: 1.2; }
p { line-height: 1.7; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.section--dark .lead { color: #b9c3cf; }

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(221, 227, 233, .82);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--indigo), var(--brand));
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(67, 56, 202, .2);
}
.brand-mark svg { width: 21px; }
.brand-name { color: var(--indigo); font-size: 1.2rem; letter-spacing: -.04em; }
.nav-wrap { display: flex; align-items: center; gap: 22px; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: var(--ink-2); font-size: .91rem; font-weight: 650; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--brand-dark); }
.lang-nav { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 9px; }
.lang-nav a { padding: 6px 8px; color: var(--muted); font-size: .74rem; font-weight: 800; text-decoration: none; }
.lang-nav a[aria-current="page"] { color: white; background: var(--brand); border-radius: 6px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-login { color: var(--ink-2); font-size: .88rem; font-weight: 700; text-decoration: none; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; border-radius: 10px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--ink);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  color: white;
  background: var(--brand);
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(23, 134, 111, .17);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--brand-dark); box-shadow: 0 12px 30px rgba(23, 134, 111, .22); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(67, 56, 202, .28); outline-offset: 3px; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: white; box-shadow: none; }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-light); }
.btn--small { min-height: 42px; padding: 10px 15px; font-size: .85rem; }
.btn--wide { width: 100%; }
.btn svg { width: 18px; }

.hero { position: relative; overflow: clip; padding: 86px 0 72px; background: linear-gradient(180deg, #fbfcfd, #fff); }
.hero::before {
  position: absolute;
  z-index: 0;
  top: -240px;
  right: -220px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(67, 56, 202, .09);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(23, 134, 111, .06);
  content: "";
}
.hero-grid { position: relative; z-index: 1; display: grid; align-items: center; gap: 64px; grid-template-columns: 1.08fr .92fr; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 26px 0 0; padding: 0; list-style: none; }
.hero-note li { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-size: .84rem; font-weight: 650; }
.hero-note li::before { display: grid; width: 18px; height: 18px; place-items: center; color: white; background: var(--brand); border-radius: 50%; content: "✓"; font-size: .68rem; }
.candidate-proof { display: flex; align-items: center; gap: 13px; margin-top: 28px; }
.proof-avatars { display: flex; }
.proof-avatars span { display: grid; width: 34px; height: 34px; margin-left: -7px; place-items: center; border: 3px solid white; color: white; background: var(--ink-2); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.proof-avatars span:first-child { margin-left: 0; background: var(--indigo); }
.proof-avatars span:nth-child(2) { background: var(--brand); }
.proof-avatars span:nth-child(3) { background: #d78216; }
.candidate-proof b { display: block; font-size: .98rem; }
.candidate-proof small { color: var(--muted); }

.app-frame { position: relative; padding: 12px; color: white; background: #0a1018; border: 1px solid #26303e; border-radius: 24px; box-shadow: 0 34px 80px rgba(14, 21, 32, .28); transform: rotate(1deg); }
.app-frame::after { position: absolute; z-index: -1; inset: 12% -8% -9% 7%; background: linear-gradient(140deg, rgba(67, 56, 202, .16), rgba(23, 134, 111, .2)); border-radius: 35px; content: ""; filter: blur(30px); }
.app-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 9px 17px; }
.app-logo { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 900; }
.app-logo i { display: block; width: 22px; height: 22px; background: linear-gradient(145deg, var(--indigo), var(--brand)); border-radius: 7px; }
.app-dots { display: flex; gap: 4px; }
.app-dots i { width: 5px; height: 5px; background: #5e6b7c; border-radius: 50%; }
.app-body { padding: 17px; background: #111923; border: 1px solid #273140; border-radius: 17px; }
.usage-row { margin-bottom: 16px; padding: 13px; background: #1a2330; border-radius: 12px; }
.usage-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 8px; color: #c4cbd5; font-size: .72rem; font-weight: 700; }
.usage-track { height: 7px; overflow: hidden; background: #2a3544; border-radius: 999px; }
.usage-track i { display: block; width: 47%; height: 100%; background: linear-gradient(90deg, var(--brand), #6de0c2); border-radius: inherit; }
.app-stats { display: grid; gap: 9px; grid-template-columns: repeat(3, 1fr); }
.app-stat { min-height: 82px; padding: 13px; background: #1a2330; border: 1px solid #2d3948; border-radius: 12px; }
.app-stat strong { display: block; margin-bottom: 4px; color: #50c3a7; font-size: 1.35rem; }
.app-stat span { color: #9eabba; font-size: .66rem; }
.candidate-card { display: grid; align-items: center; gap: 11px; margin-top: 11px; padding: 13px; background: #1a2330; border: 1px solid #2d3948; border-radius: 12px; grid-template-columns: auto 1fr auto; }
.candidate-avatar { display: grid; width: 37px; height: 37px; place-items: center; color: #cfd5de; background: #2a3544; border-radius: 10px; font-size: .75rem; font-weight: 800; }
.candidate-copy b { display: block; font-size: .72rem; }
.candidate-copy span { color: #8f9aaa; font-size: .61rem; }
.match-pill { padding: 6px 8px; color: #7be8ce; background: rgba(23, 134, 111, .18); border-radius: 7px; font-size: .6rem; font-weight: 800; }

.metric-strip { padding: 22px 0; color: white; background: var(--navy); }
.metric-grid { display: grid; gap: 0; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 10px 28px; border-right: 1px solid #2a3543; }
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }
.metric strong { display: block; margin-bottom: 4px; color: #75dfc6; font-size: 1.25rem; }
.metric span { color: #b9c3cf; font-size: .78rem; }

.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.card { position: relative; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 36px rgba(21, 36, 50, .05); }
.card-number { display: grid; width: 38px; height: 38px; margin-bottom: 24px; place-items: center; color: white; background: var(--navy); border-radius: 11px; font-size: .84rem; font-weight: 900; }
.card-icon { display: grid; width: 46px; height: 46px; margin-bottom: 22px; place-items: center; color: var(--brand-dark); background: var(--brand-light); border-radius: 14px; }
.card-icon svg { width: 23px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }
.steps-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.step-card { padding: 25px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.step-card .card-number { background: var(--brand); }
.criteria-grid { display: grid; gap: 17px; grid-template-columns: repeat(3, 1fr); }
.criteria-card { display: flex; align-items: flex-start; gap: 14px; padding: 21px; background: rgba(255,255,255,.7); border: 1px solid rgba(23, 134, 111, .18); border-radius: 15px; }
.criteria-card .mini-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; color: white; background: var(--brand); border-radius: 11px; font-weight: 900; }
.criteria-card h3 { margin-bottom: 5px; font-size: 1rem; }
.criteria-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.audience-card { overflow: hidden; min-height: 260px; padding: 30px; color: white; background: var(--navy); border-radius: var(--radius); }
.audience-card:nth-child(2) { background: var(--brand-dark); }
.audience-card:nth-child(3) { color: var(--ink); background: var(--brand-light); }
.audience-card .audience-index { display: block; margin-bottom: 70px; color: rgba(255,255,255,.55); font-size: .76rem; font-weight: 900; }
.audience-card:nth-child(3) .audience-index { color: var(--brand-dark); }
.audience-card p { margin: 0; color: inherit; opacity: .78; }
.industry-list { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-list span { padding: 11px 15px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; font-weight: 700; }

.trial-layout { display: grid; align-items: center; gap: 70px; grid-template-columns: .95fr 1.05fr; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list li::before { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; color: white; background: var(--brand); border-radius: 50%; content: "✓"; font-size: .75rem; font-weight: 900; }
.trial-ticket { padding: 34px; color: white; background: var(--navy); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.trial-ticket-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 35px; }
.trial-ticket-top span { color: #90a0b2; font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.trial-ticket-top b { padding: 7px 10px; color: #7be8ce; background: rgba(23, 134, 111, .18); border-radius: 8px; font-size: .78rem; }
.trial-days { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.trial-days strong { color: #73dfc5; font-size: 5.3rem; line-height: .8; }
.trial-days span { max-width: 140px; color: white; font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.trial-limit { padding-top: 22px; border-top: 1px solid #2c3948; }
.trial-limit strong { display: block; font-size: 1.7rem; }
.trial-limit span { color: #a9b5c2; font-size: .85rem; }

.pricing-grid { display: grid; align-items: stretch; gap: 20px; margin-top: 40px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-card { position: relative; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.price-card--featured { color: white; background: var(--navy); border-color: var(--navy); }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 7px 9px; color: var(--brand-dark); background: #75dfc6; border-radius: 8px; font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.price-name { color: var(--muted); font-size: .82rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price-card--featured .price-name { color: #a9b5c2; }
.price { display: flex; align-items: flex-end; gap: 7px; margin: 18px 0 26px; }
.price strong { font-size: 3.8rem; line-height: .9; }
.price span { color: var(--muted); }
.price-card--featured .price span { color: #a9b5c2; }
.price-limit { margin-bottom: 24px; font-size: 1.15rem; font-weight: 850; }
.price-card .check-list { margin-bottom: 30px; }
.price-card--featured .check-list li { color: #d9e0e7; }

.faq-list { max-width: 860px; margin: 38px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 4px; cursor: pointer; font-size: 1.03rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--brand); font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 730px; margin: -6px 0 24px; color: var(--muted); }

.blog-preview { display: grid; align-items: center; gap: 46px; grid-template-columns: .8fr 1.2fr; }
.mini-posts { display: grid; gap: 12px; }
.mini-post { display: grid; align-items: center; gap: 18px; padding: 19px; background: white; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; grid-template-columns: auto 1fr auto; }
.mini-post:hover { border-color: var(--brand); }
.mini-post-index { display: grid; width: 42px; height: 42px; place-items: center; color: var(--brand-dark); background: var(--brand-light); border-radius: 11px; font-weight: 900; }
.mini-post strong { font-size: .93rem; line-height: 1.35; }
.mini-post svg { width: 18px; color: var(--brand); }
.final-cta { position: relative; overflow: hidden; padding: 74px; color: white; background: linear-gradient(135deg, var(--indigo), var(--navy) 55%, var(--brand-dark)); border-radius: var(--radius-lg); }
.final-cta::after { position: absolute; top: -80px; right: -40px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.final-cta .eyebrow { color: #7be8ce; }
.final-cta h2, .final-cta p, .final-cta .btn { position: relative; z-index: 2; }
.final-cta p { max-width: 650px; color: #d2d9e2; }

.site-footer { padding: 62px 0 28px; color: #d4dae2; background: #080d13; }
.footer-grid { display: grid; gap: 60px; grid-template-columns: 1.5fr repeat(3, 1fr); }
.footer-brand p { max-width: 330px; color: #8793a3; font-size: .88rem; }
.footer-col h3 { color: white; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: #a7b1be; font-size: .85rem; text-decoration: none; }
.footer-col a:hover { color: #7be8ce; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid #202a35; color: #778493; font-size: .75rem; }

/* Blog */
.blog-hero { padding: 82px 0 54px; background: linear-gradient(180deg, var(--surface-3), white); }
.blog-hero h1 { max-width: 900px; font-size: clamp(2.7rem, 5.4vw, 4.9rem); }
.blog-controls { display: grid; gap: 14px; margin-top: 35px; grid-template-columns: 1fr auto; }
.search-box { position: relative; }
.search-box input { width: 100%; min-height: 54px; padding: 13px 18px 13px 46px; border: 1px solid var(--line); background: white; border-radius: 13px; outline: none; }
.search-box input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(23,134,111,.1); }
.search-box svg { position: absolute; top: 17px; left: 16px; width: 20px; color: var(--muted); }
.blog-count { display: flex; min-width: 150px; align-items: center; justify-content: center; padding: 10px 15px; color: var(--brand-dark); background: var(--brand-light); border-radius: 12px; font-weight: 850; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 40px; }
.filter-btn { padding: 9px 13px; border: 1px solid var(--line); color: var(--ink-2); background: white; border-radius: 999px; cursor: pointer; font-size: .76rem; font-weight: 750; }
.filter-btn[aria-pressed="true"], .filter-btn:hover { border-color: var(--brand); color: white; background: var(--brand); }
.posts-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; min-height: 320px; flex-direction: column; padding: 26px; background: white; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: border .18s ease, transform .18s ease, box-shadow .18s ease; }
.post-card:hover { border-color: rgba(23,134,111,.65); box-shadow: 0 16px 40px rgba(21,36,50,.08); transform: translateY(-3px); }
.post-card[hidden] { display: none; }
.post-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--brand-dark); font-size: .7rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.post-card h2 { margin-bottom: 14px; font-size: 1.28rem; line-height: 1.25; }
.post-card p { margin: 0 0 22px; color: var(--muted); font-size: .88rem; }
.post-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; color: var(--muted); font-size: .75rem; }
.post-card-footer b { color: var(--brand-dark); }
.empty-state { padding: 60px 20px; text-align: center; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0 0; color: var(--muted); font-size: .77rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-dark); }
.article-head { padding: 46px 0 54px; }
.article-head-inner { max-width: 900px; }
.article-kicker { display: inline-flex; margin-bottom: 19px; padding: 8px 11px; color: var(--brand-dark); background: var(--brand-light); border-radius: 8px; font-size: .72rem; font-weight: 850; text-decoration: none; }
.article-head h1 { max-width: 960px; font-size: clamp(2.45rem, 5.2vw, 4.6rem); }
.article-deck { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: var(--muted); font-size: .8rem; }
.article-layout { display: grid; align-items: start; gap: 64px; grid-template-columns: minmax(0, 1fr) 280px; }
.article-content { max-width: 770px; padding-bottom: 90px; }
.article-content h2 { margin-top: 52px; font-size: 2rem; }
.article-content h3 { margin-top: 34px; font-size: 1.3rem; }
.article-content p, .article-content li { color: var(--ink-2); font-size: 1.02rem; line-height: 1.82; }
.article-content ul, .article-content ol { padding-left: 25px; }
.article-content li { margin: 9px 0; }
.article-content a { color: var(--brand-dark); font-weight: 700; }
.article-content blockquote { margin: 34px 0; padding: 24px 28px; border-left: 4px solid var(--brand); color: var(--ink); background: var(--surface-3); border-radius: 0 14px 14px 0; }
.article-content blockquote p { margin: 0; font-size: 1.08rem; font-weight: 700; }
.tldr { margin: 28px 0 40px; padding: 28px; background: var(--surface-3); border: 1px solid rgba(23,134,111,.18); border-radius: var(--radius); }
.tldr h2 { margin: 0 0 13px; font-size: 1.15rem; }
.tldr ul { margin-bottom: 0; }
.article-callout { margin: 38px 0; padding: 28px; color: white; background: var(--navy); border-radius: var(--radius); }
.article-callout h2 { margin-top: 0; color: white; font-size: 1.35rem; }
.article-callout p { color: #c5ced8; }
.article-callout .btn { margin-top: 8px; }
.legal-note { margin: 28px 0; padding: 18px 20px; color: #6a4b0e; background: var(--warm); border: 1px solid #ecd8a8; border-radius: 12px; font-size: .84rem; line-height: 1.6; }
.legal-note p { margin: 8px 0; }
.legal-note a { color: #5d3d00; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-aside { position: sticky; top: 100px; }
.aside-card { margin-bottom: 16px; padding: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 15px; }
.aside-card h2 { font-size: 1rem; }
.aside-card p { color: var(--muted); font-size: .82rem; line-height: 1.55; }
.aside-card a:not(.btn) { display: block; margin: 10px 0; color: var(--ink-2); font-size: .8rem; font-weight: 700; line-height: 1.4; text-decoration: none; }
.aside-card a:not(.btn):hover { color: var(--brand-dark); }
.related-section { padding: 70px 0; background: var(--surface-2); }
.related-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.category-hero { padding: 70px 0 44px; background: var(--surface-3); }
.category-hero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); }

@media (max-width: 1060px) {
  .menu-toggle { display: block; }
  .nav-wrap {
    position: fixed;
    z-index: 95;
    inset: 74px 0 auto;
    display: none;
    align-items: stretch;
    padding: 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-wrap.is-open { display: grid; }
  .main-nav { display: grid; gap: 7px; }
  .main-nav a { padding: 11px 0; font-size: 1rem; }
  .lang-nav { justify-self: start; }
  .hero-grid, .trial-layout { gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .header-actions .btn { display: none; }
  .hero-grid, .trial-layout, .blog-preview, .article-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-copy { text-align: left; }
  .app-frame { max-width: 580px; margin-inline: auto; transform: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid #2a3543; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: 0; }
  .metric:nth-child(3) { padding-left: 0; }
  .card-grid, .criteria-grid { grid-template-columns: 1fr; }
  .pricing-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .article-aside { position: static; display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 60px 0; }
  .brand-name { font-size: 1.08rem; }
  .header-login { display: none; }
  .hero { padding: 48px 0 55px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .app-body { padding: 11px; }
  .app-stats { grid-template-columns: 1fr; }
  .app-stat { min-height: auto; }
  .candidate-card { grid-template-columns: auto 1fr; }
  .match-pill { grid-column: 1 / -1; text-align: center; }
  .metric-grid, .steps-grid, .pricing-grid, .footer-grid, .posts-grid, .article-aside { grid-template-columns: 1fr; }
  .metric, .metric:first-child, .metric:nth-child(3) { padding: 14px 0; border-right: 0; border-bottom: 1px solid #2a3543; }
  .metric:last-child { border-bottom: 0; }
  .trial-ticket { padding: 26px; }
  .trial-days strong { font-size: 4.4rem; }
  .final-cta { padding: 46px 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .blog-controls { grid-template-columns: 1fr; }
  .blog-count { min-height: 48px; }
  .post-card { min-height: 0; }
  .article-head { padding-top: 36px; }
  .article-content h2 { font-size: 1.65rem; }
}

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