:root {
  --ink: #16243a;
  --ink-deep: #0d1727;
  --mint: #29b99a;
  --mint-deep: #087766;
  --coral: #f27062;
  --sky: #69afe3;
  --yellow: #f2c84b;
  --cloud: #f5f8f7;
  --mist: #dce5e2;
  --slate: #60706f;
  --white: #ffffff;
  --danger: #b42318;
  --page: 1200px;
  --reading: 680px;
  --shadow: 0 14px 32px rgba(22, 36, 58, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input {
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

button:disabled {
  color: inherit;
  opacity: 1;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(22, 36, 58, 0.96);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-lockup img {
  width: 38px;
  height: 38px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a,
.login-link {
  padding: 8px 10px;
  color: #dbe5e2;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
}

.button-mint {
  color: var(--ink);
  background: var(--mint);
}

.button-mint:hover {
  background: #42c8aa;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(22, 36, 58, 0.28);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(22, 36, 58, 0.64);
}

.mobile-menu {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu-panel {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: min(300px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu-panel > a:not(.button) {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-panel .button {
  margin-top: 6px;
}

.hero {
  position: relative;
  height: min(820px, calc(100svh - 64px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(13, 23, 39, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 72px;
}

.eyebrow {
  margin: 0;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.eyebrow.on-dark {
  color: #b9f0e2;
}

.hero h1 {
  max-width: 760px;
  margin: 14px 0 8px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.03;
}

.hero-promise {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #dbe5e2;
  font-size: 17px;
  line-height: 1.6;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 28px 0 0;
  padding: 0;
  color: #c7d4d0;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.first-signal {
  min-height: 64px;
  border-bottom: 1px solid var(--mist);
  background: var(--white);
}

.signal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  min-height: 64px;
  font-size: 13px;
}

.signal-inner > span[aria-hidden] {
  color: var(--mint-deep);
  font-size: 20px;
}

.signal-detail {
  margin-left: auto;
  color: var(--slate);
}

.section {
  padding-block: 104px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.control-copy h2,
.onboarding-grid h2,
.faq-intro h2,
.demo-copy h2 {
  margin: 10px 0 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.14;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 72px;
  max-width: none;
  align-items: end;
}

.split-heading > p {
  margin: 0;
  color: var(--slate);
}

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

.flow-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--white);
}

.flow-card > header {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist);
}

.flow-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.booking-flow .flow-number {
  color: #245c82;
  background: #eaf5fc;
}

.flow-label {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
}

.flow-card h3 {
  margin: 3px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.flow-card > p {
  min-height: 78px;
  margin: 20px 0;
  color: var(--slate);
  font-size: 14px;
}

.flow-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mist);
  list-style: none;
}

.flow-steps li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--mist);
  font-size: 13px;
}

.flow-steps li > span {
  color: var(--slate);
  font-size: 11px;
  font-weight: 600;
}

.flow-steps .human-step {
  border-left: 4px solid var(--coral);
  padding-left: 12px;
}

.flow-steps .confirmed-step {
  border-left: 4px solid var(--mint);
  padding-left: 12px;
}

.flow-bridge {
  display: grid;
  grid-template-columns: auto 24px auto minmax(260px, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding-block: 22px;
  border-block: 1px solid var(--mist);
  font-size: 13px;
}

.flow-bridge > span {
  font-weight: 600;
}

.flow-bridge > span[aria-hidden] {
  color: var(--mint-deep);
  text-align: center;
}

.flow-bridge strong {
  justify-self: end;
  color: var(--mint-deep);
}

.workspace-section {
  color: var(--white);
  background: var(--ink);
}

.on-dark-heading > p {
  color: #bdccc8;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 26px 56px rgba(4, 12, 25, 0.28);
}

.product-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 70px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--mist);
}

.product-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Manrope", Arial, sans-serif;
}

.product-brand img {
  width: 30px;
  height: 30px;
}

.location-control {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.location-control svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-control {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-self: end;
}

.role-control > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.role-control div {
  display: grid;
}

.role-control strong {
  font-size: 11px;
}

.role-control small {
  color: var(--slate);
  font-size: 9px;
}

.product-body {
  display: grid;
  grid-template-columns: 124px 260px minmax(320px, 1fr) 258px;
  min-height: 540px;
}

.product-sidebar {
  padding: 16px 10px;
  border-right: 1px solid var(--mist);
  background: var(--cloud);
}

.product-sidebar span {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 8px;
  border-radius: 6px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
}

.product-sidebar span.active {
  color: var(--ink);
  background: var(--white);
}

.product-sidebar svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-sidebar b {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 9px;
}

.inbox-pane,
.conversation-pane,
.agenda-pane {
  min-width: 0;
  background: var(--white);
}

.inbox-pane,
.conversation-pane {
  border-right: 1px solid var(--mist);
}

.pane-heading,
.conversation-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--mist);
}

.pane-heading > div,
.conversation-heading > div {
  min-width: 0;
}

.pane-heading span,
.conversation-heading div > span {
  display: block;
  color: var(--slate);
  font-size: 9px;
  font-weight: 600;
}

.pane-heading h3,
.conversation-heading h3 {
  margin: 2px 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.pane-heading button {
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  background: var(--white);
  font-size: 10px;
  font-weight: 600;
}

.inbox-list,
.compact-agenda {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inbox-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 10px;
  gap: 9px;
  align-items: center;
  min-height: 88px;
  padding: 12px;
  border-bottom: 1px solid var(--mist);
}

.inbox-list li.selected {
  border-left: 4px solid var(--coral);
  padding-left: 8px;
  background: #fff8f7;
}

.channel-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.chat-channel {
  color: var(--mint-deep);
  background: #e4f8f1;
}

.booking-channel {
  color: #245c82;
  background: #eaf5fc;
}

.inbox-list strong,
.inbox-list p,
.inbox-list small {
  display: block;
  margin: 0;
}

.inbox-list strong {
  font-size: 11px;
}

.inbox-list p {
  margin-top: 2px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-list small {
  margin-top: 4px;
  color: var(--slate);
  font-size: 9px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.coral-dot { background: var(--coral); }
.mint-dot { background: var(--mint); }
.yellow-dot { background: var(--yellow); }

.handoff-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 6px;
  color: #8c332c;
  background: #fff0ee;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.context-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 46px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--mist);
}

.context-strip span {
  padding: 3px 7px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  color: var(--slate);
  font-size: 8px;
  font-weight: 600;
}

.conversation-messages {
  min-height: 298px;
  padding: 16px;
}

.message {
  width: min(84%, 320px);
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 8px;
  font-size: 10px;
}

.message small {
  font-size: 8px;
  font-weight: 700;
}

.message p {
  margin: 4px 0;
}

.message time {
  display: block;
  color: var(--slate);
  font-size: 8px;
  text-align: right;
}

.patient-message {
  border: 1px solid var(--mist);
}

.assistant-message {
  margin-left: auto;
  color: var(--white);
  background: var(--ink);
}

.assistant-message time {
  color: #b9cbc7;
}

.handoff-action {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 98px;
  padding: 14px;
  border-top: 1px solid var(--mist);
}

.handoff-action > div {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 10px;
  align-items: stretch;
}

.coral-bar {
  width: 4px;
  min-height: 42px;
  border-radius: 2px;
  background: var(--coral);
}

.handoff-action p,
.handoff-action strong,
.handoff-action small {
  display: block;
  margin: 0;
}

.handoff-action strong {
  font-size: 10px;
}

.handoff-action small {
  color: var(--slate);
  font-size: 8px;
}

.handoff-action button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.agenda-count {
  color: var(--slate);
  font-size: 9px;
  font-weight: 600;
}

.compact-agenda {
  padding-inline: 14px;
}

.compact-agenda li {
  display: grid;
  grid-template-columns: 34px 3px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--mist);
}

.compact-agenda time {
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
}

.agenda-line {
  width: 3px;
  height: 46px;
  border-radius: 2px;
}

.mint-line { background: var(--mint); }
.sky-line { background: var(--sky); }
.yellow-line { background: var(--yellow); }

.compact-agenda strong,
.compact-agenda small {
  display: block;
}

.compact-agenda strong {
  font-size: 10px;
}

.compact-agenda small {
  margin-top: 2px;
  color: var(--slate);
  font-size: 8px;
  line-height: 1.35;
}

.workspace-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
}

.workspace-facts > div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.workspace-facts > div:first-child {
  padding-left: 0;
}

.workspace-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.workspace-facts strong,
.workspace-facts span {
  display: block;
}

.workspace-facts strong {
  color: var(--mint);
  font-size: 13px;
}

.workspace-facts span {
  margin-top: 5px;
  color: #bdccc8;
  font-size: 12px;
}

.control-section {
  background: var(--white);
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 96px;
  align-items: center;
}

.control-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--slate);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--mist);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-deep);
  font-weight: 800;
}

.handoff-specimen {
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--cloud);
  box-shadow: var(--shadow);
}

.handoff-specimen > header,
.handoff-specimen > footer {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 16px;
  background: var(--white);
}

.handoff-specimen > header {
  justify-content: space-between;
  border-bottom: 1px solid var(--mist);
  font-size: 11px;
  font-weight: 700;
}

.handoff-timeline {
  padding: 14px 20px;
}

.handoff-timeline > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--mist);
}

.handoff-timeline > div:last-child {
  border-bottom: 0;
}

.timeline-mark,
.timeline-person {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.timeline-mark {
  border: 9px solid var(--white);
  box-shadow: 0 0 0 1px var(--mist);
}

.mint-mark { background: var(--mint); }
.coral-mark { background: var(--coral); }

.timeline-person {
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.handoff-timeline p,
.handoff-timeline strong,
.handoff-timeline small {
  display: block;
  margin: 0;
}

.handoff-timeline strong {
  font-size: 12px;
}

.handoff-timeline small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 11px;
}

.handoff-specimen > footer {
  border-top: 1px solid var(--mist);
  font-size: 11px;
}

.handoff-specimen > footer small {
  margin-left: auto;
  color: var(--slate);
}

.active-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.practice-section {
  background: var(--cloud);
}

.practice-operations {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.location-panel,
.roles-panel {
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--white);
}

.operation-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--mist);
  font-size: 12px;
}

.operation-heading span {
  color: var(--slate);
  font-weight: 600;
}

.location-panel ul,
.roles-panel ul {
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.location-panel li,
.roles-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid var(--mist);
}

.location-panel li:last-child,
.roles-panel li:last-child {
  border-bottom: 0;
}

.location-panel li.active {
  border-left: 4px solid var(--mint);
  padding-left: 10px;
}

.location-initial,
.role-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.location-initial {
  color: var(--mint-deep);
  background: #e4f8f1;
}

.manager-avatar { color: var(--white); background: var(--ink); }
.dentist-avatar { color: #245c82; background: #eaf5fc; }
.desk-avatar { color: #8c332c; background: #fff0ee; }

.location-panel li div,
.roles-panel li div,
.location-panel li strong,
.roles-panel li strong,
.location-panel li small,
.roles-panel li small {
  display: block;
  min-width: 0;
}

.location-panel li strong,
.roles-panel li strong {
  font-size: 12px;
}

.location-panel li small,
.roles-panel li small {
  margin-top: 2px;
  color: var(--slate);
  font-size: 10px;
}

.location-panel li > span:last-child,
.roles-panel li > span:last-child {
  color: var(--slate);
  font-size: 9px;
  font-weight: 600;
  text-align: right;
}

.practice-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding-block: 22px;
  border-block: 1px solid var(--mist);
}

.practice-note img {
  width: 42px;
  height: 42px;
}

.practice-note p,
.practice-note strong,
.practice-note span {
  display: block;
  margin: 0;
}

.practice-note strong {
  font-size: 13px;
}

.practice-note span {
  margin-top: 3px;
  color: var(--slate);
  font-size: 12px;
}

.onboarding-section {
  color: var(--white);
  background: var(--ink);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: 96px;
  align-items: start;
}

.onboarding-grid > div > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: #bdccc8;
}

.onboarding-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.onboarding-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.onboarding-steps li > span {
  color: var(--mint);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.onboarding-steps p {
  margin: 3px 0 0;
  color: #bdccc8;
  font-size: 12px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 96px;
  align-items: start;
}

.faq-intro > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--slate);
}

.faq-list {
  border-top: 1px solid var(--mist);
}

.faq-list details {
  border-bottom: 1px solid var(--mist);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--mint-deep);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 48px 22px 0;
  color: var(--slate);
  font-size: 13px;
}

.demo-section {
  color: var(--white);
  background: var(--ink-deep);
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 88px;
  align-items: start;
}

.demo-copy > p:not(.eyebrow):not(.direct-contact) {
  margin: 20px 0 0;
  color: #bdccc8;
}

.demo-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  color: #dbe5e2;
  font-size: 13px;
  list-style: none;
}

.demo-copy li {
  position: relative;
  padding-left: 24px;
}

.demo-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}

.direct-contact {
  color: #bdccc8;
  font-size: 13px;
}

.direct-contact a {
  color: var(--white);
}

.demo-form {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: var(--white);
}

.demo-form iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
}

.demo-form > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--slate);
  font-size: 11px;
}

.demo-form a {
  color: var(--mint-deep);
  font-weight: 600;
}

.site-footer {
  padding-block: 56px 28px;
  color: var(--white);
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: #aebdb9;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid > div > strong {
  margin-bottom: 5px;
  color: #dbe5e2;
  font-size: 12px;
}

.footer-grid > div > a {
  color: #aebdb9;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid > div > a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #879793;
  font-size: 11px;
}

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

  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-actions {
    justify-self: end;
  }

  .product-body {
    grid-template-columns: 112px 250px minmax(320px, 1fr);
  }

  .agenda-pane {
    display: none;
  }

  .conversation-pane {
    border-right: 0;
  }
}

@media (max-width: 880px) {
  .page-width {
    width: min(calc(100% - 32px), var(--page));
  }

  .nav-actions,
  .desktop-nav {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto 1fr;
    min-height: 64px;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    height: min(760px, calc(100svh - 64px));
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-promise {
    font-size: 24px;
  }

  .hero-copy {
    max-width: 600px;
    font-size: 16px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .control-copy h2,
  .onboarding-grid h2,
  .faq-intro h2,
  .demo-copy h2 {
    font-size: 34px;
  }

  .split-heading,
  .control-grid,
  .onboarding-grid,
  .faq-grid,
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-heading > p {
    max-width: var(--reading);
  }

  .flow-grid,
  .practice-operations {
    grid-template-columns: 1fr;
  }

  .flow-card > p {
    min-height: 0;
  }

  .product-body {
    grid-template-columns: 104px 240px minmax(300px, 1fr);
    overflow-x: auto;
  }

  .product-frame {
    overflow-x: auto;
  }

  .product-topbar,
  .product-body {
    min-width: 700px;
  }

  .control-grid {
    gap: 48px;
  }

  .control-copy {
    max-width: 680px;
  }

  .onboarding-grid,
  .demo-grid {
    gap: 48px;
  }

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  .hero {
    height: min(720px, calc(100svh - 64px));
  }

  .hero-media {
    object-position: 66% center;
  }

  .hero-overlay {
    background: rgba(13, 23, 39, 0.78);
  }

  .hero h1 {
    margin-top: 10px;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-promise {
    font-size: 21px;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 20px;
  }

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

  .hero-facts {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    font-size: 10px;
  }

  .signal-inner {
    display: grid;
    grid-template-columns: auto 20px 1fr;
    gap: 4px 8px;
    padding-block: 11px;
    font-size: 11px;
  }

  .signal-detail {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .section {
    padding-block: 64px;
  }

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

  .section-heading h2,
  .control-copy h2,
  .onboarding-grid h2,
  .faq-intro h2,
  .demo-copy h2 {
    font-size: 30px;
  }

  .flow-card {
    padding: 20px;
  }

  .flow-card h3 {
    font-size: 21px;
  }

  .flow-steps li {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    font-size: 11px;
  }

  .flow-bridge {
    grid-template-columns: 1fr 20px 1fr;
    font-size: 11px;
  }

  .flow-bridge strong {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 5px;
  }

  .product-topbar,
  .product-body {
    min-width: 0;
  }

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

  .role-control {
    display: none;
  }

  .product-body {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
  }

  .product-sidebar,
  .inbox-pane {
    display: none;
  }

  .conversation-pane {
    border-right: 0;
  }

  .agenda-pane {
    display: block;
    border-top: 1px solid var(--mist);
  }

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

  .workspace-facts > div,
  .workspace-facts > div:first-child,
  .workspace-facts > div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .workspace-facts > div:last-child {
    border-bottom: 0;
  }

  .handoff-specimen > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-panel li,
  .roles-panel li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .location-panel li > span:last-child,
  .roles-panel li > span:last-child {
    grid-column: 2;
    justify-self: start;
    padding-bottom: 8px;
    text-align: left;
  }

  .practice-note {
    grid-template-columns: 34px 1fr;
  }

  .practice-note img {
    width: 34px;
    height: 34px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 13px;
  }

  .demo-form iframe {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-height: 650px) and (min-width: 621px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-promise {
    font-size: 22px;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions,
  .hero-facts {
    margin-top: 18px;
  }
}

@media (max-height: 540px) and (max-width: 620px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-promise {
    font-size: 18px;
  }

  .hero-copy {
    font-size: 12px;
  }

  .hero-facts,
  .hero-actions .button-outline-light {
    display: none;
  }
}

/* Feature pages */
.feature-page .desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.feature-hero {
  position: relative;
  display: grid;
  height: min(680px, calc(100svh - 118px));
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.feature-hero-media {
  object-fit: cover;
  object-position: center 48%;
}

.feature-hero-booking .feature-hero-media {
  object-position: center 58%;
}

.feature-hero-scrim {
  background: rgba(13, 23, 39, 0.74);
}

.feature-hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-block: 40px;
}

.feature-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  color: #dbe5e2;
  font-size: 12px;
  font-weight: 600;
}

.feature-breadcrumbs a {
  color: inherit;
}

.feature-hero h1 {
  max-width: 850px;
  margin: 12px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
}

.feature-hero-promise {
  max-width: 820px;
  margin: 12px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.25;
}

.feature-hero-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: #e2ebe8;
  font-size: 17px;
  line-height: 1.58;
}

.feature-intro {
  background: var(--white);
}

.feature-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--mist);
  list-style: none;
}

.feature-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 154px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--mist);
}

.feature-steps li + li {
  padding-left: 28px;
}

.feature-steps li:last-child {
  border-right: 0;
}

.feature-steps li > span,
.operation-kicker {
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 700;
}

.feature-steps strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
}

.feature-steps p {
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

.feature-product-band {
  color: var(--white);
  background: var(--ink);
}

.feature-product-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 72px;
}

.feature-product-copy h2,
.feature-cta h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.15;
}

.feature-product-copy > p:not(.eyebrow) {
  color: #bdccc8;
  line-height: 1.65;
}

.feature-checks {
  margin-top: 26px;
}

.feature-checks li {
  color: #e4ecea;
}

.feature-chat-demo,
.feature-booking-demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.feature-chat-demo > header,
.feature-booking-demo > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--mist);
}

.feature-chat-demo > header div,
.feature-booking-demo > header div {
  display: grid;
  gap: 2px;
}

.feature-chat-demo > header span,
.feature-booking-demo > header span {
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
}

.feature-chat-demo > header strong,
.feature-booking-demo > header strong {
  font-size: 14px;
}

.feature-context {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--mist);
}

.feature-context span {
  padding: 4px 7px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  color: var(--slate);
  font-size: 9px;
  font-weight: 600;
}

.feature-messages {
  display: grid;
  gap: 16px;
  min-height: 270px;
  padding: 28px 24px;
  background: var(--cloud);
}

.feature-messages p {
  display: grid;
  gap: 5px;
  width: min(78%, 370px);
  margin: 0;
  padding: 13px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.feature-messages small {
  font-size: 9px;
  font-weight: 700;
}

.feature-message-patient {
  align-self: start;
  border: 1px solid var(--mist);
  background: var(--white);
}

.feature-message-assistant {
  align-self: end;
  justify-self: end;
  color: var(--white);
  background: var(--ink);
}

.feature-chat-demo > footer,
.feature-booking-demo > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 14px 20px;
  border-top: 1px solid var(--mist);
}

.feature-chat-demo > footer > div {
  display: grid;
  grid-template-columns: 3px 1fr;
  align-items: center;
  gap: 10px;
}

.feature-chat-demo > footer p {
  display: grid;
  margin: 0;
  font-size: 11px;
}

.feature-chat-demo > footer small {
  color: var(--slate);
}

.feature-chat-demo button,
.feature-booking-demo button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--mist);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.feature-chat-demo > footer > button,
.feature-booking-demo .booking-next {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.booking-progress {
  height: 5px;
  background: var(--mist);
}

.booking-progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--mint);
}

.booking-demo-body {
  min-height: 334px;
  padding: 24px;
  background: var(--cloud);
}

.booking-selection {
  display: grid;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist);
}

.booking-selection small,
.booking-selection span {
  color: var(--slate);
  font-size: 10px;
}

.booking-date-row,
.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.feature-booking-demo button.selected {
  border-color: var(--mint-deep);
  color: var(--mint-deep);
  background: #e4f8f1;
}

.feature-boundary {
  background: var(--cloud);
}

.boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 96px;
}

.boundary-grid h2 {
  max-width: 560px;
  margin: 12px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 36px;
  line-height: 1.18;
}

.boundary-grid p {
  margin: 0 0 20px;
  color: var(--slate);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--mint-deep);
  font-weight: 700;
}

.booking-operations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--mist);
}

.booking-operations > div {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid var(--mist);
}

.booking-operations > div:first-child {
  padding-left: 0;
}

.booking-operations > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.booking-operations small {
  color: var(--slate);
}

.feature-cta {
  padding-block: 64px;
  color: var(--white);
  background: var(--ink);
}

.feature-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
}

.feature-cta h2 {
  max-width: 760px;
  font-size: 34px;
}

.feature-cta p:not(.eyebrow) {
  margin: 0;
  color: #bdccc8;
}

@media (max-width: 900px) {
  .feature-product-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-product-grid {
    align-items: stretch;
  }

  .feature-steps,
  .booking-operations {
    grid-template-columns: 1fr;
  }

  .feature-steps li,
  .feature-steps li + li,
  .booking-operations > div,
  .booking-operations > div:first-child,
  .booking-operations > div:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .feature-steps li:last-child,
  .booking-operations > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .feature-page .signal-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 8px;
  }

  .feature-page .signal-inner > strong {
    padding-block: 8px;
    border-bottom: 1px solid var(--mist);
  }

  .feature-page .signal-inner > strong:last-child {
    border-bottom: 0;
  }

  .feature-page .signal-inner > span[aria-hidden] {
    display: none;
  }

  .feature-hero {
    height: min(700px, calc(100svh - 64px));
    min-height: 620px;
  }

  .feature-hero-media,
  .feature-hero-booking .feature-hero-media {
    object-position: 64% center;
  }

  .feature-hero-scrim {
    background: rgba(13, 23, 39, 0.8);
  }

  .feature-hero-content {
    padding-block: 28px;
  }

  .feature-breadcrumbs {
    margin-bottom: 24px;
    font-size: 10px;
  }

  .feature-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .feature-hero-promise {
    font-size: 21px;
  }

  .feature-hero-copy {
    margin-top: 16px;
    font-size: 14px;
  }

  .feature-product-copy h2,
  .feature-cta h2,
  .boundary-grid h2 {
    font-size: 30px;
  }

  .feature-chat-demo > header,
  .feature-booking-demo > header,
  .feature-chat-demo > footer,
  .feature-booking-demo > footer {
    padding-inline: 14px;
  }

  .feature-messages,
  .booking-demo-body {
    min-height: 0;
    padding: 18px 14px;
  }

  .feature-messages p {
    width: 88%;
  }

  .booking-date-row,
  .booking-slots {
    gap: 6px;
  }

  .feature-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-cta-inner .button {
    width: 100%;
  }
}

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

/* Shared content pages */
.content-page .desktop-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.content-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  padding: 148px 0 76px;
  color: var(--white);
  background: var(--ink);
}

.content-hero-media,
.content-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.content-hero-media {
  object-fit: cover;
  object-position: center;
}

.content-hero-overlay {
  background: rgba(13, 23, 39, 0.78);
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin: 0;
}

.content-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: #dbe5e2;
  font-size: 13px;
  font-weight: 600;
}

.content-breadcrumbs a {
  color: var(--white);
}

.content-hero h1,
.legal-intro h1 {
  max-width: 780px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
}

.content-hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #e7efed;
  font-size: 22px;
  line-height: 1.5;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.content-section {
  padding: 88px 0;
}

.content-section-cloud {
  background: var(--cloud);
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 48px;
}

.content-heading h2,
.contact-copy h2,
.content-callout h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.content-heading > p,
.contact-copy > p,
.content-callout > p {
  max-width: var(--reading);
  margin: 0;
  color: var(--slate);
}

.principle-grid,
.scope-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.principle-grid > article,
.scope-grid > article,
.about-grid > article {
  min-width: 0;
  padding: 30px;
  border-left: 1px solid var(--mist);
}

.principle-grid > article:first-child,
.scope-grid > article:first-child,
.about-grid > article:first-child {
  border-left: 0;
}

.principle-grid span,
.scope-grid span,
.about-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 800;
}

.principle-grid h3,
.scope-grid h3,
.about-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.principle-grid p,
.scope-grid p,
.about-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
}

.scope-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.scope-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.scope-table th,
.scope-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--mist);
  vertical-align: top;
}

.scope-table tr:last-child th,
.scope-table tr:last-child td {
  border-bottom: 0;
}

.scope-table th {
  width: 34%;
  color: var(--ink);
  font-size: 14px;
}

.scope-table td {
  color: var(--slate);
  font-size: 15px;
}

.scope-status {
  display: inline-block;
  min-width: 92px;
  margin-right: 10px;
  padding: 3px 7px;
  border-radius: 6px;
  color: var(--ink);
  background: #e4f8f1;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.scope-status-out {
  background: #fff3d5;
}

.content-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.content-callout-copy {
  max-width: 760px;
}

.content-callout-copy h2 {
  margin-bottom: 12px;
}

.content-callout-copy p {
  margin: 0;
  color: var(--slate);
}

.contact-section {
  background: var(--cloud);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}

.contact-copy > p {
  margin-top: 20px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}

.contact-details div {
  display: grid;
  gap: 2px;
}

.contact-details span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.contact-details a,
.contact-details strong {
  color: var(--ink);
  font-size: 15px;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--white);
}

.contact-form iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

.contact-form-note {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.contact-form-note a {
  color: var(--mint-deep);
  font-weight: 700;
}

.legal-page {
  background: var(--white);
}

.legal-intro {
  padding: 144px 0 62px;
  border-bottom: 1px solid var(--mist);
  background: var(--cloud);
}

.legal-intro .content-breadcrumbs {
  margin-bottom: 26px;
  color: var(--slate);
}

.legal-intro .content-breadcrumbs a {
  color: var(--ink);
}

.legal-intro h1 {
  color: var(--ink);
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 72px;
  justify-content: center;
  padding: 72px 0 96px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  align-self: start;
  gap: 9px;
  padding-top: 4px;
}

.legal-nav strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.legal-nav a {
  color: var(--slate);
  font-size: 13px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--mint-deep);
}

.legal-copy > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 18px;
}

.legal-copy h2 {
  margin: 54px 0 14px;
  padding-top: 8px;
  font-size: 26px;
  line-height: 1.25;
}

.legal-copy h2:first-of-type {
  margin-top: 36px;
}

.legal-copy h3 {
  margin: 28px 0 8px;
  font-size: 18px;
}

.legal-copy p,
.legal-copy li {
  color: #405150;
}

.legal-copy ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.legal-note {
  margin: 34px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--mint);
  background: var(--cloud);
  color: var(--ink);
}

.legal-contact {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--mist);
}

@media (max-width: 900px) {
  .content-hero h1,
  .legal-intro h1 {
    font-size: 48px;
  }

  .content-heading h2,
  .contact-copy h2,
  .content-callout h2 {
    font-size: 36px;
  }

  .content-heading,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .principle-grid,
  .scope-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid > article,
  .scope-grid > article,
  .about-grid > article {
    border-top: 1px solid var(--mist);
    border-left: 0;
  }

  .principle-grid > article:first-child,
  .scope-grid > article:first-child,
  .about-grid > article:first-child {
    border-top: 0;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mist);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .content-hero {
    min-height: 480px;
    padding: 126px 0 56px;
  }

  .content-hero h1 {
    font-size: 39px;
  }

  .legal-intro h1 {
    font-size: 29px;
  }

  .content-hero-lead {
    font-size: 18px;
  }

  .content-heading h2,
  .contact-copy h2,
  .content-callout h2 {
    font-size: 31px;
  }

  .content-section {
    padding: 64px 0;
  }

  .content-heading {
    margin-bottom: 34px;
  }

  .principle-grid > article,
  .scope-grid > article,
  .about-grid > article {
    padding: 24px 0;
  }

  .content-callout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form {
    padding: 16px;
  }

  .legal-intro {
    padding: 122px 0 46px;
  }

  .legal-layout {
    padding: 52px 0 72px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-copy h2 {
    margin-top: 42px;
  }
}
