/* =========================================================
   JPNIC.co.jp
   Independent Editorial Archive / Manifesto Site
   NOT JPRS • NOT JPNIC
   ========================================================= */

:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --ink: #12100e;
  --ink-soft: #191513;

  --paper: #f3eadc;
  --paper-2: #fff8ea;
  --bone: #dacbb5;
  --muted: #a9957b;

  --white: #ffffff;
  --red: #b40000;
  --red-2: #e01818;
  --red-dark: #650000;

  --gold: #c7a35b;
  --blue: #61b7ff;
  --blue-2: #8fd3ff;

  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.28);
  --dark-line: rgba(0, 0, 0, 0.18);

  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.34);

  --max: 1180px;
  --wide: 1440px;

  --serif: Georgia, "Times New Roman", YuMincho, "Yu Mincho", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 8%, rgba(75, 175, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 8% 14%, rgba(190, 0, 0, 0.22), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #110f0d 42%, #050505 100%);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(92, 180, 255, 0.09), transparent 26rem),
    radial-gradient(circle at 20% 72%, rgba(180, 0, 0, 0.08), transparent 22rem);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue-2);
}

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

p {
  margin: 0 0 1.15rem;
}

strong {
  color: var(--white);
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* =========================================================
   Utility
   ========================================================= */

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.wrap-wide {
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--red-2);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(224, 24, 24, 0.55);
  background: rgba(180, 0, 0, 0.18);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red-2);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(224, 24, 24, 0.82);
}

.lead {
  color: var(--bone);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.62;
}

.small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.65;
}

.center {
  text-align: center;
}

.red {
  color: var(--red-2);
}

.blue {
  color: var(--blue-2);
}

.gold {
  color: var(--gold);
}

.divider {
  height: 1px;
  margin: 4rem auto;
  width: min(var(--max), calc(100% - 44px));
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
}

/* =========================================================
   Loud Independent Disclaimer Bar
   ========================================================= */

.top-warning {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(90deg, #650000, #b40000 45%, #650000);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.top-warning-inner {
  width: min(var(--wide), calc(100% - 32px));
  margin: 0 auto;
  padding: 0.62rem 0;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.top-warning-inner span {
  color: #fff4c6;
}

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--wide), calc(100% - 44px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: max-content;
}

.brand-title {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 0.36rem;
  color: var(--red-2);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.nav-links a {
  padding: 0.6rem 0.74rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}

.nav-links a.danger {
  color: #fff;
  border-color: rgba(224,24,24,0.5);
  background: rgba(180,0,0,0.22);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero.hero-full {
  min-height: calc(100vh - 120px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg picture {
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.68) 38%, rgba(0,0,0,0.24) 72%, rgba(0,0,0,0.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.7));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 38%, rgba(90,185,255,0.23), transparent 22rem),
    radial-gradient(circle at 14% 58%, rgba(190,0,0,0.28), transparent 22rem);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.54fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 1.15rem;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0,0,0,0.72);
}

.hero h1 .small-line {
  display: block;
  margin-top: 0.28rem;
  color: var(--paper);
  font-size: 0.36em;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 0 2rem;
  color: var(--bone);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-manifesto {
  display: grid;
  gap: 0.72rem;
  max-width: 720px;
  margin-top: 2rem;
}

.hero-manifesto p {
  margin: 0;
  padding: 0.88rem 1rem;
  border-left: 5px solid var(--red);
  background: rgba(0,0,0,0.56);
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.glass-panel {
  width: 100%;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  border: 1px solid rgba(255,255,255,0.2);
  background:
    linear-gradient(145deg, rgba(5,5,5,0.76), rgba(20,15,13,0.58)),
    radial-gradient(circle at top right, rgba(90, 185, 255, 0.15), transparent 18rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-panel h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.glass-panel p {
  color: var(--bone);
}

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 76px;
  margin: 1rem 0;
  padding: 0.7rem 1rem;
  color: var(--red-2);
  border: 4px solid var(--red);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-6deg);
  background: rgba(180,0,0,0.05);
  box-shadow: inset 0 0 0 2px rgba(180,0,0,0.3);
  opacity: 0.9;
}

/* =========================================================
   Buttons / Calls to Action
   ========================================================= */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.btn:hover {
  color: var(--white);
  border-color: rgba(143,211,255,0.8);
  background: rgba(97,183,255,0.18);
}

.btn-red {
  border-color: rgba(224,24,24,0.85);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  border-color: rgba(255,255,255,0.55);
}

.btn-light {
  color: var(--black);
  background: var(--paper-2);
  border-color: var(--paper-2);
}

.btn-light:hover {
  color: var(--black);
  background: var(--white);
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-paper {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180,0,0,0.08), transparent 28rem),
    linear-gradient(180deg, #f4ead9, #e6d8c3);
}

.section-paper .kicker {
  color: var(--red);
}

.section-paper .lead,
.section-paper .small {
  color: #53483c;
}

.section-paper h2,
.section-paper h3 {
  color: #100d0b;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 10%, rgba(97,183,255,0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent);
}

.section-red {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 18rem),
    linear-gradient(135deg, #410000, #970000 48%, #250000);
}

.section-header {
  max-width: 860px;
  margin-bottom: 2.4rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: clamp(1.38rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section h4 {
  margin: 0 0 0.65rem;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.25;
}

/* =========================================================
   Cards / Grids
   ========================================================= */

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(97,183,255,0.10), transparent 18rem),
    radial-gradient(circle at bottom left, rgba(180,0,0,0.10), transparent 16rem);
  opacity: 0.85;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.card h3,
.card h4 {
  margin-top: 0;
}

.card p {
  color: var(--bone);
}

.card-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--blue-2);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-link::after {
  content: " →";
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.card:hover .card-image img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.06);
}

.feature-card {
  min-height: 420px;
  display: grid;
  align-items: end;
}

.feature-card .card-image {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.feature-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.84) 78%),
    linear-gradient(90deg, rgba(0,0,0,0.62), transparent 70%);
}

.feature-card .card-content {
  align-self: end;
}

/* =========================================================
   Evidence / Archive Room
   ========================================================= */

.evidence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.evidence-room {
  border: 1px solid rgba(255,255,255,0.2);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    radial-gradient(circle at top left, rgba(180,0,0,0.2), transparent 18rem);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.8vw, 2.4rem);
}

.evidence-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-item {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.34);
}

.evidence-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 5px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(224,24,24,0.58);
}

.evidence-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.evidence-item p {
  color: var(--bone);
  margin-bottom: 0;
}

.exhibit-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(199,163,91,0.44);
  color: var(--gold);
  background: rgba(199,163,91,0.08);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================================================
   Domain Gallery / 100+ Domains
   ========================================================= */

.domain-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
}

.domain-tile {
  position: relative;
  min-height: 138px;
  padding: 1rem;
  border: 1px solid rgba(143,211,255,0.24);
  background:
    linear-gradient(145deg, rgba(97,183,255,0.11), rgba(255,255,255,0.035)),
    rgba(0,0,0,0.38);
  overflow: hidden;
}

.domain-tile::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle, rgba(143,211,255,0.24), transparent 34%);
  transform: translate(45%, -30%);
  opacity: 0.45;
}

.domain-name {
  position: relative;
  z-index: 2;
  margin: 0 0 0.4rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.domain-dream {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--bone);
  font-size: 0.96rem;
  line-height: 1.48;
}

.domain-tile:hover {
  border-color: rgba(143,211,255,0.72);
  box-shadow: 0 0 30px rgba(97,183,255,0.18);
}

/* =========================================================
   Timeline
   ========================================================= */

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--red), var(--blue), transparent);
}

.timeline-item {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.32);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.68rem;
  top: 1.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 5px rgba(224,24,24,0.16), 0 0 18px rgba(224,24,24,0.76);
}

.timeline-year {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-top: 0.22rem;
}

/* =========================================================
   Quote / Manifesto Blocks
   ========================================================= */

.manifesto-block {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 14% 10%, rgba(180,0,0,0.24), transparent 22rem),
    radial-gradient(circle at 90% 80%, rgba(97,183,255,0.18), transparent 24rem),
    rgba(0,0,0,0.4);
  box-shadow: var(--shadow);
}

.manifesto-block p {
  max-width: 1020px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.manifesto-block cite {
  display: block;
  margin-top: 1.4rem;
  color: var(--gold);
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-left: 6px solid var(--red);
  background: rgba(0,0,0,0.38);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.38;
}

/* =========================================================
   Rich Page Hero Alternative
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.5) 48%, rgba(0,0,0,0.74)),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.86));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 780px;
  color: var(--bone);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

/* =========================================================
   Article Body
   ========================================================= */

.article {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.article h2 {
  margin: 3rem 0 1rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.article h3 {
  margin: 2.2rem 0 0.75rem;
  color: var(--gold);
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  line-height: 1.15;
}

.article p {
  color: var(--bone);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.article .lead {
  color: var(--paper);
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.article a {
  color: var(--blue-2);
  border-bottom: 1px solid rgba(143,211,255,0.55);
}

.article ul,
.article ol {
  color: var(--bone);
  padding-left: 1.4rem;
}

.article li {
  margin-bottom: 0.72rem;
}

.article-callout {
  margin: 2rem 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(224,24,24,0.38);
  background:
    linear-gradient(145deg, rgba(180,0,0,0.18), rgba(0,0,0,0.24));
  color: var(--paper);
}

.article-callout strong {
  color: var(--white);
}

/* =========================================================
   Legal / Clarity Box
   ========================================================= */

.legal-box {
  margin: 2rem 0;
  padding: 1.25rem;
  border: 2px solid rgba(224,24,24,0.72);
  background: rgba(180,0,0,0.16);
}

.legal-box h2,
.legal-box h3 {
  margin-top: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-box p {
  margin-bottom: 0;
  color: var(--paper);
}

/* =========================================================
   Forms / Contact
   ========================================================= */

.contact-card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(97,183,255,0.14), transparent 18rem),
    rgba(0,0,0,0.42);
  box-shadow: var(--shadow-soft);
}

.contact-line {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value {
  color: var(--white);
  font-size: 1.18rem;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(97,183,255,0.12), transparent 22rem),
    linear-gradient(180deg, #090909, #020202);
}

.footer-inner {
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.footer-disclaimer {
  max-width: 760px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
  justify-content: end;
}

.footer-links a {
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,0.84);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(143,211,255,0.65);
  background: rgba(97,183,255,0.12);
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  text-align: center;
}

/* =========================================================
   Image Treatments
   ========================================================= */

.rich-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.rich-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rich-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.52)),
    radial-gradient(circle at top right, rgba(97,183,255,0.14), transparent 16rem);
}

.image-caption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* =========================================================
   Tables
   ========================================================= */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.28);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: var(--bone);
}

tr:last-child td {
  border-bottom: 0;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  .nav {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 4.2rem 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 6rem);
  }

  .hero-panel {
    align-self: auto;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .evidence-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .feature-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .wrap-wide,
  .nav,
  .hero-content,
  .page-hero-content,
  .article,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .top-warning-inner {
    width: min(100% - 18px, var(--wide));
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .brand-title {
    font-size: 2.1rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links a {
    padding: 0.48rem 0.58rem;
    font-size: 0.68rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.7)),
      linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.9));
  }

  .hero-content {
    padding: 3.3rem 0;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.065em;
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 1.08rem;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section h2 {
    font-size: clamp(2.15rem, 12vw, 3.7rem);
  }

  .page-hero {
    min-height: 50vh;
  }

  .page-hero-content {
    padding: 3rem 0;
  }

  .manifesto-block {
    padding: 1.5rem;
  }

  .manifesto-block p {
    font-size: clamp(1.55rem, 9vw, 2.5rem);
  }

  .domain-wall {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .top-warning,
  .site-header,
  .site-footer,
  .actions {
    display: none;
  }

  .hero,
  .page-hero,
  .section,
  .article {
    padding: 1rem 0;
    min-height: auto;
  }

  .hero-bg,
  .page-hero-bg,
  .hero::before,
  .hero::after,
  .page-hero::before {
    display: none;
  }

  .hero-content,
  .page-hero-content,
  .article {
    width: 100%;
  }

  * {
    box-shadow: none !important;
  }
}
