:root {
  color-scheme: light;
  --ink: #0d1117;
  --ink-2: #374151;
  --ink-3: #687280;
  --paper: #f4f6f8;
  --white: #ffffff;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --orange: #18a268;
  --orange-deep: #0f7a5c;
  --blue: #2563a8;
  --green: #18a268;
  --red: #de4255;
  --shadow-sm: 0 14px 34px rgba(7, 27, 24, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 27, 24, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --content: max(1180px, 94vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 14px;
  font-weight: 750;
  box-shadow: var(--shadow-sm);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 228, 236, 0.82);
  background: rgba(246, 248, 251, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section,
.hero,
.legal-shell,
.site-footer__inner {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 830;
  letter-spacing: -0.035em;
  font-size: 1.2rem;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  border: 1px solid #d5e8df;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 27, 24, 0.18);
}

.brand__mark svg {
  width: 23px;
  height: 23px;
}

.brand__mark img { display: block; width: 36px; height: 36px; }

.brand__dot {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #42576b;
  font-weight: 680;
  font-size: 0.94rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 8px;
  padding-inline: 18px !important;
  color: var(--white) !important;
  background: var(--ink) !important;
  box-shadow: 0 10px 24px rgba(7, 27, 24, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  padding-block: 76px 60px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
  min-height: 610px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(52, 195, 143, 0.2), transparent 30%),
    linear-gradient(135deg, #0d1117 0%, #14221e 64%, #1d2a26 100%);
  box-shadow: var(--shadow-lg);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 78%);
}

.hero__copy,
.product-frame {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero__lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: #cfdae2;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.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: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 770;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(24, 162, 104, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #21b979;
  box-shadow: 0 17px 36px rgba(24, 162, 104, 0.3);
}

.button--ghost {
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(7, 27, 24, 0.16);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero__trust {
  margin: 32px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aebfca;
  font-size: 0.9rem;
}

.hero__trust span:first-child {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34c38f;
  box-shadow: 0 0 0 6px rgba(67, 212, 155, 0.11);
}

.product-frame {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  padding: 14px;
  color: var(--ink);
  background: rgba(244, 248, 251, 0.96);
  box-shadow: 0 32px 70px rgba(0,0,0,0.28);
  transform: none;
}

.product-frame__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 18px;
}

.product-frame__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 820;
}

.product-frame__title span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.product-frame__meta {
  color: #738397;
  font-size: 0.875rem;
  font-weight: 680;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.metric {
  min-width: 0;
  min-height: 112px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--metric, var(--blue));
  border-radius: 15px;
  padding: 13px;
  background: var(--white);
}

.metric__label {
  color: #728294;
  font-size: 0.875rem;
  font-weight: 830;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric__value {
  display: block;
  margin-top: 9px;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.055em;
}

.metric__sub {
  display: block;
  margin-top: 9px;
  color: #8290a0;
  font-size: 0.75rem;
}

.work-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 10px;
  margin-top: 10px;
}

.board-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 15px;
  background: var(--white);
}

.board-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 820;
}

.board-panel__head span:last-child {
  color: var(--orange-deep);
  font-size: 0.75rem;
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 11px 0 11px 11px;
  border-top: 1px solid #edf1f5;
  border-left: 3px solid var(--row, var(--blue));
  font-size: 0.875rem;
}

.work-row strong {
  display: block;
  font-size: 0.875rem;
}

.work-row > div,
.signal > div { min-width: 0; overflow-wrap: anywhere; }

.work-row span {
  color: #758598;
}

.status-pill {
  justify-self: start;
  border-radius: 999px;
  padding: 4px 7px;
  color: #08724d !important;
  background: #e5f8ef;
  font-size: 0.875rem !important;
  font-weight: 800;
}

.signal-list {
  display: grid;
  gap: 7px;
}

.signal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  padding: 9px;
  background: #f5f8fa;
  font-size: 0.875rem;
}

.signal__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--signal, var(--blue));
  background: color-mix(in srgb, var(--signal, var(--blue)) 11%, white);
  font-weight: 900;
}

.signal strong {
  display: block;
  font-size: 0.875rem;
}

.signal span {
  color: #7a8999;
  font-size: 0.75rem;
}

.signal__time {
  color: #667789 !important;
}

.section {
  padding-block: 72px;
}

.section--tight {
  padding-top: 30px;
}

.section--navy {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: 86px;
  color: var(--white);
  background: var(--ink);
}

.section--navy > .section__inner {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.legal-hero h1,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-heading p {
  max-width: 65ch;
  margin: 0;
  color: var(--ink-3);
  font-size: 1.08rem;
}

.section--navy .section-heading p {
  color: #b4c1cc;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.principle {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.principle::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 8%, white);
}

.principle__index {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.1em;
}

.principle h3 {
  margin: 54px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.principle p {
  max-width: 60ch;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-3);
}

.industry-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(52, 195, 143, 0.45);
  border-radius: 18px;
  background: rgba(52, 195, 143, 0.07);
}
.industry-examples[hidden] { display: none; }
.industry-examples__intro { flex: 1 1 260px; min-width: 0; }
.industry-examples label { display: block; margin-bottom: 8px; color: #ffffff; font-size: 1.125rem; font-weight: 750; }
.industry-examples p { margin: 0; color: #bdcec6; font-size: 0.875rem; line-height: 1.5; }
.industry-examples select { flex: 1 1 300px; min-width: 0; width: 100%; min-height: 48px; padding: 12px; border: 1px solid #34c38f; border-radius: 10px; background: #ffffff; color: #173c2e; font: inherit; font-size: 1rem; }
.industry-examples select:focus-visible { outline: 3px solid #34c38f; outline-offset: 4px; }
.industry-examples__footer { display: flex; flex-wrap: wrap; gap: 8px 24px; flex: 1 1 100%; justify-content: space-between; }
.industry-examples #industry-status { color: #a9e6cb; font-weight: 650; }

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

.capability {
  min-width: 0;
  grid-column: span 4;
  min-height: 205px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 25px;
  background: rgba(255,255,255,0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.capability:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 195, 143, 0.42);
  background: rgba(255,255,255,0.085);
}

.capability--wide {
  grid-column: span 8;
}

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

.capability p,
.team-feature p,
.rollout-note p,
.ai-panel__copy > p:last-child,
.ai-item > div { max-width: 65ch; }

@media (min-width: 1800px) {
  .capability-grid { grid-template-columns: repeat(16, minmax(0, 1fr)); }
  .capability--full { grid-column: span 8; }
}

#platform,
#team,
#intelligence,
#company {
  scroll-margin-top: 100px;
}

.team-section {
  padding-bottom: 0;
}

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

.team-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-feature__label {
  color: var(--orange-deep);
  font-size: 0.875rem;
  font-weight: 750;
}

.team-feature h3 {
  margin: 20px 0 12px;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.team-feature p {
  margin: 0;
  color: var(--ink-2);
}

.team-feature--video {
  border-color: #b8dbc9;
  background: #f0f9f5;
}

.team-feature .team-feature__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #c7e2d5;
  font-size: 0.875rem;
}

.rollout-note {
  margin-top: 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  background: var(--white);
}

.rollout-note h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.rollout-note p {
  margin: 0;
  color: var(--ink-2);
}

.rollout-note p + p {
  margin-top: 12px;
}

@media (max-width: 560px) {
  .team-feature-grid {
    grid-template-columns: 1fr;
  }

  .team-feature,
  .rollout-note {
    padding: 24px 20px;
  }
}

.capability__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: rgba(52, 195, 143, 0.1);
}

.capability__icon svg {
  width: 22px;
  height: 22px;
}

.capability h3 {
  margin: 28px 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.capability p {
  max-width: 620px;
  margin: 0;
  color: #b8c5cf;
  font-size: 0.96rem;
}

/* Branded, source-faithful workspace previews. No live tenant data. */
body.preview-open { overflow: hidden; }
.capability__preview {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 22px;
  border: 1px solid rgba(52, 195, 143, 0.45);
  border-radius: 10px;
  padding: 8px 14px;
  color: #9de7c7;
  background: rgba(24, 162, 104, 0.08);
  font-size: 0.875rem;
  font-weight: 750;
  cursor: pointer;
}
.capability__preview:hover,
.capability__preview:focus-visible,
.capability__preview[aria-expanded="true"] {
  color: #ffffff;
  border-color: #34c38f;
  background: #0f7a5c;
}
.capability__preview:focus-visible,
.workspace-preview__close:focus-visible { outline: 3px solid #34c38f; outline-offset: 4px; }
.workspace-preview {
  position: fixed;
  inset: auto;
  top: var(--preview-top, 100px);
  left: var(--preview-left, 16px);
  z-index: 80;
  width: min(1320px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: 0;
  border: 1px solid #c6dfd4;
  border-top: 4px solid #18a268;
  border-radius: 22px;
  padding: 0;
  color: #0d1117;
  background: #ffffff;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
  overflow: auto;
  overscroll-behavior: contain;
}
.workspace-preview[data-mode="pinned"] { inset: 0; margin: auto; height: fit-content; }
.workspace-preview::backdrop { background: rgba(7, 22, 17, 0.5); backdrop-filter: blur(4px); }
.workspace-preview__header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.workspace-preview__eyebrow {
  margin: 0 0 6px;
  color: #0f7a5c;
  font-size: 0.875rem;
  font-weight: 750;
}
.workspace-preview__header h2 { margin: 0; font-size: 1.4rem; line-height: 1.25; letter-spacing: -0.03em; }
.workspace-preview__identity { display: flex; align-items: center; gap: 12px; min-width: 0; margin-right: auto; }
.workspace-preview__identity > div { min-width: 0; }
.workspace-preview__identity h2 { overflow-wrap: anywhere; }
.workspace-preview__identity > img { flex: 0 0 42px; display: block; }
.workspace-preview__close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  color: #374151;
  background: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.workspace-preview__close:hover { background: #eefaf5; }
.workspace-preview__screen { padding: 18px; background: #f4f6f8; font-size: 0.875rem; line-height: 1.5; }
.workspace-preview__footer { padding: 18px 24px; border-top: 1px solid #e5e7eb; }
.workspace-preview__footer p { margin: 0; color: #4b5563; font-size: 0.875rem; }
.workspace-preview__footer p + p { margin-top: 8px; }
.workspace-preview__footer #preview-caption { font-weight: 700; color: #0f7a5c; }
.workspace-preview__screen h3,
.workspace-preview__screen h4,
.workspace-preview__screen p { margin: 0; }
.workspace-preview__screen h4 { font-size: 1rem; line-height: 1.3; }
.ws-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid #d5e8df; border-radius: 12px; background: #ffffff; }
.ws-top > span:last-child { color: #56625e; font-size: 0.875rem; text-align: right; }
.ws-brand { display: inline-flex; align-items: center; gap: 8px; color: #0f7a5c; font-size: 1.25rem; font-weight: 850; }
.ws-brand span { color: #0d1117; font-size: 1rem; letter-spacing: -0.025em; }
.ws-heading { margin-block: 14px; border-radius: 12px; padding: 16px; color: #0d1117; background: #d9f5e8; }
.ws-heading p { margin-bottom: 4px; color: #0f7a5c; font-size: 0.875rem; }
.ws-heading h3 { font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.025em; }
.ws-search { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; border: 1px solid #d1d5db; border-radius: 10px; padding: 10px 12px; color: #56625e; background: #ffffff; }
.ws-search > span { color: #0f7a5c; font-size: 1.4rem; line-height: 1; }
.ws-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.ws-stat { min-width: 0; border: 1px solid #e5e7eb; border-bottom: 3px solid #18a268; border-radius: 12px; padding: 12px; background: #ffffff; }
.ws-stat > span { display: block; color: #56625e; font-size: 0.875rem; overflow-wrap: normal; }
.ws-stat strong { display: block; margin-top: 6px; font-size: 1.25rem; line-height: 1.3; overflow-wrap: anywhere; }
.ws-tabs { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-block: 12px; border-bottom: 1px solid #d5e1db; color: #56625e; }
.ws-tabs span { padding: 8px 0; font-size: 0.875rem; }
.ws-tabs .is-current { border-bottom: 3px solid #18a268; color: #0f7a5c; font-weight: 750; }
.ws-panel { min-width: 0; margin-bottom: 12px; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; background: #ffffff; }
.ws-panel > h4 { margin-bottom: 12px; }
.ws-panel > p { color: #4b5563; }
.ws-panel > p + p { margin-top: 6px; }
.ws-panel > .ws-badge + h4 { margin-block: 12px 8px; }
.ws-panel > .ws-badge + p { margin-top: 12px; }
.ws-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 14px; border-top: 1px solid #edf1ee; padding: 12px 0; }
.ws-row:first-of-type { border-top: 0; padding-top: 0; }
.ws-row:last-child { padding-bottom: 0; }
.ws-row strong, .ws-row span:not(.ws-badge) { display: block; }
.ws-row > div { min-width: 0; flex: 1 1 150px; }
.ws-row > div > span { margin-top: 3px; color: #56625e; font-size: 0.875rem; }
.ws-badge { display: inline-block; flex-shrink: 0; border-radius: 8px; padding: 5px 8px; color: #0f6b4e; background: #d9f5e8; font-size: 0.875rem; font-weight: 700; }
.ws-badge--muted { color: #4b5563; background: #edf1ef; }
.ws-action { display: inline-block; margin-top: 12px; border: 1px solid #b6d9c9; border-radius: 8px; padding: 8px 10px; color: #0f7a5c; background: #eefaf5; font-size: 0.875rem; font-weight: 750; }
.ws-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.ws-panel .ws-details { margin: 0; }
.ws-detail { min-width: 0; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; background: #ffffff; overflow-wrap: anywhere; }
.ws-detail > span { display: block; margin-bottom: 5px; color: #56625e; font-size: 0.875rem; }
.ws-detail strong { font-size: 0.875rem; }
.ws-calendar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 12px; }
.ws-calendar__day { min-width: 0; min-height: 210px; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; background: #ffffff; }
.ws-calendar__day h4 { margin-bottom: 12px; font-size: 0.875rem; }
.ws-booking { border-left: 3px solid #18a268; border-radius: 6px; margin-bottom: 10px; padding: 10px; background: #d9f5e8; overflow-wrap: anywhere; }
.ws-booking strong, .ws-booking span, .ws-booking small { display: block; font-size: 0.875rem; }
.ws-booking span { margin-block: 5px; }
.ws-booking small { color: #3d6250; }
.ws-booking--soft { background: #eefaf5; }
.ws-booking--meeting { background: #e9f6f3; border-color: #0f7a5c; }
.ws-inbox { display: grid; grid-template-columns: 140px minmax(0, 1fr) 150px; border: 1px solid #d5e8df; border-radius: 12px; overflow: hidden; background: #ffffff; }
.ws-inbox--team { grid-template-columns: 170px minmax(0, 1fr); }
.ws-rail { display: flex; flex-direction: column; gap: 10px; padding: 16px 12px; background: #eefaf5; }
.ws-rail > h4 { font-size: 1rem; }
.ws-rail .ws-tabs { margin-block: 0; gap: 12px; }
.ws-rail__label { margin-top: 14px; color: #0f7a5c; font-weight: 750; }
.ws-selected { border: 1px solid #b6d9c9; border-radius: 8px; padding: 10px; color: #0f7a5c; background: #d9f5e8; }
.ws-selected strong, .ws-selected span, .ws-selected small { display: block; font-size: 0.875rem; }
.ws-selected span, .ws-selected small { margin-top: 5px; }
.ws-thread { min-width: 0; padding: 16px; }
.ws-thread__heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; }
.ws-thread__heading .ws-action { margin: 0; }
.ws-message { margin-block: 16px; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; background: #f9fbfa; }
.ws-message p { margin-top: 8px; color: #374151; }
.ws-message--action { border-left: 3px solid #18a268; }
.ws-message--action .ws-badge { margin-top: 10px; }
.ws-compose { border-top: 1px solid #e5e7eb; padding-top: 12px; }
.ws-compose > span { display: block; margin-bottom: 8px; color: #0f7a5c; font-size: 0.875rem; font-weight: 700; }
.ws-compose .ws-recipient { color: #4b5563; overflow-wrap: anywhere; }
.ws-compose > p { border: 1px solid #d1d5db; border-radius: 8px; padding: 12px; color: #4b5563; }
.ws-context { min-width: 0; padding: 16px 12px; background: #f4f8f6; }
.ws-context .ws-detail { border: 0; border-radius: 0; border-bottom: 1px solid #d5e1db; padding: 12px 0; background: transparent; }
.ws-mobile { width: min(100%, 380px); margin: auto; }
.ws-mobile__status { margin-bottom: 12px; color: #0f7a5c; }
.ws-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.ws-delivery { margin-top: 14px; }
.ws-delivery > span, .ws-delivery > strong { display: block; }
.ws-delivery > span { color: #56625e; }
.ws-progress { height: 10px; margin-top: 10px; border-radius: 5px; background: #eef2ef; overflow: hidden; }
.ws-progress span { display: block; width: 66.67%; height: 100%; background: #18a268; }
.ws-brand img { display: block; flex-shrink: 0; }
.ws-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-block: 12px; }
.ws-toolbar > span { min-width: 0; border: 1px solid #c6dfd4; border-radius: 8px; padding: 9px 12px; color: #0f7a5c; background: #ffffff; font-size: 0.875rem; font-weight: 700; }
.ws-toolbar > span:last-child { background: #eefaf5; }
.ws-main-aside { display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(280px, 1fr); gap: 16px; }
.ws-main-aside > div, .ws-main-aside > aside { min-width: 0; }
.ws-main-aside--field { grid-template-columns: minmax(150px, 0.65fr) minmax(0, 2fr); }
.ws-stats--four, .ws-stats--five, .ws-stats--six, .ws-stats--seven { grid-template-columns: repeat(auto-fit, minmax(min(100%, 125px), 1fr)); }
.ws-scroll { max-width: 100%; overflow: auto; overscroll-behavior-inline: contain; }
.ws-scroll:focus-visible { outline: 3px solid #18a268; outline-offset: -3px; }
.ws-calendar--week { min-width: 980px; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.ws-calendar--week .ws-calendar__day { padding: 10px 8px; min-height: 240px; }
.ws-calendar--week .ws-booking { padding: 8px; }
.ws-empty, .ws-muted { color: #56625e; font-size: 0.875rem; }
.ws-availability { display: grid; grid-template-columns: 130px repeat(7, minmax(72px, 1fr)); min-width: 660px; gap: 4px; }
.ws-availability > strong { padding: 10px 6px; background: #f4f8f6; font-size: 0.875rem; }
.ws-availability > span { display: grid; place-items: center; border-radius: 6px; padding: 10px 6px; color: #0f7a5c; background: #d9f5e8; font-size: 0.875rem; }
.ws-availability > .ws-away { color: #4b5563; background: #edf1ef; }
.ws-inbox--team { grid-template-columns: 210px minmax(0, 1fr) 260px; }
.workspace-preview__screen[data-workspace="calendar"] .ws-main-aside { grid-template-columns: minmax(0, 1fr); }
.ws-rail__brand { display: flex; gap: 8px; align-items: center; }
.ws-avatar { display: grid; place-items: center; flex: 0 0 32px; width: 32px; height: 32px; border: 1px solid #b6d9c9; border-radius: 9px; color: #0f7a5c; background: #d9f5e8; font-size: 0.875rem; font-weight: 800; }
.ws-member { display: flex; align-items: flex-start; gap: 8px; margin-block: 12px; }
.ws-member > div { min-width: 0; }
.ws-member strong, .ws-member > div > span { display: block; font-size: 0.875rem; overflow-wrap: anywhere; }
.ws-member > div > span { margin-top: 3px; color: #56625e; }
.ws-history { margin-top: 14px !important; border-block: 1px solid #d5e8df; padding: 8px 0; color: #56625e; font-size: 0.875rem; }
.ws-compose .ws-compose__note { border: 0; padding: 0; color: #56625e; font-size: 0.875rem; }
.ws-context > h4 + h4 { margin-top: 16px; }
.ws-context > p { margin-top: 12px; }
.ws-context .ws-panel { padding: 12px; background: #eefaf5; }
.ws-context .ws-panel > h4 { font-size: 0.875rem; }
.ws-journey { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 5px; margin-block: 16px; }
.ws-journey span { border-top: 3px solid #d5e8df; padding: 10px 2px; color: #56625e; font-size: 0.875rem; text-align: center; overflow-wrap: anywhere; }
.ws-journey .is-current { border-color: #18a268; color: #0f7a5c; font-weight: 750; }
.ws-table { min-width: 570px; width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.ws-table th { padding: 10px 8px; background: #f4f8f6; text-align: left; color: #56625e; }
.ws-table td { border-top: 1px solid #e5e7eb; padding: 14px 8px; vertical-align: top; }
.ws-table td:first-child { min-width: 150px; }
.ws-table td > span:not(.ws-badge) { display: block; margin-top: 4px; color: #56625e; }
.ws-provider__head { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.ws-provider__head > div { flex: 1; min-width: 150px; }
.ws-provider__head > div > span { display: block; margin-top: 6px; color: #56625e; }
.ws-provider__head h4 { margin: 0; }
.ws-provider p { min-height: 64px; }
.ws-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.ws-chips span { border-radius: 7px; padding: 5px 8px; color: #3d6250; background: #f0f6f3; font-size: 0.875rem; }
.ws-section-title { margin-block: 16px !important; }
@media (max-width: 1000px) {
  .ws-inbox--team { grid-template-columns: 180px minmax(0, 1fr); }
  .ws-inbox--team > .ws-context { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .ws-main-aside, .ws-main-aside--field { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 700px) {
  .workspace-preview__header, .workspace-preview__footer { padding: 18px; }
  .workspace-preview__screen { padding: 12px; }
  .ws-inbox, .ws-inbox--team { grid-template-columns: 1fr; }
  .ws-rail { display: none; }
  .ws-context { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .ws-context > h4 { grid-column: 1 / -1; }
  .ws-columns { grid-template-columns: 1fr; gap: 0; }
  .ws-stats { gap: 6px; }
  .ws-stat { padding: 10px 8px; }
  .ws-row { flex-wrap: wrap; gap: 8px; }
  .ws-calendar { grid-template-columns: 1fr; }
  .ws-calendar--week { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .ws-calendar__day { min-height: 0; }
  .ws-details { grid-template-columns: 1fr; }
  .ws-top { flex-wrap: wrap; }
  .workspace-preview__header { gap: 10px; }
  .ws-stats--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ws-journey { grid-template-columns: 1fr; }
  .ws-journey span { border-top: 0; border-left: 3px solid #d5e8df; padding: 6px 10px; text-align: left; }
  .ws-context .ws-member, .ws-context .ws-panel { grid-column: 1 / -1; }
  .ws-inbox--team .ws-rail { display: flex; }
  .ws-inbox--team .ws-rail .ws-member { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .capability, .capability__preview, .workspace-preview { transition: none; }
}

.ai-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 64px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ai-panel::after {
  content: "AI";
  position: absolute;
  right: -20px;
  bottom: -92px;
  color: rgba(40, 120, 240, 0.045);
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
}

.ai-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.ai-panel__copy > p:last-child {
  margin: 0;
  color: var(--ink-3);
  font-size: 1.06rem;
}

.ai-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.ai-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border-radius: 18px;
  padding: 18px;
  background: #f5f8fb;
}

.ai-item__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.ai-item strong {
  display: block;
  margin-bottom: 3px;
}

.ai-item span {
  color: var(--ink-3);
  font-size: 0.94rem;
}

.section--company {
  padding-top: 18px;
}

.company-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 64px;
  align-items: center;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 28px;
  padding: 52px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.company-panel::after {
  content: "AH";
  position: absolute;
  right: -18px;
  bottom: -58px;
  color: rgba(24, 162, 104, 0.045);
  font-size: 11rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.company-panel__intro,
.company-details {
  position: relative;
  z-index: 1;
}

.company-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.company-panel__intro > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-3);
  font-size: 1.04rem;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.company-details > div {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px;
  background: #f7faf9;
}

.company-details__contact {
  grid-column: 1 / -1;
}

.company-details dt {
  margin-bottom: 4px;
  color: var(--ink-3);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 730;
}

.company-details a {
  color: var(--orange-deep);
  text-underline-offset: 3px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border-radius: 28px;
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(52,195,143,0.3), transparent 36%),
    var(--ink);
  box-shadow: var(--shadow-lg);
}

.cta-panel p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #bdcbd5;
}

.legal-hero {
  padding: 76px 0 44px;
}

.legal-hero__panel {
  border-radius: 30px;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(52,195,143,0.22), transparent 28%),
    var(--ink);
  box-shadow: var(--shadow-lg);
}

.legal-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c4d0d8;
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 80px;
}

.legal-toc {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--white);
}

.legal-toc__title {
  margin: 0 0 10px;
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  border-radius: 9px;
  padding: 8px 10px;
  color: #42576b;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
  background: #f2f6f9;
  outline: none;
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px clamp(24px, 5vw, 58px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 34px;
}

.legal-content h2 {
  scroll-margin-top: 110px;
  margin: 0 0 13px;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  max-width: 75ch;
  color: #43586c;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.notice {
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  margin: 26px 0;
  padding: 18px 20px;
  background: #fff8ef;
}

.notice p:last-child {
  margin-bottom: 0;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 24px;
  color: #aebeca;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
  padding-block: 42px;
}

.footer-brand p {
  max-width: 570px;
  margin: 15px 0 0;
  color: var(--ink-3);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-links a {
  color: #42576b;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange-deep);
  outline: none;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #748497;
  font-size: 0.82rem;
}

@media (max-width: 1280px) {
  .hero__panel {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: clamp(24px, 5vw, 60px);
  }

  .hero__copy {
    padding-right: 0;
  }

  .product-frame {
    margin: 0;
  }
}

@media (max-width: 700px) {
  .product-frame .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-frame .work-board { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 1100px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ai-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .company-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 1100px) {
  .nav-shell,
  .section,
  .hero,
  .legal-shell,
  .site-footer__inner,
  .section--navy > .section__inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .section.section--navy {
    width: 100%;
    max-width: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 71px 14px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
  }

  .nav-cta {
    margin: 4px 0 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__panel {
    min-height: auto;
    padding: 32px;
  }

  .hero__copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .product-frame {
    margin: 0;
  }

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

  .principle {
    min-height: 220px;
  }

  .principle h3 {
    margin-top: 36px;
  }

  .capability,
  .capability--wide {
    grid-column: span 6;
  }

  .ai-panel {
    padding: 38px 26px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

  .company-panel {
    padding: 38px 28px;
  }

  .legal-hero {
    padding-top: 36px;
  }

  .legal-hero__panel {
    padding: 42px 28px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-toc {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline proximity;
  }

  .legal-toc::-webkit-scrollbar {
    display: none;
  }

  .legal-toc__title {
    display: none;
  }

  .legal-toc a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding-inline: 14px;
    background: #f7f9fb;
    scroll-snap-align: start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section,
  .hero,
  .legal-shell,
  .site-footer__inner,
  .section--navy > .section__inner {
    width: min(calc(100% - 20px), var(--content));
  }

  .brand {
    gap: 9px;
    font-size: 1.08rem;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    inset-inline: 10px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 42px;
  }

  .hero__panel {
    padding: 34px 18px 18px;
    border-radius: 24px;
  }

  .hero__copy {
    padding-right: 0;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.73rem;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 3.7rem);
    line-height: 0.98;
  }

  .hero__lede {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.52;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .product-frame {
    min-width: 0;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    padding: 10px;
    transform: none;
    box-shadow: 0 22px 48px rgba(0,0,0,0.24);
  }

  .product-frame__top {
    padding: 6px 7px 12px;
  }

  .product-frame__meta {
    display: none;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .metric {
    min-height: 94px;
    padding: 11px;
  }

  .metric__label {
    font-size: 0.875rem;
  }

  .metric__value {
    margin-top: 7px;
    font-size: 1.45rem;
  }

  .metric__sub {
    margin-top: 7px;
    font-size: 0.75rem;
  }

  .work-board {
    grid-template-columns: 1fr;
    margin-top: 7px;
  }

  .board-panel {
    padding: 12px;
  }

  .work-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .work-row > span:not(.status-pill) {
    display: none;
  }

  .section {
    padding-block: 50px;
  }

  .section--tight {
    padding-top: 16px;
  }

  .section--navy {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .legal-hero h1,
  .cta-panel h2,
  .ai-panel h2 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    line-height: 1.04;
  }

  .section-heading p,
  .ai-panel__copy > p:last-child {
    font-size: 1rem;
    line-height: 1.55;
  }

  .principle {
    min-height: 0;
    padding: 24px;
  }

  .principle h3 {
    margin-top: 28px;
  }

  .capability,
  .capability--wide {
    grid-column: 1 / -1;
    min-height: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 16px;
    align-items: start;
    padding: 20px;
  }

  .capability h3 {
    align-self: center;
    margin: 0;
  }

  .capability p {
    grid-column: 2;
    margin-top: 8px;
  }

  .ai-panel::after {
    display: none;
  }

  .ai-panel {
    gap: 28px;
    border-radius: 24px;
    padding: 30px 20px 20px;
  }

  .section--company {
    padding-top: 8px;
  }

  .company-panel {
    gap: 26px;
    border-radius: 24px;
    padding: 30px 20px 20px;
  }

  .company-panel::after {
    display: none;
  }

  .company-panel h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.55rem);
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details__contact {
    grid-column: auto;
  }

  .ai-item {
    gap: 12px;
    padding: 15px;
  }

  .cta-panel {
    gap: 26px;
    border-radius: 24px;
    padding: 32px 22px 22px;
  }

  .cta-panel .button {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .legal-hero {
    padding: 14px 0 22px;
  }

  .legal-hero__panel {
    border-radius: 24px;
    padding: 34px 22px;
  }

  .legal-hero p:last-child {
    font-size: 1rem;
  }

  .legal-meta {
    display: grid;
    gap: 8px;
    font-size: 0.84rem;
  }

  .legal-content {
    border-radius: 20px;
    padding: 28px 20px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-content p,
  .legal-content li,
  .footer-legal {
    overflow-wrap: anywhere;
  }

  .notice {
    margin: 22px 0;
    padding: 16px;
  }

  .site-footer__inner {
    gap: 28px;
    padding-block: 34px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 9px 12px;
    background: #f7f9fb;
  }

  .footer-legal {
    display: grid;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.45rem;
  }

  .metric__sub {
    display: none;
  }

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

  .capability h3,
  .capability p {
    grid-column: 1;
  }

  .capability h3 {
    margin-top: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
