:root {
  color-scheme: light dark;
  --bg: #f6f8fb;
  --bg-soft: #eef3f8;
  --surface: #ffffff;
  --surface-2: #fbfdff;
  --text: #172033;
  --text-strong: #0f172a;
  --muted: #667085;
  --muted-2: #8792a6;
  --border: #d9e1ec;
  --border-soft: #e7edf5;
  --primary: #3157d5;
  --primary-hover: #2547bb;
  --primary-soft: #eef3ff;
  --indigo: #4f46e5;
  --green: #168a61;
  --green-soft: #eaf8f2;
  --blue: #0e8bd3;
  --purple: #7c3aed;
  --orange: #d97706;
  --red: #dc2626;
  --warning-bg: #fff7e6;
  --warning-border: #f3d6a5;
  --warning-text: #704600;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 6px 20px rgba(16, 24, 40, .06);
  --shadow-md: 0 18px 46px rgba(16, 24, 40, .10);
  --shadow-lg: 0 28px 72px rgba(16, 24, 40, .13);
  --container: 1180px;
  --font-ui: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-readable-heading: Inter, "IBM Plex Sans", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c111d;
    --bg-soft: #121826;
    --surface: #121826;
    --surface-2: #151e2f;
    --text: #eef2f7;
    --text-strong: #ffffff;
    --muted: #a3adbd;
    --muted-2: #818b9c;
    --border: #263247;
    --border-soft: #202b40;
    --primary: #7aa2ff;
    --primary-hover: #9bb8ff;
    --primary-soft: rgba(122, 162, 255, .12);
    --green: #6ee7b7;
    --green-soft: rgba(110, 231, 183, .12);
    --warning-bg: rgba(251, 191, 36, .10);
    --warning-border: rgba(251, 191, 36, .22);
    --warning-text: #f7d98a;
    --shadow-sm: 0 6px 20px rgba(0, 0, 0, .22);
    --shadow-md: 0 18px 46px rgba(0, 0, 0, .28);
    --shadow-lg: 0 28px 72px rgba(0, 0, 0, .34);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, rgba(49, 87, 213, .13), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(31, 157, 114, .10), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 42%, var(--bg-soft) 100%);
  font-family: var(--font-ui);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
.wrap { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
section { padding: 56px 0; }
main { position: relative; }

/* Shared editorial typography */
.eyebrow,
.vote-kicker,
.story-label,
.method-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--text-strong);
  font-family: var(--font-heading);
  letter-spacing: -.045em;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 60px);
  line-height: 1;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.section-copy { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

/* Main page opening block, preserving existing content/order */
.resources-section {
  padding: 64px 0 42px;
}
.resources-section .wrap {
  position: relative;
}
.resources-section .wrap::before {
  content: "";
  position: absolute;
  inset: -28px -22px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,87,213,.12), transparent 68%);
  pointer-events: none;
}
.section-head-main {
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 28px;
}
.section-head-main > div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 56px);
}
.section-head-main > div::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,87,213,.10), transparent 70%);
  pointer-events: none;
}
.cyber-title {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 0 28px;
  color: var(--text-strong);
  font-family: var(--font-readable-heading);
  font-size: clamp(42px, 6.7vw, 86px);
  line-height: 1.02;
  letter-spacing: -.012em;
  font-weight: 850;
  text-transform: none;
  overflow-wrap: anywhere;
}
.cyber-title::before,
.cyber-title::after { display: none; }
.section-head-main .eyebrow {
  font-family: var(--font-readable-heading);
  letter-spacing: .035em;
  font-weight: 760;
}

.cyber-subtitle {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-readable-heading);
  font-size: clamp(25px, 3.15vw, 40px);
  line-height: 1.18;
  letter-spacing: -.006em;
  font-weight: 760;
  text-transform: none;
  text-shadow: none;
}

/* Tables */
.price-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
}
th {
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }
td:nth-child(2) {
  width: 160px;
  white-space: nowrap;
  color: var(--green);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.045em;
}
td:nth-child(3) { width: 210px; white-space: nowrap; }
td a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}
.service-name {
  display: block;
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
.service-note {
  display: block;
  max-width: 590px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 520;
}


.service-free-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 620px;
  margin-top: 12px;
  border: 1px solid color-mix(in srgb, var(--green) 28%, var(--border));
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}
.service-free-note a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.free-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green) !important;
  border: 1px solid color-mix(in srgb, var(--green) 30%, var(--border));
  padding: 8px 12px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
}
.free-cta-link:hover {
  background: var(--green);
  color: #fff !important;
}

/* Content cards */
.research-text,
.method-card,
.free-warning,
.article-body,
.page-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.research-text {
  margin-top: 26px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.research-text p,
.free-warning p,
.article-body p,
.article-body li,
.method-card li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}
.research-text p { margin: 0; }
.research-text strong { font-weight: 850; }
.pull-quote {
  margin: 12px 0;
  padding: 20px 0 2px;
  border-top: 1px solid var(--border);
  color: var(--text-strong);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 850;
}
.method-card {
  margin: 22px 0;
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(220px, .45fr) 1fr;
  gap: 24px;
}
.method-label {
  background: var(--green-soft);
  color: var(--green);
}
.method-card h3 {
  margin: 14px 0 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.04;
}
.method-card ul { margin: 0; padding-left: 20px; }
.free-warning {
  margin-top: 22px;
  border-color: var(--warning-border);
  background: var(--warning-bg);
  padding: clamp(22px, 3vw, 30px);
}
.free-warning h3 {
  margin: 0 0 12px;
  color: var(--warning-text);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 850;
}
.free-warning p { color: var(--warning-text); }

/* Read-next is left styled for pages where it exists, without adding/removing content */
.read-next {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: block;
}
.read-body { padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: center; }
.read-body h2 { max-width: 760px; }
.read-body p { margin: 18px 0 0; max-width: 720px; color: var(--muted); font-size: 18px; line-height: 1.62; }
.read-link,
.vote-submit {
  width: fit-content;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(49, 87, 213, .18);
}
.read-link:hover,
.vote-submit:hover { background: var(--primary-hover); color: #fff; }

/* Voting */
.vote-section { padding: 34px 0 56px; }
.vote-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 42px);
}
.vote-shell::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,87,213,.10), transparent 70%);
  pointer-events: none;
}
.vote-head, .vote-form { position: relative; z-index: 1; }
.vote-head h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 850;
}
.vote-head p { margin: 18px 0 0; max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.62; }
.vote-form { margin-top: 28px; }
.vote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vote-option {
  position: relative;
  display: block;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 20px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.vote-option:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 36%, var(--border)); box-shadow: var(--shadow-md); }
.vote-option input { position: absolute; opacity: 0; pointer-events: none; }
.vote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.vote-option h3 { margin: 18px 0 0; font-size: 28px; line-height: 1.08; font-weight: 850; }
.vote-option p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.vote-option:has(input:checked) { background: var(--primary-soft); border-color: var(--primary); }
.vote-actions { margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.vote-submit { margin-top: 0; }
.vote-note { color: var(--muted); font-size: 14px; }

/* Journal cards */
.journal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.story {
  min-height: 248px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 3;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.story:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 36%, var(--border)); box-shadow: var(--shadow-md); color: inherit; }
.story.wide { grid-column: span 6; min-height: 330px; background: linear-gradient(135deg, var(--surface) 0%, var(--primary-soft) 100%); }
.story-label { border: 1px solid transparent; }
.story h3 { margin: 24px 0 0; font-size: 23px; line-height: 1.1; font-weight: 850; overflow-wrap: anywhere; }
.story.wide h3 { max-width: 680px; font-size: clamp(38px, 4.4vw, 62px); line-height: .98; }
.story p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.story.wide p { max-width: 620px; font-size: 18px; }

/* Inner pages */
.page-hero { padding: 54px 0 26px; }
.page-card { padding: clamp(26px, 5vw, 54px); }
.page-card h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.065em;
  overflow-wrap: anywhere;
}
.page-lead { max-width: 820px; margin: 22px 0 0; color: var(--muted); font-size: 20px; line-height: 1.6; }
.content { padding: 24px 0 64px; }
.article-body { max-width: 860px; padding: clamp(24px, 4vw, 42px); }
.article-body h2 { margin-top: 36px; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.04; }
.article-body h2:first-child { margin-top: 0; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; font-weight: 750; }
.article-body .note { margin: 26px 0; border-radius: var(--radius-md); background: var(--primary-soft); color: var(--text); padding: 22px; border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border)); }
.article-body .note p { color: var(--text); margin: 0; }
.breadcrumbs { margin-bottom: 18px; color: var(--muted); font-size: 14px; font-weight: 700; }
.breadcrumbs a { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  background: color-mix(in srgb, var(--surface) 65%, transparent);
}
.footer-grid { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-grid nav { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-grid a { text-decoration: underline; text-underline-offset: 4px; font-weight: 700; color: var(--primary); }

@media (max-width: 1080px) {
  .section-head { grid-template-columns: 1fr; }
  .story, .story.wide { grid-column: span 6; }
  .method-card { grid-template-columns: 1fr; }
  .research-text { grid-template-columns: 1fr; }
}

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

@media (max-width: 760px) {
  .wrap { width: min(100% - 22px, var(--container)); }
  section { padding: 30px 0; }
  .resources-section { padding: 24px 0 30px; }
  .section-head-main > div { border-radius: 22px; padding: 22px; }
  .cyber-title { font-size: clamp(32px, 9.4vw, 44px); line-height: 1.08; letter-spacing: -.004em; margin-bottom: 20px; }
  .cyber-subtitle { font-size: clamp(22px, 6vw, 30px); line-height: 1.22; letter-spacing: 0; }
  .eyebrow, .vote-kicker, .story-label, .method-label { font-size: 10px; letter-spacing: .06em; }
  h2, .vote-head h2, .read-body h2 { font-size: clamp(27px, 7.6vw, 36px); line-height: 1.08; letter-spacing: -.04em; }
  .section-copy, .vote-head p, .read-body p, .free-warning p, .research-text p, .article-body p, .article-body li { font-size: 15px; line-height: 1.62; }
  .price-table { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .price-table table, .price-table thead, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; min-width: 0; }
  .price-table thead { display: none; }
  .price-table tr { margin-bottom: 12px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); padding: 16px; }
  .price-table td { border: 0; padding: 0; }
  .price-table td + td { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
  .price-table td:nth-child(2), .price-table td:nth-child(3) { width: auto; white-space: normal; }
  .price-table td:nth-child(2) { font-size: 23px; line-height: 1; }
  .price-table td:nth-child(2)::before, .price-table td:nth-child(3)::before { display: block; margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
  .price-table td:nth-child(2)::before { content: "Цена/мес"; }
  .price-table td:nth-child(3)::before { content: "Перейти"; }
  .price-table td a { display: inline-flex; align-items: center; justify-content: center; max-width: 100%; border-radius: 999px; background: var(--primary); color: #fff; padding: 10px 12px; text-decoration: none; }
  .service-name { font-size: 18px; }
  .service-note { max-width: none; font-size: 13px; }
  .research-text, .method-card, .free-warning, .read-next, .vote-shell, .article-body, .page-card { border-radius: 22px; }
  .research-text, .free-warning, .read-body, .vote-shell, .method-card, .article-body, .page-card { padding: 18px; }
  .pull-quote { font-size: clamp(20px, 5.8vw, 27px); line-height: 1.1; letter-spacing: -.04em; }
  .method-card { gap: 16px; }
  .method-card h3 { font-size: clamp(21px, 6.4vw, 29px); line-height: 1.08; }
  .method-card ul { padding-left: 18px; font-size: 15px; }
  .free-warning h3 { font-size: clamp(23px, 6.8vw, 32px); line-height: 1.08; letter-spacing: -.04em; }
  .read-link, .vote-submit { width: 100%; justify-content: center; text-align: center; }
  .vote-section { padding: 8px 0 34px; }
  .vote-form { margin-top: 22px; }
  .vote-option { min-height: 0; border-radius: 20px; padding: 16px; }
  .vote-option:hover { transform: none; }
  .vote-option h3 { font-size: clamp(20px, 6vw, 26px); line-height: 1.08; letter-spacing: -.035em; }
  .vote-actions { align-items: stretch; }
  .vote-note { width: 100%; text-align: center; }
  .journal-grid { grid-template-columns: 1fr; gap: 12px; }
  .story, .story.wide { grid-column: auto; min-height: 0; border-radius: 20px; padding: 18px; }
  .story.wide h3, .story h3 { font-size: clamp(21px, 6.2vw, 29px); line-height: 1.08; letter-spacing: -.04em; }
  .story.wide p, .story p { font-size: 15px; line-height: 1.52; }
  .footer-grid { display: block; }
  .footer-grid nav { margin-top: 14px; display: grid; gap: 8px; }
  .page-hero { padding: 24px 0 18px; }
  .page-card h1 { font-size: clamp(31px, 8.8vw, 44px); line-height: 1.03; letter-spacing: -.045em; }
  .page-lead { font-size: 15px; line-height: 1.55; }
  .content { padding: 16px 0 42px; }
}

@media (max-width: 380px) {
  .wrap { width: min(100% - 16px, var(--container)); }
  .section-head-main > div, .research-text, .free-warning, .read-body, .vote-shell, .method-card, .article-body, .page-card { padding: 16px; }
  .cyber-title { font-size: 30px; line-height: 1.1; letter-spacing: 0; }
}


/* Restored editorial header and logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text-strong);
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand:hover { color: var(--text-strong); }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(49,87,213,.22);
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 21px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:hover {
  color: var(--text-strong);
}
.site-nav a:hover::after {
  transform: scaleX(1);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: var(--text-strong);
  color: var(--surface);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.header-cta:hover {
  color: var(--surface);
  background: var(--primary);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .header-inner {
    min-height: 66px;
    gap: 12px;
  }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .site-nav a:hover {
    background: var(--bg-soft);
  }
  .site-nav a::after { display: none; }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 560px) {
  .brand-text { font-size: 19px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 12px; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; }
}


/* Header logo visual fix */
.brand-mark {
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .10);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.section-head-main > div {
  overflow: visible;
}
.site-header {
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}


/* === Final light redesign and simplified header === */
:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-soft: #eef3f8;
  --surface: #ffffff;
  --surface-2: #fbfdff;
  --text: #172033;
  --text-strong: #0f172a;
  --muted: #667085;
  --muted-2: #8792a6;
  --border: #d9e1ec;
  --border-soft: #e7edf5;
  --primary: #3157d5;
  --primary-hover: #2547bb;
  --primary-soft: #eef3ff;
  --indigo: #4f46e5;
  --green: #168a61;
  --green-soft: #eaf8f2;
  --blue: #0e8bd3;
  --purple: #7c3aed;
  --orange: #d97706;
  --red: #dc2626;
  --warning-bg: #fff7e6;
  --warning-border: #f3d6a5;
  --warning-text: #704600;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --bg: #f6f8fb;
    --bg-soft: #eef3f8;
    --surface: #ffffff;
    --surface-2: #fbfdff;
    --text: #172033;
    --text-strong: #0f172a;
    --muted: #667085;
    --muted-2: #8792a6;
    --border: #d9e1ec;
    --border-soft: #e7edf5;
    --primary: #3157d5;
    --primary-hover: #2547bb;
    --primary-soft: #eef3ff;
    --green: #168a61;
    --green-soft: #eaf8f2;
    --warning-bg: #fff7e6;
    --warning-border: #f3d6a5;
    --warning-text: #704600;
  }
}

html, body { background: #f6f8fb; }
body {
  background:
    radial-gradient(circle at 8% -8%, rgba(49, 87, 213, .10), transparent 26%),
    radial-gradient(circle at 96% 0%, rgba(14, 139, 211, .08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f6f8fb 45%, #eef3f8 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5ebf3;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-strong);
  font-weight: 900;
}
.brand:hover { color: var(--text-strong); }
.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  flex: 0 0 38px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f6ff 100%);
  border: 1px solid rgba(49,87,213,.12);
  box-shadow: 0 8px 20px rgba(49,87,213,.10);
  overflow: hidden;
}
.brand-mark::before {
  content: "O";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #3157d5;
  z-index: 2;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 6px;
  top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3157d5, #4f46e5);
  box-shadow: 0 0 0 4px rgba(49,87,213,.08);
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: -.03em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:hover { color: var(--text-strong); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: none !important; }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (max-width: 980px) {
  .header-inner { min-height: 64px; gap: 12px; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 12px 14px; border-radius: 12px; }
  .site-nav a::after { display: none; }
  .site-nav a:hover { background: var(--bg-soft); }
  .menu-toggle { display: inline-flex; margin-left: auto; }
}

@media (max-width: 560px) {
  .brand-text { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
}


/* === Brighter retro-style O logo === */
.brand-mark {
  background: linear-gradient(135deg, #111827 0%, #243fb0 100%) !important;
  border: 1px solid rgba(49,87,213,.10) !important;
  box-shadow: 0 10px 24px rgba(49,87,213,.12), 0 0 0 1px rgba(216,255,66,.18) inset !important;
}
.brand-mark::before {
  color: #d8ff42 !important;
  text-shadow: 0 0 12px rgba(216,255,66,.22);
}
.brand-mark::after {
  background: linear-gradient(135deg, #5de8ff, #4f46e5) !important;
  box-shadow: 0 0 0 4px rgba(93,232,255,.12) !important;
}

/* === Magazine / newspaper art direction — CSS-only, content and order untouched === */
:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --bg-soft: #eee8dc;
  --surface: #fffdfa;
  --surface-2: #fbf7ef;
  --text: #25231f;
  --text-strong: #10100e;
  --muted: #6b665d;
  --muted-2: #8e877c;
  --border: #d8d0c3;
  --border-soft: #e9e1d4;
  --primary: #8f1f2d;
  --primary-hover: #651620;
  --primary-soft: #f7ebe6;
  --green: #376348;
  --green-soft: #eef5ef;
  --warning-bg: #fff7df;
  --warning-border: #d9b45a;
  --warning-text: #604314;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-sm: 0 1px 0 rgba(16,16,14,.05), 0 10px 22px rgba(40,34,24,.055);
  --shadow-md: 0 1px 0 rgba(16,16,14,.06), 0 18px 42px rgba(40,34,24,.07);
  --shadow-lg: 0 2px 0 rgba(16,16,14,.05), 0 30px 70px rgba(40,34,24,.09);
  --font-ui: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", Times, serif;
  --font-readable-heading: Georgia, "Times New Roman", Times, serif;
  --font-copy: Georgia, "Times New Roman", Times, serif;
  --rule: #171714;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --bg: #f7f4ed;
    --bg-soft: #eee8dc;
    --surface: #fffdfa;
    --surface-2: #fbf7ef;
    --text: #25231f;
    --text-strong: #10100e;
    --muted: #6b665d;
    --muted-2: #8e877c;
    --border: #d8d0c3;
    --border-soft: #e9e1d4;
    --primary: #8f1f2d;
    --primary-hover: #651620;
    --primary-soft: #f7ebe6;
    --green: #376348;
    --green-soft: #eef5ef;
    --warning-bg: #fff7df;
    --warning-border: #d9b45a;
    --warning-text: #604314;
    --shadow-sm: 0 1px 0 rgba(16,16,14,.05), 0 10px 22px rgba(40,34,24,.055);
    --shadow-md: 0 1px 0 rgba(16,16,14,.06), 0 18px 42px rgba(40,34,24,.07);
    --shadow-lg: 0 2px 0 rgba(16,16,14,.05), 0 30px 70px rgba(40,34,24,.09);
  }
}

html,
body {
  background: var(--bg) !important;
}

body {
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.26) 1px, transparent 1px),
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #f8f4ed 38%, #f2ebdf 100%) !important;
  background-size: 26px 26px, 26px 26px, auto, auto !important;
  font-family: var(--font-ui);
  line-height: 1.64;
}

::selection {
  background: #221f1a;
  color: #fffdfa;
}

a {
  text-decoration-thickness: .06em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--primary);
}

.wrap {
  width: min(var(--container), calc(100% - 44px));
}

main {
  isolation: isolate;
}

section {
  padding-block: 58px;
}

h1,
h2,
h3,
.cyber-title,
.cyber-subtitle,
.page-card h1,
.story h3,
.vote-head h2,
.method-card h3,
.free-warning h3,
.service-name {
  font-family: var(--font-heading) !important;
  font-kerning: normal;
  text-wrap: balance;
  color: var(--text-strong);
}

h2 {
  font-weight: 700;
  letter-spacing: -.035em;
}

p,
li {
  text-wrap: pretty;
}

/* Header: newspaper masthead instead of app-like header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,250,.94) !important;
  border-top: 3px solid var(--rule);
  border-bottom: 1px solid rgba(23,23,20,.22) !important;
  box-shadow: 0 6px 18px rgba(30,24,18,.035) !important;
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
}

.header-inner {
  min-height: 76px;
  gap: 20px;
}

.brand {
  gap: 12px;
  color: var(--text-strong);
}

.brand:hover {
  color: var(--text-strong);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50% !important;
  border: 1.5px solid var(--rule) !important;
  background: #fffdfa !important;
  color: var(--rule) !important;
  box-shadow: none !important;
  overflow: hidden;
}

.brand-mark::before {
  content: "O";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  color: var(--rule) !important;
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
  text-shadow: none !important;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(23,23,20,.20);
  background: transparent !important;
  box-shadow: none !important;
}

.brand-text {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(23px, 2.35vw, 33px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.site-nav {
  gap: 24px;
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a::after {
  bottom: 5px;
  height: 1px;
  border-radius: 0;
  background: var(--rule);
}

.header-cta {
  display: none !important;
}

.menu-toggle {
  border-radius: 50%;
  border-color: rgba(23,23,20,.24);
  background: #fffdfa;
  box-shadow: none;
}

.menu-toggle:hover {
  border-color: var(--rule);
}

.menu-toggle span {
  height: 1.5px;
}

/* Section labels: editorial kickers, not pills */
.eyebrow,
.vote-kicker,
.story-label,
.method-label,
.vote-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 0 6px;
  border: 0 !important;
  border-bottom: 1px solid currentColor !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--primary) !important;
  font-family: var(--font-ui) !important;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Lead block: feature-page front matter */
.resources-section {
  padding: 44px 0 42px;
}

.resources-section .wrap::before {
  display: none;
}

.section-head {
  gap: 28px;
}

.section-head-main {
  margin-bottom: 28px;
}

.section-head-main > div {
  position: relative;
  overflow: hidden !important;
  padding: clamp(30px, 5vw, 58px) !important;
  border: 1px solid var(--rule) !important;
  border-top-width: 6px !important;
  border-radius: 0 !important;
  background:
    linear-gradient(90deg, rgba(23,23,20,.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffdfa 0%, #fbf7ef 100%) !important;
  background-size: 34px 100%, auto !important;
  box-shadow: 0 22px 0 -18px rgba(23,23,20,.10), var(--shadow-md) !important;
}

.section-head-main > div::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(23,23,20,.08);
  pointer-events: none;
}

.section-head-main > div::after {
  content: "";
  position: absolute;
  left: clamp(30px, 5vw, 58px);
  right: clamp(30px, 5vw, 58px);
  bottom: clamp(20px, 3vw, 34px);
  width: auto;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--rule), transparent 72%);
  opacity: .18;
}

.cyber-title {
  max-width: 1060px;
  margin: 0 0 26px;
  font-size: clamp(50px, 8.5vw, 118px) !important;
  line-height: .88 !important;
  letter-spacing: -.075em !important;
  font-weight: 700 !important;
}

.cyber-subtitle {
  max-width: 1040px;
  font-size: clamp(25px, 3.7vw, 50px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  font-weight: 700 !important;
  color: #24211c !important;
}

.section-copy,
.page-lead,
.vote-head p,
.read-body p,
.story p,
.service-note {
  color: var(--muted) !important;
}

/* Price table: newsroom data table with strong rules */
.price-table {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow-sm) !important;
}

.price-table::before,
.price-table::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rule);
  pointer-events: none;
}

.price-table::before { top: 0; }
.price-table::after { bottom: 0; opacity: .14; }

table {
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid rgba(23,23,20,.14) !important;
  padding: 22px 24px;
}

th {
  background: #f0eadf !important;
  color: var(--text-strong) !important;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

tbody tr {
  transition: background .16s ease;
}

tbody tr:hover {
  background: #fbf4e7 !important;
}

td:nth-child(2) {
  color: var(--green) !important;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.045em;
}

td a {
  color: var(--primary) !important;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

td a:hover {
  color: var(--primary-hover) !important;
  text-decoration-thickness: 2px;
}

.service-name {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
}

.service-note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.48;
}

/* Article and cards: paper, rules, serif reading rhythm */
.research-text,
.method-card,
.free-warning,
.article-body,
.page-card,
.read-next,
.vote-shell,
.story {
  border: 1px solid rgba(23,23,20,.16) !important;
  border-radius: 0 !important;
  background: rgba(255,253,250,.94) !important;
  box-shadow: var(--shadow-sm) !important;
}

.research-text,
.article-body,
.method-card,
.free-warning,
.page-card {
  background:
    linear-gradient(180deg, rgba(255,253,250,.98), rgba(250,246,238,.96)) !important;
}

.research-text {
  border-top: 3px double rgba(23,23,20,.52) !important;
  margin-top: 28px;
}

.research-text p,
.article-body p,
.article-body li,
.method-card li,
.free-warning p {
  color: #2a2721 !important;
  font-family: var(--font-copy);
  font-size: 18px;
  line-height: 1.74;
}

.research-text p + p,
.article-body p + p {
  margin-top: 18px;
}

.research-text p:first-of-type::first-letter,
.article-body > p:first-of-type::first-letter {
  float: left;
  padding: .09em .12em 0 0;
  color: var(--text-strong);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 4.4em;
  line-height: .82;
  font-weight: 700;
}

.pull-quote {
  border-left: 0 !important;
  border-top: 3px solid var(--rule);
  border-bottom: 1px solid rgba(23,23,20,.18);
  background: transparent !important;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.method-card {
  border-top: 4px solid var(--rule) !important;
}

.method-card h3,
.free-warning h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.free-warning {
  border-color: rgba(96,67,20,.28) !important;
  border-top: 4px solid #9a6a17 !important;
  background:
    linear-gradient(180deg, #fff9e9, #fff4d7) !important;
}

.free-warning h3 {
  color: #4f3510;
}

.free-warning p {
  color: #604314 !important;
}

/* Internal pages */
.page-hero {
  padding-top: 46px;
}

.page-card {
  border-top: 6px solid var(--rule) !important;
  padding: clamp(28px, 5vw, 58px) !important;
}

.page-card h1 {
  font-size: clamp(46px, 7vw, 90px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 700;
}

.page-lead {
  max-width: 880px;
  font-family: var(--font-copy);
  font-size: 21px;
  line-height: 1.55;
}

.article-body {
  max-width: 900px;
  border-top: 3px double rgba(23,23,20,.50) !important;
}

.article-body h2 {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(23,23,20,.16);
  font-size: clamp(34px, 4vw, 55px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 700;
}

.article-body h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-body a {
  color: var(--primary) !important;
  text-decoration-thickness: 1px;
}

.article-body .note {
  border: 1px solid rgba(143,31,45,.22) !important;
  border-left: 5px solid var(--primary) !important;
  border-radius: 0 !important;
  background: #fbefe9 !important;
  box-shadow: none !important;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--primary) !important;
}

/* Vote and story modules: editorial cards, not SaaS cards */
.vote-section {
  padding-top: 32px;
}

.vote-shell {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--rule) !important;
  padding: clamp(26px, 4vw, 46px) !important;
}

.vote-shell::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 1px;
  background: rgba(23,23,20,.12);
}

.vote-shell::after {
  display: none;
}

.vote-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 700;
}

.vote-head p {
  font-family: var(--font-copy);
  font-size: 19px;
  line-height: 1.55;
}

.vote-option {
  position: relative;
  min-height: 285px;
  padding: 22px !important;
  border: 1px solid rgba(23,23,20,.18) !important;
  border-top: 3px solid rgba(23,23,20,.72) !important;
  border-radius: 0 !important;
  background: #fffdfa !important;
  box-shadow: none !important;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.vote-option::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: rgba(23,23,20,.10);
}

.vote-option:hover {
  transform: translateY(-3px);
  border-color: var(--rule) !important;
  background: #fbf5ea !important;
  box-shadow: var(--shadow-sm) !important;
}

.vote-option:has(input:checked) {
  border-color: var(--primary) !important;
  background: #faf0ea !important;
  box-shadow: inset 0 0 0 2px rgba(143,31,45,.18), var(--shadow-sm) !important;
}

.vote-option h3 {
  margin-top: 20px;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 700;
}

.vote-option p {
  color: var(--muted) !important;
  font-family: var(--font-copy);
  font-size: 16px;
  line-height: 1.55;
}

.vote-submit,
.read-link {
  border: 1px solid var(--rule);
  border-radius: 0 !important;
  background: var(--rule) !important;
  color: #fffdfa !important;
  box-shadow: none !important;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.vote-submit:hover,
.read-link:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fffdfa !important;
  transform: translateY(-1px);
}

.vote-note {
  color: var(--muted);
  font-style: italic;
}

.journal-grid {
  gap: 16px;
}

.story {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--rule) !important;
  background: #fffdfa !important;
  box-shadow: none !important;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.story::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 1px;
  background: rgba(23,23,20,.12);
  pointer-events: none;
}

.story::after {
  display: none;
}

a.story:hover {
  transform: translateY(-3px);
  border-color: var(--rule) !important;
  background: #fbf5ea !important;
  box-shadow: var(--shadow-sm) !important;
  color: inherit !important;
}

.story.wide {
  border-top-width: 6px !important;
  background:
    linear-gradient(90deg, rgba(23,23,20,.035) 1px, transparent 1px),
    #fffdfa !important;
  background-size: 34px 100%, auto !important;
}

.story h3 {
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 700;
}

.story.wide h3 {
  max-width: 760px;
  font-size: clamp(45px, 5.4vw, 74px);
  line-height: .9;
  letter-spacing: -.065em;
}

.story p,
.story.wide p {
  font-family: var(--font-copy);
  line-height: 1.55;
}

.read-next {
  overflow: hidden;
  border-top: 5px solid var(--rule) !important;
  background: #fffdfa !important;
}

.read-body h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 700;
}

.read-body p {
  font-family: var(--font-copy);
}

/* Footer */
footer {
  border-top: 3px double rgba(23,23,20,.35) !important;
  background: rgba(255,253,250,.78) !important;
  color: var(--muted);
}

.footer-grid a {
  color: var(--text-strong) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration-color: rgba(23,23,20,.32);
}

.footer-grid a:hover {
  color: var(--primary) !important;
  text-decoration-color: var(--primary);
}

/* Motion and focus */
a,
button,
.story,
.vote-option,
.read-link,
.vote-submit {
  transition-timing-function: cubic-bezier(.2,.8,.2,1);
}

a:focus-visible,
button:focus-visible,
.vote-option:focus-within {
  outline: 3px solid rgba(143,31,45,.22);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 66px;
  }

  .site-nav {
    border: 1px solid rgba(23,23,20,.20) !important;
    border-radius: 0 !important;
    background: #fffdfa !important;
    box-shadow: var(--shadow-md) !important;
  }

  .site-nav a {
    border-radius: 0 !important;
  }

  .site-nav a:hover {
    background: #f4ede2 !important;
  }

  .cyber-title {
    font-size: clamp(44px, 10vw, 82px) !important;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, var(--container));
  }

  section {
    padding-block: 36px;
  }

  .resources-section {
    padding-top: 26px;
  }

  .section-head-main > div,
  .research-text,
  .free-warning,
  .read-body,
  .vote-shell,
  .method-card,
  .article-body,
  .page-card {
    padding: 20px !important;
  }

  .section-head-main > div::before {
    inset: 8px;
  }

  .section-head-main > div::after {
    left: 20px;
    right: 20px;
  }

  .cyber-title {
    margin-bottom: 20px;
    font-size: clamp(39px, 13vw, 58px) !important;
    line-height: .93 !important;
  }

  .cyber-subtitle {
    font-size: clamp(23px, 7vw, 34px) !important;
  }

  .price-table {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .price-table::before,
  .price-table::after {
    display: none;
  }

  .price-table tr {
    border: 1px solid rgba(23,23,20,.18) !important;
    border-top: 3px solid var(--rule) !important;
    border-radius: 0 !important;
    background: #fffdfa !important;
    box-shadow: var(--shadow-sm) !important;
  }

  .price-table td,
  .price-table th {
    padding: 14px 16px;
  }

  .research-text p:first-of-type::first-letter,
  .article-body > p:first-of-type::first-letter {
    float: none;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .vote-option {
    min-height: 0;
  }

  .vote-option:hover,
  a.story:hover,
  .vote-submit:hover,
  .read-link:hover {
    transform: none;
  }

  .story.wide h3,
  .story h3,
  .vote-option h3 {
    letter-spacing: -.045em;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: min(100% - 18px, var(--container));
  }

  .cyber-title {
    font-size: 36px !important;
    letter-spacing: -.055em !important;
  }
}

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


/* === Obzorkin refined masthead logo and tagline === */
.brand {
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  border-radius: 50% !important;
  border: 2px solid var(--rule) !important;
  background:
    radial-gradient(circle at 50% 50%, #fffdfa 0 44%, transparent 45%),
    conic-gradient(from -18deg, var(--rule) 0 18deg, #8f1f2d 18deg 64deg, var(--rule) 64deg 100deg, #fffdfa 100deg 125deg, var(--rule) 125deg 360deg) !important;
  box-shadow:
    0 0 0 4px #fffdfa inset,
    0 0 0 5px rgba(23,23,20,.10) inset,
    0 8px 18px rgba(40,34,24,.08) !important;
}

.brand-mark::before {
  content: "O";
  inset: 5px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,23,20,.26);
  border-radius: 50%;
  background: #fffdfa;
  color: var(--rule) !important;
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.11em;
  line-height: 1;
  text-shadow: none !important;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  left: 5px;
  top: 21px;
  border: 0;
  border-radius: 999px;
  background: var(--primary) !important;
  box-shadow: 0 -9px 0 rgba(143,31,45,.38), 0 9px 0 rgba(143,31,45,.38) !important;
  transform: rotate(-28deg);
  opacity: .88;
  pointer-events: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  line-height: 1;
}

.brand-tagline {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: clamp(9px, .78vw, 11px);
  font-weight: 760;
  letter-spacing: .105em;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  .brand-mark::before {
    inset: 4px;
    font-size: 23px;
  }

  .brand-mark::after {
    width: 30px;
    left: 4px;
    top: 18px;
  }

  .brand-tagline {
    max-width: 190px;
    white-space: normal;
    font-size: 9px;
    letter-spacing: .08em;
  }
}

@media (max-width: 420px) {
  .brand-tagline {
    max-width: 160px;
  }
}

/* === Custom uploaded Obzorkin logo mark === */
.brand-mark {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent url("/assets/logo-icon.png") center / contain no-repeat !important;
  box-shadow: 0 8px 18px rgba(40,34,24,.08) !important;
}

.brand-mark::before,
.brand-mark::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 760px) {
  .brand-mark {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }
}


/* === Final fixes: classic editorial poll + readable mobile links === */
.vote-form-classic {
  margin-top: 24px !important;
}

.vote-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.vote-legend {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-copy, var(--font-ui));
  font-size: 15px;
  font-weight: 760;
}

.vote-form-classic .vote-grid {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
}

.vote-form-classic .vote-option {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 5px;
  align-items: start;
  padding: 16px 18px !important;
  border: 1px solid rgba(23,23,20,.18) !important;
  border-left: 4px solid rgba(23,23,20,.72) !important;
  border-top: 1px solid rgba(23,23,20,.18) !important;
  border-radius: 0 !important;
  background: #fffdfa !important;
  box-shadow: none !important;
  cursor: pointer;
}

.vote-form-classic .vote-option::before {
  display: none !important;
}

.vote-form-classic .vote-option input {
  position: static !important;
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  opacity: 1 !important;
  pointer-events: auto !important;
  accent-color: var(--primary);
  cursor: pointer;
}

.vote-form-classic .vote-badge,
.vote-form-classic .vote-option h3,
.vote-form-classic .vote-option p {
  grid-column: 2;
}

.vote-form-classic .vote-badge {
  width: fit-content;
  min-height: 0;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid rgba(143,31,45,.18);
  background: #fbefe9 !important;
  color: var(--primary) !important;
  font-size: 10px;
  line-height: 1;
}

.vote-form-classic .vote-option h3 {
  margin: 4px 0 0 !important;
  font-size: clamp(20px, 2.4vw, 29px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}

.vote-form-classic .vote-option p {
  margin: 3px 0 0 !important;
  max-width: 760px;
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
}

.vote-form-classic .vote-option:hover {
  transform: none !important;
  border-left-color: var(--primary) !important;
  background: #fbf5ea !important;
}

.vote-form-classic .vote-option:has(input:checked) {
  border-color: rgba(143,31,45,.34) !important;
  border-left-color: var(--primary) !important;
  background: #faf0ea !important;
  box-shadow: inset 0 0 0 1px rgba(143,31,45,.12) !important;
}

@media (max-width: 760px) {
  .vote-form-classic .vote-grid {
    gap: 9px;
  }

  .vote-form-classic .vote-option {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px !important;
  }

  .vote-form-classic .vote-option input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
  }

  .vote-form-classic .vote-option h3 {
    font-size: clamp(19px, 5.6vw, 24px) !important;
  }

  .vote-form-classic .vote-option p {
    font-size: 14px !important;
  }

  .price-table td:nth-child(3) {
    overflow: visible !important;
  }

  .price-table td a {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--primary) !important;
    border-radius: 0 !important;
    background: #fffdfa !important;
    color: var(--primary) !important;
    padding: 12px 14px !important;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 850;
    text-align: left;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    overflow-wrap: anywhere;
    word-break: break-word;
    box-shadow: none !important;
  }

  .price-table td a::after {
    content: "↗";
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
  }
}


/* === Patch 2026-05-06 b: stronger mobile link visibility === */
@media (max-width: 760px) {
  .price-table td a,
  .price-table td a:hover,
  .price-table td a:active,
  .price-table td a:focus-visible {
    background: #fffdfa !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    box-shadow: none !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
}


/* === Uploaded HAPP logo inline after the question mark === */
.cyber-title {
  display: block;
}
.title-logo-nowrap {
  display: inline-block;
  white-space: nowrap;
}
.happ-title-logo {
  display: inline-block;
  width: clamp(34px, .72em, 58px);
  height: clamp(34px, .72em, 58px);
  margin-left: .16em;
  object-fit: contain;
  vertical-align: -.10em;
  border-radius: 10px;
}
@media (max-width: 760px) {
  .cyber-title { display: block; }
  .title-logo-nowrap { white-space: nowrap; }
  .happ-title-logo {
    width: 34px;
    height: 34px;
    margin-left: .14em;
    border-radius: 8px;
  }
  .price-table td:nth-child(3)::before { content: "Перейти"; }
}


/* === Header waffle menu === */
.header-inner {
  position: relative;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header-home {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.header-home:hover {
  color: var(--text-strong);
  background: var(--bg-soft);
}
.waffle-menu {
  position: relative;
}
.waffle-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  align-content: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.waffle-toggle span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .82;
}
.waffle-toggle:hover,
.waffle-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary) 42%, var(--border));
  background: color-mix(in srgb, var(--primary-soft) 55%, var(--surface));
}
.waffle-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(280px, calc(100vw - 28px));
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 80;
}
.waffle-menu.is-open .waffle-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.waffle-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.waffle-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}
.footer-grid-simple {
  justify-content: center;
  text-align: center;
}
@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }
  .header-menu {
    gap: 8px;
  }
  .header-home {
    display: none;
  }
  .waffle-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
  .waffle-dropdown {
    right: 0;
    top: calc(100% + 10px);
  }
}
@media (max-width: 420px) {
  .brand-copy {
    min-width: 0;
  }
  .brand-tagline {
    display: none;
  }
}


.vote-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.vote-status[data-state="success"] {
  color: var(--primary);
}

.vote-status[data-state="error"] {
  color: #8f1f2d;
}

.vote-submit:disabled {
  cursor: not-allowed;
  opacity: .68;
}

@media (max-width: 760px) {
  .price-table td a.free-cta-link {
    display: inline-flex;
    margin-top: 10px;
    background: var(--green-soft);
    color: var(--green) !important;
    border: 1px solid color-mix(in srgb, var(--green) 30%, var(--border));
  }
  .service-free-note {
    display: flex;
    max-width: none;
    font-size: 13px;
  }
}

.price-table .service-free-note a {
  background: transparent;
  border: 0;
  color: var(--green) !important;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}
@media (max-width: 760px) {
  .price-table .service-free-note a {
    display: inline;
    background: transparent;
    border: 0;
    color: var(--green) !important;
    padding: 0;
    text-decoration: underline;
    box-shadow: none;
  }
}
