:root{
  --paper:#0f1723;
  --panel:#15202c;
  --panel-strong:#1c2936;
  --ink:#f7fbff;
  --text:#e4edf8;
  --muted:#b2c0d0;
  --soft:#7f8ea1;
  --line:rgba(180,231,255,.18);
  --line-dark:rgba(255,255,255,.14);
  --red:#ff6f82;
  --teal:#63f8ef;
  --blue:#6ea8ff;
  --gold:#ffd36c;
  --green:#72e394;
  --violet:#bd8cff;
  --max:1180px;
  --font-sans:"IBM Plex Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
body{
  max-width:100%;
  margin:0;
  overflow-x:hidden;
  font-family:var(--font-sans);
  color:var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(99,248,239,.13), transparent 28%),
    radial-gradient(circle at 84% 0%, rgba(110,168,255,.14), transparent 30%),
    linear-gradient(135deg,#0b111b 0%,#111827 48%,#172131 100%);
  line-height:1.6;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.95),rgba(0,0,0,.2));
}
a{color:inherit;text-decoration:none}
a:hover{color:var(--teal)}
.container{width:min(var(--max),calc(100% - 32px));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(13,19,29,.94);
  border-bottom:1px solid rgba(255,255,255,.14);
  backdrop-filter:saturate(1.12) blur(14px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:72px;
}
.brand,.footer-brand{
  font-family:"Newsreader",serif;
  font-weight:800;
  font-size:2rem;
  color:#fff;
  line-height:1;
}
.brand span,.footer-brand span{color:var(--teal);text-shadow:0 0 22px rgba(99,248,239,.32)}
.nav-links{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
}
.nav-links a{
  padding:8px 10px;
  border-radius:6px;
  color:#d8e2ee;
  font-size:.92rem;
  font-weight:800;
}
.nav-links a:hover,.nav-links .is-active{
  background:rgba(99,248,239,.1);
  color:var(--teal);
}
.nav-links .nav-standards{
  border:1px solid rgba(99,248,239,.32);
  color:var(--teal);
}
.top-desk{
  padding:34px 0 34px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.desk-masthead{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(430px,506px);
  gap:70px;
  align-items:end;
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:26px;
}
.dateline,.section-kicker,.eyebrow{
  margin:0 0 9px;
  color:var(--teal);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1,h2,h3{
  margin:0 0 12px;
  color:#fff;
  letter-spacing:0;
  overflow-wrap:anywhere;
}
h1{
  font-family:"Newsreader",serif;
  font-size:clamp(3rem,6vw,5.2rem);
  line-height:1;
  max-width:850px;
}
h2{
  font-family:"Newsreader",serif;
  font-size:2.25rem;
  line-height:1.06;
}
h3{
  font-size:1.18rem;
  line-height:1.22;
}
.lead{
  max-width:740px;
  margin:0;
  color:#cbd5e1;
  font-size:1.14rem;
}
.desk-actions,.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 15px;
  border:1px solid var(--teal);
  border-radius:6px;
  background:var(--teal);
  color:#071014;
  font-weight:900;
  cursor:pointer;
}
.btn:hover{background:#fff;border-color:#fff;color:#111827}
.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.45);
}
.btn-secondary:hover{background:rgba(255,255,255,.1);color:#fff;border-color:#fff}
.hero-proof-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:26px;
}
.hero-proof-grid div{
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:8px;
  background:rgba(255,255,255,.07);
}
.hero-proof-grid strong{
  display:block;
  color:#fff;
  font-family:"Newsreader",serif;
  font-size:2.2rem;
  line-height:.95;
}
.hero-proof-grid span{display:block;margin-top:10px;color:#cbd5e1;font-weight:800}
.newsroom-visual{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-self:end;
  gap:20px;
  width:100%;
  max-width:506px;
  min-height:548px;
  padding:22px 24px;
  overflow:hidden;
  border:1px solid rgba(180,231,255,.25);
  border-radius:8px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.05)),
    radial-gradient(circle at 80% 10%,rgba(99,248,239,.18),transparent 32%);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.newsroom-visual::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:4px;
  background:linear-gradient(90deg,var(--teal),var(--blue),var(--gold),var(--red));
}
.newsroom-visual::after{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-120px;
  width:360px;
  height:360px;
  border:1px solid rgba(99,248,239,.17);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(99,248,239,.035),0 0 0 142px rgba(110,168,255,.025);
}
.visual-header,.signal-rails,.newsroom-visual p{position:relative;z-index:1}
.visual-header span{
  display:block;
  color:var(--teal);
  font-weight:900;
  text-transform:uppercase;
}
.visual-header strong{
  display:block;
  margin-top:10px;
  color:#fff;
  font-size:1.2rem;
}
.signal-rails{
  display:grid;
  gap:17px;
  margin:12px 0 4px;
}
.desk-health-row{
  display:grid;
  grid-template-columns:92px minmax(0,1fr) 68px;
  gap:10px;
  align-items:center;
}
.desk-health-row span{
  min-width:0;
  overflow:hidden;
  color:#e6edf7;
  font-size:.82rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.desk-health-row em{
  color:#d8e2ed;
  font-size:.78rem;
  font-style:normal;
  font-weight:900;
  justify-self:end;
  white-space:nowrap;
}
.desk-health-bar{
  position:relative;
  display:block;
  height:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  background:rgba(10,18,23,.3);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
}
.desk-health-bar::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--desk-width);
  border-radius:inherit;
  background:var(--desk-color);
}
.desk-health-bar::after{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--desk-width);
  border-radius:inherit;
  background:linear-gradient(90deg,transparent 0%,transparent 42%,rgba(255,255,255,.1) 47%,rgba(255,255,255,.9) 50%,rgba(255,255,255,.1) 53%,transparent 58%,transparent 100%);
  background-size:230% 100%;
  opacity:.88;
  animation:desk-neon-fill-sweep 8s linear infinite;
  animation-delay:var(--pulse-delay);
}
@keyframes desk-neon-fill-sweep{0%{background-position:180% 0}100%{background-position:-80% 0}}
.newsroom-visual p{
  margin:auto 0 0;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.16);
  color:#cbd5e1;
}
.trust-strip{
  display:grid;
  grid-template-columns:minmax(0,.55fr) minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  margin:16px 0 4px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(255,255,255,.08);
}
.trust-strip strong{color:#fff;line-height:1.25}
.trust-strip span{color:#cbd5e1;font-size:.94rem}
.trust-strip a{color:var(--gold);font-weight:900;border-bottom:2px solid currentColor}
.front-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.7fr) minmax(230px,.45fr);
  gap:18px;
  padding-top:20px;
}
.lead-story,.headline-board,.source-panel,.story-card,.desk-card,.sidebar-card,.plan-card,.content-card,.page-card,.article-shell,.feature-slab,.launch-checklist,.ad-slot{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  color:#1f2937;
  box-shadow:0 20px 48px rgba(0,0,0,.16);
}
.lead-story,.headline-board,.source-panel,.story-card,.desk-card,.sidebar-card,.plan-card,.content-card,.page-card,.feature-slab,.launch-checklist,.ad-slot{padding:18px}
.lead-story h2,.headline-board h2,.source-panel h2,.story-card h3,.desk-card h3,.content-card h2,.content-card h3,.page-card h2,.page-card h3,.article-shell h1,.article-shell h2{color:#111827}
.lead-story p,.headline-board p,.source-panel p,.story-card p,.desk-card p,.content-card p,.page-card p,.article-shell p,.article-shell li{color:#4b5563}
.story-image{
  --art-bg:linear-gradient(135deg,rgba(8,124,115,.92),rgba(40,90,144,.94)),radial-gradient(circle at 82% 18%,rgba(255,255,255,.24),transparent 28%),repeating-linear-gradient(90deg,rgba(255,255,255,.16) 0 1px,transparent 1px 18px);
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:132px;
  border-radius:7px;
  margin-bottom:14px;
  background:var(--art-bg);
  display:flex;
  align-items:flex-end;
  padding:16px;
  color:#fff;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
}
.lead-story .story-image{min-height:190px}
.story-image::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:radial-gradient(circle at 14% 18%,rgba(255,255,255,.3),transparent 14%),linear-gradient(120deg,transparent 0 42%,rgba(255,255,255,.18) 42% 44%,transparent 44% 100%),linear-gradient(0deg,rgba(0,0,0,.22),transparent 48%);
}
.story-image::after{
  content:"";
  position:absolute;
  width:48%;
  height:64%;
  right:8%;
  bottom:-18%;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px 999px 0 0;
  transform:rotate(-10deg);
}
.story-image span{
  position:relative;
  z-index:1;
  font-family:"Newsreader",serif;
  font-size:2.8rem;
  font-weight:800;
  line-height:.82;
  text-shadow:0 10px 28px rgba(0,0,0,.28);
}
.topic-iran.story-image{--art-bg:linear-gradient(135deg,#111827 0%,#087c73 52%,#6d28d9 100%),radial-gradient(circle at 76% 18%,rgba(255,255,255,.26),transparent 30%)}
.topic-source.story-image{--art-bg:linear-gradient(135deg,#0e7490 0%,#111827 68%),repeating-linear-gradient(90deg,rgba(255,255,255,.16) 0 1px,transparent 1px 20px)}
.topic-explainer.story-image{--art-bg:linear-gradient(135deg,#285a90 0%,#111827 72%),radial-gradient(circle at 78% 20%,rgba(255,255,255,.26),transparent 24%)}
.topic-standards.story-image{--art-bg:linear-gradient(135deg,#4c1d95 0%,#111827 58%,#0891b2 100%),repeating-linear-gradient(45deg,rgba(255,255,255,.18) 0 1px,transparent 1px 18px)}
.story-meta,.story-footer{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:#64748b;
  font-size:.86rem;
}
.topic-pill,.proof-pill{
  display:inline-flex;
  width:max-content;
  align-items:center;
  border-radius:999px;
  padding:4px 8px;
  color:#fff;
  font-size:.74rem;
  font-weight:900;
  text-transform:uppercase;
}
.topic-iran .topic-pill,.topic-iran.topic-pill{background:#087c73}
.topic-source .topic-pill,.topic-source.topic-pill{background:#0e7490}
.topic-explainer .topic-pill,.topic-explainer.topic-pill{background:#285a90}
.topic-standards .topic-pill,.topic-standards.topic-pill{background:#6d28d9}
.label-confirmed{background:#166534}
.label-reported{background:#0e7490}
.label-unverified{background:#92400e}
.label-disputed{background:#9f1239}
.label-background{background:#1d4ed8}
.label-correction{background:#6d28d9}
.headline-list{
  display:grid;
  gap:0;
  border-top:1px solid #d8dee8;
}
.headline-list a{
  display:grid;
  gap:6px;
  padding:14px 0;
  border-bottom:1px solid #d8dee8;
}
.headline-list strong{color:#111827;line-height:1.22}
.headline-list span{color:#64748b;font-size:.88rem}
.source-panel ul,.plain-list{
  display:grid;
  gap:12px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
}
.source-panel li,.plain-list li{
  padding-bottom:12px;
  border-bottom:1px solid #d8dee8;
  color:#4b5563;
}
.source-panel li:last-child,.plain-list li:last-child{border-bottom:0}
.section-block{padding:40px 0;border-bottom:1px solid rgba(255,255,255,.12)}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{color:#fff}
.section-head p{max-width:620px;margin:0;color:#cbd5e1}
.story-grid,.desk-grid,.label-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.desk-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.label-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
.story-card h3,.desk-card h3{margin-top:10px}
.desk-card{min-height:230px}
.desk-card strong{
  display:block;
  color:#111827;
  font-family:"Newsreader",serif;
  font-size:2rem;
  line-height:1;
  margin:22px 0 12px;
}
.page-hero{
  padding:44px 0 30px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.42fr);
  gap:32px;
  align-items:end;
}
.page-hero h1{max-width:900px}
.page-hero .lead{font-size:1.16rem}
.content-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.content-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.content-card{min-height:220px}
.article-shell{
  max-width:900px;
  margin:38px auto 0;
  padding:28px;
}
.article-shell h1{color:#111827;font-size:3.1rem}
.article-section{margin-top:24px;padding-top:22px;border-top:1px solid #d8dee8}
.site-footer{
  border-top:1px solid rgba(255,255,255,.14);
  padding:36px 0 44px;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(260px,1fr) auto;
  gap:24px;
  align-items:start;
}
.site-footer p{max-width:620px;color:#cbd5e1}
.footer-links{display:flex;gap:14px;flex-wrap:wrap;font-weight:800}
.footer-links a{color:#d8e2ed}
.footer-links a:hover{color:var(--teal)}
.unclear-word{
  display:inline-block;
  color:rgba(255,255,255,.78);
  filter:blur(.9px);
  text-shadow:2px 0 0 rgba(99,248,239,.3),-2px 0 0 rgba(255,111,130,.2),0 0 24px rgba(245,247,251,.24);
}
.unclear-line{display:block;width:min(100%,720px);text-align:center}
.editor-desk{
  min-height:70vh;
  background:
    radial-gradient(circle at 12% 16%,rgba(99,248,239,.12),transparent 28%),
    radial-gradient(circle at 88% 0%,rgba(110,168,255,.12),transparent 30%),
    var(--ink);
}
.editor-hero{padding:36px 0 26px}
.editor-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,360px);
  gap:24px;
  align-items:end;
}
.editor-hero h1{font-size:4.4rem}
.editor-status-card,.editor-panel{
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(226,236,244,.94));
  color:#111827;
  box-shadow:0 22px 54px rgba(0,0,0,.24);
}
.editor-status-card{
  position:relative;
  overflow:hidden;
  padding:22px;
}
.editor-status-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg,var(--teal),#72e394,#ffd36c,#ff6f82);
}
.editor-status-card span,.editor-summary-grid span{
  display:block;
  color:#526176;
  font-size:.83rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.editor-status-card strong{
  display:block;
  margin-top:10px;
  color:#111827;
  font-size:2.2rem;
  line-height:1;
}
.editor-status-card p{margin:10px 0 0;color:#526176}
.state-green::before{background:#72e394}
.state-amber::before{background:#ffd36c}
.state-red::before{background:#ff6f82}
.state-waiting::before{background:linear-gradient(90deg,#6ea8ff,var(--teal))}
.editor-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,340px);
  gap:18px;
  align-items:start;
}
.editor-panel{padding:20px}
.editor-panel h2{color:#111827}
.editor-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid #d8dee8;
}
.editor-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.editor-summary-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:16px 0;
}
.editor-summary-grid div{
  border:1px solid #d8dee8;
  border-radius:8px;
  background:#f8fafc;
  padding:12px;
}
.editor-summary-grid strong{
  display:block;
  margin-top:8px;
  color:#111827;
  font-size:2rem;
  line-height:1;
}
.editor-next-action,.editor-run-note{
  border-radius:8px;
  background:#e6fffb;
  color:#134e4a;
  padding:12px 14px;
}
.editor-run-note{background:#fff7db;color:#744800}
.editor-report{
  max-height:520px;
  overflow:auto;
  margin:16px 0 0;
  border:1px solid #d8dee8;
  border-radius:8px;
  background:#0f172a;
  color:#e5eef7;
  padding:16px;
  white-space:pre-wrap;
  font:500 .9rem/1.55 Consolas,"Courier New",monospace;
}
.editor-subsection{
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid #d8dee8;
}
.editor-side-panel .plain-list{margin-top:16px}
@media (prefers-reduced-motion:reduce){
  .desk-health-bar::after{animation:none;display:none}
}
@media (max-width:1180px){
  .desk-masthead{gap:36px;grid-template-columns:minmax(0,1fr) minmax(400px,480px)}
  .label-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .desk-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  .site-header{position:relative}
  .nav{align-items:flex-start;flex-direction:column;padding:12px 0}
  .nav-links{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .nav-links a{border:1px solid rgba(255,255,255,.12);text-align:center}
  .nav-links .nav-standards{grid-column:1/-1}
  .desk-masthead,.front-grid,.trust-strip,.page-hero-grid,.content-grid,.content-grid.two,.footer-grid,.editor-hero-grid,.editor-grid{grid-template-columns:1fr}
  .newsroom-visual{max-width:none;min-height:0}
  .story-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  h1{font-size:2.45rem;line-height:1.04}
  .article-shell h1{font-size:2.2rem}
  .editor-hero h1{font-size:2.7rem}
  .hero-proof-grid,.story-grid,.desk-grid,.label-grid{grid-template-columns:1fr}
  .editor-summary-grid{grid-template-columns:1fr 1fr}
  .editor-panel-head{display:block}
  .editor-actions{justify-content:flex-start;margin-top:12px}
  .front-grid{gap:14px}
  .section-head{display:block}
  .section-head h2{margin-bottom:14px}
  .desk-health-row{grid-template-columns:86px minmax(0,1fr) 44px}
  .desk-health-bar{height:11px}
}
