:root {
  color-scheme: light;
  --rp-base: #faf4ed;
  --rp-surface: #fffaf3;
  --rp-overlay: #f2e9e1;
  --rp-muted: #9893a5;
  --rp-subtle: #797593;
  --rp-text: #575279;
  --rp-love: #b4637a;
  --rp-gold: #ea9d34;
  --rp-rose: #d7827e;
  --rp-pine: #286983;
  --rp-foam: #56949f;
  --rp-iris: #907aa9;
  --rp-hl-low: #f4ede8;
  --rp-hl-med: #dfdad9;
  --rp-hl-high: #cecacd;

  --bg: var(--rp-base);
  --surface: rgba(255, 250, 243, 0.72);
  --surface-solid: var(--rp-surface);
  --line: rgba(206, 202, 205, 0.7);
  --line-bright: rgba(121, 117, 147, 0.22);
  --text: var(--rp-text);
  --muted: var(--rp-subtle);
  --accent: var(--rp-rose);
  --accent-strong: var(--rp-love);
  --iris: var(--rp-iris);
  --foam: var(--rp-foam);
  --max: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(87, 82, 121, 0.1);
  --shadow-frame: 0 40px 100px rgba(87, 82, 121, 0.14),
    0 0 0 1px rgba(215, 130, 126, 0.12);
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
  /* Required with HTML width/height attrs — otherwise max-width shrinks
     width while height stays fixed and the bitmap looks stretched. */
  height: auto;
}

code {
  padding: 0.12em 0.4em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--rp-iris);
  font-family: var(--mono);
  font-size: 0.9em;
}

/* ── Ambient backdrop ─────────────────────────────────────────── */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.orb-a {
  top: -8rem;
  left: 15%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(215, 130, 126, 0.45), transparent 70%);
  animation: drift-a 18s ease-in-out infinite alternate;
}

.orb-b {
  top: 20%;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(144, 122, 169, 0.4), transparent 70%);
  animation: drift-b 22s ease-in-out infinite alternate;
}

.orb-c {
  bottom: 10%;
  left: -4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(86, 148, 159, 0.28), transparent 70%);
  animation: drift-c 20s ease-in-out infinite alternate;
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(87, 82, 121, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 82, 121, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 20%, transparent 75%);
  opacity: 0.7;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}

@keyframes drift-b {
  from { transform: translate(0, 0); }
  to { transform: translate(-50px, 40px); }
}

@keyframes drift-c {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, -25px); }
}

/* ── Header ───────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(250, 244, 237, 0.72);
  border-bottom: 1px solid transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 130, 126, 0.35),
    rgba(144, 122, 169, 0.3),
    transparent
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 15px;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(180, 99, 122, 0.18);
}

.version-chip {
  margin-left: 2px;
  padding: 3px 8px;
  border: 1px solid rgba(144, 122, 169, 0.28);
  border-radius: 999px;
  background: rgba(144, 122, 169, 0.1);
  color: var(--iris);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.site-header nav a,
footer a {
  transition: color 160ms ease;
}

.site-header nav a:hover,
footer a:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  padding: 9px 16px;
  border: 1px solid rgba(215, 130, 126, 0.35);
  border-radius: 999px;
  background: rgba(215, 130, 126, 0.08);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  border-color: var(--accent);
  background: rgba(215, 130, 126, 0.16);
  transform: translateY(-1px);
}

main,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 88px 0 56px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid rgba(215, 130, 126, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  box-shadow: 0 8px 24px rgba(180, 99, 122, 0.06);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--foam);
  box-shadow: 0 0 0 0 rgba(86, 148, 159, 0.5);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(86, 148, 159, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(86, 148, 159, 0); }
  100% { box-shadow: 0 0 0 0 rgba(86, 148, 159, 0); }
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
  color: var(--text);
}

.grad-text {
  background: linear-gradient(
    120deg,
    var(--rp-love) 0%,
    var(--rp-rose) 40%,
    var(--rp-iris) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #c96b7e 0%, var(--rp-rose) 50%, #e09a90 100%);
  color: #fffaf3;
  box-shadow: 0 14px 36px rgba(180, 99, 122, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(180, 99, 122, 0.36);
}

.btn-arrow {
  font-size: 15px;
  opacity: 0.9;
}

.button-secondary {
  border: 1px solid var(--line-bright);
  background: rgba(255, 250, 243, 0.75);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(87, 82, 121, 0.05);
}

.button-secondary:hover {
  border-color: rgba(144, 122, 169, 0.35);
  background: var(--surface-solid);
}

.platform-note {
  margin: 20px 0 0;
  color: var(--rp-muted);
  font-size: 13px;
}

.platform-note a {
  color: var(--iris);
  font-weight: 600;
  border-bottom: 1px solid rgba(144, 122, 169, 0.3);
  transition: border-color 160ms ease;
}

.platform-note a:hover {
  border-color: var(--iris);
}

/* ── Product shot (window chrome is in the PNG) ───────────────── */

.product-showcase {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  /* Filter on the wrapper so the <img> box keeps a clean aspect ratio. */
  filter: drop-shadow(0 28px 50px rgba(87, 82, 121, 0.18))
    drop-shadow(0 8px 18px rgba(180, 99, 122, 0.1));
}

.product-shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  /* Lock ratio to the PNG (1400×847) — never stretch to a foreign box. */
  aspect-ratio: 1400 / 847;
  object-fit: contain;
  object-position: center;
}

/* ── Signal strip ─────────────────────────────────────────────── */

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 64px 0 120px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.signal-strip div {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

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

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.signal-strip span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.signal-strip code {
  padding: 0 4px;
  font-size: 11px;
}

/* ── Features ─────────────────────────────────────────────────── */

.features {
  padding-bottom: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}

.section-heading .section-label {
  grid-column: 1 / -1;
}

.section-heading h2,
.workflow h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 700;
}

.section-heading > p:last-child {
  max-width: 320px;
  margin: 0 0 2px auto;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65), transparent 50%),
    rgba(255, 250, 243, 0.7);
  box-shadow: 0 12px 32px rgba(87, 82, 121, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgba(215, 130, 126, 0.35);
  box-shadow: 0 18px 40px rgba(180, 99, 122, 0.08);
  transform: translateY(-2px);
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  min-height: 260px;
  align-items: center;
}

.feature-index {
  margin-bottom: 48px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.feature-card-wide .feature-index {
  position: absolute;
  top: 28px;
  left: 28px;
  margin: 0;
}

.feature-card-wide .feature-body {
  padding-top: 36px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Mini board */

.mini-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(250, 244, 237, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mini-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row.live {
  background: linear-gradient(
    90deg,
    rgba(86, 148, 159, 0.12),
    rgba(215, 130, 126, 0.06)
  );
  color: var(--text);
}

.mini-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rp-hl-high);
}

.mini-row.live .dot {
  background: var(--foam);
  box-shadow: 0 0 10px rgba(86, 148, 159, 0.55);
}

.mini-row b {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mini-row i {
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  color: var(--rp-muted);
}

.mini-row.live i {
  color: var(--foam);
  font-weight: 500;
}

/* Chips / modes / usage mocks */

.chip-row {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--rp-muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.chip-on {
  border-color: rgba(180, 99, 122, 0.35);
  background: rgba(180, 99, 122, 0.12);
  color: var(--accent-strong);
}

.usage-mock {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usage-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--rp-overlay);
}

.usage-fill {
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rp-foam), var(--rp-iris), var(--rp-rose));
}

.usage-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 36px;
}

.usage-bars i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(144, 122, 169, 0.55), rgba(215, 130, 126, 0.35));
  font-style: normal;
}

.usage-bars i:nth-child(1) { height: 40%; }
.usage-bars i:nth-child(2) { height: 55%; }
.usage-bars i:nth-child(3) { height: 35%; }
.usage-bars i:nth-child(4) { height: 70%; }
.usage-bars i:nth-child(5) { height: 48%; }
.usage-bars i:nth-child(6) { height: 85%; }
.usage-bars i:nth-child(7) { height: 62%; background: linear-gradient(180deg, var(--rp-rose), var(--rp-love)); }

.file-stack {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.file-stack .delta {
  color: var(--rp-gold);
  font-weight: 500;
}

.file-stack .delta.plus {
  color: var(--foam);
}

.mode-row {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mode {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--rp-muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.mode.active {
  border-color: rgba(40, 105, 131, 0.3);
  background: rgba(40, 105, 131, 0.1);
  color: var(--rp-pine);
}

.stack-pills {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-pills span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--iris);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── Workflow ─────────────────────────────────────────────────── */

.workflow {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
  padding: 72px 48px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(215, 130, 126, 0.08), transparent),
    rgba(255, 250, 243, 0.6);
}

.workflow-copy > p:not(.section-label) {
  max-width: 420px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-steps li:first-child {
  padding-top: 0;
}

.workflow-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.workflow-steps > li > span {
  padding-top: 3px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.workflow-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ── Final CTA ────────────────────────────────────────────────── */

.final-cta {
  padding: 40px 0 120px;
}

.cta-card {
  padding: 64px 32px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(215, 130, 126, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(144, 122, 169, 0.12), transparent 55%),
    rgba(255, 250, 243, 0.75);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-card > img {
  margin: 0 auto 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(180, 99, 122, 0.22);
}

.cta-card .section-label {
  margin-bottom: 16px;
}

.cta-card > p:not(.section-label) {
  max-width: 480px;
  margin: 20px auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────────── */

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

footer p {
  margin: 0;
}

.footer-author a {
  color: var(--iris);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-author a:hover {
  color: var(--text);
  border-bottom-color: rgba(144, 122, 169, 0.45);
}

footer > div:last-child {
  display: flex;
  justify-self: end;
  gap: 22px;
  font-weight: 500;
}

/* ── Responsive ───────────────────────────────────────────────── */

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

  .site-header nav {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 90px;
  }

  .signal-strip div:nth-child(2n) {
    border-right: 0;
  }

  .signal-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin: 18px 0 0;
    max-width: none;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 64px;
  }

  .workflow {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 28px;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
  }

  .footer-meta {
    grid-column: 1 / -1;
    order: 3;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .version-chip {
    display: none;
  }

  .hero {
    padding: 52px 0 40px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-shot {
    width: 100%;
    height: auto;
    aspect-ratio: 1400 / 847;
    object-fit: contain;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    margin: 40px 0 72px;
  }

  .signal-strip div {
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .features {
    padding-bottom: 80px;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 300px;
    padding: 24px;
  }

  .feature-card-wide {
    padding-top: 60px;
  }

  .workflow {
    padding: 32px 20px;
  }

  .final-cta {
    padding: 20px 0 90px;
  }

  .cta-card {
    padding: 48px 20px;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  footer > div:last-child {
    justify-self: auto;
  }
}

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

  .orb,
  .status-dot {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
