:root {
  --bg: #05070a;
  --ink: #f7f8f3;
  --muted: #b5c0c2;
  --soft: #dce5e7;
  --panel: rgba(255, 255, 255, 0.064);
  --panelStrong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.15);
  --lineStrong: rgba(255, 255, 255, 0.27);
  --cyan: #00d8ff;
  --gold: #ffc32d;
  --red: #ff243d;
  --green: #55d68b;
  --max: 1440px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 16%, rgba(255, 36, 61, 0.2), transparent 31%),
    radial-gradient(circle at 96% 18%, rgba(255, 195, 45, 0.16), transparent 31%),
    linear-gradient(120deg, rgba(0, 216, 255, 0.09), transparent 44%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

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

.heroFull {
  width: min(1740px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 9, 12, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.brandLogo {
  width: 46px;
  height: 46px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(24, 217, 255, 0.34));
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 730;
}

.navLinks a {
  transition: color 0.2s ease;
}

.navLinks a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1fr);
  gap: clamp(34px, 3.4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 34px 0 26px;
}

.heroCopy,
.powerCard {
  min-width: 0;
}

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  font-size: clamp(4.8rem, 6.1vw, 8.2rem);
  line-height: 0.76;
  text-shadow: 0 20px 80px rgba(0, 0, 0, 0.52);
}

h1 span {
  display: block;
}

.nameSlash {
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.44em;
  line-height: 0.95;
  transform: skew(-9deg) rotate(-2deg);
  transform-origin: left center;
  text-shadow: 0 0 22px rgba(255, 36, 61, 0.45);
}

.nameBlock {
  color: #f5f7f2;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.35);
}

.nameGold {
  color: var(--gold);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.42);
  text-shadow: 0 0 26px rgba(255, 195, 45, 0.35);
}

.heroLede {
  max-width: 770px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(1.28rem, 1.6vw, 1.58rem);
  line-height: 1.48;
  font-weight: 720;
}

.heroLede strong {
  color: var(--gold);
  font-weight: 900;
}

.heroJoke {
  max-width: 760px;
  margin: 18px 0 0;
  color: #ffe08a;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.45;
  font-weight: 860;
}

.heroTriad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-top: 28px;
}

.heroTriad span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid var(--gold);
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(255, 195, 45, 0.14), rgba(0, 216, 255, 0.05));
  color: #dfe8e9;
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 780;
  text-transform: uppercase;
}

.heroTriad strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.titleGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-top: 28px;
}

.titleGrid span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 10px;
  background: rgba(3, 9, 14, 0.68);
  color: #dbe6e9;
  font-size: 0.86rem;
  font-weight: 860;
  text-align: center;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 880;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 217, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  border-color: rgba(240, 189, 82, 0.82);
  background: var(--gold);
  color: #11100c;
  box-shadow: 0 18px 42px rgba(240, 189, 82, 0.16);
}

.powerCard {
  position: relative;
  display: grid;
  gap: 14px;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 940px);
}

.heroPoster {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 45, 0.5);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.55), 0 0 52px rgba(255, 195, 45, 0.18);
  background: #071017;
}

.heroPoster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.18), transparent 36%, rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.heroPoster img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.posterBadge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(360px, calc(100% - 56px));
  border: 1px solid rgba(255, 195, 45, 0.52);
  border-left: 5px solid var(--gold);
  background: rgba(4, 8, 12, 0.74);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.38);
}

.posterBadge strong {
  display: block;
  color: #fff5ca;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.posterBadge span {
  display: block;
  margin-top: 8px;
  color: #c9d9dc;
  line-height: 1.35;
  font-weight: 720;
}

.aura {
  position: absolute;
  inset: -90px -86px -74px -82px;
  z-index: -1;
  pointer-events: none;
}

.aura span {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  background:
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(240, 189, 82, 0.42) 52%, transparent 64%),
    conic-gradient(from 90deg, transparent, rgba(24, 217, 255, 0.78), rgba(240, 189, 82, 0.95), rgba(255, 77, 90, 0.68), rgba(24, 217, 255, 0.78), transparent);
  opacity: 0.58;
  clip-path: polygon(50% 0, 60% 14%, 72% 4%, 75% 22%, 92% 18%, 82% 36%, 100% 48%, 82% 60%, 92% 82%, 73% 77%, 64% 96%, 50% 82%, 35% 98%, 28% 77%, 8% 84%, 18% 61%, 0 50%, 18% 38%, 8% 18%, 28% 22%, 36% 4%);
  animation: auraPulse 4.5s linear infinite;
}

.aura span:nth-child(2) {
  inset: 34px;
  opacity: 0.4;
  animation-duration: 5.4s;
  animation-direction: reverse;
}

.aura span:nth-child(3) {
  inset: 72px;
  opacity: 0.35;
  animation-duration: 3.8s;
}

.aura i {
  position: absolute;
  width: 12px;
  height: 210px;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(24, 217, 255, 0.92), rgba(240, 189, 82, 0.95), transparent);
  box-shadow: 0 0 28px rgba(24, 217, 255, 0.6), 0 0 44px rgba(240, 189, 82, 0.35);
  transform-origin: center;
  animation: lightningDrift 2.8s ease-in-out infinite;
}

.aura i:nth-of-type(1) {
  top: 6%;
  right: 16%;
  transform: rotate(28deg);
}

.aura i:nth-of-type(2) {
  bottom: 4%;
  left: 12%;
  transform: rotate(-32deg);
  animation-delay: -0.8s;
}

.aura i:nth-of-type(3) {
  top: 34%;
  left: -1%;
  height: 170px;
  transform: rotate(18deg);
  animation-delay: -1.4s;
}

.aura b {
  position: absolute;
  inset: 10%;
  border: 2px solid rgba(240, 189, 82, 0.35);
  transform: skewY(-8deg) rotate(-10deg);
  box-shadow: 0 0 50px rgba(240, 189, 82, 0.22);
  animation: ringFloat 3.7s ease-in-out infinite alternate;
}

.aura b:nth-of-type(2) {
  inset: 20% 4%;
  border-color: rgba(24, 217, 255, 0.36);
  transform: skewY(8deg) rotate(12deg);
  animation-delay: -1s;
}

@keyframes auraPulse {
  0% {
    transform: rotate(0deg) scale(0.98);
    filter: drop-shadow(0 0 20px rgba(24, 217, 255, 0.28));
  }
  50% {
    transform: rotate(180deg) scale(1.02);
    filter: drop-shadow(0 0 34px rgba(240, 189, 82, 0.34));
  }
  100% {
    transform: rotate(360deg) scale(0.98);
    filter: drop-shadow(0 0 20px rgba(24, 217, 255, 0.28));
  }
}

@keyframes lightningDrift {
  0%,
  100% {
    opacity: 0.3;
    scale: 0.92;
  }
  45% {
    opacity: 1;
    scale: 1.08;
  }
}

@keyframes ringFloat {
  from {
    opacity: 0.25;
    scale: 0.96;
  }
  to {
    opacity: 0.72;
    scale: 1.04;
  }
}

.portrait {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid var(--lineStrong);
  background: #0c1014;
  box-shadow: var(--shadow);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(240, 189, 82, 0.48);
  pointer-events: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.04);
}

.portraitShine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(5, 7, 10, 0.78), transparent 46%),
    radial-gradient(circle at 50% 22%, rgba(240, 189, 82, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(24, 217, 255, 0.14), transparent 48%);
  pointer-events: none;
}

.powerLabel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: start;
  border-left: 4px solid var(--cyan);
  padding: 14px 0 14px 16px;
  background: rgba(5, 7, 10, 0.75);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.powerIcon,
.calloutIcon,
.panelIcon,
.quoteIcon,
.proofIcon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(240, 189, 82, 0.42);
  background: rgba(240, 189, 82, 0.08);
  color: var(--gold);
  font-size: 0;
  font-weight: 950;
  letter-spacing: 0;
}

.powerIcon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-color: rgba(24, 217, 255, 0.48);
  background: rgba(24, 217, 255, 0.1);
  color: var(--cyan);
}

.powerIcon::before,
.calloutIcon::before,
.panelIcon::before,
.quoteIcon::before,
.proofIcon::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.powerIcon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l0-7Z'/%3E%3C/svg%3E");
}

.calloutIcon,
.proofIcon.risk {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 2 20h20L12 3Z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}

.proofIcon.gov {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7v5c0 5-3 8-8 10-5-2-8-5-8-10V7l8-4Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}

.proofIcon.ir {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9a6 6 0 0 1 12 0c0 7 3 7 3 9H3c0-2 3-2 3-9Z'/%3E%3Cpath d='M10 21h4'/%3E%3Cpath d='M4 4 2 2'/%3E%3Cpath d='m20 4 2-2'/%3E%3C/svg%3E");
}

.proofIcon.edu {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15Z'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E");
}

.panelIcon.cert {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='5'/%3E%3Cpath d='M8.5 12.5 7 22l5-3 5 3-1.5-9.5'/%3E%3C/svg%3E");
}

.panelIcon.stack {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 3 8l9 5 9-5-9-5Z'/%3E%3Cpath d='m3 13 9 5 9-5'/%3E%3Cpath d='m3 18 9 5 9-5'/%3E%3C/svg%3E");
}

.quoteIcon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 2.6 6.4L21 12l-6.4 2.6L12 21l-2.6-6.4L3 12l6.4-2.6L12 3Z'/%3E%3C/svg%3E");
}

.powerLabel strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.2;
}

.powerLabel span:not(.powerIcon) {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 720;
}

.powerMeter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(24, 217, 255, 0.32);
  background: rgba(24, 217, 255, 0.07);
  padding: 16px 18px;
}

.powerMeter span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 850;
  text-transform: uppercase;
}

.powerMeter strong {
  color: var(--gold);
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 960;
}

section {
  position: relative;
  padding: 82px 0;
}

.metricRail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 16px;
}

.metric {
  min-height: 142px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 960;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.sectionHead p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 580;
}

.bioGrid,
.arsenalGrid,
.final {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.bioCopy,
.callout,
.panel,
.recommendGrid article,
.finalPanel,
.proofCard {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 30px;
}

.bioCopy p {
  margin: 0 0 18px;
  color: #d1dbde;
  font-size: 1.03rem;
  line-height: 1.7;
}

.bioCopy p:last-child {
  margin-bottom: 0;
}

.callout {
  border-color: rgba(24, 217, 255, 0.35);
  background:
    linear-gradient(135deg, rgba(24, 217, 255, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.052);
}

.callout strong {
  display: block;
  margin: 18px 0;
  color: var(--cyan);
  font-size: 0.88rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.08;
  font-weight: 940;
  text-transform: uppercase;
}

.proofGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proofCard {
  min-height: 260px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.proofCard:nth-child(2) {
  border-color: rgba(24, 217, 255, 0.36);
  background: rgba(24, 217, 255, 0.065);
}

.proofCard:nth-child(3) {
  border-color: rgba(240, 189, 82, 0.36);
  background: rgba(240, 189, 82, 0.07);
}

.proofCard:nth-child(4) {
  border-color: rgba(85, 214, 139, 0.33);
  background: rgba(85, 214, 139, 0.055);
}

.proofCard .proofIcon {
  margin-bottom: 24px;
}

.proofCard h3,
.panel h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.12;
}

.proofCard p {
  margin: 0;
  color: #c5d0d3;
  line-height: 1.58;
  font-size: 1.03rem;
}

.timelineBand {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.timeline {
  display: grid;
  border-top: 1px solid var(--line);
}

.timelineItem {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 285px;
  gap: 24px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.date {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timelineItem h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.timelineItem strong {
  color: var(--cyan);
  font-size: 0.95rem;
}

.timelineItem p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.timelineItem .joke {
  color: #d6e0e3;
  font-weight: 790;
}

.arsenalGrid {
  grid-template-columns: 0.85fr 1.15fr;
}

.panel h3 {
  margin-top: 18px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d7e1e4;
  line-height: 1.4;
  font-weight: 720;
}

.list li::before {
  content: "[ok]";
  color: var(--gold);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 950;
}

.chipGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chipGrid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  padding: 10px 12px;
  color: #dbe5e7;
  font-size: 0.88rem;
  font-weight: 780;
}

.recommendGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.recommendGrid blockquote {
  margin: 18px 0;
  color: #d6e0e3;
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 580;
}

.recommendGrid cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.quoteBand {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(24, 217, 255, 0.1), transparent 35%),
    linear-gradient(270deg, rgba(255, 77, 90, 0.09), transparent 40%),
    #0a0f13;
}

.quoteBand blockquote {
  max-width: 1060px;
  margin: 18px 0 0;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 960;
  text-transform: uppercase;
}

.quoteBand span {
  color: var(--cyan);
}

.quoteBand p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.finalPanel {
  background: var(--panelStrong);
}

.finalPanel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.finalPanel p {
  margin: 0 0 18px;
  color: #cbd4d6;
  line-height: 1.6;
}

.specs {
  display: grid;
  gap: 12px;
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.specs span {
  color: var(--muted);
  font-weight: 720;
}

.specs strong {
  max-width: 340px;
  text-align: right;
}

footer {
  padding: 30px 0 46px;
  color: #8f9ca1;
  font-size: 0.92rem;
}

.footerRow {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.isVisible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1280px) {
  .hero,
  .bioGrid,
  .arsenalGrid,
  .final {
    grid-template-columns: 1fr;
  }

  .powerCard {
    justify-self: stretch;
    width: 100%;
  }

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

  .portrait,
  .portrait img {
    min-height: 540px;
  }

  .timelineItem {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .heroFull {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .navLinks {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 28px;
  }

  .heroCopy {
    display: contents;
  }

  h1 {
    order: 1;
    max-width: 100%;
    font-family: Impact, "Arial Black", Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(3rem, 15vw, 4.15rem);
    line-height: 0.78;
  }

  .outline {
    font-size: 0.82em;
  }

  .heroLede {
    order: 2;
    width: min(100%, 36ch);
    margin-top: 22px;
    font-size: 1.02rem;
    overflow-wrap: break-word;
  }

  .heroJoke {
    order: 3;
    width: min(100%, 36ch);
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .heroPoster {
    order: 4;
    margin-top: 8px;
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .heroPoster img {
    height: 100%;
    min-height: 0;
  }

  .posterBadge {
    left: 14px;
    right: auto;
    bottom: 14px;
    width: min(250px, calc(100vw - 56px));
    padding: 12px 14px;
  }

  .posterBadge strong {
    font-size: 1rem;
  }

  .posterBadge span {
    font-size: 0.78rem;
  }

  .heroTriad {
    order: 5;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .titleGrid {
    order: 6;
  }

  .actions {
    order: 7;
  }

  .heroTriad span {
    min-height: 68px;
  }

  .titleGrid,
  .metricRail,
  .proofGrid,
  .recommendGrid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .aura {
    inset: -34px;
  }

  .portrait,
  .portrait img {
    min-height: 460px;
  }

  .powerLabel {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  section {
    padding: 58px 0;
  }

  .sectionHead {
    align-items: start;
    flex-direction: column;
  }

  .bioCopy,
  .callout,
  .panel,
  .recommendGrid article,
  .finalPanel,
  .proofCard {
    padding: 22px;
  }

  .specs div,
  .footerRow {
    flex-direction: column;
  }

  .specs strong {
    text-align: left;
  }
}
