:root {
  color-scheme: light;
  --navy: #101a2d;
  --navy-2: #15243b;
  --navy-3: #20324c;
  --paper: #f6f7f9;
  --white: #ffffff;
  --ink: #111c2f;
  --muted: #647187;
  --line: #dfe4eb;
  --sky: #74caf2;
  --sky-soft: #e7f7ff;
  --crawlit: #c51e70;
  --crawlit-soft: #fbe9f2;
  --doit: #9b7115;
  --trackit: #225be1;
  --fundit: #7b42dd;
  --commit: #11726f;
  --success: #17854c;
}

* { box-sizing: border-box; }
html { height: 100%; }
body {
  display: grid;
  grid-template-rows: 84px minmax(0, 1fr) 48px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }

.site-header {
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy);
  color: white;
}
.tutela-brand { justify-self: start; }
.tutela-brand img { display: block; width: 130px; height: auto; }
.product-title { display: flex; align-items: center; gap: 12px; }
.product-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--crawlit); font-weight: 900; }
.product-title > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.product-title strong { font-size: 1.12rem; letter-spacing: -.02em; }
.product-title strong i { color: var(--sky); font-style: normal; }
.product-title small { margin-top: 5px; color: #aab9cf; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.header-meta { display: flex; justify-self: end; gap: 8px; align-items: center; }
.header-meta span { padding: 6px 9px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 100px; color: #b8c4d5; font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.header-meta .vision-label { border-color: rgba(116, 202, 242, .35); color: var(--sky); }

.product-shell { display: grid; grid-template-columns: 340px minmax(0, 1fr); min-height: 0; overflow: hidden; }
.menu-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  padding: 34px 28px 24px;
  background: var(--navy-2);
  color: white;
}
.overline { margin: 0 0 13px; color: var(--crawlit); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.menu-intro h1 { max-width: 260px; margin: 0 0 28px; font-size: 1.55rem; line-height: 1.12; letter-spacing: -.035em; }
.menu-intro .overline { color: var(--sky); }
.product-menu { min-height: 0; padding-right: 4px; overflow-y: auto; scrollbar-color: rgba(255,255,255,.18) transparent; }
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #afbdd0;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  text-align: left;
}
.menu-item > span { color: #677892; font-size: .64rem; letter-spacing: .08em; }
.menu-item:hover { background: rgba(255,255,255,.05); color: white; }
.menu-item.is-active { background: white; color: var(--ink); box-shadow: 0 10px 22px rgba(0,0,0,.16); }
.menu-item.is-active::before { position: absolute; inset: 8px auto 8px 0; width: 3px; border-radius: 3px; background: var(--crawlit); content: ""; }
.menu-item.is-active > span { color: var(--crawlit); }
.ownership-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.ownership-note p { margin: 0; color: #91a2b9; font-size: .68rem; }
.ownership-note strong { color: white; }
.pulse { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 4px; border: 2px solid #86ddb0; border-radius: 50%; box-shadow: 0 0 0 5px rgba(134,221,176,.08); }

.content-panel { display: grid; grid-template-rows: minmax(0, 1fr) 58px; min-width: 0; min-height: 0; overflow: hidden; background: var(--paper); }
.content-scroll { min-height: 0; padding: clamp(42px, 6vh, 76px) clamp(34px, 6vw, 90px) 60px; overflow-x: hidden; overflow-y: auto; outline: none; overscroll-behavior: contain; scrollbar-gutter: stable; }
.view { width: min(1120px, 100%); margin: 0 auto; animation: reveal .28s ease-out; }
.view[hidden] { display: none; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.view-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr); column-gap: clamp(35px, 6vw, 80px); align-items: end; margin-bottom: 42px; }
.view-heading .overline { grid-column: 1 / -1; }
.view-heading h2 { margin: 0; font-size: clamp(2.45rem, 4.3vw, 4.6rem); line-height: .98; letter-spacing: -.055em; }
.standfirst { margin: 0 0 4px; color: var(--muted); font-size: 1.05rem; }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.problem-card { min-height: 190px; padding: 23px; background: white; }
.problem-card > span { color: var(--crawlit); font-size: .66rem; font-weight: 850; }
.problem-card strong { display: block; margin: 38px 0 8px; font-size: 1rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.vision-statement { display: grid; grid-template-columns: 94px 1fr; gap: 28px; align-items: center; margin-top: 24px; padding: 28px 32px; background: var(--navy); color: white; }
.big-c { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--crawlit); font-size: 1.65rem; font-weight: 900; }
.vision-statement .overline { margin-bottom: 7px; color: var(--sky); }
.vision-statement h3 { max-width: 800px; margin: 0; font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.22; letter-spacing: -.03em; }

.day-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 24px; }
.day-board { padding: 25px; border: 1px solid #dbe1e9; border-radius: 8px; background: white; box-shadow: 0 22px 50px rgba(23,37,59,.07); }
.board-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: .83rem; font-weight: 800; }
.board-top time { color: var(--muted); font-size: .7rem; font-weight: 650; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px #e6f5ed; }
.summary-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.summary-row span { padding: 12px; background: #f4f6f9; color: var(--muted); font-size: .68rem; }
.summary-row b { display: block; color: var(--ink); font-size: 1.2rem; }
.message-card { display: grid; grid-template-columns: 38px 1fr auto; gap: 13px; align-items: start; margin-top: 9px; padding: 14px; border: 1px solid var(--line); border-left: 3px solid var(--sky); border-radius: 4px; }
.message-card.priority { border-left-color: var(--crawlit); background: #fffafd; }
.avatar { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--crawlit-soft); color: var(--crawlit); font-size: .7rem; font-weight: 850; }
.avatar.blue { background: #e8f1ff; color: var(--trackit); }
.avatar.gold { background: #fbf4e5; color: var(--doit); }
.avatar.large { width: 70px; height: 70px; font-size: 1rem; }
.message-card strong { font-size: .78rem; }
.message-card p { margin: 1px 0 3px; font-size: .85rem; }
.message-card small { color: var(--muted); font-size: .64rem; }
.channel { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--navy); color: white; font-size: .61rem; font-weight: 850; }
.day-principles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.day-principles > div { padding: 24px; background: white; }
.day-principles span { color: var(--crawlit); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.day-principles h3 { margin: 22px 0 7px; font-size: 1rem; }
.day-principles p { margin: 0; color: var(--muted); font-size: .78rem; }

.channel-ribbon { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 25px; }
.channel-ribbon span { padding: 8px 11px; border: 1px solid #d9dfe8; border-radius: 100px; background: white; color: #536177; font-size: .7rem; font-weight: 750; }
.capability-grid { display: grid; gap: 12px; }
.capability-grid.three { grid-template-columns: repeat(3, 1fr); }
.capability { min-height: 170px; padding: 24px; border: 1px solid var(--line); background: white; }
.cap-icon { display: block; color: var(--crawlit); font-size: 1.5rem; line-height: 1; }
.capability h3 { margin: 30px 0 7px; font-size: 1rem; }
.capability p { margin: 0; color: var(--muted); font-size: .8rem; }

.translation-demo { display: grid; grid-template-columns: 1fr auto 1fr 1.15fr; gap: 12px; align-items: stretch; margin-bottom: 27px; }
.translation-demo > div { display: flex; flex-direction: column; justify-content: space-between; min-height: 150px; padding: 22px; border: 1px solid var(--line); background: white; }
.translation-demo small { color: var(--muted); font-size: .65rem; font-weight: 750; }
.translation-demo p { margin: 20px 0 0; font-size: 1.45rem; font-weight: 800; }
.translation-demo .translated { border-color: var(--sky); background: var(--sky-soft); }
.translation-demo .meaning { background: var(--navy); color: white; }
.translation-demo .meaning small { color: var(--sky); }
.translation-demo .meaning p { font-size: .92rem; font-weight: 600; }
.translate-arrow { align-self: center; color: var(--crawlit); font-size: 1.4rem; }
.intelligence-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.intelligence-list > div { padding: 23px; background: white; }
.intelligence-list strong { font-size: .9rem; }
.intelligence-list p { margin: 8px 0 0; color: var(--muted); font-size: .78rem; }

.flow-line { display: grid; grid-template-columns: repeat(9, auto); align-items: center; justify-content: space-between; gap: 8px; padding: 28px; border: 1px solid var(--line); background: white; }
.flow-line > div { display: flex; flex-direction: column; min-width: 90px; }
.flow-line span { color: var(--crawlit); font-size: .64rem; font-weight: 850; }
.flow-line strong { margin-top: 20px; font-size: .84rem; }
.flow-line small { color: var(--muted); font-size: .64rem; }
.flow-line > b { color: var(--sky); }
.action-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.action-columns > div { padding: 27px; background: var(--navy); color: white; }
.action-columns > div:last-child { background: var(--sky-soft); color: var(--ink); }
.action-columns .overline { color: var(--sky); }
.action-columns > div:last-child .overline { color: var(--crawlit); }
.action-columns h3 { margin: 0 0 17px; font-size: 1.25rem; }
.action-columns ul { display: grid; gap: 9px; margin: 0; padding-left: 18px; color: #aebbd0; font-size: .8rem; }
.action-columns > div:last-child ul { color: #536177; }

.contact-stage { display: grid; grid-template-columns: 1fr .8fr; gap: 18px; }
.call-card, .after-call { padding: 30px; border: 1px solid var(--line); background: white; }
.call-person { display: flex; gap: 17px; align-items: center; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.call-person > div { display: flex; flex-direction: column; }
.call-person small { color: var(--crawlit); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.call-person strong { margin-top: 7px; font-size: 1.2rem; }
.call-person p { margin: 2px 0 0; color: var(--muted); font-size: .75rem; }
.call-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 25px; }
.call-actions button { padding: 12px 8px; border: 1px solid var(--line); background: #f7f8fa; font-size: .72rem; font-weight: 750; }
.after-call .overline { color: var(--crawlit); }
.after-call ol { display: grid; gap: 1px; margin: 0; padding: 0; background: var(--line); list-style: none; }
.after-call li { display: grid; grid-template-columns: 36px 1fr; gap: 8px; padding: 13px; background: white; font-size: .8rem; font-weight: 750; }
.after-call li span { color: var(--crawlit); font-size: .62rem; }

.connection-table { border: 1px solid var(--line); background: white; }
.connection-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr .8fr; gap: 20px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: .75rem; }
.connection-row:last-child { border-bottom: 0; }
.connection-row.heading { background: var(--navy); color: #a9b8cd; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.connection-row > span:first-child { display: flex; flex-direction: column; }
.connection-row b { color: var(--ink); font-size: .8rem; }
.connection-row small { color: var(--muted); }
.connection-row em { justify-self: start; padding: 5px 8px; border-radius: 100px; background: #e7f5ed; color: var(--success); font-size: .62rem; font-style: normal; font-weight: 800; }
.boundary-note { margin: 15px 0 0; padding: 18px 22px; border-left: 3px solid var(--crawlit); background: var(--crawlit-soft); color: #5a6170; font-size: .82rem; }
.boundary-note strong { color: var(--ink); }

.boundary-map { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: stretch; }
.owner-boundary, .company-boundary { min-height: 310px; padding: 28px; border: 1px solid var(--line); background: white; }
.owner-boundary { border-top: 4px solid var(--crawlit); }
.company-boundary { border-top: 4px solid var(--trackit); }
.boundary-label { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.boundary-map h3 { margin: 35px 0 20px; font-size: 1.3rem; }
.boundary-items { display: flex; flex-wrap: wrap; gap: 6px; }
.boundary-items span { padding: 6px 8px; border-radius: 3px; background: #f0f3f7; color: #536177; font-size: .67rem; }
.boundary-map section > p { margin: 25px 0 0; color: var(--muted); font-size: .78rem; }
.gate { align-self: center; color: var(--muted); font-size: .65rem; font-weight: 750; text-align: center; text-transform: uppercase; }
.gate b { display: block; margin-top: 8px; color: var(--crawlit); font-size: 1.4rem; }
.security-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 17px; }
.security-strip span { padding: 7px 10px; border: 1px solid var(--line); background: white; color: var(--muted); font-size: .66rem; font-weight: 700; }

.suite-route { display: grid; grid-template-columns: .8fr 170px 1.2fr; gap: 20px; align-items: center; }
.suite-origin { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; padding: 30px; background: var(--navy); color: white; text-align: center; }
.component-dot { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: white; font-size: 1rem; font-weight: 900; }
.crawlit-dot { background: var(--crawlit); }
.doit-dot { background: var(--doit); }
.trackit-dot { background: var(--trackit); }
.fundit-dot { background: var(--fundit); }
.commit-dot { background: var(--commit); }
.suite-origin strong { margin-top: 25px; font-size: 1.3rem; }
.suite-origin small { color: #9eacc1; }
.route-gate { color: var(--muted); font-size: .67rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.route-gate b { display: block; margin-top: 10px; color: var(--crawlit); font-size: 1.6rem; }
.suite-targets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.suite-targets { filter: grayscale(1); opacity: .58; }
.suite-targets > div { display: flex; gap: 13px; align-items: center; min-height: 120px; padding: 18px; border: 1px solid var(--line); background: white; }
.suite-targets .component-dot { flex: 0 0 auto; width: 40px; height: 40px; font-size: .75rem; }
.suite-targets p { display: flex; flex-direction: column; margin: 0; }
.suite-targets small { color: var(--muted); font-size: .66rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 24px; color: var(--crawlit); font-size: .76rem; font-weight: 850; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }

.setup-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.setup-timeline { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.setup-timeline > div { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 18px 20px; background: white; }
.setup-timeline > div > span { color: var(--crawlit); font-size: .62rem; font-weight: 850; }
.setup-timeline p { display: flex; flex-direction: column; margin: 0; }
.setup-timeline strong { font-size: .82rem; }
.setup-timeline small { margin-top: 4px; color: var(--muted); font-size: .68rem; }
.guide-card { overflow: hidden; border: 1px solid #273c59; background: var(--navy); color: white; }
.guide-head { display: flex; gap: 14px; align-items: center; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.voice-wave { color: var(--sky); font-size: 1.1rem; letter-spacing: 3px; }
.guide-head > div { display: flex; flex-direction: column; }
.guide-head strong { font-size: .8rem; }
.guide-head small { color: #92a5be; font-size: .64rem; }
.guide-screen { margin: 18px; padding: 17px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.guide-screen p { margin: 0 0 13px; font-size: .78rem; font-weight: 650; }
.guide-screen ol { display: flex; flex-wrap: wrap; gap: 5px; margin: 0 0 16px; padding: 0; color: #a9b9ce; font-size: .64rem; list-style: none; }
.guide-screen li:not(:last-child)::after { margin-left: 5px; color: var(--sky); content: "→"; }
.guide-screen button { width: 100%; padding: 9px; border: 0; background: var(--sky); color: var(--navy); font-size: .7rem; font-weight: 850; }
.guide-note { margin: 0; padding: 0 20px 19px; color: #91a2b9; font-size: .65rem; }
.continuity-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; background: var(--line); border: 1px solid var(--line); }
.continuity-row span { display: flex; flex-direction: column; padding: 17px; background: white; color: var(--muted); font-size: .68rem; }
.continuity-row b { color: var(--ink); font-size: .76rem; }

.content-footer { display: grid; grid-template-columns: auto minmax(100px, 1fr) auto; gap: 17px; align-items: center; padding: 0 clamp(34px, 6vw, 90px); border-top: 1px solid var(--line); background: white; }
.content-footer > span { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.progress-track { height: 2px; overflow: hidden; background: #e4e8ee; }
.progress-track span { display: block; width: 10%; height: 100%; background: var(--crawlit); transition: width .25s ease; }
.content-footer button { display: flex; gap: 12px; align-items: center; padding: 0; border: 0; background: none; color: var(--ink); cursor: pointer; font-size: .72rem; font-weight: 800; }
.content-footer button span { color: var(--crawlit); font-size: 1rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(24px, 4vw, 64px); border-top: 1px solid rgba(255,255,255,.1); background: var(--navy); color: #7f90a8; font-size: .64rem; letter-spacing: .06em; }
.site-footer a { justify-self: start; color: #a5b3c6; text-decoration: none; text-transform: uppercase; }
.site-footer p { margin: 0; }
.site-footer .credit { justify-self: end; opacity: .72; }

@media (max-width: 1050px) {
  .product-shell { grid-template-columns: 290px minmax(0, 1fr); }
  .menu-panel { padding-inline: 22px; }
  .view-heading { grid-template-columns: 1fr; }
  .standfirst { max-width: 760px; margin-top: 22px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .translation-demo { grid-template-columns: 1fr auto 1fr; }
  .translation-demo .meaning { grid-column: 1 / -1; min-height: 110px; }
  .flow-line { grid-template-columns: repeat(5, 1fr); }
  .flow-line > b { display: none; }
  .suite-route { grid-template-columns: .7fr 120px 1.3fr; }
}

@media (max-width: 780px) {
  body { grid-template-rows: 70px minmax(0, 1fr) 42px; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .tutela-brand img { width: 108px; }
  .product-title { justify-self: end; }
  .product-title small { display: none; }
  .product-mark { width: 34px; height: 34px; }
  .header-meta { display: none; }
  .product-shell { grid-template-columns: 1fr; grid-template-rows: 57px minmax(0, 1fr); }
  .menu-panel { display: block; padding: 7px 12px; overflow: hidden; }
  .menu-intro, .ownership-note { display: none; }
  .product-menu { display: flex; gap: 5px; height: 100%; padding: 0 0 4px; overflow-x: auto; overflow-y: hidden; }
  .menu-item { display: flex; flex: 0 0 auto; gap: 6px; align-items: center; width: auto; padding: 8px 11px; white-space: nowrap; }
  .menu-item.is-active::before { inset: auto 8px 1px; width: auto; height: 2px; }
  .content-scroll { padding: 36px 20px 44px; }
  .content-panel { grid-template-rows: minmax(0, 1fr) 52px; }
  .content-footer { grid-template-columns: auto 1fr; padding-inline: 20px; }
  .content-footer .progress-track { display: none; }
  .view-heading { margin-bottom: 30px; }
  .view-heading h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .standfirst { font-size: .92rem; }
  .problem-grid, .capability-grid.three, .intelligence-list, .action-columns, .contact-stage, .setup-layout { grid-template-columns: 1fr; }
  .problem-card { min-height: 150px; }
  .vision-statement { grid-template-columns: 54px 1fr; padding: 22px; }
  .big-c { width: 48px; height: 48px; }
  .day-layout { grid-template-columns: 1fr; }
  .translation-demo { grid-template-columns: 1fr; }
  .translate-arrow { transform: rotate(90deg); }
  .translation-demo .meaning { grid-column: auto; }
  .flow-line { grid-template-columns: 1fr; }
  .flow-line > div { display: grid; grid-template-columns: 28px .8fr 1fr; gap: 8px; align-items: center; }
  .flow-line strong { margin: 0; }
  .connection-row { grid-template-columns: 1.2fr .8fr; gap: 9px; }
  .connection-row > span:nth-child(3), .connection-row.heading > span:nth-child(3) { display: none; }
  .boundary-map { grid-template-columns: 1fr; }
  .gate { padding: 16px; }
  .gate b { transform: rotate(90deg); }
  .suite-route { grid-template-columns: 1fr; }
  .suite-origin { min-height: 200px; }
  .route-gate { padding: 8px; }
  .route-gate b { transform: rotate(90deg); }
  .continuity-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .site-footer > p:not(.credit) { display: none; }
}

@media (max-width: 480px) {
  .product-title strong { font-size: .92rem; }
  .product-title .product-mark { display: none; }
  .summary-row, .call-actions, .suite-targets { grid-template-columns: 1fr; }
  .summary-row span { display: flex; gap: 8px; align-items: center; }
  .message-card { grid-template-columns: 36px 1fr; }
  .message-card .channel { display: none; }
  .connection-row { grid-template-columns: 1fr; }
  .connection-row.heading { display: none; }
  .connection-row > span:nth-child(2) { display: none; }
  .content-footer button { max-width: 220px; justify-self: end; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  .view { animation: none; }
  .progress-track span { transition: none; }
}
