:root {
  --ink: #101719;
  --ink-2: #182326;
  --paper: #f2f0e8;
  --paper-2: #e8e5dc;
  --line: #c8c5ba;
  --muted: #5e6666;
  --cyan: #20a9bf;
  --cyan-light: #bce8ec;
  --amber: #efa943;
  --white: #fff;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(16, 23, 25, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; }

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

button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .65rem 1rem;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow,
.kicker,
.tag,
.readout-label,
.footer-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.eyebrow::before {
  width: 1.6rem;
  height: 2px;
  background: var(--cyan);
  content: "";
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.06;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 8vw, 7rem);
}

h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: .7rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(255,255,255,.16);
}

.section-dark .eyebrow,
.section-dark .lede { color: #abb6b6; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading p:last-child { margin-bottom: .3rem; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .75rem 1.15rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

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

.section-dark .button-outline,
.cta-band .button-outline {
  border-color: var(--paper);
  color: var(--paper);
}

.section-dark .button:not(.button-outline) {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.section-dark .button:not(.button-outline):hover {
  border-color: var(--cyan);
  background: var(--cyan);
}

.button-small {
  min-height: 2.55rem;
  padding: .55rem .85rem;
  font-size: .7rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(242,240,232,.94);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  border: 2px solid var(--ink);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  background: var(--cyan);
  content: "";
}

.brand-mark::before {
  top: 50%;
  left: .35rem;
  width: 1.2rem;
  height: 2px;
}

.brand-mark::after {
  top: .35rem;
  left: 50%;
  width: 2px;
  height: 1.2rem;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: .95rem;
  letter-spacing: -.01em;
}

.brand-text span {
  margin-top: .35rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: .4rem 0;
  color: #3f4848;
  font-size: .88rem;
  font-weight: 550;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: .65rem;
  border: 1px solid var(--ink);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: .28rem 0;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(16,23,25,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,23,25,.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

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

.hero-copy .lede {
  max-width: 34rem;
  margin-bottom: 0;
}

.hero-instrument {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--cyan);
}

.instrument-head,
.instrument-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instrument-head {
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.status-dot::before {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  box-shadow: 0 0 0 4px rgba(32,169,191,.16);
}

.readout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 1rem 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.readout {
  min-height: 8rem;
  padding: 1rem;
  background: var(--ink);
  color: var(--paper);
}

.readout-wide { grid-column: 1 / -1; }

.readout-label {
  display: block;
  margin-bottom: 1.25rem;
  color: #94a3a3;
}

.readout-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

.readout-unit {
  margin-left: .3rem;
  color: var(--cyan-light);
  font-size: .72rem;
}

.sparkline {
  display: flex;
  height: 3.25rem;
  align-items: end;
  gap: .28rem;
}

.sparkline i {
  width: 100%;
  background: var(--cyan);
  animation: rise .8s both ease-out;
}

.sparkline i:nth-child(1) { height: 22%; }
.sparkline i:nth-child(2) { height: 38%; }
.sparkline i:nth-child(3) { height: 31%; }
.sparkline i:nth-child(4) { height: 58%; }
.sparkline i:nth-child(5) { height: 48%; }
.sparkline i:nth-child(6) { height: 74%; }
.sparkline i:nth-child(7) { height: 66%; }
.sparkline i:nth-child(8) { height: 88%; }

@keyframes rise { from { height: 0; } }

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.signal-grid span {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1rem;
  border-left: 1px solid rgba(255,255,255,.15);
  font-family: "IBM Plex Mono", monospace;
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.signal-grid span:last-child { border-right: 1px solid rgba(255,255,255,.15); }

.signal-grid b { color: var(--cyan); }

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.category-card {
  min-height: 17rem;
  padding: 1.4rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.category-card:hover {
  z-index: 1;
  background: var(--cyan);
  transform: translateY(-5px);
}

.category-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.category-card h3 { font-size: 1.25rem; }

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.category-card:hover p,
.category-card:hover .category-number { color: var(--ink); }

/* Featured tool */
.tool-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}

.tool-copy,
.mini-tool {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ink);
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: .25rem .5rem;
  border: 1px solid currentColor;
}

.tag-live {
  border-color: var(--cyan);
  color: var(--cyan-light);
}

.tag-progress {
  border-color: var(--amber);
  color: var(--amber);
}

.tag-planned { color: #aab2b2; }

.tool-copy h2 { max-width: 9ch; }

.tool-copy p { max-width: 31rem; color: #aeb8b8; }

.mini-tool {
  display: grid;
  align-content: center;
}

.mini-readout {
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,.22);
  background: #0b1012;
}

.mini-readout + .mini-readout { margin-top: .65rem; }

.mini-value {
  display: block;
  margin-top: .8rem;
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
}

.mini-value small {
  color: var(--cyan);
  font-size: .8rem;
}

/* Product registry */
.registry {
  border-top: 1px solid var(--ink);
}

.registry-row {
  display: grid;
  grid-template-columns: 3.2rem minmax(160px, 1.1fr) minmax(220px, 1.5fr) minmax(120px, .55fr) 1.5rem;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.registry-row:hover h3 { color: var(--cyan); }

.registry-row > span:first-child,
.registry-arrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.registry-row h3 { margin: 0; font-size: 1.15rem; transition: color .2s ease; }

.registry-row p { margin: 0; color: var(--muted); font-size: .9rem; }

.registry-arrow { font-size: 1rem; }

/* Page headers */
.page-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(16,23,25,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,23,25,.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero h1 { max-width: 10ch; font-size: clamp(3.1rem, 7vw, 6.4rem); }

.page-hero .lede { max-width: 48rem; }

/* Converter */
.converter-shell {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  border: 1px solid var(--ink);
  background: var(--ink);
}

.converter-aside {
  padding: clamp(1.5rem, 4vw, 3.25rem);
  color: var(--paper);
}

.converter-aside h2 { max-width: 8ch; font-size: clamp(2rem, 4vw, 3.3rem); }

.converter-aside p { color: #aeb8b8; }

.converter-panel {
  padding: clamp(1.25rem, 4vw, 3.25rem);
  background: var(--paper);
}

.field { display: grid; gap: .45rem; }

.field + .field { margin-top: 1rem; }

.field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: .75rem .85rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.converter-pair {
  display: grid;
  grid-template-columns: 1fr 2.8rem 1fr;
  gap: .75rem;
  align-items: end;
  margin-top: 1rem;
}

.swap-button {
  display: grid;
  width: 2.8rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.2rem;
}

.swap-button:hover { background: var(--cyan-light); }

.converter-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.result-value {
  display: block;
  margin-top: .6rem;
  overflow-wrap: anywhere;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.result-formula {
  display: block;
  margin-top: .75rem;
  color: #aeb8b8;
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.disclaimer {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.product-card {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-card .tool-meta { margin-bottom: auto; }

.product-card p { color: var(--muted); }

.product-card .product-foot {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-card-featured { background: var(--cyan-light); }

/* Services */
.service-list { border-top: 1px solid var(--ink); }

.service-row {
  display: grid;
  grid-template-columns: 3rem minmax(200px, .8fr) minmax(280px, 1.2fr);
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-row > span {
  padding-top: .15rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
}

.service-row h2 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 2.2rem); }

.service-row p { margin: 0; color: var(--muted); }

/* About */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.prose p { max-width: 42rem; color: var(--muted); font-size: 1.05rem; }

.credential-panel {
  align-self: start;
  border: 1px solid var(--ink);
}

.credential-panel > div {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.credential-panel > div:last-child { border-bottom: 0; }

.credential-panel strong {
  display: block;
  margin-top: .35rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.25);
}

.principle {
  min-height: 15rem;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.principle span { color: var(--cyan); font-family: "IBM Plex Mono", monospace; font-size: .72rem; }

.principle h3 { margin-top: 3rem; }

.principle p { margin-bottom: 0; color: #aeb8b8; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-details {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-detail {
  padding: 1.2rem;
  background: var(--paper);
}

.contact-detail a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .field + .field { margin-top: 0; }

.field-full { grid-column: 1 / -1; }

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .8rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--ink);
}

/* CTA + Footer */
.cta-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cyan);
  color: var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.cta-grid h2 { margin-bottom: 0; }

.cta-grid .button { background: var(--ink); }

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

.site-footer .brand { color: var(--paper); }

.site-footer .brand-mark { border-color: var(--paper); }

.site-footer .brand-text span { color: #9fa9a9; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 2rem;
}

.footer-brand p {
  max-width: 26rem;
  margin-top: 1rem;
  color: #9fa9a9;
  font-size: .9rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: .6rem;
}

.footer-label { margin-bottom: .45rem; color: #7f8c8c; }

.footer-column a {
  color: #c8cece;
  font-size: .85rem;
  text-decoration: none;
}

.footer-column a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #7f8c8c;
  font-family: "IBM Plex Mono", monospace;
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 5rem 0 auto;
    display: none;
    padding: 1.5rem 1rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav > a:not(.button) { padding: .8rem 0; }

  .nav-toggle { display: block; }

  .hero-grid,
  .section-heading,
  .tool-feature,
  .converter-shell,
  .split-layout,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-instrument { max-width: 650px; }

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

  .category-card:last-child { grid-column: 1 / -1; }

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

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

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

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }

  .brand-text span { display: none; }

  h1 { font-size: clamp(3rem, 17vw, 4.5rem); }

  .hero { padding-top: 3.75rem; }

  .hero-instrument { box-shadow: 7px 7px 0 var(--cyan); }

  .readout { min-height: 6.5rem; }

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

  .signal-grid span:last-child { grid-column: 1 / -1; }

  .category-grid,
  .product-grid { grid-template-columns: 1fr; }

  .category-card,
  .category-card:last-child { grid-column: auto; min-height: 13rem; }

  .category-number { margin-bottom: 2.5rem; }

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

  .registry-row p,
  .registry-row .tag { grid-column: 2 / -1; }

  .registry-arrow { grid-column: 3; grid-row: 1; }

  .converter-pair { grid-template-columns: 1fr; }

  .swap-button { width: 100%; height: 2.6rem; }

  .service-row { grid-template-columns: 2rem 1fr; gap: .8rem; }

  .service-row p { grid-column: 2; }

  .contact-form { grid-template-columns: 1fr; }

  .field-full,
  .form-note,
  .form-status { grid-column: auto; }

  .cta-grid { grid-template-columns: 1fr; align-items: start; }

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

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .button-row { display: none; }

  body { background: white; }

  .section,
  .hero,
  .page-hero { padding: 2rem 0; }
}
