:root {
  color-scheme: light;
  --bg: #f3f4f0;
  --surface: #ffffff;
  --surface-2: #e8ebe5;
  --ink: #111713;
  --muted: #5f6962;
  --accent: #0759d6;
  --accent-ink: #ffffff;
  --line: rgba(17, 23, 19, 0.18);
  --line-strong: rgba(17, 23, 19, 0.48);
  --shadow: 0 30px 80px rgba(17, 23, 19, 0.12);
  --radius: 28px;
  --radius-small: 14px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

body[data-theme="install"] {
  --bg: #eef4fb;
  --surface: #fafdff;
  --surface-2: #dbe8f7;
  --ink: #07192d;
  --muted: #52677d;
  --accent: #0759d6;
  --accent-ink: #ffffff;
  --line: rgba(7, 25, 45, 0.18);
  --line-strong: rgba(7, 25, 45, 0.5);
  --radius: 8px;
  --radius-small: 4px;
  --font-display: "Arial Narrow", Impact, sans-serif;
}

body[data-theme="network-nick"] {
  color-scheme: dark;
  --bg: #07100e;
  --surface: #0d1916;
  --surface-2: #13241f;
  --ink: #ecfff4;
  --muted: #9cb4aa;
  --accent: #b7ff45;
  --accent-ink: #07100e;
  --line: rgba(183, 255, 69, 0.2);
  --line-strong: rgba(183, 255, 69, 0.68);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --radius-small: 8px;
  --font-display: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

body[data-theme="smart-city"] {
  color-scheme: dark;
  --bg: #101114;
  --surface: #191b20;
  --surface-2: #252832;
  --ink: #f7f4ec;
  --muted: #b6b4ad;
  --accent: #ffd231;
  --accent-ink: #101114;
  --line: rgba(255, 210, 49, 0.2);
  --line-strong: rgba(255, 210, 49, 0.64);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  --radius: 2px;
  --radius-small: 0;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

body[data-theme="my-block"] {
  --bg: #f2eadc;
  --surface: #fffaf0;
  --surface-2: #e5dac5;
  --ink: #26372d;
  --muted: #667169;
  --accent: #ce5b3e;
  --accent-ink: #ffffff;
  --line: rgba(38, 55, 45, 0.19);
  --line-strong: rgba(38, 55, 45, 0.5);
  --radius: 34px;
  --radius-small: 18px;
  --font-display: Georgia, "Times New Roman", serif;
}

body[data-theme="mydashblock"] {
  --bg: #f1effb;
  --surface: #fcfbff;
  --surface-2: #e4def9;
  --ink: #211b35;
  --muted: #6d657f;
  --accent: #6d4aff;
  --accent-ink: #ffffff;
  --line: rgba(33, 27, 53, 0.16);
  --line-strong: rgba(33, 27, 53, 0.42);
  --shadow: 0 32px 90px rgba(49, 31, 113, 0.15);
  --radius: 24px;
  --radius-small: 12px;
  --font-display: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-theme="newcloudflare"] {
  color-scheme: dark;
  --bg: #08111f;
  --surface: #0d192c;
  --surface-2: #14233b;
  --ink: #eff5ff;
  --muted: #9cacc4;
  --accent: #3f7cff;
  --accent-ink: #ffffff;
  --line: rgba(111, 159, 255, 0.2);
  --line-strong: rgba(111, 159, 255, 0.6);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-small: 6px;
  --font-display: "Helvetica Neue", Arial, sans-serif;
}

body[data-theme="satisfaction"] {
  --bg: #f4eee2;
  --surface: #fffaf1;
  --surface-2: #e9dfcf;
  --ink: #2e1820;
  --muted: #746168;
  --accent: #b32645;
  --accent-ink: #ffffff;
  --line: rgba(46, 24, 32, 0.2);
  --line-strong: rgba(46, 24, 32, 0.55);
  --radius: 0;
  --radius-small: 0;
  --font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="install"] {
  background-image:
    linear-gradient(rgba(7, 89, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 89, 214, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
}

body[data-theme="network-nick"] {
  background-image: radial-gradient(circle at 80% 0%, rgba(183, 255, 69, 0.09), transparent 30rem);
}

body[data-theme="smart-city"] {
  background-image: linear-gradient(130deg, rgba(255, 210, 49, 0.04), transparent 45%);
}

body[data-theme="my-block"] {
  background-image: radial-gradient(circle at 10% 5%, rgba(206, 91, 62, 0.1), transparent 26rem);
}

body[data-theme="mydashblock"] {
  background-image: radial-gradient(circle at 82% 4%, rgba(109, 74, 255, 0.12), transparent 30rem);
}

body[data-theme="newcloudflare"] {
  background-image:
    radial-gradient(circle at 84% 5%, rgba(63, 124, 255, 0.17), transparent 34rem),
    radial-gradient(circle at 4% 50%, rgba(74, 216, 183, 0.08), transparent 28rem);
}

body[data-theme="satisfaction"] {
  background-image: linear-gradient(90deg, transparent 49.85%, rgba(46, 24, 32, 0.035) 50%, transparent 50.15%);
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.official-handoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--line-strong);
  background: #dfe9ff;
  color: #101d35;
  font-size: 0.84rem;
}

.official-handoff p {
  margin: 0;
}

.official-handoff a {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid #101d35;
  font-weight: 800;
  text-decoration: none;
}

.site-header,
main,
footer {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
}

body[data-theme="network-nick"] .brand-mark,
body[data-theme="smart-city"] .brand-mark,
body[data-theme="newcloudflare"] .brand-mark {
  background: var(--accent);
  color: var(--accent-ink);
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 7px;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a,
.edition-tag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

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

.edition-tag {
  justify-self: end;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

main {
  padding-bottom: 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: 760px;
  padding: clamp(60px, 8vw, 118px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.micro-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.notes-heading h2,
.portfolio-heading h2,
.revenue-copy h2,
.video-copy h2,
.not-found h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  margin: 24px 0;
  font-size: clamp(4.2rem, 7.8vw, 8.4rem);
  line-height: 0.86;
}

body[data-theme="network-nick"] .hero h1 {
  font-size: clamp(3.6rem, 6.6vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

body[data-theme="smart-city"] .hero h1 {
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

body[data-theme="my-block"] .hero h1,
body[data-theme="satisfaction"] .hero h1 {
  letter-spacing: -0.065em;
}

.lede {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 250px;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-small);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.primary-action:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.text-action {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-action:hover {
  color: var(--ink);
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  max-width: 620px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-note > span {
  color: var(--accent);
  font-size: 0.7rem;
}

.hero-note h2 {
  margin: 8px 0 7px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-note p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-strong);
}

.signal-item {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  display: block;
  margin-bottom: 11px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.signal-item span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-section,
.brief-section,
.delivery-section,
.notes-section,
.portfolio-section,
.revenue-section,
.video-section {
  padding: clamp(80px, 11vw, 150px) 0;
}

.brief-section {
  border-bottom: 1px solid var(--line-strong);
}

.brief-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
}

.brief-heading h2 {
  max-width: 900px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.8vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.brief-intro > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brief-intro p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(52px, 7vw, 88px);
  overflow: hidden;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.brief-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.brief-card > p:first-child {
  margin: 0 0 62px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brief-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.brief-card > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.section-heading,
.notes-heading,
.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
}

.section-heading .eyebrow,
.notes-heading .eyebrow,
.portfolio-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2,
.notes-heading h2,
.portfolio-heading h2,
.revenue-copy h2,
.video-copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.1rem, 5.8vw, 6.8rem);
  line-height: 0.95;
}

.section-heading > p:last-child,
.notes-heading > p,
.portfolio-heading > p,
.revenue-copy > p:last-child,
.video-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 7vw, 92px);
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.principle {
  min-height: 320px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.principle-number {
  margin: 0 0 84px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.principle p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

body[data-theme="my-block"] .principle-grid,
body[data-theme="mydashblock"] .principle-grid {
  gap: 14px;
  background: transparent;
  border: 0;
}

body[data-theme="my-block"] .principle,
body[data-theme="mydashblock"] .principle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* My Dash Block: delivery roadmap */
.delivery-section {
  border-top: 1px solid var(--line-strong);
}

.delivery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
}

.delivery-heading h2,
.location-model h2,
.proof-panel h2 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.delivery-heading h2 {
  max-width: 900px;
  font-size: clamp(3.1rem, 5.8vw, 6.8rem);
}

.delivery-intro > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-intro p,
.location-model > header > p:last-child,
.proof-panel > div > p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.delivery-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(56px, 8vw, 100px);
}

.delivery-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.delivery-stage::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}

.delivery-stage > p:first-child {
  margin: 0 0 92px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.delivery-stage h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.delivery-stage > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.delivery-stage:last-child {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: color-mix(in srgb, var(--surface) 84%, var(--accent));
}

.location-model {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
  margin-top: clamp(90px, 12vw, 160px);
  padding-top: clamp(66px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.location-model h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 4.7vw, 5.4rem);
}

.location-model > header > p:last-child {
  max-width: 520px;
  margin-top: 28px;
}

.role-grid {
  display: grid;
  gap: 12px;
}

.network-role {
  display: grid;
  grid-template-columns: 90px minmax(120px, 0.45fr) minmax(120px, 0.55fr);
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line-strong);
}

.network-role:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.network-role > span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border-radius: var(--radius-small);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.network-role > p:nth-child(2) {
  margin: 4px 0 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-role h3 {
  display: none;
}

.network-role > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(44px, 8vw, 110px);
  margin-top: clamp(90px, 12vw, 160px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

.proof-panel .eyebrow {
  color: #bdaeff;
}

.proof-panel h2 {
  max-width: 650px;
  color: var(--bg);
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
}

.proof-panel > div > p:last-of-type {
  max-width: 720px;
  margin-top: 28px;
  color: color-mix(in srgb, var(--bg) 68%, transparent);
}

.proof-panel ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--bg) 32%, transparent);
  list-style: none;
  counter-reset: proof;
}

.proof-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  color: color-mix(in srgb, var(--bg) 74%, transparent);
  font-size: 0.8rem;
  line-height: 1.58;
  counter-increment: proof;
}

.proof-panel li::before {
  content: "0" counter(proof);
  color: #bdaeff;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 900;
}

.proof-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-sources a {
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--bg) 36%, transparent);
  border-radius: 999px;
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
}

.proof-sources a:hover {
  border-color: #bdaeff;
  color: #bdaeff;
}

.notes-section {
  border-top: 1px solid var(--line-strong);
}

.note-list {
  margin-top: clamp(54px, 8vw, 100px);
  counter-reset: note;
}

.field-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(42px, 6vw, 74px) 0;
  border-top: 1px solid var(--line);
  counter-increment: note;
}

.field-note:last-child {
  border-bottom: 1px solid var(--line);
}

.note-meta::before {
  content: "0" counter(note);
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.note-meta p {
  margin: 0 0 7px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-content h3 {
  max-width: 800px;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.note-summary {
  max-width: 790px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.note-body {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.takeaway-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.takeaway-list li {
  padding: 16px;
  border-top: 2px solid var(--accent);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.revenue-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 9vw, 120px);
  align-items: start;
  border-top: 1px solid var(--line-strong);
}

.revenue-copy .eyebrow,
.video-copy .eyebrow {
  margin-bottom: 24px;
}

.revenue-copy > p:last-child,
.video-copy > p:last-child {
  max-width: 720px;
  margin-top: 28px;
}

.revenue-formats {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
  counter-reset: format;
}

.revenue-formats li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  counter-increment: format;
}

.revenue-formats li::before {
  content: "0" counter(format);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
}

.trust-boundary {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 84px;
  padding: 26px 0;
  border-block: 1px solid var(--line-strong);
}

.trust-boundary p {
  margin: 0;
}

.trust-boundary p:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-boundary strong {
  color: var(--ink);
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr) auto;
  gap: 36px;
  align-items: center;
  min-height: 160px;
  border-top: 1px solid var(--line);
}

footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

footer > a:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-block: 60px;
}

.not-found section {
  width: min(100%, 900px);
  padding: clamp(36px, 8vw, 96px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.not-found .brand {
  margin-bottom: 80px;
}

.not-found h1 {
  margin: 20px 0;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
}

.not-found .primary-action {
  margin-top: 34px;
}

/* Networking Installs: blueprint path */
.install-diagram {
  background:
    linear-gradient(rgba(7, 89, 214, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 89, 214, 0.09) 1px, transparent 1px),
    #f8fbff;
  background-size: 28px 28px;
}

.install-diagram .route {
  position: absolute;
  z-index: 1;
  height: 4px;
  transform-origin: left center;
  background: #0759d6;
}

.install-diagram .route::after {
  content: "";
  position: absolute;
  inset: -6px 0;
  border-block: 1px dashed rgba(7, 89, 214, 0.35);
}

.install-diagram .route-a { top: 27%; left: 18%; width: 50%; transform: rotate(28deg); }
.install-diagram .route-b { top: 56%; left: 58%; width: 31%; transform: rotate(-49deg); }
.install-diagram .route-c { top: 64%; left: 16%; width: 43%; transform: rotate(-11deg); }

.install-diagram .endpoint {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 112px;
  height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 2px solid #07192d;
  background: #fafdff;
  box-shadow: 7px 7px 0 rgba(7, 89, 214, 0.16);
}

.install-diagram .endpoint b {
  font-family: var(--font-mono);
  font-size: 1.1rem;
}

.install-diagram .endpoint small {
  color: #52677d;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.install-diagram .endpoint-a { top: 14%; left: 9%; }
.install-diagram .endpoint-b { top: 48%; left: 51%; }
.install-diagram .endpoint-c { top: 17%; right: 8%; }
.install-diagram .endpoint-d { bottom: 9%; left: 7%; }

.install-diagram .diagram-key {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 190px;
  padding: 15px;
  border: 1px solid rgba(7, 25, 45, 0.35);
  background: rgba(250, 253, 255, 0.92);
  color: #52677d;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  line-height: 1.8;
  text-transform: uppercase;
}

/* Network Nick: terminal and topology */
.nick-terminal {
  background: #07100e;
  color: #dff7e9;
  font-family: var(--font-mono);
}

.terminal-copy {
  padding: 30px;
  font-size: 0.72rem;
  line-height: 1.85;
}

.terminal-copy p {
  margin: 0;
}

.terminal-copy .prompt { color: #b7ff45; }
.terminal-copy .result { color: #81998f; }

.topology {
  position: absolute;
  inset: 190px 26px 30px;
  border: 1px solid rgba(183, 255, 69, 0.24);
  background:
    linear-gradient(rgba(183, 255, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 69, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.topology .link {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: #b7ff45;
  box-shadow: 0 0 12px rgba(183, 255, 69, 0.35);
}

.topology .link-a { top: 35%; left: 20%; width: 29%; transform: rotate(19deg); }
.topology .link-b { top: 47%; left: 48%; width: 29%; transform: rotate(-24deg); }
.topology .link-c { top: 42%; left: 48%; width: 30%; transform: rotate(58deg); }

.topology .node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid #b7ff45;
  border-radius: 50%;
  background: #0d1916;
  color: #b7ff45;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.topology .node-a { top: 19%; left: 7%; }
.topology .node-b { top: 36%; left: 40%; }
.topology .node-c { top: 12%; right: 5%; }
.topology .node-d { bottom: 5%; right: 10%; }

.packet-chip {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 38%;
  padding: 5px 8px;
  background: #b7ff45;
  color: #07100e;
  font-size: 0.55rem;
  font-weight: 900;
}

/* Smart City Billboards: urban scene */
.city-scene {
  background: linear-gradient(#252832 0 62%, #141519 62%);
}

.city-scene::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 58px;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #ffd231 0 34px, transparent 34px 70px);
}

.building {
  position: absolute;
  bottom: 62px;
  background: #111216;
}

.building::before {
  content: "";
  position: absolute;
  inset: 16px;
  background: repeating-linear-gradient(0deg, rgba(255, 210, 49, 0.3) 0 7px, transparent 7px 23px);
}

.building-a { left: 0; width: 22%; height: 43%; }
.building-b { right: 0; width: 19%; height: 31%; }

.billboard-frame {
  position: absolute;
  top: 72px;
  left: 17%;
  z-index: 2;
  width: 66%;
  min-height: 290px;
  padding: 12px;
  border: 6px solid #050506;
  background: #ffd231;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.5);
  color: #101114;
}

.billboard-frame::before,
.billboard-frame::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 10px;
  height: 146px;
  background: #050506;
}

.billboard-frame::before { left: 21%; }
.billboard-frame::after { right: 21%; }

.billboard-frame p {
  margin: 0;
  font-family: Impact, Haettenschweiler, sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.billboard-frame small {
  display: block;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* My Block: neighborhood map */
.block-map {
  background: #fffaf0;
}

.block-map .street {
  position: absolute;
  z-index: 2;
  background: #d9cfbb;
}

.block-map .street-x { top: 45%; right: 0; left: 0; height: 66px; }
.block-map .street-y { top: 0; bottom: 0; left: 56%; width: 62px; }

.block-map .street::after {
  content: "";
  position: absolute;
  border: 1px dashed #fffaf0;
}

.block-map .street-x::after { top: 50%; right: 0; left: 0; }
.block-map .street-y::after { top: 0; bottom: 0; left: 50%; }

.block-map .lot {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid rgba(38, 55, 45, 0.25);
  border-radius: 18px;
  color: #26372d;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.block-map .lot-a { top: 7%; left: 6%; width: 42%; height: 30%; background: #b9d3a8; }
.block-map .lot-b { top: 8%; right: 4%; width: 31%; height: 27%; background: #f2c7ad; }
.block-map .lot-c { bottom: 7%; left: 8%; width: 38%; height: 31%; background: #f1d99d; }
.block-map .lot-d { right: 6%; bottom: 9%; width: 28%; height: 28%; background: #b9d6d2; }

.block-map .you-are-here {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 52%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 6px solid #fffaf0;
  border-radius: 50% 50% 50% 0;
  background: #ce5b3e;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(-45deg);
}

.block-map .you-are-here span { transform: rotate(45deg); }

/* MyDashBlock: product dashboard */
.dash-shell {
  padding: 18px;
  background: #ece8fa;
}

.dash-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 12px;
  height: 524px;
}

.dash-sidebar,
.dash-panel,
.dash-card {
  border: 1px solid rgba(33, 27, 53, 0.13);
  border-radius: 16px;
  background: #fcfbff;
}

.dash-sidebar {
  padding: 16px;
}

.dash-logo {
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border-radius: 11px;
  background: #6d4aff;
}

.dash-nav-line {
  width: 78%;
  height: 9px;
  margin: 17px 0;
  border-radius: 999px;
  background: #ddd6f6;
}

.dash-nav-line.active { width: 100%; height: 34px; margin-left: -6px; background: #e8e2ff; }

.dash-main {
  display: grid;
  grid-template-rows: auto 1fr 0.6fr;
  gap: 12px;
}

.dash-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  color: #6d657f;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-status {
  padding: 6px 9px;
  border-radius: 999px;
  background: #d9ffe8;
  color: #116a3b;
}

.dash-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.dash-panel strong {
  color: #211b35;
  font-size: 1.1rem;
}

.dash-chart {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  height: 120px;
  border-bottom: 1px solid #cfc7ed;
}

.dash-chart span {
  position: absolute;
  bottom: 0;
  width: 11%;
  border-radius: 6px 6px 0 0;
  background: #6d4aff;
}

.dash-chart span:nth-child(1) { left: 2%; height: 29%; }
.dash-chart span:nth-child(2) { left: 19%; height: 56%; }
.dash-chart span:nth-child(3) { left: 36%; height: 41%; }
.dash-chart span:nth-child(4) { left: 53%; height: 76%; }
.dash-chart span:nth-child(5) { left: 70%; height: 62%; }
.dash-chart span:nth-child(6) { left: 87%; height: 92%; background: #ff7356; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dash-card {
  padding: 16px;
  color: #6d657f;
  font-size: 0.66rem;
}

.dash-card b {
  display: block;
  margin-top: 14px;
  color: #211b35;
  font-size: 1.25rem;
}

/* NewCloudflare: independent portfolio constellation */
.portfolio-constellation {
  background:
    radial-gradient(circle at 50% 50%, rgba(63, 124, 255, 0.16), transparent 34%),
    linear-gradient(rgba(111, 159, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 159, 255, 0.04) 1px, transparent 1px),
    #08111f;
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.portfolio-constellation .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111, 159, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-constellation .orbit-a { width: 260px; height: 260px; }
.portfolio-constellation .orbit-b { width: 440px; height: 440px; }

.portfolio-core,
.portfolio-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid #6f9fff;
  background: #0d192c;
  color: #eff5ff;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-core {
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #3f7cff;
  color: #fff;
  transform: translate(-50%, -50%);
}

.portfolio-node { width: 98px; min-height: 60px; padding: 8px; border-radius: 6px; }
.portfolio-node-a { top: 9%; left: 10%; }
.portfolio-node-b { top: 11%; right: 9%; }
.portfolio-node-c { top: 45%; right: 3%; }
.portfolio-node-d { right: 14%; bottom: 8%; }
.portfolio-node-e { bottom: 7%; left: 12%; }
.portfolio-node-f { top: 43%; left: 2%; }

.portfolio-section {
  border-top: 1px solid var(--line-strong);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.portfolio-link {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
  text-decoration: none;
}

.portfolio-link:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.portfolio-link span:first-child {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-link strong {
  display: block;
  margin: 34px 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.portfolio-link small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.portfolio-arrow {
  align-self: end;
  color: var(--accent);
  font-size: 1.3rem;
}

/* Satisfaction Brought It Back: editorial cover */
.issue-cover {
  padding: 28px;
  background: #b32645;
  color: #fffaf1;
}

.issue-cover-inner {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 250, 241, 0.72);
  padding: 24px;
}

.issue-cover .issue-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.issue-cover h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.74;
}

.issue-cover .cover-line {
  width: 62%;
  height: 12px;
  margin-left: auto;
  background: #fffaf1;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(44px, 8vw, 110px);
  border-top: 1px solid var(--line-strong);
}

.video-stage {
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(183, 255, 69, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 69, 0.05) 1px, transparent 1px),
    var(--surface);
  background-size: 26px 26px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .hero-visual {
    width: min(100%, 760px);
    min-height: 560px;
  }

  .signature {
    min-height: 510px;
  }

  .section-heading,
  .brief-heading,
  .delivery-heading,
  .notes-heading,
  .portfolio-heading,
  .revenue-section,
  .video-section,
  .location-model,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .notes-heading .eyebrow,
  .portfolio-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading > p:last-child,
  .notes-heading > p,
  .portfolio-heading > p {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  .official-handoff {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 14px 18px;
  }

  .site-header,
  main,
  footer {
    width: min(calc(100% - 32px), 1320px);
  }

  .site-header {
    min-height: 82px;
  }

  .edition-tag {
    display: none;
  }

  .hero {
    gap: 46px;
    padding: 62px 0 76px;
  }

  .hero h1,
  body[data-theme="network-nick"] .hero h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
    line-height: 0.9;
  }

  body[data-theme="mydashblock"] .hero h1 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .signature {
    min-height: 452px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .brief-heading h2,
  .delivery-heading h2,
  .notes-heading h2,
  .portfolio-heading h2,
  .revenue-copy h2,
  .video-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .brief-grid {
    grid-template-columns: 1fr;
  }

  .brief-card {
    min-height: 0;
  }

  .brief-card > p:first-child {
    margin-bottom: 42px;
  }

  .delivery-stages {
    grid-template-columns: 1fr;
  }

  .delivery-stage {
    min-height: 0;
  }

  .delivery-stage > p:first-child {
    margin-bottom: 56px;
  }

  .network-role {
    grid-template-columns: 72px 1fr;
  }

  .network-role > p:last-child {
    grid-column: 2;
  }

  .principle {
    min-height: 0;
  }

  .principle-number {
    margin-bottom: 54px;
  }

  .field-note {
    grid-template-columns: 1fr;
  }

  .note-meta::before {
    margin-bottom: 18px;
  }

  .takeaway-list {
    grid-template-columns: 1fr;
  }

  .trust-boundary {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 38px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .install-diagram .endpoint {
    width: 88px;
    height: 76px;
  }

  .install-diagram .diagram-key {
    width: 160px;
  }

  .terminal-copy {
    padding: 20px;
    font-size: 0.63rem;
  }

  .topology {
    inset: 170px 14px 18px;
  }

  .topology .node {
    width: 64px;
    height: 64px;
    font-size: 0.52rem;
  }

  .billboard-frame {
    top: 62px;
    left: 8%;
    width: 84%;
    min-height: 260px;
  }

  .billboard-frame p {
    font-size: 3.35rem;
  }

  .block-map .street-y {
    left: 52%;
  }

  .dash-shell {
    padding: 10px;
  }

  .dash-layout {
    grid-template-columns: 0.27fr 0.73fr;
    height: 432px;
  }

  .dash-sidebar {
    padding: 10px;
  }

  .dash-logo {
    width: 30px;
    height: 30px;
  }

  .dash-nav-line {
    width: 100%;
  }

  .dash-main {
    gap: 8px;
  }

  .dash-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dash-card:last-child {
    display: none;
  }

  .portfolio-constellation .orbit-a { width: 210px; height: 210px; }
  .portfolio-constellation .orbit-b { width: 340px; height: 340px; }
  .portfolio-node { width: 74px; min-height: 54px; font-size: 0.47rem; }
  .portfolio-core { width: 96px; height: 96px; }

  .issue-cover {
    padding: 16px;
  }

  .issue-cover-inner {
    min-height: 420px;
  }

  .issue-cover h3 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (forced-colors: active) {
  .primary-action,
  .brand-mark,
  .portfolio-core,
  .portfolio-node,
  .topology .node,
  .install-diagram .endpoint,
  .billboard-frame {
    border: 2px solid CanvasText;
  }
}
