@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=DM+Mono:wght@400;500&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #101c31;
  --ink-deep: #0b1425;
  --ink-soft: #1b2d49;
  --paper: #f5f0e7;
  --paper-bright: #fbf9f4;
  --paper-deep: #e9e1d4;
  --cobalt: #2f67f6;
  --cobalt-dark: #1b4cd2;
  --coral: #ff705c;
  --lime: #d8ff67;
  --mist: #b8c4d5;
  --muted: #68758a;
  --line: rgba(16, 28, 49, 0.14);
  --line-light: rgba(245, 240, 231, 0.18);
  --shadow: 0 24px 70px rgba(14, 26, 46, 0.16);
  --radius-sm: 0.7rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.7rem;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: '';
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(16, 28, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 28, 49, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 45%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 0.45rem;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.mono,
.eyebrow,
.kicker,
.article-meta,
.tag,
.step-label,
.hero-stamp,
.micro-label,
.table-label {
  font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
}

.top-strip {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem max(1.5rem, calc((100vw - var(--max)) / 2));
  background: var(--lime);
  color: var(--ink);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-strip-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.signal-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.22rem rgba(255, 112, 92, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 5.3rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--ink);
  color: var(--lime);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.site-nav a {
  position: relative;
  color: #39465b;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.92rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-link::after {
  display: none;
}

.header-link:hover,
.header-link:focus-visible {
  background: var(--ink);
  color: var(--paper) !important;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.26rem auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0 5.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 32%, rgba(47, 103, 246, 0.25), transparent 28rem),
    linear-gradient(110deg, var(--ink-deep) 0%, var(--ink) 63%, #162a49 100%);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48vw;
  height: 100%;
  border-left: 1px solid rgba(216, 255, 103, 0.18);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(216, 255, 103, 0.08) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(216, 255, 103, 0.08) 50%, transparent 50.1%);
  background-size: 76px 76px;
  content: '';
  opacity: 0.5;
  transform: skewX(-12deg) translateX(12%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 36rem;
}

.kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: var(--lime);
  font-size: 0.7rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker-count,
.eyebrow-count {
  display: inline-grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--paper-bright);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.8rem, 7.4vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.095em;
  line-height: 0.88;
}

.hero h1 span {
  position: relative;
  color: var(--coral);
}

.hero h1 span::after {
  position: absolute;
  right: 0.1em;
  bottom: -0.15em;
  left: 0.05em;
  height: 0.1em;
  background: var(--lime);
  content: '';
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: #c8d2df;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2.35rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0.25rem rgba(216, 255, 103, 0.12);
}

.button-lime:hover,
.button-lime:focus-visible {
  box-shadow: 0 0 0 0.42rem rgba(216, 255, 103, 0.14), 0 14px 32px rgba(0, 0, 0, 0.22);
}

.button-coral {
  background: var(--coral);
  color: var(--ink);
}

.button-coral:hover,
.button-coral:focus-visible {
  box-shadow: 0 14px 30px rgba(255, 112, 92, 0.24);
}

.button-ink {
  background: var(--ink);
  color: var(--paper);
}

.button-ghost-light,
.button-ghost {
  border-color: currentColor;
  background: transparent;
}

.button-ghost-light {
  color: var(--paper);
}

.button-ghost {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.91rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--coral);
}

.light-link {
  color: var(--paper);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 31rem;
  margin-top: 4.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
}

.fact {
  display: grid;
  gap: 0.24rem;
  padding-right: 1rem;
}

.fact + .fact {
  padding-left: 1rem;
  border-left: 1px solid var(--line-light);
}

.fact-number {
  color: var(--lime);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.fact-label {
  color: #91a1b8;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 37rem;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 0 2rem;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 231, 0.28);
  border-radius: 1.4rem 1.4rem 1.4rem 4.3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(2.2deg);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 255, 103, 0.28);
  border-radius: inherit;
  content: '';
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 37rem;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-photo-label {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(245, 240, 231, 0.45);
  border-radius: 0.55rem;
  background: rgba(16, 28, 49, 0.75);
  color: var(--paper);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-photo-label span:last-child {
  color: var(--lime);
}

.hero-stamp {
  position: absolute;
  top: 1.5rem;
  left: -1.1rem;
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.61rem;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-12deg);
}

.hero-coordinate {
  position: absolute;
  right: -1.4rem;
  bottom: 3.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.5rem;
  background: var(--coral);
  color: var(--ink);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.hero-coordinate::before {
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: '';
}

.signal-bar {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding: 1.5rem 0;
  background: var(--coral);
  color: var(--ink);
  transform: skewY(-1.4deg);
}

.signal-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  transform: skewY(1.4deg);
}

.signal-bar p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.signal-bar .mono {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.page-heading h1 {
  max-width: 13ch;
  margin: 0.65rem 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.94;
}

.eyebrow-dark {
  margin-bottom: 0;
  color: var(--cobalt);
}

.section-intro {
  max-width: 25rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pathways {
  background: var(--paper-bright);
}

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

.pathway-card {
  position: relative;
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pathway-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 0.35rem;
  background: var(--cobalt);
  content: '';
}

.pathway-card:nth-child(2)::before {
  background: var(--coral);
}

.pathway-card:nth-child(3)::before {
  background: var(--lime);
}

.pathway-card:hover {
  border-color: rgba(47, 103, 246, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.pathway-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.pathway-number {
  color: var(--cobalt);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
}

.pathway-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
}

.pathway-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.pathway-card h3 {
  max-width: 10ch;
  margin: 2.5rem 0 0.8rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.pathway-card p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
}

.pathway-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.arrow {
  display: inline-block;
  color: var(--coral);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.pathway-card:hover .arrow,
.article-card:hover .arrow {
  transform: translate(3px, -3px);
}

.featured-section {
  background: var(--paper);
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.15rem;
}

.feature-card {
  display: grid;
  min-height: 32rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.feature-image {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 3vw, 2.6rem);
}

.feature-copy .tag {
  color: var(--lime);
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  color: var(--cobalt);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tag::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--coral);
  content: '';
}

.feature-copy h3 {
  max-width: 10ch;
  margin: 1.4rem 0 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.feature-copy p {
  max-width: 27rem;
  margin: 0;
  color: #b7c4d4;
  font-size: 1rem;
}

.feature-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}

.read-time {
  color: #9cacc0;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.small-link {
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
}

.small-link:hover,
.small-link:focus-visible {
  color: var(--coral);
}

.article-stack {
  display: grid;
  gap: 1.15rem;
}

.article-card {
  display: flex;
  min-height: 15.4rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-bright);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.article-card:hover {
  box-shadow: 0 18px 45px rgba(16, 28, 49, 0.11);
  transform: translateY(-5px);
}

.article-card h3 {
  max-width: 17ch;
  margin: 1.3rem 0 0.65rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.article-card p {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.7rem;
  color: var(--ink);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-desk {
  background: var(--ink);
  color: var(--paper);
}

.quick-desk .eyebrow {
  color: var(--lime);
}

.desk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.desk-layout h2 {
  max-width: 8ch;
  margin: 0.8rem 0 1.3rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.desk-layout .section-intro {
  color: #afbdcf;
}

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

.desk-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
}

.desk-row-number {
  color: var(--coral);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
}

.desk-row h3 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.desk-row p {
  margin: 0.25rem 0 0;
  color: #9eafc4;
  font-size: 0.93rem;
}

.desk-row-arrow {
  color: var(--lime);
  font-size: 1.35rem;
}

.preflight-note {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.preflight-box {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(16, 28, 49, 0.2);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.preflight-intro h2 {
  max-width: 15ch;
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.93;
}

.preflight-intro p {
  max-width: 34rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.preflight-intro .button {
  margin-top: 1.7rem;
}

.preflight-list {
  display: grid;
  align-self: stretch;
  border-top: 1px solid var(--line);
}

.preflight-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.preflight-number {
  color: var(--coral);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
}

.preflight-item h3 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.preflight-item p {
  max-width: 30rem;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.preflight-box .eyebrow {
  margin-bottom: 1rem;
}

.preflight-box .eyebrow-dark {
  color: var(--blue);
}

.footer-affiliate-note {
  display: block;
  max-width: 15rem;
  color: #8fa2bc;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--ink-deep);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-heading {
  margin: 0.5rem 0 1rem;
  color: var(--lime);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.footer-copy {
  max-width: 23rem;
  margin: 0;
  color: #9eafc4;
  font-size: 0.93rem;
}

.footer-col-title {
  margin: 0 0 0.9rem;
  color: #8fa2bc;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--paper);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: #8294ae;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 103, 246, 0.2), transparent 23rem),
    var(--ink);
  color: var(--paper);
}

.page-hero .eyebrow {
  color: var(--lime);
}

.page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.page-heading h1 {
  max-width: 9ch;
  color: var(--paper-bright);
}

.page-heading p {
  max-width: 26rem;
  margin: 0;
  color: #aebdd0;
  font-size: 1.08rem;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  margin-top: -1.5rem;
  border-radius: var(--radius-lg);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.blog-feature img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 4rem);
}

.blog-feature-copy h2 {
  max-width: 11ch;
  margin: 1.2rem 0 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.92;
}

.blog-feature-copy p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.blog-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
  color: var(--muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-feature-copy .button {
  width: fit-content;
  margin-top: 2rem;
}

.blog-grid-section {
  padding-top: 5rem;
}

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

.blog-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-bright);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  box-shadow: 0 18px 45px rgba(16, 28, 49, 0.11);
  transform: translateY(-5px);
}

.blog-card h3 {
  max-width: 15ch;
  margin: 1.25rem 0 0.7rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.article-page {
  background: var(--paper-bright);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--coral);
  transition: width 80ms linear;
}

.article-hero {
  padding: clamp(3.7rem, 8vw, 7rem) 0 4.5rem;
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 103, 246, 0.21), transparent 23rem),
    var(--ink);
  color: var(--paper);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: #8fa2bc;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--lime);
}

.breadcrumb-separator {
  color: var(--coral);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-top: 2rem;
}

.article-hero h1 {
  max-width: 10ch;
  margin: 0.9rem 0 1.35rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 6.3vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.095em;
  line-height: 0.88;
}

.article-dek {
  max-width: 32rem;
  margin: 0;
  color: #b8c5d5;
  font-size: 1.08rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: 1.6rem;
  color: #91a4bd;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.article-hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 231, 0.28);
  border-radius: 1.4rem 1.4rem 1.4rem 4rem;
  transform: rotate(1.8deg);
}

.article-hero-image img {
  width: 100%;
  height: 31rem;
  object-fit: cover;
}

.article-hero-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(245, 240, 231, 0.32);
  border-radius: 0.4rem;
  background: rgba(16, 28, 49, 0.72);
  color: var(--paper);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.article-aside {
  position: sticky;
  top: 7rem;
}

.aside-title {
  margin: 0 0 1rem;
  color: var(--cobalt);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc {
  display: grid;
  gap: 0.7rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}

.toc a {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--cobalt);
}

.aside-note {
  margin-top: 2.6rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 0.83rem;
}

.aside-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.article-content {
  max-width: 47rem;
}

.article-content > p:first-child {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.55;
}

.article-content h2 {
  margin: 3.7rem 0 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.98;
  scroll-margin-top: 7rem;
}

.article-content h3 {
  margin: 2rem 0 0.55rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.article-content p,
.article-content li {
  color: #435168;
  font-size: 1.03rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li + li {
  margin-top: 0.45rem;
}

.article-content a {
  color: var(--cobalt-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(47, 103, 246, 0.3);
  text-underline-offset: 0.16em;
}

.article-content a:hover,
.article-content a:focus-visible {
  color: var(--coral);
  text-decoration-color: currentColor;
}

.answer-box {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.4rem 1.5rem 1.5rem;
  border-left: 5px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--paper-deep);
}

.answer-box::before {
  position: absolute;
  top: -0.7rem;
  left: -0.65rem;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  content: '!';
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 500;
}

.answer-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.answer-box p {
  margin: 0;
}

.step-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.step {
  display: grid;
  grid-template-columns: 3.15rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1.2rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.step-number {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--paper);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
}

.step:nth-child(2) .step-number {
  background: var(--coral);
  color: var(--ink);
}

.step:nth-child(3) .step-number {
  background: var(--lime);
  color: var(--ink);
}

.step h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.35rem;
}

.step p {
  margin: 0;
}

.device-table {
  width: 100%;
  margin: 1.5rem 0 2rem;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
}

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

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

.device-table th {
  background: var(--ink);
  color: var(--lime);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.device-table td {
  color: #435168;
  font-size: 0.94rem;
}

.device-table td:first-child {
  width: 30%;
  color: var(--ink);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.check-list li::before {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
}

.partner-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  margin: 3rem 0;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--paper);
}

.partner-card h3 {
  margin: 0 0 0.35rem;
  color: var(--lime);
  font-size: 1.5rem;
}

.partner-card p {
  max-width: 28rem;
  margin: 0;
  color: #b7c4d4;
  font-size: 0.91rem;
}

.partner-card .button {
  flex: 0 0 auto;
}

.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--coral);
  content: '+';
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 1.3rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  max-width: 40rem;
  padding: 0 2rem 1.2rem 0;
  margin: 0;
}

.article-endnote {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 0.85rem;
}

.article-endnote strong {
  color: var(--ink);
}

.simple-page {
  min-height: 60vh;
  padding: 5rem 0 7rem;
}

.simple-page h1 {
  max-width: 10ch;
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.simple-page p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .site-header {
    width: min(calc(100% - 2rem), var(--max));
  }

  .site-nav {
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-art {
    min-height: 31rem;
  }

  .hero-photo,
  .hero-photo-frame {
    min-height: 31rem;
  }

  .hero-coordinate {
    right: -0.3rem;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  .top-strip {
    padding: 0.35rem 1rem;
  }

  .top-strip .top-note {
    display: none;
  }

  .site-header {
    min-height: 4.6rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(251, 249, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.55rem 0.25rem;
    font-size: 0.95rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-link {
    justify-content: center;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 4.2rem;
  }

  .hero-grid,
  .page-heading,
  .article-hero-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.75rem, 17vw, 6.5rem);
  }

  .hero-facts {
    margin-top: 3rem;
  }

  .hero-art {
    min-height: 25rem;
    margin: 0 0.5rem;
  }

  .hero-photo-frame {
    inset: 0 0.5rem 0 0.5rem;
    border-radius: 1.1rem 1.1rem 1.1rem 3rem;
    transform: rotate(1deg);
  }

  .hero-photo {
    min-height: 25rem;
  }

  .hero-stamp {
    top: 0.3rem;
    left: -0.7rem;
    width: 4.7rem;
    height: 4.7rem;
  }

  .hero-coordinate {
    right: -0.45rem;
    bottom: 2.2rem;
  }

  .signal-bar {
    margin-top: -1.3rem;
  }

  .signal-bar-inner {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    max-width: 11ch;
  }

  .section-intro {
    margin-top: 1.3rem;
  }

  .pathway-grid,
  .featured-layout,
  .blog-grid,
  .footer-grid,
  .preflight-box {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 17rem;
  }

  .feature-card,
  .blog-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    max-height: 20rem;
  }

  .feature-copy h3,
  .blog-feature-copy h2 {
    max-width: 12ch;
  }

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

  .desk-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .desk-layout h2 {
    max-width: 9ch;
  }

  .page-heading p {
    margin-top: 1.5rem;
  }

  .blog-feature {
    margin-top: 1rem;
  }

  .blog-feature img {
    min-height: 19rem;
    max-height: 23rem;
  }

  .article-hero {
    padding-top: 3.3rem;
  }

  .article-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 14vw, 5.8rem);
  }

  .article-hero-image {
    transform: none;
  }

  .article-hero-image img {
    height: 24rem;
  }

  .article-shell {
    gap: 2.2rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .article-aside {
    position: static;
  }

  .toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 0.9rem;
  }

  .aside-note {
    margin-top: 1.4rem;
  }

  .article-content h2 {
    margin-top: 2.8rem;
  }

  .device-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    gap: 0;
  }

  .fact {
    padding-right: 0.5rem;
  }

  .fact + .fact {
    padding-left: 0.5rem;
  }

  .fact-number {
    font-size: 1.22rem;
  }

  .fact-label {
    font-size: 0.56rem;
  }

  .article-stack {
    grid-template-columns: 1fr;
  }

  .desk-row {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.55rem;
  }

  .desk-row h3 {
    font-size: 1.2rem;
  }

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

  .partner-card .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.privacy-hero {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.privacy-hero h1 {
  max-width: 11ch;
  color: var(--paper-bright);
}

.privacy-hero .page-heading > p {
  max-width: 27rem;
  margin: 0;
  color: #c8d2df;
  font-size: 1.05rem;
}

.privacy-section {
  background: var(--paper-bright);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.45fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}

.privacy-aside {
  position: sticky;
  top: 7.5rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.privacy-aside .aside-title {
  margin: 0 0 0.65rem;
  color: var(--cobalt);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-aside p:not(.aside-title) {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-aside .privacy-meta {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  line-height: 1.6;
}

.privacy-copy h2:first-child {
  margin-top: 0;
}

.privacy-callout {
  margin-top: 3rem;
  padding: 1.3rem 1.4rem;
  border-left: 5px solid var(--lime);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--ink);
  color: var(--paper);
}

.privacy-callout strong {
  display: block;
  color: var(--lime);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.privacy-callout p {
  margin: 0.45rem 0 0;
  color: #c8d2df;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
  padding: 18px 20px;
  color: var(--paper-bright);
  background: rgba(11, 20, 37, 0.97);
  border: 1px solid rgba(251, 249, 244, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(11, 20, 37, 0.28);
}

.consent-banner__copy {
  max-width: 610px;
}

.consent-banner__copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.consent-banner__copy p {
  margin: 0 0 6px;
  color: rgba(251, 249, 244, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.consent-banner__copy a {
  color: var(--lime);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-banner__button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(251, 249, 244, 0.28);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consent-banner__button--quiet {
  color: var(--paper-bright);
  background: transparent;
}

.consent-banner__button--allow {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.consent-banner__button:hover,
.consent-banner__button:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .privacy-aside {
    position: static;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 16px;
  }

  .consent-banner__actions {
    margin-top: 14px;
  }

  .consent-banner__button {
    flex: 1;
  }
}
