/* ============================================================
   DESIGN TOKENS — identical to symposya-uni base
   ============================================================ */
:root {
  --bg: #060812;
  --bg2: #090C1B;
  --text: #EEF1FF;
  --muted: #A9B2CC;
  --line: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.04);
  --shadow: 0 28px 90px rgba(0,0,0,0.55);
  --r: 22px;
  --surface-radius: 24px;
  --surface-radius-sm: 16px;
  --surface-pad: 22px;
  --surface-border: 1px solid rgba(255,255,255,0.1);
  --surface-shadow: 0 20px 56px rgba(2,8,24,0.34);
  --surface-bg:
    radial-gradient(140% 130% at 0% 0%, rgba(124,92,255,0.12), transparent 58%),
    radial-gradient(130% 120% at 100% 0%, rgba(42,168,255,0.08), transparent 56%),
    linear-gradient(180deg, rgba(15,19,36,0.86), rgba(8,12,24,0.94));
  --header-h: 0px;
  --a1: #7C5CFF;
  --a2: #2AA8FF;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 900px at 20% 10%, rgba(124,92,255,0.18), transparent 55%),
    radial-gradient(1000px 800px at 80% 30%, rgba(42,168,255,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  letter-spacing: -0.015em;
}
body.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:focus { outline: 2px solid rgba(124,92,255,0.65); outline-offset: 3px; border-radius: 10px; }
h1, h2, h3 { margin: 0; }

.container { width: min(1120px, calc(100% - 52px)); margin: 0 auto; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 18px;
}
.mega {
  margin: 0 0 20px;
  font-weight: 920;
  line-height: 0.97;
  font-size: clamp(42px, 5vw, 80px);
  letter-spacing: -0.03em;
}
.lead {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
  max-width: 58ch;
}
.panel__title {
  margin: 0 0 20px;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.panel__text {
  margin: 0 0 24px;
  line-height: 1.65;
  color: var(--muted);
  font-size: 16px;
}
.cover__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 720;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  text-decoration: none;
}
.btn--primary {
  border: 0;
  padding: 13px 21px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(42,168,255,0.85));
  color: #0B0F1C;
  font-weight: 780;
  box-shadow: 0 14px 45px rgba(124,92,255,0.18);
}
.btn--primary:hover { transform: translateY(-1px); }
.btn--primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { transform: translateY(-1px); background: rgba(255,255,255,0.07); }
.btn--ghost-dark {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6,8,18,0.65);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}
.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.logo {
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.logo img { height: 26px; width: auto; display: block; }
.nav { display: flex; justify-content: center; gap: 4px; }
.nav__link {
  color: var(--muted);
  font-size: 14px;
  padding: 9px 11px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.nav__link:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.menu-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  transition: transform 220ms ease, opacity 200ms ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--header-h) + 1px);
  background: rgba(6,8,18,0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 19;
}
.mobile-menu__panel {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(calc(-50% - 10px));
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(8,10,20,0.96);
  box-shadow: var(--shadow);
  padding: 18px;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.mobile-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav .nav__link { justify-content: flex-start; padding: 12px 14px; border-radius: 14px; font-size: 16px; }
.mobile-menu__actions { margin-top: 14px; display: grid; gap: 10px; }
body.is-menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.is-menu-open .mobile-menu__panel { opacity: 1; transform: translateY(-50%); }
body.is-menu-open .menu-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.is-menu-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
body.is-menu-open .menu-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO — dark
   ============================================================ */
.news-hero {
  background:
    radial-gradient(1000px 800px at 75% 20%, rgba(42,168,255,0.09), transparent 55%),
    radial-gradient(900px 700px at 10% 60%, rgba(124,92,255,0.13), transparent 55%),
    #0D1526;
  padding: 88px 0 0;
  overflow: hidden;
  position: relative;
}
.news-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.13) 0%, transparent 65%);
  top: -300px; right: -200px;
  pointer-events: none;
}
.news-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.news-hero__copy { padding-bottom: 88px; }
.news-hero .kicker { color: rgba(170,200,240,0.6); }
.news-hero .mega { color: var(--text); max-width: 18ch; }
.news-hero .lead { color: #A9B2CC; max-width: 52ch; }
.news-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.news-hero__chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: #A9B2CC;
  line-height: 1;
}
.news-hero__visual {
  position: relative;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: calc(50% - 50vw);
  width: calc(100% + (50vw - 50%));
}
.news-hero__frame {
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
}
.news-hero__frame img {
  width: min(100%, 543px);
  height: auto;
  display: block;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.news-trust-bar {
  background: #EDEAE2;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 22px 0;
}
.news-trust-bar__inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.news-trust-bar__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #9C9890; flex-shrink: 0; white-space: nowrap; }
.news-trust-logos { display: flex; align-items: center; flex: 1; gap: 0; }
.news-trust-logo-slot { flex: 1; height: 22px; border-radius: 6px; background: rgba(0,0,0,0.09); max-width: 110px; min-width: 60px; }
.news-trust-logo-slot + .news-trust-logo-slot { margin-left: 14px; }

/* ============================================================
   PROBLEM — light
   ============================================================ */
.news-problem {
  background: #EDEAE2;
  padding: 100px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.news-problem .kicker { color: var(--a1); }
.news-problem .panel__title { color: #1A2E45; font-size: clamp(28px, 2.8vw, 44px); max-width: 34ch; margin-bottom: 52px; }
.news-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-problem-card {
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: grid;
  gap: 14px;
  align-content: start;
}
.news-problem-card:nth-child(even) { background: #F7F4EE; }
.news-problem-card__no {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a1);
  opacity: 0.7;
  line-height: 1;
}
.news-problem-card__title { margin: 0; font-size: 19px; font-weight: 750; letter-spacing: -0.02em; color: #1A2E45; line-height: 1.25; }
.news-problem-card__text { margin: 0; font-size: 15px; color: #3C5070; line-height: 1.62; }

/* ============================================================
   HOW IT WORKS — dark
   ============================================================ */
.news-how {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 600px at 90% 50%, rgba(42,168,255,0.07), transparent 60%),
    #060812;
}
.news-how .kicker { color: rgba(170,200,240,0.55); }
.news-how .panel__title { font-size: clamp(28px, 2.8vw, 44px); margin-bottom: 60px; color: var(--text); }
.news-steps { display: grid; gap: 0; }
.news-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
}
.news-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(42,168,255,0.18));
  border: 1px solid rgba(124,92,255,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: 0;
}
.news-step__body { padding-bottom: 40px; }
.news-step__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 780;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  padding-top: 12px;
}
.news-step__text { margin: 0; font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 58ch; }
.news-step__text em { color: rgba(42,168,255,0.9); font-style: normal; }
.news-step__connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(124,92,255,0.35), rgba(42,168,255,0.2));
  margin-left: 27px;
}

/* ============================================================
   VALUE PROP — light
   ============================================================ */
.news-value {
  background: #EDEAE2;
  padding: 100px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.news-value__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.news-value .kicker { color: var(--a1); }
.news-value .panel__title { color: #1A2E45; font-size: clamp(26px, 2.4vw, 40px); max-width: 30ch; margin-bottom: 16px; }
.news-value .panel__text { color: #3C5070; font-size: 16px; margin-bottom: 36px; max-width: 52ch; }
.news-value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.news-value-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: #3C5070;
  line-height: 1.62;
}
.news-value-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.news-value-item strong { color: #1A2E45; font-weight: 730; }
.news-value__col--reader .kicker { color: var(--a1); }
.news-value__col--reader .panel__title { color: #1A2E45; }
.news-reader-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.news-reader-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: grid;
  gap: 8px;
  align-content: start;
}
.news-reader-card__icon { font-size: 22px; line-height: 1; }
.news-reader-card__title { font-size: 14px; font-weight: 750; color: #1A2E45; line-height: 1.3; letter-spacing: -0.01em; }
.news-reader-card__text { font-size: 13px; color: #4A6080; line-height: 1.58; margin: 0; }

/* ============================================================
   FORMAT / VISUAL EXAMPLE — dark
   ============================================================ */
.news-format {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 600px at 20% 80%, rgba(124,92,255,0.08), transparent 60%),
    #060812;
}
.news-format .kicker { color: rgba(170,200,240,0.55); }
.news-format .panel__title { font-size: clamp(28px, 2.8vw, 44px); color: var(--text); margin-bottom: 16px; }
.news-format .panel__text { color: var(--muted); }
.news-format-demo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  background: #0F1624;
}
.nfd__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #1a2233;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nfd__dots { display: flex; gap: 6px; }
.nfd__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.nfd__url-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 5px 14px;
  text-align: center;
}
.nfd__url-text { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0; }
.nfd__actions { display: flex; gap: 8px; }
.nfd__actions span { width: 28px; height: 20px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.nfd__shell {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  min-height: 440px;
}

/* Sidebar */
.nfd__sidebar {
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 20px 16px;
  background: #0c1422;
}
.nfd__sidebar-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.nfd__claim-nav { display: grid; gap: 4px; }
.nfd__claim-nav-item {
  text-align: left;
  background: transparent;
  border: none;
  color: rgba(200,215,235,0.55);
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  line-height: 1.4;
  font-family: inherit;
}
.nfd__claim-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nfd__claim-nav-item--active { background: rgba(124,92,255,0.14); color: var(--text); border: 1px solid rgba(124,92,255,0.22); }

/* Main claim area */
.nfd__main { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,0.07); display: grid; gap: 20px; align-content: start; }
.nfd__claim-header { display: grid; gap: 10px; }
.nfd__claim-type {
  display: inline-flex;
  align-self: start;
  font-size: 11px;
  font-weight: 740;
  padding: 3px 10px;
  border-radius: 999px;
}
.nfd__claim-type--opinion { background: rgba(255,180,50,0.15); border: 1px solid rgba(255,180,50,0.28); color: #FFBE3D; }
.nfd__claim-type--fact { background: rgba(42,200,120,0.15); border: 1px solid rgba(42,200,120,0.28); color: #2AC878; }
.nfd__claim-title { font-size: clamp(17px, 1.4vw, 20px); font-weight: 750; color: var(--text); line-height: 1.4; letter-spacing: -0.02em; }
.nfd__claim-speaker { font-size: 13px; color: rgba(169,178,204,0.65); }
.nfd__context-block {
  padding: 16px;
  border-radius: 12px;
  background: rgba(42,168,255,0.06);
  border: 1px solid rgba(42,168,255,0.14);
}
.nfd__context-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(42,168,255,0.65); margin-bottom: 8px; }
.nfd__context-text { font-size: 14px; color: #A9B2CC; line-height: 1.65; margin: 0; }
.nfd__sources-block { display: grid; gap: 10px; }
.nfd__sources-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nfd__sources-count {
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
}
.nfd__source-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 160ms ease;
  cursor: pointer;
}
.nfd__source-row:hover { background: rgba(255,255,255,0.07); }
.nfd__source-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nfd__source-dot--primary { background: var(--a1); }
.nfd__source-dot--data { background: var(--a2); }
.nfd__source-dot--context { background: rgba(255,180,50,0.8); }
.nfd__source-info { flex: 1; }
.nfd__source-name { font-size: 13px; color: var(--text); font-weight: 640; line-height: 1.3; }
.nfd__source-type { font-size: 11px; color: var(--muted); margin-top: 2px; }
.nfd__source-link { font-size: 16px; color: rgba(255,255,255,0.25); margin-left: auto; }

/* Aside */
.nfd__aside { padding: 20px 18px; background: #0a1020; display: grid; gap: 0; align-content: start; }
.nfd__aside-block { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nfd__aside-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.nfd__aside-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nfd__discussion-count {
  background: rgba(124,92,255,0.18);
  color: rgba(170,150,255,0.9);
  font-size: 10px;
  border-radius: 999px;
  padding: 1px 6px;
  letter-spacing: 0;
}
.nfd__related-item {
  font-size: 13px;
  color: rgba(42,168,255,0.8);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 150ms ease;
}
.nfd__related-item:hover { color: var(--a2); }
.nfd__related-item:last-child { border-bottom: none; }
.nfd__related-arrow { opacity: 0.5; }
.nfd__comment { padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); margin-bottom: 8px; }
.nfd__comment:last-child { margin-bottom: 0; }
.nfd__comment-user { font-size: 11px; font-weight: 700; color: rgba(170,150,255,0.8); margin-bottom: 4px; }
.nfd__comment-text { font-size: 12px; color: var(--muted); line-height: 1.55; }

.news-format-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.news-format-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-format__caption { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; letter-spacing: 0; }

/* ============================================================
   FORMATS — light
   ============================================================ */
.news-formats {
  background: #EDEAE2;
  padding: 100px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.news-formats .kicker { color: var(--a1); }
.news-formats .panel__title { color: #1A2E45; font-size: clamp(28px, 2.8vw, 44px); margin-bottom: 16px; }
.news-formats .panel__text { color: #3C5070; }
.news-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-format-card {
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: grid;
  gap: 14px;
  align-content: start;
}
.news-format-card:nth-child(even) { background: #F7F4EE; }
.news-format-card__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--a1);
  font-weight: 700;
  line-height: 1;
}
.news-format-card--podcast { background: #F0EDE6; }
.news-format-card__icon { font-size: 26px; line-height: 1; }
.news-format-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.02em;
  color: #1A2E45;
  line-height: 1.2;
}
.news-format-card__text {
  margin: 0;
  font-size: 15px;
  color: #3C5070;
  line-height: 1.65;
}
.news-format-card__features {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.news-format-card__features li {
  font-size: 13px;
  color: #1A2E45;
  font-weight: 640;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.news-format-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a1), var(--a2));
}

/* ============================================================
   CTA / DEMO FORM
   ============================================================ */
.news-cta {
  padding: 100px 0;
  background:
    radial-gradient(1000px 700px at 80% 20%, rgba(124,92,255,0.14), transparent 55%),
    radial-gradient(800px 600px at 10% 80%, rgba(42,168,255,0.1), transparent 55%),
    #060D1E;
}
.news-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.news-cta .kicker { color: rgba(170,200,240,0.55); }
.news-cta__title { font-size: clamp(28px, 2.6vw, 42px); font-weight: 820; letter-spacing: -0.025em; color: var(--text); line-height: 1.1; margin-bottom: 18px; }
.news-cta__text { font-size: 16px; color: var(--muted); line-height: 1.68; margin-bottom: 28px; }
.news-cta__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.news-cta__meta-item { font-size: 13px; color: rgba(255,255,255,0.45); }
.news-cta__meta-sep { color: rgba(255,255,255,0.2); }

.news-cta__form { display: grid; gap: 16px; }
.news-cta__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.news-cta__field { display: grid; gap: 6px; }
.news-cta__label { font-size: 13px; font-weight: 640; color: rgba(238,241,255,0.65); }
.news-cta__input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 180ms ease, background 180ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.news-cta__input::placeholder { color: rgba(255,255,255,0.22); }
.news-cta__input:focus {
  border-color: rgba(124,92,255,0.55);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(124,92,255,0.14);
}
.news-cta__select { cursor: pointer; }
.news-cta__select option { background: #0F1624; color: var(--text); }
.news-cta__submit { width: 100%; padding: 15px; font-size: 15px; margin-top: 4px; }
.news-cta__disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin: 0; line-height: 1.5; letter-spacing: 0; }
.news-cta__success {
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  background: rgba(42,200,120,0.1);
  border: 1px solid rgba(42,200,120,0.22);
  color: #2AC878;
  font-size: 15px;
  font-weight: 680;
}

/* ============================================================
   FOOTER
   ============================================================ */
.news-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #040710;
}
.news-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.news-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.news-footer__link { font-size: 13px; color: var(--muted); transition: color 160ms ease; }
.news-footer__link:hover { color: var(--text); }
.news-footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); margin: 0; letter-spacing: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .news-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .news-hero__copy { padding-bottom: 0; }
  .news-hero__visual { margin-right: 0; width: 100%; justify-content: center; padding-bottom: 0; }
  .news-mockup-mini { border-radius: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .news-problem-grid { grid-template-columns: 1fr; }
  .news-value__grid { grid-template-columns: 1fr; gap: 52px; }
  .news-cta__inner { grid-template-columns: 1fr; gap: 52px; }
  .nfd__shell { grid-template-columns: 1fr; }
  .nfd__sidebar { display: none; }
  .nfd__aside { display: none; }
  .nfd__main { border-right: none; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 32px); }
  .header__inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  .news-hero { padding: 60px 0 0; }
  .news-hero .mega { font-size: clamp(36px, 9vw, 56px); }
  .news-problem, .news-how, .news-value, .news-format, .news-cta { padding: 70px 0; }
  .news-cta__field-row { grid-template-columns: 1fr; }
  .news-formats-grid { grid-template-columns: 1fr; }
  .news-reader-cards { grid-template-columns: 1fr; }
  .news-footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-trust-bar__inner { gap: 16px; }
}
