:root {
  --ink: #09090b;
  --ink-soft: #11121a;
  --paper: #f7f4eb;
  --paper-2: #fffdf6;
  --red: #ff453a;
  --red-deep: #be1834;
  --yellow: #ffe247;
  --lime: #c8ff59;
  --blue: #55b8ff;
  --purple: #c49aff;
  --orange: #ff9f68;
  --green: #69f2a1;
  --white: #ffffff;
  --muted: rgba(255,255,255,.64);
  --shadow: 0 30px 80px rgba(0,0,0,.28);
  --radius-lg: 2rem;
  --radius-md: 1.3rem;
  --max: 1440px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
picture { display: contents; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
[id] { scroll-margin-top: calc(var(--header) + 24px); }

.skip-link {
  position: fixed; left: 1rem; top: -6rem; z-index: 9999;
  padding: .8rem 1rem; border-radius: 999px; background: var(--yellow); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-shell { overflow: clip; }
.menu-open { overflow: hidden; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.5rem), 900px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 1rem; color: var(--yellow); font-size: .72rem; font-weight: 800; letter-spacing: .23em; text-transform: uppercase;
}
.display {
  margin: 0; font-family: "Barlow Condensed", Impact, sans-serif; font-weight: 800; line-height: .86;
  letter-spacing: -.045em; text-transform: uppercase;
}
.section-title { font-size: clamp(3.3rem, 7vw, 7.8rem); }
.page-title { font-size: clamp(4rem, 10vw, 9.3rem); }
.section-title, .page-title, .article-title { overflow-wrap: break-word; word-break: normal; text-wrap: balance; }
.lede { max-width: 700px; font-size: clamp(1.08rem, 1.6vw, 1.35rem); color: rgba(255,255,255,.7); line-height: 1.75; }
.muted { color: rgba(255,255,255,.62); }
.dark-copy { color: rgba(9,9,11,.68); }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header); border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(9,9,11,.88); backdrop-filter: blur(18px); transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(9,9,11,.97); box-shadow: 0 12px 32px rgba(0,0,0,.24); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand {
  display: inline-flex; align-items: center; gap: .68rem; font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem); font-weight: 800; letter-spacing: -.035em; text-transform: none;
}
.brand-mark { position: relative; width: 34px; height: 34px; border: 2px solid var(--yellow); border-radius: 9px 9px 9px 3px; transform: rotate(-5deg); }
.brand-mark::before { content: ""; position: absolute; inset: 7px; border: 2px solid var(--red); border-radius: 4px; box-shadow: 0 0 16px rgba(255,69,58,.7); }
.brand-mark::after { content: ""; position: absolute; right: -2px; top: -2px; width: 11px; height: 11px; background: var(--ink); border-left: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow); }
.brand-dot { color: var(--yellow); }
.desktop-nav { display: flex; align-items: center; gap: .35rem; }
.nav-link, .nav-summary {
  display: inline-flex; align-items: center; min-height: 42px; padding: .65rem .78rem; border-radius: 999px;
  color: rgba(255,255,255,.72); font-size: .69rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-summary:hover, details[open] > .nav-summary { background: rgba(255,255,255,.08); color: var(--yellow); }
.nav-details { position: relative; }
.nav-summary { list-style: none; gap: .38rem; }
.nav-summary::-webkit-details-marker { display: none; }
.nav-summary::after { content: "+"; color: var(--yellow); font-size: .9rem; }
details[open] > .nav-summary::after { content: "−"; }
.dropdown {
  position: absolute; top: calc(100% + .65rem); left: 0; width: 260px; padding: .65rem; border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.15rem; background: #111118; box-shadow: var(--shadow);
}
.dropdown a { display: block; padding: .8rem .9rem; border-radius: .7rem; font-size: .82rem; color: rgba(255,255,255,.76); }
.dropdown a:hover { background: rgba(255,226,71,.1); color: var(--yellow); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1rem; border: 1px solid rgba(255,226,71,.55); border-radius: 999px; color: var(--yellow); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.header-cta:hover { background: var(--yellow); color: var(--ink); }
.mobile-toggle { display: none; align-items: center; justify-content: center; flex-direction: column; flex: 0 0 auto; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; color: white; cursor: pointer; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { display: block; width: 18px; height: 2px; background: currentColor; content: ""; transition: transform .25s ease, opacity .25s ease; }
.mobile-toggle span { margin: 4px 0; }
.mobile-toggle[aria-expanded="true"] span { opacity: 0; }
.mobile-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { display: none; position: fixed; inset: var(--header) 0 0; height: calc(100vh - var(--header)); height: calc(100dvh - var(--header)); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 1rem 1.25rem max(2rem, env(safe-area-inset-bottom)); border-bottom: 1px solid rgba(255,255,255,.1); background: #09090b; box-shadow: 0 24px 60px rgba(0,0,0,.42); }
.mobile-panel.is-open { display: block; }
.mobile-panel a { display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: .85rem .4rem; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-weight: 700; }
.mobile-panel a::after { content: "↗"; color: var(--yellow); }
.mobile-label { margin: 1.25rem .4rem .35rem; color: var(--yellow); font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 50px; padding: .9rem 1.25rem; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 0 0 rgba(255,226,71,0); }
.button-primary:hover { background: white; box-shadow: 0 14px 40px rgba(255,226,71,.24); }
.button-secondary { border: 1px solid rgba(255,255,255,.22); color: white; }
.button-secondary:hover { border-color: white; background: rgba(255,255,255,.07); }
.button-dark { background: var(--ink); color: var(--yellow); }
.button-dark:hover { background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--yellow); font-weight: 800; }
.text-link::after { content: "↗"; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px,-3px); }

.home-hero { position: relative; min-height: calc(100svh - var(--header)); display: grid; align-items: center; padding: clamp(4rem, 7vw, 7rem) 0; background: radial-gradient(circle at 70% 40%, rgba(255,69,58,.2), transparent 30%), linear-gradient(135deg,#120708 0%,#09090b 55%,#101a3c 100%); isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(390px,.72fr); align-items: center; gap: clamp(2rem,5vw,6rem); }
.hero-title { font-size: clamp(4.9rem, 10vw, 10.5rem); }
.hero-title .signal { display: block; color: var(--red); text-shadow: 0 0 40px rgba(255,69,58,.25); }
.hero-kicker { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; color: var(--yellow); font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 22px var(--yellow); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.5); opacity: .55; } }
.hero-copy { max-width: 650px; margin: 1.6rem 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.06rem,1.5vw,1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.proof-chip { padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.65); font-size: .7rem; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 8% 0; border: 1px solid rgba(255,226,71,.22); border-radius: 50%; transform: rotate(-12deg); }
.hero-visual::after { content: ""; position: absolute; width: 80%; aspect-ratio: 1; border: 1px solid rgba(85,184,255,.22); transform: rotate(35deg); }
.hero-art { position: relative; z-index: 2; width: min(100%, 540px); aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(255,255,255,.16); border-radius: 2.5rem; box-shadow: 24px 30px 0 rgba(255,69,58,.13), 0 0 90px rgba(85,184,255,.15); transform: rotate(3deg); }
.three-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; opacity: .8; }
.float-tag { position: absolute; z-index: 4; padding: .65rem .85rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(9,9,11,.8); backdrop-filter: blur(10px); color: white; font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.float-tag.one { top: 11%; right: -2%; color: var(--yellow); }
.float-tag.two { left: -3%; bottom: 14%; color: var(--lime); }

.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: #111116; }
.marquee-track { display: flex; width: max-content; gap: 2rem; padding: .95rem 0; animation: marquee 30s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 2rem; color: rgba(255,255,255,.62); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.marquee-track span::after { content: "●"; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem,9vw,9rem) 0; }
.section-red { background: var(--red); color: var(--ink); }
.section-yellow { background: var(--yellow); color: var(--ink); }
.section-lime { background: var(--lime); color: var(--ink); }
.section-blue { background: #101b42; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(260px,.45fr); align-items: end; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid currentColor; border-color: color-mix(in srgb, currentColor 20%, transparent); }
.section-head p { margin: 0; }

.definition-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,6vw,7rem); align-items: start; }
.big-number { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(8rem,18vw,18rem); line-height: .65; color: var(--yellow); opacity: .9; }
.definition-copy { font-size: clamp(1.15rem,2vw,1.55rem); line-height: 1.7; }
.definition-copy strong { color: var(--yellow); }
.callout { margin: 2rem 0; padding: 1.4rem 1.5rem; border-left: 5px solid var(--yellow); border-radius: 0 var(--radius-md) var(--radius-md) 0; background: rgba(255,255,255,.07); }
.callout.dark { border-color: var(--ink); background: rgba(9,9,11,.08); }
.callout p { margin: 0; }

.topic-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; margin-top: 2.2rem; }
.topic-card { position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.6rem; border-radius: var(--radius-lg); overflow: hidden; color: var(--ink); transition: transform .3s ease, box-shadow .3s ease; }
.topic-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.topic-card:nth-child(1), .topic-card:nth-child(6) { grid-column: span 7; }
.topic-card:nth-child(2), .topic-card:nth-child(7) { grid-column: span 5; }
.topic-card:nth-child(3), .topic-card:nth-child(4), .topic-card:nth-child(5), .topic-card:nth-child(8), .topic-card:nth-child(9) { grid-column: span 4; }
.topic-card h3 { margin: 1.8rem 0 .5rem; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.4rem,4vw,4rem); line-height: .9; text-transform: uppercase; }
.topic-card p { max-width: 440px; margin: 0; color: rgba(9,9,11,.65); }
.topic-index { align-self: flex-start; padding: .3rem .55rem; border-radius: 999px; background: var(--ink); color: white; font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.topic-card.red { background: #ff847d; }
.topic-card.yellow { background: var(--yellow); }
.topic-card.green { background: var(--green); }
.topic-card.blue { background: var(--blue); }
.topic-card.purple { background: var(--purple); }
.topic-card.orange { background: var(--orange); }
.topic-card.lime { background: var(--lime); }

.layer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.layer { min-height: 250px; padding: 1.5rem; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.layer-number { color: var(--yellow); font-family: "Barlow Condensed", Impact, sans-serif; font-size: 3.2rem; line-height: 1; }
.layer h3 { margin: 1rem 0 .7rem; font-size: 1.1rem; }
.layer p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.5rem; }
.check-card { padding: 1.4rem 1.5rem; border: 1px solid rgba(9,9,11,.15); border-radius: var(--radius-md); background: rgba(255,255,255,.26); }
.check-card h3 { display: flex; align-items: center; gap: .75rem; margin: 0 0 .55rem; font-size: 1.02rem; }
.check-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: .8rem; }
.check-card p { margin: 0; color: rgba(9,9,11,.68); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: #121218; transition: transform .3s ease, border-color .3s ease; }
.blog-card:hover { transform: translateY(-7px); border-color: rgba(255,226,71,.5); }
.blog-card-image { position: relative; aspect-ratio: 1.25; overflow: hidden; background: #18181f; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.35rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--yellow); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2, .blog-card h3 { margin: .8rem 0 .7rem; font-size: 1.35rem; line-height: 1.2; }
.blog-card p { margin: 0 0 1.25rem; color: rgba(255,255,255,.62); font-size: .9rem; }
.blog-card .text-link { margin-top: auto; font-size: .8rem; }

.comparison-wrap { margin-top: 2.5rem; overflow-x: auto; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); }
.comparison { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 1.15rem 1.25rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); }
.comparison th { color: var(--yellow); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.comparison td { color: rgba(255,255,255,.7); font-size: .9rem; }
.comparison tr:last-child td { border-bottom: 0; }

.faq-list { margin-top: 2.5rem; border-top: 1px solid currentColor; border-color: color-mix(in srgb,currentColor 18%,transparent); }
.faq-item { border-bottom: 1px solid currentColor; border-color: color-mix(in srgb,currentColor 18%,transparent); }
.faq-item summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; list-style: none; cursor: pointer; font-size: 1.06rem; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red); font-size: 1.5rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 850px; padding: 0 0 1.35rem; color: rgba(9,9,11,.68); }
.section-blue .faq-answer, .page-dark .faq-answer { color: rgba(255,255,255,.65); }

.cta-band { position: relative; overflow: hidden; padding: clamp(4rem,7vw,7rem) 0; background: var(--red); color: var(--ink); }
.cta-band::after { content: "SIM VPN"; position: absolute; right: -2vw; bottom: -4vw; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 18vw; font-weight: 900; line-height: .7; color: rgba(9,9,11,.08); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }

.page-hero { position: relative; padding: clamp(4.5rem,8vw,8rem) 0; background: radial-gradient(circle at 80% 20%, rgba(85,184,255,.18), transparent 27%), linear-gradient(145deg,#0b0b10,#15101d 55%,#101b42); overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(310px,.55fr); align-items: center; gap: 3rem; }
.page-hero-art { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2.2rem; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); transform: rotate(2deg); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.2rem; color: rgba(255,255,255,.5); font-size: .72rem; }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span::before { content: "/"; margin-right: .45rem; color: rgba(255,255,255,.25); }
.page-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.pillar-layout { display: grid; grid-template-columns: .35fr 1fr; gap: clamp(2rem,6vw,7rem); }
.side-index { position: sticky; top: calc(var(--header) + 2rem); align-self: start; padding: 1.25rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.035); }
.side-index p { margin: 0 0 .7rem; color: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.side-index a { display: block; padding: .55rem 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.side-index a:hover { color: white; }
.pillar-section { padding: 0 0 3rem; margin-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.pillar-section h2 { margin: 0 0 1rem; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.6rem,5vw,4.7rem); line-height: .95; text-transform: uppercase; }
.pillar-section p { max-width: 850px; margin: 0; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.link-stack { display: grid; gap: .8rem; }
.link-stack a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: rgba(255,255,255,.035); }
.link-stack a:hover { border-color: var(--yellow); color: var(--yellow); }

.blog-hero { padding-bottom: 3.5rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.filter-pill { padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; }
.filter-pill:hover { border-color: var(--yellow); color: var(--yellow); }
.blog-index-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.blog-index-grid .blog-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-index-grid .blog-card:first-child .blog-card-image { aspect-ratio: auto; min-height: 420px; }
.blog-index-grid .blog-card:first-child .blog-card-body { padding: clamp(1.5rem,4vw,3.5rem); justify-content: center; }
.blog-index-grid .blog-card:first-child h2, .blog-index-grid .blog-card:first-child h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.8rem,5vw,5rem); line-height: .9; text-transform: uppercase; }

.article-progress { position: fixed; top: 0; left: 0; z-index: 2000; width: 0; height: 3px; background: linear-gradient(90deg,var(--red),var(--yellow),var(--lime)); }
.article-hero { padding-bottom: clamp(4rem,7vw,7rem); }
.article-hero-grid { display: grid; grid-template-columns: 1.05fr .65fr; gap: 3rem; align-items: center; }
.article-title { font-size: clamp(3.7rem,8vw,8rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin: 1.4rem 0; color: rgba(255,255,255,.55); font-size: .75rem; }
.article-meta a { color: var(--yellow); }
.article-layout { display: grid; grid-template-columns: minmax(210px,.28fr) minmax(0,1fr); gap: clamp(2rem,5vw,6rem); align-items: start; }
.article-toc { position: sticky; top: calc(var(--header) + 2rem); max-height: calc(100vh - var(--header) - 4rem); overflow-y: auto; padding-right: .5rem; }
.article-toc p { margin: 0 0 .85rem; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.article-toc a { display: block; padding: .45rem 0; color: rgba(9,9,11,.57); font-size: .8rem; line-height: 1.35; }
.article-toc a:hover { color: var(--red); }
.article-toc a.toc-h3 { padding-left: .8rem; font-size: .75rem; }
.article-main { min-width: 0; }
.article-key { margin: 0 0 2.5rem; padding: 1.5rem; border: 1px solid rgba(9,9,11,.14); border-radius: var(--radius-md); background: var(--yellow); }
.article-key span { display: block; margin-bottom: .45rem; font-size: .68rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.article-key p { margin: 0; font-size: 1.05rem; font-weight: 650; }
.article-content { color: rgba(9,9,11,.78); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(1rem,1.4vw,1.12rem); line-height: 1.84; }
.article-content h2 { margin: 3.6rem 0 1.15rem; color: var(--ink); font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.5rem,5vw,4.5rem); line-height: .95; letter-spacing: -.025em; text-transform: uppercase; }
.article-content h3 { margin: 2.4rem 0 .8rem; color: var(--ink); font-size: 1.35rem; }
.article-content p { margin: 0 0 1.35rem; }
.article-content a { color: #a31331; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-content a:hover { color: var(--red); }
.article-content ul, .article-content ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.article-content li { margin: .45rem 0; padding-left: .3rem; }
.article-content strong { color: var(--ink); }
.article-content blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 5px solid var(--red); background: rgba(255,69,58,.08); }
.article-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 3rem 0; padding-top: 2rem; border-top: 1px solid rgba(9,9,11,.14); }
.tag { padding: .48rem .7rem; border: 1px solid rgba(9,9,11,.18); border-radius: 999px; color: rgba(9,9,11,.66); font-size: .7rem; }
.sources { margin-top: 3rem; padding: 1.5rem; border-radius: var(--radius-md); background: rgba(9,9,11,.05); }
.sources h2 { margin: 0 0 .8rem; font-size: 1.2rem; }
.sources ul { margin: 0; padding-left: 1.2rem; }
.sources li { margin: .55rem 0; }
.sources a { color: #8d1330; }
.author-box { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; align-items: center; margin-top: 2rem; padding: 1.4rem; border: 1px solid rgba(9,9,11,.14); border-radius: var(--radius-md); }
.author-avatar { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--ink); color: var(--yellow); font-family: "Barlow Condensed", Impact, sans-serif; font-size: 1.5rem; font-weight: 800; }
.author-box h2 { margin: 0 0 .3rem; font-size: 1rem; }
.author-box p { margin: 0; color: rgba(9,9,11,.62); font-size: .86rem; }

.category-hero { min-height: 440px; display: grid; align-items: center; }
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.topic-cloud { display: flex; flex-wrap: wrap; gap: .8rem; }
.topic-cloud a { padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.72); }
.topic-cloud a:hover { border-color: var(--yellow); color: var(--yellow); }

.contact-grid { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(2rem,6vw,7rem); align-items: start; }
.contact-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--yellow); color: var(--ink); }
.contact-email { display: block; margin: 1.1rem 0; font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(2.1rem,5vw,4.4rem); font-weight: 800; line-height: .95; word-break: break-word; }
.contact-email:hover { color: var(--red-deep); }
.note-list { display: grid; gap: 1rem; }
.note { padding: 1.2rem; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.04); }
.note h3 { margin: 0 0 .4rem; font-size: .95rem; }
.note p { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; }

.legal-content { color: rgba(9,9,11,.78); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.04rem; line-height: 1.8; }
.legal-content h2 { margin: 3rem 0 .8rem; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 3rem; line-height: .95; text-transform: uppercase; color: var(--ink); }
.legal-content a { color: #95132d; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 5rem 0 2rem; background: #070709; }
.footer-lead { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-lead h2 { max-width: 760px; font-size: clamp(3.3rem,7vw,7rem); }
.footer-lead p { max-width: 520px; color: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4,1fr); gap: 2rem; padding: 3rem 0; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.46); font-size: .84rem; }
.footer-column h3 { margin: 0 0 1rem; color: var(--yellow); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { display: block; padding: .35rem 0; color: rgba(255,255,255,.56); font-size: .82rem; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .72rem; }
.footer-bottom a:hover { color: var(--yellow); }

.not-found { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 5rem 0; background: radial-gradient(circle,rgba(255,69,58,.18),transparent 35%); }
.not-found .code { font-family: "Barlow Condensed", Impact, sans-serif; font-size: clamp(9rem,30vw,24rem); font-weight: 900; line-height: .55; color: var(--red); opacity: .65; }
.not-found h1 { margin: 1rem 0; font-size: clamp(3rem,8vw,7rem); }

[data-reveal], .js [data-reveal], .js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero-grid, .page-hero-grid, .article-hero-grid { grid-template-columns: 1fr .7fr; }
  .hero-visual { min-height: 520px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --header: 70px; }
  .container, .narrow { width: min(calc(100% - 1.5rem), var(--max)); }
  .hero-grid, .page-hero-grid, .article-hero-grid, .definition-grid, .section-head, .cta-grid, .footer-lead, .contact-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; padding-top: 4.5rem; }
  .hero-visual { min-height: auto; width: min(100%,650px); margin-inline: auto; padding: 2rem; }
  .float-tag.one { right: 1rem; }
  .float-tag.two { left: 1rem; }
  .topic-card, .topic-card:nth-child(n) { grid-column: span 6; min-height: 250px; }
  .layer-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid, .category-grid { grid-template-columns: repeat(2,1fr); }
  .pillar-layout, .article-layout { grid-template-columns: 1fr; }
  .side-index, .article-toc { position: static; max-height: none; }
  .article-toc { padding: 1.2rem; border: 1px solid rgba(9,9,11,.12); border-radius: var(--radius-md); background: rgba(9,9,11,.04); }
  .blog-index-grid .blog-card:first-child { display: flex; grid-column: auto; }
  .blog-index-grid .blog-card:first-child .blog-card-image { min-height: 0; aspect-ratio: 1.25; }
  .blog-index-grid .blog-card:first-child h2, .blog-index-grid .blog-card:first-child h3 { font-family: inherit; font-size: 1.35rem; line-height: 1.2; text-transform: none; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 1.1rem), var(--max)); }
  .brand { font-size: 1.65rem; }
  .brand-mark { width: 30px; height: 30px; }
  .home-hero { padding-top: 3.5rem; }
  .hero-title { font-size: clamp(4.15rem,22vw,6rem); }
  .page-title, .article-title { font-size: clamp(2.65rem,12.6vw,5.2rem); overflow-wrap: normal; word-break: normal; }
  .hero-actions, .page-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { padding: .9rem; }
  .hero-art { border-radius: 1.6rem; }
  .float-tag { display: none; }
  .topic-grid { display: grid; grid-template-columns: 1fr; }
  .topic-card, .topic-card:nth-child(n) { grid-column: auto; min-height: 230px; }
  .layer-grid, .check-grid, .blog-grid, .blog-index-grid, .category-grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .section-head { padding-bottom: 1.4rem; }
  .page-hero-art { border-radius: 1.4rem; }
  .article-meta { display: grid; gap: .3rem; }
  .author-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .three-canvas { display: none; }
  .marquee-track { animation: none; transform: none; }
}
