:root {
  --ink: #0d1117;
  --ink-soft: #171d25;
  --charcoal: #222a33;
  --slate: #56616e;
  --muted: #78828e;
  --paper: #f3f5f6;
  --paper-warm: #f7f5f1;
  --panel: #ffffff;
  --line: #dce2e6;
  --line-dark: rgba(255, 255, 255, 0.14);
  --teal: #19a8a3;
  --teal-dark: #0d827f;
  --teal-soft: #dff6f4;
  --coral: #f06b5d;
  --coral-soft: #fff0ed;
  --gold: #c89232;
  --gold-soft: #fbf2dc;
  --green: #20835f;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(13, 17, 23, 0.14);
  --shadow-soft: 0 12px 30px rgba(13, 17, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  margin: 0;
}

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

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

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

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

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-150%);
  z-index: 100;
}

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

.page-frame {
  margin: 0 auto;
  max-width: 1220px;
  width: min(100% - 40px, 1220px);
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 226, 230, 0.9);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px max(20px, calc((100vw - 1220px) / 2));
  position: sticky;
  top: 0;
  z-index: 30;
}

@supports (backdrop-filter: blur(16px)) {
  .site-header {
    backdrop-filter: blur(16px);
  }
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: fit-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 44px;
}

.brand-copy {
  display: grid;
  line-height: 1.16;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 760;
}

.main-nav,
.header-actions,
.hero-actions,
.final-actions {
  align-items: center;
  display: flex;
}

.main-nav {
  gap: 24px;
}

.main-nav a {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.product-link:hover,
.product-link:focus-visible {
  color: var(--teal-dark);
}

.header-actions,
.hero-actions,
.final-actions {
  gap: 10px;
}

.product-link {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 10px 6px;
}

.header-cta,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 880;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 12px 28px rgba(25, 168, 163, 0.23);
  color: #061716;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button.dark-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: #31bbb5;
  border-color: #31bbb5;
  box-shadow: 0 16px 34px rgba(25, 168, 163, 0.31);
  transform: translateY(-1px);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.dark-outline:hover,
.button.dark-outline:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.56);
  transform: translateY(-1px);
}

a:focus-visible {
  outline: 3px solid rgba(25, 168, 163, 0.38);
  outline-offset: 3px;
}

.hero {
  align-items: center;
  background: var(--ink);
  display: flex;
  isolation: isolate;
  min-height: min(730px, calc(100svh - 128px));
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

.hero-image,
.hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 13, 18, 0.98) 0%, rgba(10, 13, 18, 0.9) 38%, rgba(10, 13, 18, 0.34) 69%, rgba(10, 13, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 13, 18, 0.45), rgba(10, 13, 18, 0.04));
  z-index: -1;
}

.hero-content {
  color: #fff;
}

.eyebrow,
.panel-kicker,
.product-type {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  color: #6fddd7;
  margin-bottom: 13px;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

.eyebrow.light {
  color: #82e2dc;
}

h1 {
  color: #fff;
  font-size: 5.5rem;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
}

h2 {
  font-size: 3.15rem;
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.16rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 9px;
}

.hero-copy {
  color: rgba(241, 245, 249, 0.9);
  font-size: 1.22rem;
  margin-bottom: 0;
  max-width: 670px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 28px;
}

.release-note {
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.88rem;
  font-weight: 730;
  margin: 11px 0 0;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-signals span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 780;
  padding: 8px 10px;
}

.signal-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  min-height: 92px;
}

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

.signal-grid article {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 20px;
}

.signal-grid article:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.section {
  padding: 96px 0;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  margin-bottom: 38px;
}

.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.section-intro > p,
.section-intro.narrow > p,
.trust-copy > p,
.products-intro > p {
  color: var(--slate);
  font-size: 1.08rem;
}

.section-intro.narrow {
  display: block;
  max-width: 780px;
}

.section-intro.narrow h2 {
  margin-bottom: 16px;
}

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

.workspace-shell {
  background: var(--ink);
  border: 1px solid rgba(13, 17, 23, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 700px;
  overflow: hidden;
}

.workspace-sidebar {
  background: #151a21;
  border-right: 1px solid var(--line-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
}

.workspace-brand {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 2px 4px 18px;
}

.sherry-mark {
  align-items: center;
  background: var(--teal);
  border-radius: var(--radius);
  color: #061716;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 950;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.workspace-brand div,
.workspace-status div {
  display: grid;
}

.workspace-brand strong,
.workspace-status strong {
  font-size: 0.92rem;
}

.workspace-brand div span,
.workspace-status div span {
  color: #8f9aa8;
  font-size: 0.72rem;
}

.new-brief {
  background: #242b34;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 840;
  margin-bottom: 20px;
  padding: 11px 12px;
  text-align: center;
}

.new-brief:hover,
.new-brief:focus-visible {
  border-color: var(--teal);
  color: #7ce3de;
}

.workspace-sidebar nav {
  display: grid;
  gap: 5px;
}

.workspace-sidebar nav a {
  align-items: center;
  border-radius: var(--radius);
  color: #aeb7c2;
  display: flex;
  font-size: 0.84rem;
  font-weight: 760;
  gap: 10px;
  padding: 10px;
}

.workspace-sidebar nav a span {
  color: #687482;
  font-size: 0.68rem;
  font-weight: 900;
}

.workspace-sidebar nav a.active {
  background: #242c35;
  color: #fff;
}

.workspace-sidebar nav a.active span {
  color: #64d5cf;
}

.workspace-status {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding: 18px 5px 2px;
}

.status-dot {
  background: #4cd49c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(76, 212, 156, 0.12);
  height: 8px;
  width: 8px;
}

.workspace-main {
  background: #eef1f3;
  min-width: 0;
}

.workspace-topbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 20px;
}

.workspace-topbar > div:first-child {
  display: grid;
}

.workspace-topbar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.workspace-topbar strong {
  font-size: 1.06rem;
}

.topbar-actions {
  display: flex;
  gap: 8px;
}

.topbar-actions span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: 7px 9px;
}

.workspace-content {
  padding: 20px;
}

.briefing-row {
  align-items: center;
  background: var(--ink-soft);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 22px;
}

.panel-kicker {
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.briefing-row .panel-kicker {
  color: #71ddd7;
}

.briefing-row h3 {
  font-size: 1.36rem;
  margin-bottom: 7px;
}

.briefing-row p:last-child {
  color: #b7c0ca;
  margin-bottom: 0;
  max-width: 680px;
}

.readiness {
  border-left: 1px solid var(--line-dark);
  display: grid;
  min-width: 124px;
  padding-left: 24px;
}

.readiness strong {
  color: #6fe0da;
  font-size: 2rem;
  line-height: 1;
}

.readiness span {
  color: #aeb7c2;
  font-size: 0.72rem;
  font-weight: 760;
  margin-top: 5px;
}

.metric-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.metric-row article,
.work-panel,
.decision-panel article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-row article {
  display: grid;
  padding: 16px;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.metric-row strong {
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 4px 0;
}

.metric-row small {
  color: var(--slate);
  font-size: 0.72rem;
}

.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  margin-top: 14px;
}

.work-panel {
  padding: 18px;
}

.panel-heading {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-heading .panel-kicker {
  margin-bottom: 3px;
}

.panel-heading h3 {
  margin-bottom: 0;
}

.panel-heading > span {
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  padding: 6px 8px;
  white-space: nowrap;
}

.priority-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.priority-list li {
  align-items: center;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  min-width: 0;
  padding: 11px;
}

.priority-list li:first-child {
  background: var(--teal-soft);
  border-color: rgba(25, 168, 163, 0.22);
}

.priority-number {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.67rem;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 34px;
}

.priority-list div {
  display: grid;
  min-width: 0;
}

.priority-list strong {
  font-size: 0.82rem;
}

.priority-list div span,
.priority-list small {
  color: var(--muted);
  font-size: 0.68rem;
}

.decision-panel {
  display: grid;
  gap: 9px;
}

.decision-panel .panel-heading {
  margin-bottom: 0;
}

.decision-panel article {
  box-shadow: none;
  padding: 12px;
}

.decision-label {
  background: var(--teal-soft);
  border-radius: 5px;
  color: var(--teal-dark);
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  margin-bottom: 8px;
  padding: 4px 6px;
  text-transform: uppercase;
}

.decision-label.coral {
  background: var(--coral-soft);
  color: #b44a3f;
}

.decision-panel article strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.decision-panel article p {
  color: var(--slate);
  font-size: 0.72rem;
  margin-bottom: 9px;
}

.decision-meta {
  color: var(--muted);
  display: flex;
  font-size: 0.64rem;
  justify-content: space-between;
}

.capabilities-section {
  background: #fff;
}

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

.capability-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 22px;
}

.capability-grid article:nth-child(2) {
  background: #f5fbfa;
}

.capability-grid article:nth-child(3) {
  background: #fff8f6;
}

.capability-grid article:nth-child(4) {
  background: #fcfaf4;
}

.capability-index {
  align-items: center;
  background: #edf0f2;
  border-radius: var(--radius);
  color: var(--charcoal);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 32px;
  width: 42px;
}

.capability-index.teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.capability-index.coral {
  background: var(--coral-soft);
  color: #b44a3f;
}

.capability-index.gold {
  background: var(--gold-soft);
  color: #8b621d;
}

.capability-grid h3 {
  font-size: 1.22rem;
}

.capability-grid p {
  color: var(--slate);
  margin-bottom: 24px;
}

.capability-grid article > strong {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: auto;
}

.workflow-section {
  background: var(--ink);
  color: #fff;
}

.workflow-layout {
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.sticky-intro {
  align-self: start;
  display: block;
  margin-bottom: 0;
  position: sticky;
  top: 112px;
}

.sticky-intro h2 {
  color: #fff;
}

.sticky-intro > p:last-child {
  color: #b9c2cc;
  font-size: 1.08rem;
}

.workflow-list {
  border-top: 1px solid var(--line-dark);
}

.workflow-list article {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 22px;
  grid-template-columns: 48px 1fr;
  padding: 26px 0;
}

.workflow-list article > span {
  color: #6ddad4;
  font-size: 0.78rem;
  font-weight: 900;
  padding-top: 4px;
}

.workflow-list article div > p:first-child {
  color: #7d8996;
  font-size: 0.7rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.workflow-list h3 {
  color: #fff;
  font-size: 1.35rem;
}

.workflow-list article div > p:last-child {
  color: #aeb8c2;
  margin-bottom: 0;
}

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

.trust-layout {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.trust-copy h2 {
  max-width: 550px;
}

.trust-points {
  border-top: 1px solid #d7d9d8;
}

.trust-points article {
  border-bottom: 1px solid #d7d9d8;
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 0.7fr 1.3fr;
  padding: 21px 0;
}

.trust-points span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-points strong {
  font-size: 0.94rem;
}

.trust-points p {
  color: var(--slate);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.products-section {
  background: #fff;
}

.products-intro {
  align-items: end;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
}

.sherry-card {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: #fff;
}

.lead-card {
  background: #eef4ff;
  border-color: #d7e4fb;
}

.product-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.product-monogram {
  align-items: center;
  background: var(--teal);
  border-radius: var(--radius);
  color: #071817;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  width: 46px;
}

.lead-card .product-monogram {
  background: #2563eb;
  color: #fff;
}

.product-state {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #b9c3ce;
  font-size: 0.7rem;
  font-weight: 850;
  padding: 7px 9px;
}

.product-state.live {
  background: #e6f6ef;
  border-color: #caebdd;
  color: var(--green);
}

.product-type {
  color: #68d7d1;
  margin-bottom: 8px;
}

.lead-card .product-type {
  color: #2563eb;
}

.product-card h3 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sherry-card h3 {
  color: #fff;
}

.product-card p:not(.product-type) {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 520px;
}

.sherry-card p:not(.product-type) {
  color: #b7c1cc;
}

.product-card > a {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.lead-card > a {
  border-color: #cad9ef;
  color: #1d4ed8;
}

.product-card > a span {
  font-size: 1.2rem;
}

.final-cta {
  background: #11171e;
  color: #fff;
  padding: 88px 0;
}

.final-layout {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
}

.final-layout h2 {
  color: #fff;
  max-width: 760px;
}

.final-layout p:not(.eyebrow) {
  color: #b6c0cb;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  background: #0b0f14;
  border-top: 1px solid var(--line-dark);
  color: #8e99a6;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 24px max(20px, calc((100vw - 1220px) / 2));
}

.footer-brand {
  color: #fff;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer nav a {
  color: #b8c1cb;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #6edbd5;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

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

  .workspace-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

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

@media (max-width: 820px) {
  .section-intro,
  .workflow-layout,
  .trust-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .sticky-intro {
    position: static;
  }

  .workspace-shell {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  .workspace-brand {
    padding-bottom: 0;
  }

  .new-brief {
    margin-bottom: 0;
  }

  .workspace-sidebar nav,
  .workspace-status {
    display: none;
  }

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

  .signal-grid article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

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

  .trust-points article {
    grid-template-columns: 38px 0.8fr 1.2fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .page-frame {
    width: min(100% - 28px, 1220px);
  }

  .site-header {
    min-height: 64px;
    padding: 9px 14px;
  }

  .brand-copy,
  .product-link {
    display: none;
  }

  .brand-mark {
    height: 38px;
    width: 42px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 12px;
  }

  .hero {
    min-height: min(620px, calc(100svh - 126px));
    padding: 36px 0;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10, 13, 18, 0.98), rgba(10, 13, 18, 0.77)),
      linear-gradient(0deg, rgba(10, 13, 18, 0.58), rgba(10, 13, 18, 0.08));
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy,
  .section-intro > p,
  .section-intro.narrow > p,
  .trust-copy > p,
  .products-intro > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    display: grid;
  }

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

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

  .hero-signals span {
    text-align: center;
  }

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

  .signal-grid article,
  .signal-grid article:nth-child(2),
  .signal-grid article:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 14px;
  }

  .signal-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-intro {
    gap: 16px;
    margin-bottom: 28px;
  }

  .workspace-shell {
    min-height: 0;
  }

  .workspace-sidebar {
    grid-template-columns: 1fr;
  }

  .new-brief {
    display: none;
  }

  .workspace-topbar {
    padding: 12px 14px;
  }

  .topbar-actions span:first-child {
    display: none;
  }

  .workspace-content {
    padding: 12px;
  }

  .briefing-row {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .readiness {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-top: 14px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row article {
    grid-template-columns: 1fr auto;
  }

  .metric-row strong {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .metric-row small {
    grid-column: 1;
  }

  .priority-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .priority-list small {
    display: none;
  }

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

  .capability-grid article {
    min-height: 240px;
  }

  .workflow-layout {
    gap: 36px;
  }

  .workflow-list article {
    gap: 12px;
    grid-template-columns: 36px 1fr;
  }

  .trust-layout {
    gap: 34px;
  }

  .trust-points article {
    gap: 6px 12px;
    grid-template-columns: 34px 1fr;
  }

  .trust-points p {
    grid-column: 2;
  }

  .product-card {
    min-height: 350px;
    padding: 22px;
  }

  .product-card-top {
    margin-bottom: 46px;
  }

  .product-card h3 {
    font-size: 2.15rem;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-actions {
    align-items: stretch;
    display: grid;
  }

  .site-footer {
    align-items: start;
    display: grid;
    padding: 22px 14px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .mobile-cta {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: block;
    left: 0;
    padding: 9px 14px 13px;
    position: fixed;
    right: 0;
    z-index: 40;
  }

  .mobile-cta a {
    align-items: center;
    background: var(--teal);
    border-radius: var(--radius);
    color: #061716;
    display: flex;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header-cta {
    font-size: 0.88rem;
  }
}

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