:root {
  --bg: #0d0e16;
  --panel: rgba(17, 20, 33, 0.92);
  --panel-strong: #111520;
  --ink: #edf1f7;
  --muted: #a9b1c3;
  --line: rgba(255, 255, 255, 0.09);
  --ember: #ff5b2e;
  --signal: #ffd84a;
  --cyan: #6ae3ff;
  --berry: #ff7cc7;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius: 16px;
  --radius-sm: 10px;
  --cut-sm: 9px;
  --cut-md: 12px;
  --cut-lg: 18px;
  --cut-xl: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 91, 46, 0.22), transparent 25%),
    radial-gradient(circle at 82% 12%, rgba(106, 227, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 124, 199, 0.12), transparent 30%),
    linear-gradient(145deg, #090b11 0%, #111622 55%, #0a0c14 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

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

main,
.site-header,
.sale-bar,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

main {
  padding-bottom: 5rem;
}

.sale-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  background: linear-gradient(90deg, rgba(255, 216, 74, 0.96), rgba(255, 91, 46, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  color: #0f1016;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sale-bar a {
  color: #0f1016;
  text-decoration: underline;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0 1rem;
}

.brandmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.brandmark-badge,
.eyebrow,
.section-kicker,
.footer-kicker {
  color: var(--signal);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.brandmark-word {
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: 0.08em;
  color: #ffffff;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 0.5rem;
  padding: 0.8rem 0 0;
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: var(--ink);
  font-weight: 600;
}

.nav-link.is-active {
  background: rgba(255, 216, 74, 0.14);
  border-color: rgba(255, 216, 74, 0.48);
  color: #ffffff;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-self: end;
  justify-content: center;
  width: 54px;
  min-width: 54px;
  min-height: 50px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-label {
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-weight: 700;
}

.hero,
.interior-hero {
  position: relative;
  margin-top: 1rem;
  padding: clamp(1.4rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  clip-path: polygon(var(--cut-xl) 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%, 0 44px);
  background:
    linear-gradient(135deg, rgba(255, 91, 46, 0.14), transparent 45%),
    linear-gradient(225deg, rgba(106, 227, 255, 0.12), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after,
.interior-hero::after {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 320px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 216, 74, 0.22), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.hero {
  display: grid;
  gap: 1.5rem;
}

.hero-premium {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 91, 46, 0.16), transparent 36%),
    linear-gradient(215deg, rgba(106, 227, 255, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: auto auto 8% 49%;
  width: min(34vw, 420px);
  height: min(16vw, 210px);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  background: linear-gradient(90deg, rgba(255, 216, 74, 0.2), rgba(255, 91, 46, 0.02));
  filter: blur(16px);
  opacity: 0.9;
  z-index: -1;
}

.hero-copy-premium {
  position: relative;
  z-index: 1;
}

.hero-title-wrap {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-intro-row {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.hero-mini {
  margin: 0;
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meter {
  display: inline-grid;
  gap: 0.18rem;
  width: fit-content;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  border-left: 3px solid var(--signal);
  background: linear-gradient(90deg, rgba(255, 216, 74, 0.1), rgba(255, 255, 255, 0));
}

.hero-meter span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meter strong {
  color: #ffffff;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-word {
  display: grid;
  gap: 0.1rem;
  margin: 0.45rem 0 0.8rem;
  line-height: 0.85;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 13vw, 8.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-word span:last-child {
  margin-left: 0.65rem;
  color: var(--signal);
  text-shadow: 0.12em 0.12em 0 rgba(255, 91, 46, 0.34);
}

.hero-deck,
.lede {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.inline-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md));
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--ember), var(--signal));
  color: #11131b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

.button-large {
  min-height: 64px;
  font-size: 1rem;
}

.hero-runline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-runline span {
  position: relative;
}

.hero-runline span:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -0.9rem;
  color: var(--ember);
}

.eyebrow-chip {
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-spec-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.spec-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.spec-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 216, 74, 0.09), rgba(255, 255, 255, 0.015));
}

.spec-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(106, 227, 255, 0.08), rgba(255, 255, 255, 0.015));
}

.spec-card h3,
.impact-card h3,
.lane-card h3,
.angle-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.spec-card p,
.impact-card p,
.lane-card p {
  margin: 0;
}

.spec-value {
  font-size: 1.45rem;
}

.spec-copy {
  color: var(--muted);
}

.hero-side,
.value-grid,
.story-grid,
.related-grid,
.persona-grid,
.prose-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.signal-card,
.value-card,
.story-card,
.persona-card,
.prose-card,
.related-card,
.sidebar-card,
.contact-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.signal-card {
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.signal-label {
  margin: 0 0 0.25rem;
  font-size: 0.74rem;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.signal-value {
  margin: 0.1rem 0 0.6rem;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.sale-signal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.sale-matrix {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.sale-metric {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem 0.75rem 1rem;
  border-left: 3px solid rgba(255, 216, 74, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.sale-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sale-metric strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.hero-side-grid {
  display: grid;
  gap: 1rem;
}

.angle-card {
  min-height: 210px;
}

.angle-card p,
.quote-card p {
  margin: 0;
}

.quote-card {
  background:
    linear-gradient(145deg, rgba(255, 216, 74, 0.12), rgba(255, 91, 46, 0.1)),
    rgba(255, 255, 255, 0.04);
}

.quote-line {
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.mini-list,
.article-list,
.domain-list {
  margin: 0;
  padding-left: 1.2rem;
}

.mini-list li,
.article-list li,
.domain-list li {
  margin: 0.55rem 0;
  color: var(--muted);
}

.ticker-band {
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.9rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-band-premium {
  background: linear-gradient(90deg, rgba(255, 91, 46, 0.08), rgba(106, 227, 255, 0.05));
  border-radius: 12px;
  clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  padding-inline: 1rem;
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  min-width: 100%;
  animation: ticker 18s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track span {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.ticker-track span::after {
  content: "*";
  position: absolute;
  right: -1.35rem;
  color: var(--ember);
}

.section {
  margin-top: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 34px);
  background: rgba(12, 15, 24, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-grid-intro {
  display: grid;
  gap: 1.25rem;
}

.impact-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(12, 15, 24, 0.84);
}

.impact-grid,
.lane-grid,
.contact-stack,
.contact-metric-grid {
  display: grid;
  gap: 1rem;
}

.impact-card,
.lane-card,
.metric-tile {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  background: rgba(255, 255, 255, 0.04);
}

.impact-num {
  margin: 0 0 0.65rem;
  color: var(--signal);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.editorial-grid {
  align-items: start;
}

.manifesto-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 12px;
  clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 32px);
  background:
    linear-gradient(145deg, rgba(255, 91, 46, 0.08), rgba(106, 227, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-copy {
  margin: 0;
  font-size: 1.05rem;
}

.lane-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.lane-fit,
.metric-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--signal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section h2,
.interior-hero h1,
.article-shell h1,
.site-footer h2 {
  margin: 0.2rem 0 0.6rem;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.section h3,
.story-card h3,
.persona-card h3,
.sidebar-card h3,
.contact-card h2,
.related-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Archivo Black", "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.section p,
.story-card p,
.persona-card p,
.related-card p,
.prose-card p,
.contact-card p,
.article-content p,
.site-footer p {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.fit-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.fit-table th,
.fit-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.fit-table th {
  color: var(--signal);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.split-callout,
.contact-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.callout-panel {
  padding: 1.35rem;
  border-radius: 12px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 216, 74, 0.08), rgba(255, 91, 46, 0.08));
}

.callout-dark,
.contact-card-dark {
  background: linear-gradient(145deg, rgba(255, 91, 46, 0.14), rgba(8, 10, 15, 0.82));
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(255, 91, 46, 0.12), transparent 38%),
    linear-gradient(225deg, rgba(106, 227, 255, 0.12), transparent 50%),
    var(--panel);
}

.contact-spotlight {
  background:
    linear-gradient(145deg, rgba(255, 91, 46, 0.18), rgba(10, 12, 18, 0.84)),
    rgba(255, 255, 255, 0.03);
}

.metric-tile strong,
.metric-tile strong a {
  color: #ffffff;
}

.contact-process {
  background: rgba(255, 255, 255, 0.03);
}

.process-list {
  margin: 0;
  padding-left: 1.2rem;
}

.process-list li {
  margin: 0.75rem 0;
  color: var(--muted);
}

.contact-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-form-card {
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.story-card,
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.story-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--signal);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.fit-badge {
  color: var(--signal) !important;
  font-weight: 700;
}

.related-section .domain-list {
  display: grid;
  gap: 0.95rem;
  padding-left: 1rem;
}

.domain-list li {
  display: grid;
  gap: 0.25rem;
}

.domain-list span {
  display: block;
  font-size: 0.96rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.article-shell {
  margin-top: 1.1rem;
  padding: 0.5rem 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.article-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.article-content {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-radius: 12px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.article-content h2 {
  margin: 1.6rem 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.text-link {
  color: var(--signal);
  font-weight: 700;
}

.prose-page h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 1.4rem 0 0.45rem;
}

.offer-form {
  display: grid;
  gap: 0.9rem;
}

.offer-form label {
  font-weight: 700;
  color: #ffffff;
}

.offer-form input,
.offer-form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(6, 7, 12, 0.56);
  color: var(--ink);
  font: inherit;
}

.offer-form input:focus,
.offer-form textarea:focus {
  outline: 2px solid rgba(255, 216, 74, 0.5);
  outline-offset: 2px;
}

.form-success,
.form-error,
.form-note {
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-success {
  background: rgba(106, 227, 255, 0.12);
  border: 1px solid rgba(106, 227, 255, 0.35);
  color: #dff8ff;
}

.form-error {
  background: rgba(255, 91, 46, 0.12);
  border: 1px solid rgba(255, 91, 46, 0.35);
  color: #ffe4db;
}

.form-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer {
  margin-bottom: 2.5rem;
  padding: 1.8rem clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 34px);
  background: rgba(7, 8, 13, 0.92);
  box-shadow: var(--shadow);
}

.footer-button {
  display: inline-flex;
  margin-top: 0.3rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  clip-path: polygon(var(--cut-md) 0, 100% 0, 100% calc(100% - var(--cut-md)), calc(100% - var(--cut-md)) 100%, 0 100%, 0 var(--cut-md));
  background: rgba(255, 216, 74, 0.14);
  color: #ffffff;
  font-weight: 700;
}

.footer-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin-top: 0.9rem;
  font-size: 0.92rem;
}

.not-found-hero {
  text-align: center;
}

@media (max-width: 760px) {
  .site-header {
    gap: 0.6rem;
  }

  .nav-toggle {
    padding: 0.85rem;
  }

  .nav-toggle-label {
    display: none;
  }

  .sale-bar {
    width: min(calc(100% - 1rem), var(--max));
    gap: 0.45rem;
    padding: 0.8rem 0.85rem;
    font-size: 0.76rem;
    line-height: 1.35;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brandmark-word {
    font-size: 1.95rem;
  }

  .hero-word span:last-child {
    margin-left: 0.32rem;
  }
}

[hidden] {
  display: none !important;
}

@keyframes ticker {
  to {
    transform: translateX(-34%);
  }
}

@media (min-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.15rem;
    padding: 0;
  }

  .nav-link {
    min-height: auto;
    padding: 0.4rem 0 0.7rem;
    border: none;
    border-radius: 0;
    clip-path: none;
    background: transparent;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-link.is-active {
    background: transparent;
    border-color: transparent;
  }

  .nav-link.is-active::after {
    height: 3px;
    background: linear-gradient(90deg, var(--signal), var(--ember));
  }

  .hero,
  .section-grid-intro,
  .split-callout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .hero-intro-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-side,
  .value-grid,
  .story-grid,
  .related-grid,
  .persona-grid,
  .prose-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-spec-grid,
  .impact-grid,
  .lane-grid,
  .contact-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .article-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (min-width: 1040px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

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

  .hero-side-premium {
    align-content: start;
  }

  .sale-signal-card {
    transform: translateY(1rem);
  }

  .hero-spec-grid .spec-card:nth-child(2) {
    transform: translateY(0.75rem);
  }

  .hero-spec-grid .spec-card:nth-child(3) {
    transform: translateY(1.5rem);
  }

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

/* Editorial redesign reset */
:root {
  --bg: #f3ede2;
  --panel: #fff9ef;
  --panel-strong: #ffffff;
  --ink: #111111;
  --muted: #554f48;
  --line: rgba(17, 17, 17, 0.18);
  --ember: #f15a24;
  --signal: #f2c14f;
  --cyan: #111111;
  --berry: #111111;
  --shadow: 8px 8px 0 rgba(17, 17, 17, 0.08);
  --radius: 0px;
  --radius-sm: 0px;
}

body {
  background: linear-gradient(180deg, #f8f5ef 0%, #f1ece3 100%);
  color: var(--ink);
}

body::before {
  display: none;
}

a {
  color: #111111;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ember);
}

.sale-bar,
.hero,
.interior-hero,
.section,
.site-footer,
.signal-card,
.value-card,
.story-card,
.persona-card,
.prose-card,
.related-card,
.sidebar-card,
.contact-card,
.impact-card,
.lane-card,
.metric-tile,
.callout-panel,
.article-content,
.button,
.footer-button,
.nav-link,
.nav-toggle,
.eyebrow-chip,
.offer-form input,
.offer-form textarea,
.form-success,
.form-error,
.form-note {
  border-radius: 0;
  clip-path: none;
  backdrop-filter: none;
}

main,
.site-header,
.sale-bar,
.site-footer {
  width: min(calc(100% - 1.5rem), var(--max));
}

.sale-bar {
  position: sticky;
  top: 0;
  margin-top: 0;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: none;
  border-bottom: 2px solid #111111;
  background: #111111;
  box-shadow: none;
  color: #fff9ef;
  justify-content: flex-start;
}

.sale-bar a {
  color: var(--signal);
}

.site-header {
  padding: 1.5rem 0 1rem;
  border-bottom: 2px solid rgba(17, 17, 17, 0.14);
}

.brandmark-badge,
.eyebrow,
.section-kicker,
.footer-kicker,
.signal-label,
.lane-fit,
.metric-label,
.story-meta,
.article-meta {
  color: var(--ember);
}

.brandmark-word {
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: 0.06em;
}

.nav-link {
  min-height: auto;
  padding: 0.35rem 0 0.45rem;
  border: none;
  background: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  color: #111111;
}

.nav-link::after {
  background: rgba(17, 17, 17, 0.22);
}

.nav-link.is-active {
  background: none;
  border-color: transparent;
  color: #111111;
}

.nav-link.is-active::after {
  background: var(--ember);
  height: 3px;
}

.nav-toggle {
  border: 2px solid #111111;
  background: #fffdf7;
  color: #111111;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
}

.hero,
.interior-hero {
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3.1rem) 0;
  border: none;
  border-top: 2px solid rgba(17, 17, 17, 0.14);
  border-bottom: 2px solid rgba(17, 17, 17, 0.14);
  background: none;
  box-shadow: none;
}

.hero::after,
.interior-hero::after,
.hero-premium::before,
.signal-card::before {
  display: none;
}

.hero {
  gap: 1.25rem;
}

.hero-premium {
  isolation: isolate;
  background: linear-gradient(135deg, #fffaf1 0%, #f1e5d7 100%);
}

.hero-title-wrap {
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(17, 17, 17, 0.14);
}

.hero-mini {
  max-width: 31rem;
  color: #4f4943;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.hero-meter {
  gap: 0.25rem;
  padding: 0.55rem 0 0;
  border-left: none;
  border-top: 3px solid #111111;
  background: none;
}

.hero-meter span {
  color: #6e685f;
}

.hero-meter strong {
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.hero-word {
  margin: 0;
  line-height: 0.9;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: 0.04em;
  color: #111111;
}

.hero-word span:last-child {
  margin-left: 0;
  color: inherit;
  text-shadow: none;
}

.hero-deck,
.lede {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button {
  min-height: 54px;
  padding: 0.95rem 1.25rem;
  border: 2px solid #111111;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.16);
}

.button-primary {
  background: #111111;
  border-color: #111111;
  color: #fff9ef;
}

.button-secondary {
  background: transparent;
  border-color: #111111;
  color: #111111;
}

.button-large {
  min-height: 66px;
  font-size: 1.04rem;
}

.hero-runline {
  gap: 0.5rem 1rem;
  padding-top: 0.95rem;
  border-top: 2px solid rgba(17, 17, 17, 0.14);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  color: #111111;
}

.hero-runline span:not(:last-child)::after {
  color: var(--ember);
  right: -0.75rem;
}

.hero-spec-grid,
.impact-grid,
.lane-grid,
.story-grid,
.value-grid,
.hero-side-grid,
.related-grid,
.persona-grid,
.footer-grid,
.contact-stack,
.contact-metric-grid {
  gap: 1rem;
}

.spec-card,
.signal-card,
.value-card,
.story-card,
.persona-card,
.prose-card,
.related-card,
.sidebar-card,
.contact-card,
.impact-card,
.lane-card,
.metric-tile,
.callout-panel,
.article-content {
  padding: 1.25rem;
  border: 1.5px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: none;
}

.spec-card:nth-child(2),
.spec-card:nth-child(3),
.sale-signal-card,
.hero-spec-grid .spec-card:nth-child(2),
.hero-spec-grid .spec-card:nth-child(3) {
  transform: none;
}

.spec-card h3,
.impact-card h3,
.lane-card h3,
.angle-card h3,
.value-card h3,
.story-card h3,
.persona-card h3,
.related-card h2,
.contact-card h2,
.signal-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: 0.04em;
}

.signal-card p,
.spec-copy,
.section p,
.story-card p,
.persona-card p,
.related-card p,
.prose-card p,
.contact-card p,
.article-content p,
.site-footer p {
  color: var(--muted);
}

.sale-signal-card {
  background: #111111;
  box-shadow: none;
}

.sale-signal-card p,
.sale-signal-card strong {
  color: #fffaf1;
}

.sale-signal-card .signal-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.9;
  color: #fffaf1;
}

.sale-signal-card .signal-label {
  color: var(--signal);
}

.sale-signal-card .button-secondary {
  color: #fffaf1;
  border-color: rgba(255, 249, 239, 0.55);
  box-shadow: none;
}

.sale-matrix {
  gap: 0.85rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 249, 239, 0.16);
}

.sale-metric {
  gap: 0.2rem;
  padding: 0.6rem 0 0;
  border-top: 2px solid var(--signal);
  border-left: none;
  background: none;
}

.sale-metric span {
  color: rgba(255, 249, 239, 0.72);
}

.sale-metric strong {
  color: #fffaf1;
}

.quote-card {
  background: #f1c24b;
  border-color: #d7aa35;
}

.quote-card .signal-label,
.quote-card .quote-line {
  color: #111111 !important;
}

.ticker-band {
  display: none;
}

.section {
  margin-top: 2rem;
  padding: 2rem 0 0;
  border: none;
  border-top: 2px solid rgba(17, 17, 17, 0.14);
  background: none;
  box-shadow: none;
}

.manifesto-panel {
  padding: 1.65rem;
  background: #111111;
  border: none;
  box-shadow: none;
}

.manifesto-panel h2 {
  color: #fffaf1 !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin: 0;
}

.manifesto-panel .section-kicker {
  color: var(--signal);
}

.manifesto-copy {
  color: rgba(255, 249, 239, 0.82) !important;
  font-size: 1.12rem;
  max-width: 36rem;
}

.manifesto-panel .spec-card {
  background: #fffaf1 !important;
  box-shadow: none;
}

.manifesto-panel .spec-card p,
.manifesto-panel .spec-card h3 {
  color: #111111 !important;
}

.value-card {
  background: rgba(255, 244, 222, 0.72);
}

.impact-card,
.lane-card,
.metric-tile {
  background: #fffdf8;
}

.impact-num {
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}

.section h2,
.interior-hero h1,
.article-shell h1,
.site-footer h2 {
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.section-head {
  margin-bottom: 1.4rem;
  padding-bottom: 0;
  border-bottom: none;
}

.fit-table {
  min-width: 720px;
  background: rgba(255, 253, 248, 0.82);
  border-top: 1.5px solid rgba(17, 17, 17, 0.18);
}

.fit-table th,
.fit-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
}

.fit-table th {
  color: var(--ember);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.fit-badge {
  color: var(--ember) !important;
}

.callout-panel {
  background: rgba(255, 244, 222, 0.7);
}

.callout-dark,
.contact-card-dark {
  background: #111111;
}

.callout-dark h2,
.contact-card-dark h2,
.callout-dark p,
.contact-card-dark p,
.callout-dark a,
.contact-card-dark a {
  color: #fffaf1;
}

.story-card,
.related-card {
  gap: 0.6rem;
}

.story-meta,
.article-meta {
  color: var(--ember);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.story-card h3 a,
.related-card h2 a {
  text-decoration: none;
}

.text-link {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-underline-offset: 0.16em;
}

.article-content {
  background: #fffdf8;
}

.offer-form label {
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.offer-form input,
.offer-form textarea {
  border: 2px solid #111111;
  background: #ffffff;
  color: #111111;
}

.offer-form input:focus,
.offer-form textarea:focus {
  outline: 2px solid var(--ember);
}

.form-note {
  background: #fff3db;
  border: 2px solid #111111;
  color: #554f48;
}

.site-footer {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
  border: none;
  background: #111111;
  box-shadow: none;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: #fffaf1;
}

.footer-button {
  border: 2px solid #fffaf1;
  background: transparent;
  color: #fffaf1;
  box-shadow: none;
}

.footer-meta {
  border-top: 1px solid rgba(255, 249, 239, 0.18);
}

.footer-copy a {
  color: var(--signal);
}

.related-section .domain-list {
  padding-left: 1.1rem;
}

.domain-list a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .sale-bar {
    padding: 0.8rem 0.75rem;
    font-size: 0.72rem;
    justify-content: center;
    text-align: center;
  }

  .site-header {
    padding: 1rem 0 0.75rem;
  }

  .hero-word {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero-intro-row {
    grid-template-columns: 1fr;
  }

  .hero-runline {
    font-size: 1rem;
  }
}

@media (min-width: 760px) {
  .hero,
  .section-grid-intro,
  .split-callout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .hero-side {
    align-content: start;
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1040px) {
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}
