:root {
  --bg: #050b14;
  --bg-soft: #081321;
  --panel: #0d1b2b;
  --panel-2: #102235;
  --line: rgba(178, 217, 232, 0.15);
  --text: #ecf8f5;
  --muted: #9fb8bf;
  --emerald: #32e39a;
  --emerald-2: #77f2bd;
  --cyan: #3dd9ed;
  --violet: #8d7df4;
  --amber: #ffbd63;
  --active: var(--emerald);
  --active-soft: rgba(50, 227, 154, 0.13);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(50, 227, 154, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(61, 217, 237, 0.08), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 76px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.8);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-weight: 750; letter-spacing: -0.025em; }
.brand b { color: var(--emerald); }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(119, 242, 189, 0.46); border-radius: 9px; color: var(--emerald-2); background: rgba(50, 227, 154, 0.1); font-size: 0.85rem; }
nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 0.9rem; }
nav a:hover { color: var(--text); }
.header-cta { justify-self: end; padding: 10px 15px; border: 1px solid rgba(119, 242, 189, 0.35); border-radius: 999px; color: var(--emerald-2); font-size: 0.86rem; font-weight: 700; }
.header-cta:hover { background: rgba(50, 227, 154, 0.1); }

.hero { min-height: calc(100svh - 76px); display: grid; grid-template-columns: 0.94fr 1.06fr; align-items: center; gap: clamp(42px, 6vw, 86px); padding-block: 70px; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 34px; padding: 8px 12px; border: 1px solid rgba(50, 227, 154, 0.3); border-radius: 999px; background: rgba(50, 227, 154, 0.07); color: #b8efd5; font-size: 0.82rem; }
.status-pill span, .live-dot, .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 14px rgba(50, 227, 154, 0.8); }
.eyebrow { margin: 0 0 16px; color: var(--emerald-2); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero h1, .section-heading h2, .beta-copy h2 { margin: 0; font-size: clamp(3.25rem, 5.3vw, 5.85rem); line-height: 0.98; letter-spacing: -0.065em; }
.hero h1 em, .section-heading h2 em, .beta-copy h2 em { color: var(--emerald); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #bed0d4; font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 20px; border-radius: 12px; font-size: 0.9rem; font-weight: 800; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #03120c; background: linear-gradient(115deg, var(--emerald), #64f0b5); box-shadow: 0 16px 45px rgba(50, 227, 154, 0.16); }
.button.secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); }
.button.secondary:hover { border-color: rgba(119, 242, 189, 0.4); }

.command-centre { position: relative; padding: 22px; border: 1px solid rgba(119, 242, 189, 0.18); border-radius: 30px; background: linear-gradient(145deg, rgba(16, 34, 53, 0.92), rgba(7, 17, 30, 0.96)); box-shadow: 0 38px 90px rgba(0, 0, 0, 0.33); }
.command-centre::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(61, 217, 237, 0.25), transparent 38%, rgba(50, 227, 154, 0.18)); filter: blur(20px); }
.command-topline, .output-heading, .module-status-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.command-topline > div { display: flex; align-items: center; gap: 10px; }
.command-topline b { font-size: 0.93rem; }
.command-topline small { color: var(--muted); font-size: 0.78rem; }
.pulse { animation: pulse 2s infinite; }
.context-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.context-chip { display: flex; align-items: center; gap: 11px; min-height: 66px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, 0.025); text-align: left; cursor: pointer; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.context-chip:hover { transform: translateY(-2px); border-color: rgba(119, 242, 189, 0.35); }
.context-chip.is-active { border-color: color-mix(in srgb, var(--active) 58%, transparent); background: var(--active-soft); }
.chip-icon { flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(255, 255, 255, 0.08); color: var(--active); font-weight: 900; }
.context-chip > span:last-child { display: grid; line-height: 1.25; }
.context-chip b { font-size: 0.85rem; }
.context-chip small { margin-top: 4px; color: var(--muted); font-size: 0.75rem; }
.connection-lines { height: 44px; display: grid; grid-template-columns: 1fr 1fr auto 1fr 1fr; align-items: center; gap: 6px; padding-inline: 20px; }
.connection-lines i { height: 1px; background: linear-gradient(90deg, transparent, var(--active)); opacity: 0.45; }
.connection-lines i:nth-of-type(n+3) { background: linear-gradient(90deg, var(--active), transparent); }
.connection-lines span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid color-mix(in srgb, var(--active) 55%, transparent); border-radius: 50%; color: var(--active); background: var(--bg-soft); font-size: 0.7rem; font-weight: 900; }
.daily-output { padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: rgba(2, 9, 17, 0.56); }
.output-heading span { color: var(--active); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.14em; }
.output-heading small { color: var(--muted); font-size: 0.72rem; }
.daily-output h2 { margin: 10px 0 15px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.2; letter-spacing: -0.035em; }
.plan-items { display: grid; gap: 8px; }
.plan-items p { display: flex; gap: 11px; margin: 0; color: #bed0d4; font-size: 0.84rem; }
.plan-items span { color: var(--active); font-weight: 800; }
.build-button, .replay-flow, .play-context { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 16px; border: 0; border-radius: 12px; background: var(--active); color: #04120d; font-size: 0.88rem; font-weight: 850; cursor: pointer; }
.build-button[disabled], .play-context[disabled] { cursor: wait; opacity: 0.7; }
.build-status, .context-live { min-height: 22px; margin: 10px 2px 0; color: var(--muted); font-size: 0.78rem; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); }
.proof-strip div { min-height: 126px; padding: 26px clamp(18px, 3vw, 45px); display: grid; align-content: center; gap: 3px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip b { color: var(--text); font-size: 1.05rem; }
.proof-strip span { color: var(--muted); font-size: 0.82rem; }

.modules, .system { padding-block: clamp(92px, 11vw, 150px); }
.section-heading { display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: end; gap: 60px; }
.section-heading h2, .beta-copy h2 { font-size: clamp(2.9rem, 5vw, 5.2rem); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.module-tabs { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.module-tabs button { min-height: 68px; padding: 14px 16px; border: 0; border-right: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); color: var(--muted); text-align: left; cursor: pointer; }
.module-tabs button:last-child { border-right: 0; }
.module-tabs button span { margin-right: 9px; color: #637d85; font-size: 0.72rem; }
.module-tabs button[aria-selected="true"] { color: var(--text); background: var(--active-soft); box-shadow: inset 0 -3px var(--active); }
.module-tabs button[aria-selected="true"] span { color: var(--active); }
.module-panel { display: grid; grid-template-columns: 0.9fr 1fr 0.72fr; gap: 24px; margin-top: 22px; padding: 28px; border: 1px solid color-mix(in srgb, var(--active) 25%, var(--line)); border-radius: var(--radius); background: linear-gradient(140deg, color-mix(in srgb, var(--active-soft) 52%, transparent), rgba(255, 255, 255, 0.02) 50%); }
.module-story { padding: 14px 8px 14px 4px; }
.module-kicker { margin: 0 0 16px; color: var(--active); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.14em; }
.module-story h3 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; letter-spacing: -0.055em; }
.module-story > p:not(.module-kicker) { margin: 22px 0 0; color: var(--muted); }
.module-insight { margin-top: 28px; padding: 16px; border-left: 2px solid var(--active); background: rgba(255, 255, 255, 0.025); }
.module-insight span { color: var(--active); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.module-insight p { margin: 7px 0 0; color: #d5e7e6; font-size: 0.9rem; }
.module-status-row { justify-content: flex-start; flex-wrap: wrap; margin-top: 24px; color: #c7ddda; font-size: 0.78rem; }
.module-status-row .live-dot { width: 7px; height: 7px; }
.module-status-row small { flex-basis: 100%; margin-left: 17px; color: #78939b; font-size: 0.74rem; }
.flow-lab { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(3, 10, 18, 0.58); }
.flow-label { display: grid; grid-template-columns: 1fr 1fr 1fr; color: #6f8991; font-size: 0.66rem; font-weight: 850; letter-spacing: 0.12em; }
.flow-label span:nth-child(2) { text-align: center; }
.flow-label span:last-child { text-align: right; }
.flow-steps { position: relative; display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.flow-steps::before { content: ""; position: absolute; left: 17px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(var(--active), transparent); opacity: 0.35; }
.flow-steps li { position: relative; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; min-height: 62px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, 0.022); opacity: 0.52; transform: translateX(0); transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease; }
.flow-steps li.is-on { opacity: 1; transform: translateX(4px); border-color: color-mix(in srgb, var(--active) 40%, transparent); }
.flow-steps .step-number { z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--bg-soft); color: var(--active); font-size: 0.68rem; font-weight: 900; }
.flow-steps b { display: block; font-size: 0.85rem; }
.flow-steps small { display: block; color: var(--muted); font-size: 0.74rem; line-height: 1.35; }
.replay-flow { min-height: 42px; margin-top: 14px; border: 1px solid color-mix(in srgb, var(--active) 36%, transparent); background: var(--active-soft); color: var(--active); }
.phone-wrap { position: relative; display: grid; place-items: center; min-height: 580px; }
.phone-glow { position: absolute; width: 80%; height: 65%; border-radius: 50%; background: var(--active); filter: blur(90px); opacity: 0.11; }
.phone { position: relative; z-index: 1; width: min(100%, 288px); min-height: 558px; padding: 13px; border: 6px solid #1e3547; border-radius: 40px; background: #07121e; box-shadow: 0 35px 70px rgba(0, 0, 0, 0.42); }
.phone-bar { height: 28px; display: flex; align-items: center; justify-content: space-between; padding: 0 9px; color: #849da4; font-size: 0.58rem; }
.phone-bar i { width: 65px; height: 18px; border-radius: 999px; background: #020711; }
.phone-appbar { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 9px; padding: 10px 5px 15px; }
.phone-symbol { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--active-soft); color: var(--active); font-weight: 900; }
.phone-appbar div { display: grid; line-height: 1.15; }
.phone-appbar small { color: var(--active); font-size: 0.55rem; letter-spacing: 0.12em; }
.phone-appbar b { margin-top: 5px; font-size: 0.86rem; }
.phone-appbar button { border: 0; background: transparent; color: var(--muted); }
.phone-metric { padding: 14px; border: 1px solid color-mix(in srgb, var(--active) 25%, transparent); border-radius: 16px; background: var(--active-soft); }
.phone-metric span, .phone-metric small { display: block; color: var(--muted); font-size: 0.62rem; }
.phone-metric strong { display: block; margin: 2px 0; color: var(--active); font-size: 1.7rem; line-height: 1.15; }
.phone-list { display: grid; gap: 8px; margin-top: 10px; }
.phone-list article { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 9px; padding: 9px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, 0.025); }
.phone-list .item-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--active); background: var(--active-soft); font-size: 0.65rem; font-weight: 900; }
.phone-list div { display: grid; line-height: 1.25; }
.phone-list b { font-size: 0.72rem; }
.phone-list small { color: var(--muted); font-size: 0.6rem; }
.phone-list time { color: var(--active); font-size: 0.58rem; }
.phone-recommendation { margin-top: 10px; padding: 11px; border-radius: 13px; background: linear-gradient(120deg, var(--active-soft), rgba(61, 217, 237, 0.06)); }
.phone-recommendation span { color: var(--active); font-size: 0.54rem; font-weight: 850; letter-spacing: 0.12em; }
.phone-recommendation p { margin: 5px 0 0; font-size: 0.68rem; line-height: 1.42; }
.phone-nav { position: absolute; left: 18px; right: 18px; bottom: 15px; display: flex; justify-content: space-around; padding: 10px; border-radius: 13px; background: #0d1d2b; color: #6f8991; font-size: 0.58rem; }
.phone-nav .active { color: var(--active); }

.intelligence { padding-block: clamp(92px, 11vw, 150px); background: linear-gradient(180deg, rgba(13, 27, 43, 0.68), rgba(5, 11, 20, 0.2)); border-block: 1px solid var(--line); }
.section-heading.compact h2 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); }
.context-story { display: grid; grid-template-columns: 0.85fr 120px 1fr; align-items: center; margin-top: 65px; }
.context-stack { display: grid; gap: 11px; }
.context-stack article { padding: 18px 20px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, 0.025); opacity: 0.48; transform: translateX(0); transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease; }
.context-stack article.is-on { opacity: 1; transform: translateX(8px); border-color: rgba(119, 242, 189, 0.3); }
.context-stack span { display: block; color: var(--emerald-2); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.12em; }
.context-stack b { display: block; margin-top: 6px; font-size: 0.92rem; }
.context-stack small { color: var(--muted); font-size: 0.73rem; }
.merge-rail { display: grid; justify-items: center; color: var(--muted); }
.merge-rail i { width: 1px; height: 82px; background: linear-gradient(transparent, var(--emerald), transparent); }
.merge-rail span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.68rem; writing-mode: vertical-rl; }
.coach-card { position: relative; padding: clamp(26px, 4vw, 48px); border: 1px solid rgba(119, 242, 189, 0.22); border-radius: 30px; background: linear-gradient(140deg, rgba(50, 227, 154, 0.1), rgba(8, 19, 33, 0.95) 45%); overflow: hidden; }
.coach-orb { position: absolute; right: -35px; top: -38px; display: grid; place-items: center; width: 150px; height: 150px; border: 1px solid rgba(119, 242, 189, 0.3); border-radius: 50%; color: rgba(119, 242, 189, 0.45); background: radial-gradient(circle, rgba(50, 227, 154, 0.2), transparent 65%); font-size: 1.1rem; font-weight: 900; }
.coach-card h3 { position: relative; max-width: 620px; margin: 0 0 24px; font-size: clamp(2rem, 3.2vw, 3.5rem); line-height: 1.04; letter-spacing: -0.05em; }
.coach-plan { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.coach-plan p { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; color: #c6d9d7; font-size: 0.82rem; }
.coach-plan span { display: block; color: var(--emerald-2); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.play-context { width: auto; gap: 30px; background: var(--emerald); margin-top: 20px; }

.architecture { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 10px; margin-top: 60px; }
.architecture article { min-height: 178px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255, 255, 255, 0.025); }
.architecture small { color: var(--emerald-2); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.12em; }
.architecture b { display: block; margin-top: 22px; font-size: 0.95rem; }
.architecture p { margin: 7px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.architecture > i { align-self: center; color: var(--emerald); font-style: normal; }
.workflow-note { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; margin-top: 18px; padding: 17px 20px; border-left: 2px solid var(--cyan); background: rgba(61, 217, 237, 0.05); }
.workflow-note span { color: var(--cyan); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.workflow-note p { margin: 0; color: #bdd5d7; font-size: 0.86rem; }

.beta-section { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: end; gap: 70px; padding-block: 100px 120px; border-top: 1px solid var(--line); }
.beta-copy p:last-child { max-width: 680px; margin: 25px 0 0; color: var(--muted); }
.beta-actions { display: grid; gap: 10px; }
footer { min-height: 112px; padding: 28px max(28px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }
footer p { margin: 0; }
footer > span { justify-self: end; }

@keyframes pulse { 50% { transform: scale(1.35); opacity: 0.55; } }
@keyframes sweep { from { background-position: 100% 0; } to { background-position: -100% 0; } }
.daily-output.is-building, .coach-card.is-building { background-image: linear-gradient(100deg, transparent 15%, rgba(50, 227, 154, 0.08) 42%, transparent 68%); background-size: 220% 100%; animation: sweep 1.25s linear infinite; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 90px; }
  .hero-copy { max-width: 800px; }
  .command-centre { max-width: 760px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 700px; }
  .module-panel { grid-template-columns: 1fr 1fr; }
  .module-story { grid-column: 1 / -1; }
  .context-story { grid-template-columns: 0.8fr 80px 1.2fr; }
  .architecture { grid-template-columns: 1fr 1fr; }
  .architecture > i { display: none; }
  .architecture article:last-of-type { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { height: 68px; padding-inline: 14px; }
  .header-cta { padding: 8px 11px; font-size: 0.76rem; }
  .brand { font-size: 0.92rem; }
  .brand-mark { width: 28px; height: 28px; }
  .hero { padding-block: 58px 72px; gap: 48px; }
  .status-pill { margin-bottom: 26px; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-actions, .button { width: 100%; }
  .command-centre { padding: 15px; border-radius: 22px; }
  .context-grid { grid-template-columns: 1fr; }
  .context-chip { min-height: 58px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .module-tabs { display: flex; overflow-x: auto; margin-top: 40px; scrollbar-width: thin; }
  .module-tabs button { flex: 0 0 auto; min-width: 158px; border-bottom: 0; }
  .module-panel { grid-template-columns: 1fr; padding: 17px; }
  .module-story, .flow-lab { padding-inline: 4px; }
  .phone-wrap { min-height: 590px; }
  .context-story { grid-template-columns: 1fr; gap: 22px; }
  .merge-rail { grid-template-columns: 1fr auto 1fr; }
  .merge-rail i { width: 100%; height: 1px; }
  .merge-rail span { writing-mode: initial; }
  .coach-plan { grid-template-columns: 1fr; }
  .play-context { width: 100%; }
  .architecture { grid-template-columns: 1fr; }
  .architecture article:last-of-type { grid-column: auto; }
  .workflow-note { grid-template-columns: 1fr; gap: 6px; }
  .beta-section { grid-template-columns: 1fr; gap: 38px; padding-block: 80px 90px; }
  footer { grid-template-columns: 1fr; justify-items: start; padding-inline: 18px; }
  footer > span { justify-self: start; }
}

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