:root {
  color-scheme: light;
  --navy: #063b6f;
  --navy-strong: #052f58;
  --blue: #168fc8;
  --teal: #00a99d;
  --teal-strong: #007f83;
  --green: #13865f;
  --coral: #c95e57;
  --amber: #a66b00;
  --ink: #17324a;
  --muted: #617686;
  --line: #d7e4e8;
  --soft: #f1f8f9;
  --soft-blue: #eef5f8;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--white); color: var(--ink); letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 10px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.site-brand { width: 205px; text-decoration: none; }
.site-brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.site-nav a { color: var(--muted); font-size: 0.86rem; font-weight: 750; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--teal-strong); }
.access-button { justify-self: end; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal-strong);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .credit-info summary:focus-visible { outline: 3px solid rgba(22, 143, 200, 0.28); outline-offset: 3px; }
.button.primary { border-color: var(--teal-strong); background: var(--teal-strong); color: var(--white); box-shadow: 0 8px 20px rgba(0, 127, 131, 0.16); }
.button.primary:hover { border-color: var(--navy); background: var(--navy); box-shadow: 0 10px 24px rgba(6, 59, 111, 0.18); }
.button.secondary { border-color: #b7cdd5; background: var(--white); color: var(--navy); }
.button.secondary:hover { border-color: var(--teal); background: #effafa; color: var(--teal-strong); }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #edf8f8;
}
.hero-brand-scene {
  position: absolute;
  z-index: 0;
  right: -150px;
  width: 760px;
  height: 760px;
  object-fit: contain;
  opacity: 0.22;
  mix-blend-mode: multiply;
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 72px;
  padding: 56px 0 62px;
}
.hero-content { min-width: 0; }
.hero-label {
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid #99d6d1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-strong);
  padding: 7px 11px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}
.hero h1 { margin: 0; color: var(--navy); font-size: 4.25rem; line-height: 1; letter-spacing: 0; }
.hero-lead { max-width: 700px; margin: 22px 0 0; color: #294b63; font-size: 1.34rem; font-weight: 650; line-height: 1.5; }
.hero-support { margin: 14px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.text-link { color: var(--navy); font-size: 0.92rem; font-weight: 800; text-underline-offset: 4px; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px 20px; margin: 28px 0 0; padding: 20px 0 0; border-top: 1px solid #c8dddf; list-style: none; }
.hero-points li { position: relative; padding-left: 19px; color: #496777; font-size: 0.82rem; font-weight: 750; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: 0.36em; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.12); }

.conversation-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border: 1px solid #c7d9df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(6, 59, 111, 0.16);
}
.conversation-toolbar { min-height: 66px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 10px 15px; border-bottom: 1px solid var(--line); }
.assistant-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 850; }
.conversation-toolbar strong, .conversation-toolbar span { display: block; }
.conversation-toolbar strong { color: var(--navy); font-size: 0.9rem; }
.conversation-toolbar div span { margin-top: 3px; color: var(--muted); font-size: 0.72rem; }
.online-dot { width: 10px; height: 10px; border-radius: 50%; background: #28a66a; box-shadow: 0 0 0 4px #e3f5eb; }
.conversation-body { display: grid; gap: 14px; min-height: 330px; padding: 22px 18px; background-color: #eef3f1; background-image: radial-gradient(#cedbd8 0.65px, transparent 0.65px); background-size: 13px 13px; }
.chat-message { max-width: 88%; padding: 11px 13px 8px; border-radius: 8px; box-shadow: 0 2px 5px rgba(20, 50, 65, 0.08); }
.chat-message span { display: block; margin-bottom: 5px; color: var(--teal-strong); font-size: 0.65rem; font-weight: 850; text-transform: uppercase; }
.chat-message p { margin: 0; color: #243f51; font-size: 0.85rem; line-height: 1.5; }
.chat-message small { display: block; margin-top: 6px; color: #71848e; font-size: 0.65rem; text-align: right; }
.patient-message { justify-self: end; background: #dcf7e6; }
.assistant-message { justify-self: start; background: var(--white); }
.response-indicator { display: flex; align-items: center; gap: 8px; padding: 11px 15px; border-top: 1px solid var(--line); color: var(--green); font-size: 0.76rem; font-weight: 800; }
.response-indicator span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: responsePulse 2s ease-in-out infinite; }

.benefits-section { padding: 42px max(24px, calc((100vw - 1240px) / 2)) 54px; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { min-width: 0; min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbfc; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.benefit-card:hover { transform: translateY(-3px); border-color: #a7ced2; box-shadow: 0 12px 30px rgba(6, 59, 111, 0.08); }
.benefit-marker { min-width: 42px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; background: #dff4f2; color: var(--teal-strong); padding: 0 9px; font-size: 0.72rem; font-weight: 900; }
.benefit-card h2 { margin: 18px 0 0; color: var(--navy); font-size: 1.08rem; line-height: 1.35; }
.benefit-card p { margin: 9px 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }

.section { padding: 88px max(24px, calc((100vw - 1240px) / 2)); }
.eyebrow { margin: 0 0 12px; color: var(--teal-strong); font-size: 0.75rem; font-weight: 850; text-transform: uppercase; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading.compact { max-width: 520px; }
.section h2, .impact-section h2, .final-cta h2 { margin: 0; color: var(--navy); font-size: 2.5rem; line-height: 1.18; letter-spacing: 0; }
.section-heading > p:last-child, .opportunity-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }

.opportunity-section { background: var(--soft-blue); }
.opportunity-heading { max-width: 820px; margin: 0 auto; text-align: center; }
.opportunity-heading h2 { margin: 0; color: var(--navy); font-size: 2.5rem; line-height: 1.18; }
.timeline-comparison { max-width: 1040px; margin: 46px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.timeline-column { border: 1px solid var(--line); border-radius: 8px; background: var(--white); overflow: hidden; }
.timeline-title { min-height: 62px; display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.timeline-title > span { min-width: 42px; height: 28px; display: grid; place-items: center; border-radius: 5px; font-size: 0.7rem; font-weight: 850; text-transform: uppercase; }
.without-flow .timeline-title > span { background: #fbe8e6; color: var(--coral); }
.with-flow .timeline-title > span { background: #dff4ec; color: var(--green); }
.timeline-title h3 { margin: 0; color: var(--navy); font-size: 1rem; }
.timeline-column ol { margin: 0; padding: 0; list-style: none; }
.timeline-column li { position: relative; min-height: 66px; display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 14px; padding: 11px 18px 11px 38px; border-bottom: 1px solid #e8eff1; }
.timeline-column li:last-child { border-bottom: 0; }
.timeline-column li::before { content: ""; position: absolute; left: 18px; width: 9px; height: 9px; border-radius: 50%; }
.without-flow li::before { background: var(--coral); }
.with-flow li::before { background: var(--green); }
.timeline-column time { color: var(--navy); font-size: 0.78rem; font-weight: 850; }
.timeline-column li span { color: #506979; font-size: 0.86rem; line-height: 1.4; }
.opportunity-outcomes { max-width: 1040px; margin: 28px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cbdde2; }
.opportunity-outcomes p { margin: 0; padding: 22px 24px; border-right: 1px solid #cbdde2; }
.opportunity-outcomes p:last-child { border-right: 0; }
.opportunity-outcomes strong, .opportunity-outcomes span { display: block; }
.opportunity-outcomes strong { color: var(--navy); font-size: 0.88rem; }
.opportunity-outcomes span { margin-top: 6px; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

.journey-section { background: var(--white); }
.workflow { position: relative; margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #b8d2d7; }
.workflow::after { content: ""; position: absolute; top: -4px; left: 0; width: 100%; height: 7px; pointer-events: none; background: repeating-linear-gradient(90deg, var(--teal-strong) 0 25%, transparent 25% 25.6%); opacity: 0.15; }
.workflow article { position: relative; min-width: 0; padding: 30px 28px 8px 0; }
.workflow article:not(:last-child) { border-right: 1px solid var(--line); margin-right: 28px; }
.workflow article::before { content: ""; position: absolute; top: -7px; left: 0; width: 13px; height: 13px; border: 3px solid var(--white); border-radius: 50%; background: var(--teal-strong); box-shadow: 0 0 0 1px var(--teal-strong); }
.workflow-number { color: var(--teal-strong); font-size: 0.76rem; font-weight: 900; }
.workflow-stage { margin: 8px 0 0; color: var(--muted); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.workflow h3 { min-height: 50px; margin: 13px 0 0; color: var(--navy); font-size: 1rem; line-height: 1.35; }
.workflow article > p:last-child, .workflow-description { margin: 9px 0 0; color: var(--muted); font-size: 0.84rem; line-height: 1.55; }
.workflow-description + .workflow-description { margin-top: 6px; }
.confirmation-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 34px; }
.confirmation-badges span { position: relative; border: 1px solid #b8d9d5; border-radius: 999px; background: #f2faf8; color: var(--teal-strong); padding: 7px 11px 7px 27px; font-size: 0.72rem; font-weight: 850; }
.confirmation-badges span::before { content: ""; position: absolute; left: 10px; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--green); transform: translateY(-50%); }
.confirmation-demo { max-width: 1040px; margin: 24px auto 0; display: grid; grid-template-columns: 1.15fr 0.85fr; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 16px 38px rgba(6, 59, 111, 0.08); }
.confirmation-message, .agenda-update { min-width: 0; padding: 24px; }
.confirmation-message { border-right: 1px solid var(--line); background: #eef4f2; }
.demo-label { margin: 0 0 12px; color: var(--muted); font-size: 0.68rem; font-weight: 850; text-transform: uppercase; }
.demo-bubble { max-width: 430px; border-radius: 7px; background: var(--white); padding: 13px 15px; box-shadow: 0 2px 7px rgba(23, 50, 74, 0.08); }
.demo-bubble strong { color: var(--teal-strong); font-size: 0.68rem; text-transform: uppercase; }
.demo-bubble p { margin: 6px 0 0; color: #385466; font-size: 0.82rem; line-height: 1.5; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.demo-actions span { border: 1px solid #9bcac6; border-radius: 5px; background: var(--white); color: var(--teal-strong); padding: 7px 9px; font-size: 0.68rem; font-weight: 800; }
.agenda-update { display: flex; flex-direction: column; justify-content: center; }
.agenda-update-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.agenda-update-head strong { color: var(--navy); font-size: 0.92rem; }
.agenda-update-head span { color: var(--green); font-size: 0.68rem; font-weight: 800; }
.agenda-update-row { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 10px; margin-top: 14px; padding: 12px; border-left: 3px solid var(--green); background: #f3faf6; }
.agenda-update-row time { color: var(--navy); font-size: 0.78rem; font-weight: 900; }
.agenda-update-row div strong, .agenda-update-row div span { display: block; }
.agenda-update-row div strong { color: var(--navy); font-size: 0.78rem; }
.agenda-update-row div span { margin-top: 3px; color: var(--muted); font-size: 0.66rem; }
.agenda-update-row > b { color: var(--green); font-size: 0.65rem; }

.agendaflow-section { background: #f7fafb; }
.agendaflow-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.agendaflow-grid article { min-width: 0; min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.agendaflow-grid article:hover { transform: translateY(-3px); border-color: #9bc9ce; box-shadow: 0 12px 28px rgba(6, 59, 111, 0.08); }
.agendaflow-grid article > span { min-width: 42px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; background: #dff4f2; color: var(--teal-strong); padding: 0 8px; font-size: 0.65rem; font-weight: 900; }
.agendaflow-grid h3 { margin: 18px 0 0; color: var(--navy); font-size: 1rem; }
.agendaflow-grid p { margin: 9px 0 0; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }

.centralization-section { background: var(--white); }
.centralization-comparison { max-width: 1100px; margin: 44px auto 0; display: grid; grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr); align-items: stretch; }
.centralization-comparison article { min-width: 0; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.centralization-comparison h3 { margin: 0; color: var(--navy); font-size: 1rem; }
.fragmented-operation { background: #fcf7f6; }
.fragmented-tools { min-height: 220px; display: flex; flex-wrap: wrap; align-content: center; gap: 10px; margin-top: 20px; }
.fragmented-tools span { border: 1px solid #e7c8c5; border-radius: 5px; background: var(--white); color: #7a5654; padding: 9px 11px; font-size: 0.75rem; box-shadow: 0 4px 12px rgba(120, 70, 65, 0.07); }
.fragmented-tools span:nth-child(2), .fragmented-tools span:nth-child(6) { transform: translateY(8px); }
.fragmented-tools span:nth-child(4) { transform: translateY(-7px); }
.centralization-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: var(--teal-strong); }
.centralization-arrow span { font-size: 2rem; }
.centralization-arrow strong { font-size: 0.68rem; text-transform: uppercase; }
.connected-operation { background: #f1faf8; }
.connected-operation ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.connected-operation li { position: relative; padding: 9px 8px 9px 23px; border-bottom: 1px solid #d9ebe7; color: #385d60; font-size: 0.76rem; }
.connected-operation li::before { content: ""; position: absolute; left: 7px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.centralization-highlight { max-width: 900px; margin: 30px auto 0; color: var(--navy); font-size: 1.05rem; font-weight: 850; line-height: 1.5; text-align: center; }

.health-section { background: #f8fafb; }
.health-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.health-grid article { min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.health-grid article > span { min-width: 42px; height: 29px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; background: #e4f5f4; color: var(--teal-strong); padding: 0 8px; font-size: 0.67rem; font-weight: 900; }
.health-grid h3 { margin: 17px 0 0; color: var(--navy); font-size: 0.95rem; line-height: 1.4; }
.health-grid p { margin: 8px 0 0; color: var(--muted); font-size: 0.79rem; line-height: 1.5; }
.health-closing { max-width: 800px; margin: 34px auto 0; color: var(--navy); font-size: 1rem; font-weight: 800; line-height: 1.6; text-align: center; }

.platform-overview-section { background: var(--white); }
.platform-overview-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.platform-overview-grid article { min-width: 0; min-height: 170px; padding: 21px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.platform-overview-grid article > span { color: var(--teal-strong); font-size: 0.68rem; font-weight: 900; }
.platform-overview-grid h3 { margin: 12px 0 0; color: var(--navy); font-size: 0.92rem; line-height: 1.35; }
.platform-overview-grid p { margin: 8px 0 0; color: var(--muted); font-size: 0.77rem; line-height: 1.5; }

.control-section { display: grid; grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr); gap: 80px; background: var(--navy); color: var(--white); }
.control-section .eyebrow { color: #70d8d2; }
.control-section h2 { color: var(--white); }
.control-section .section-heading > p:last-child { color: #c4d8e5; }
.control-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.24); }
.control-list article { min-height: 154px; display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 23px; border-right: 1px solid rgba(255, 255, 255, 0.18); border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.control-list article:nth-child(even) { border-right: 0; }
.control-list article > span { color: #70d8d2; font-size: 0.7rem; font-weight: 900; }
.control-list h3 { margin: 0; color: var(--white); font-size: 0.94rem; }
.control-list p { margin: 8px 0 0; color: #bfd3e1; font-size: 0.8rem; line-height: 1.55; }

.boundaries-section { background: var(--white); }
.boundaries-grid { max-width: 1040px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.boundaries-grid article { padding: 30px 34px; }
.boundaries-grid article + article { border-left: 1px solid var(--line); }
.assistant-boundary { background: #f1faf8; }
.team-boundary { background: #f5f7fa; }
.boundary-label { display: block; color: var(--teal-strong); font-size: 0.7rem; font-weight: 850; text-transform: uppercase; }
.team-boundary .boundary-label { color: var(--navy); }
.boundaries-grid h3 { margin: 9px 0 0; color: var(--navy); font-size: 1.25rem; }
.boundaries-grid ul { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.boundaries-grid li { position: relative; padding-left: 20px; color: #496273; font-size: 0.86rem; line-height: 1.4; }
.boundaries-grid li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.team-boundary li::before { background: var(--navy); }

.usability-section { background: #f7fafb; }
.usability-layout { margin-top: 38px; display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr); gap: 46px; align-items: center; }
.usability-features { border-top: 1px solid var(--line); }
.usability-features article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.usability-features article > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 5px; background: #dff4f2; color: var(--teal-strong); font-size: 0.64rem; font-weight: 900; }
.usability-features h3 { margin: 0; color: var(--navy); font-size: 0.94rem; }
.usability-features p { margin: 6px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }
.interface-mockup { min-width: 0; min-height: 390px; border: 1px solid #b9cfd7; border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 18px 46px rgba(6, 59, 111, 0.13); }
.mockup-topbar { height: 58px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; padding: 8px 14px; border-bottom: 1px solid var(--line); }
.mockup-topbar img { width: 34px; height: 34px; object-fit: contain; mix-blend-mode: multiply; }
.mockup-topbar strong { color: var(--navy); font-size: 0.84rem; }
.mockup-topbar span { color: var(--green); font-size: 0.68rem; font-weight: 800; }
.mockup-body { min-height: 330px; display: grid; grid-template-columns: 150px 1fr; }
.mockup-sidebar { display: flex; flex-direction: column; gap: 5px; padding: 16px 10px; background: var(--navy); }
.mockup-sidebar b { border-radius: 4px; color: #c7dbea; padding: 9px 10px; font-size: 0.67rem; }
.mockup-sidebar b:nth-child(2) { background: var(--white); color: var(--navy); }
.mockup-content { min-width: 0; padding: 16px; background: #f3f7f9; }
.mockup-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mockup-summary span { min-width: 0; border: 1px solid var(--line); border-radius: 5px; background: var(--white); color: var(--muted); padding: 10px; font-size: 0.62rem; }
.mockup-summary b { display: block; margin-bottom: 3px; color: var(--navy); font-size: 1rem; }
.mockup-agenda { margin-top: 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); padding: 14px; }
.mockup-agenda > strong { color: var(--navy); font-size: 0.78rem; }
.mockup-agenda p { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 8px; margin: 10px 0 0; padding: 9px 0; border-top: 1px solid #e8eef1; }
.mockup-agenda time { color: var(--navy); font-size: 0.68rem; font-weight: 850; }
.mockup-agenda p span { color: #506979; font-size: 0.68rem; }
.mockup-agenda p b { color: var(--green); font-size: 0.6rem; }
.mockup-agenda p:nth-of-type(2) b { color: var(--amber); }

.value-section { background: #edf6f5; }
.value-comparison { max-width: 900px; margin: 42px auto 0; display: grid; grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); align-items: center; }
.value-comparison article { min-height: 260px; border: 1px solid #c6dadd; border-radius: 8px; background: var(--white); padding: 26px; }
.comparison-label { color: var(--teal-strong); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.separate-tools ul { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.separate-tools li { border: 1px solid #e0e9ec; border-radius: 5px; background: #f8fafb; color: #5b7180; padding: 8px 10px; font-size: 0.75rem; }
.value-connector { color: var(--muted); font-size: 0.66rem; font-weight: 900; text-align: center; text-transform: uppercase; }
.integrated-platform { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.integrated-platform .comparison-label { align-self: flex-start; }
.integrated-platform img { width: 115px; height: 115px; object-fit: contain; mix-blend-mode: multiply; }
.integrated-platform strong { max-width: 260px; color: var(--navy); font-size: 1.08rem; line-height: 1.45; }
.value-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bfd5d7; border-left: 1px solid #bfd5d7; }
.value-grid article { min-width: 0; min-height: 150px; padding: 20px; border-right: 1px solid #bfd5d7; border-bottom: 1px solid #bfd5d7; }
.value-grid h3 { margin: 0; color: var(--navy); font-size: 0.86rem; line-height: 1.4; }
.value-grid p { margin: 8px 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.5; }
.value-highlight { max-width: 860px; margin: 28px auto 0; color: var(--navy); font-size: 1.02rem; font-weight: 850; line-height: 1.5; text-align: center; }

.evolution-section { background: var(--white); }
.evolution-grid { position: relative; margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.evolution-grid::before { content: ""; position: absolute; top: 17px; left: 8%; right: 8%; height: 1px; background: #b9d6d5; }
.evolution-grid article { position: relative; min-width: 0; min-height: 170px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 24px; }
.evolution-grid article > span { position: relative; z-index: 1; display: inline-block; border-radius: 999px; background: #e3f5f2; color: var(--teal-strong); padding: 5px 8px; font-size: 0.62rem; font-weight: 900; }
.evolution-grid h3 { margin: 17px 0 0; color: var(--navy); font-size: 0.94rem; }
.evolution-grid p { margin: 8px 0 0; color: var(--muted); font-size: 0.77rem; line-height: 1.5; }
.evolution-note { margin: 22px 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.5; }

.plans-section { background: var(--soft-blue); }
.plans-intro { margin-top: 18px; }
.plans-intro p { margin: 5px 0 0; color: var(--muted); font-size: 0.96rem; line-height: 1.65; }
.plan-currency-note { display: block; margin-top: 12px; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.plans-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.plan-card.featured { border: 2px solid var(--teal-strong); padding: 29px; background: #f8fefd; box-shadow: 0 18px 45px rgba(0, 127, 131, 0.11); }
.plan-name { margin: 0 0 9px; color: var(--teal-strong); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; }
.plan-card h3 { margin: 0; color: var(--navy); font-size: 2rem; letter-spacing: 0; }
.plan-card h3 small { font-size: 0.8rem; font-weight: 750; }
.plan-heading > span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.8rem; }
.plan-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.plan-title-row .plan-heading { min-width: 0; }
.plan-badge { min-width: 104px; max-width: 130px; border-radius: 999px; background: #dff4ec; color: var(--green); padding: 6px 9px; font-size: 0.63rem; font-weight: 900; line-height: 1.25; text-align: center; }
.plan-card > ul { flex: 1; margin: 26px 0 12px; padding: 0; list-style: none; }
.plan-card > ul li { padding: 10px 0; border-bottom: 1px solid #e7eef1; color: #455f70; font-size: 0.86rem; line-height: 1.45; }
.credit-info { position: relative; min-height: 30px; margin: 4px 0 16px; }
.credit-info summary { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #a9c2cc; border-radius: 50%; color: var(--navy); font-size: 0.72rem; font-weight: 900; cursor: pointer; list-style: none; }
.credit-info summary::-webkit-details-marker { display: none; }
.credit-info p { position: absolute; z-index: 3; left: 0; bottom: 30px; width: min(290px, calc(100vw - 80px)); margin: 0; border: 1px solid #bcd1d7; border-radius: 6px; background: var(--white); color: var(--muted); padding: 10px 12px; box-shadow: 0 10px 24px rgba(6, 59, 111, 0.12); font-size: 0.75rem; line-height: 1.45; }

.security-section { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr); gap: 80px; align-items: center; background: var(--white); }
.security-copy > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 0.95rem; line-height: 1.75; }
.security-badges { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.security-badges span { min-height: 94px; display: flex; align-items: center; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-size: 0.84rem; font-weight: 800; line-height: 1.4; }
.security-badges span::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-right: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px #e1f5f3; }

.impact-section { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 68px max(24px, calc((100vw - 900px) / 2)); background: #073c54; color: var(--white); text-align: center; }
.impact-section .eyebrow { color: #79ded6; }
.impact-section h2 { color: var(--white); font-size: 2.55rem; }
.impact-section > p:not(.eyebrow) { max-width: 710px; margin: 18px 0 0; color: #c2d7df; font-size: 1rem; line-height: 1.65; }
.impact-section strong { margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.24); padding-top: 24px; color: #7de3da; font-size: 1.35rem; }

.final-cta { min-height: 660px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 76px max(24px, calc((100vw - 1040px) / 2)); background: #eaf7f6; text-align: center; }
.final-cta h2 { max-width: 760px; font-size: 2.65rem; }
.final-cta-copy { max-width: 820px; margin-top: 18px; }
.final-cta-copy p { margin: 7px 0 0; color: var(--muted); font-size: 0.96rem; line-height: 1.65; }
.final-benefits { width: 100%; margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c3dcdd; border-left: 1px solid #c3dcdd; }
.final-benefits span { position: relative; min-height: 64px; display: flex; align-items: center; border-right: 1px solid #c3dcdd; border-bottom: 1px solid #c3dcdd; color: var(--navy); padding: 12px 12px 12px 31px; font-size: 0.75rem; font-weight: 800; text-align: left; }
.final-benefits span::before { content: ""; position: absolute; left: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.final-impact { max-width: 850px; margin-top: 30px; color: var(--navy); font-size: 1.08rem; line-height: 1.45; }
.final-cta .button { margin-top: 22px; }
.final-cta small { margin-top: 10px; color: var(--muted); font-size: 0.74rem; }

footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 24px max(24px, calc((100vw - 1240px) / 2)); border-top: 1px solid var(--line); background: var(--white); }
.footer-brand { width: 180px; }
.footer-brand img { height: 48px; object-fit: contain; object-position: left center; }
footer p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.footer-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.footer-actions a, .footer-actions button { color: var(--navy); font-size: 0.84rem; font-weight: 800; }
.footer-actions a { text-underline-offset: 4px; }
.footer-actions button { border: 0; background: transparent; padding: 7px 0; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.footer-actions a:hover, .footer-actions button:hover { color: var(--teal-strong); }

.contact-modal { position: fixed; z-index: 100; inset: 0; display: flex; align-items: center; justify-content: center; overflow-y: auto; background: rgba(5, 47, 88, 0.58); padding: 28px; }
.contact-modal[hidden] { display: none; }
.contact-panel { width: min(560px, 100%); max-height: calc(100vh - 56px); overflow-y: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 24px; box-shadow: 0 24px 70px rgba(5, 47, 88, 0.25); }
.contact-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.contact-panel-head h2 { margin: 3px 0 0; color: var(--navy); font-size: 1.65rem; }
.contact-panel-head > div > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.contact-close { width: 38px; height: 38px; flex: 0 0 38px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); color: var(--navy); cursor: pointer; font-weight: 800; }
.contact-form { display: grid; gap: 14px; padding-top: 20px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: 0.82rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #b9ced6; border-radius: 6px; background: var(--white); color: var(--ink); padding: 11px 12px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal-strong); box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.14); }
.contact-form textarea { min-height: 132px; resize: vertical; }
.contact-form .button { justify-self: end; min-width: 118px; }
.contact-form-status { min-height: 20px; color: var(--muted); font-size: 0.8rem; }
.contact-form-status[data-state="success"] { color: var(--green); }
.contact-form-status[data-state="error"] { color: var(--coral); }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
body.contact-open { overflow: hidden; }

@keyframes responsePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.58; }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 190px 1fr auto; gap: 20px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 0.78rem; }
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr); gap: 42px; }
  .hero h1 { font-size: 3.75rem; }
  .hero-lead { font-size: 1.18rem; }
  .health-grid, .agendaflow-grid, .platform-overview-grid, .value-grid, .evolution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { min-height: auto; }
  .hero-brand-scene { right: -220px; width: 650px; height: 650px; opacity: 0.13; }
  .hero-shell { grid-template-columns: 1fr; gap: 38px; padding: 58px 0 64px; }
  .hero-content { max-width: 720px; }
  .conversation-stage { max-width: 640px; justify-self: start; }
  .conversation-body { min-height: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .workflow { grid-template-columns: repeat(2, 1fr); border-top: 0; gap: 0 26px; }
  .workflow::after { display: none; }
  .workflow article { border-top: 1px solid #b8d2d7; padding-bottom: 32px; }
  .workflow article:nth-child(2) { margin-right: 0; border-right: 0; }
  .confirmation-demo { grid-template-columns: 1fr; }
  .confirmation-message { border-right: 0; border-bottom: 1px solid var(--line); }
  .centralization-comparison { grid-template-columns: 1fr; gap: 14px; }
  .centralization-arrow { min-height: 64px; }
  .centralization-arrow span { transform: rotate(90deg); }
  .usability-layout { grid-template-columns: 1fr; }
  .interface-mockup { max-width: 720px; width: 100%; }
  .control-section, .security-section { grid-template-columns: 1fr; gap: 46px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .credit-info p { left: 32px; bottom: auto; top: 0; }
}

@media (max-width: 680px) {
  .site-header { min-height: 66px; padding: 7px 16px; gap: 10px; }
  .site-brand { width: 140px; }
  .site-brand img { height: 44px; }
  .access-button { min-height: 38px; padding: 0 11px; font-size: 0.76rem; }
  .hero-shell { width: calc(100% - 32px); gap: 17px; padding: 27px 0 30px; }
  .hero-label { margin-bottom: 12px; font-size: 0.64rem; line-height: 1.35; }
  .hero h1 { font-size: 2.55rem; }
  .hero-lead { margin-top: 15px; font-size: 1rem; line-height: 1.48; }
  .hero-support { display: none; }
  .hero-actions { align-items: center; flex-direction: row; gap: 12px; margin-top: 17px; }
  .hero-actions .button { flex: 1 1 56%; padding: 0 10px; }
  .text-link { flex: 1 1 44%; font-size: 0.8rem; text-align: center; }
  .hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 9px; margin-top: 14px; padding-top: 12px; }
  .hero-points li { padding-left: 14px; font-size: 0.65rem; line-height: 1.3; }
  .hero-points li::before { width: 7px; height: 7px; box-shadow: none; }
  .conversation-stage { max-width: none; max-height: 253px; overflow: hidden; }
  .conversation-toolbar { min-height: 48px; grid-template-columns: 31px 1fr auto; padding: 6px 10px; }
  .assistant-avatar { width: 31px; height: 31px; font-size: 0.72rem; }
  .conversation-toolbar strong { font-size: 0.73rem; }
  .conversation-toolbar div span { margin-top: 1px; font-size: 0.62rem; }
  .conversation-body { min-height: 166px; gap: 7px; padding: 9px; }
  .chat-message { padding: 6px 8px 5px; }
  .chat-message span { margin-bottom: 3px; font-size: 0.58rem; }
  .chat-message p { font-size: 0.67rem; line-height: 1.35; }
  .chat-message small { margin-top: 3px; font-size: 0.56rem; }
  .assistant-message p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .response-indicator { padding: 7px 10px; font-size: 0.62rem; }
  .benefits-section { padding: 30px 16px 42px; }
  .benefits-grid { gap: 11px; }
  .benefit-card { padding: 19px; }
  .benefit-card h2 { margin-top: 14px; }
  .section { padding: 64px 16px; }
  .section h2, .opportunity-heading h2, .impact-section h2, .final-cta h2 { font-size: 1.9rem; }
  .section-heading > p:last-child, .opportunity-heading > p:last-child { font-size: 0.9rem; line-height: 1.62; }
  .timeline-comparison { grid-template-columns: 1fr; margin-top: 34px; }
  .opportunity-outcomes { grid-template-columns: 1fr; }
  .opportunity-outcomes p { padding: 17px 0; border-right: 0; border-bottom: 1px solid #cbdde2; }
  .opportunity-outcomes p:last-child { border-bottom: 0; }
  .workflow { grid-template-columns: 1fr; margin-top: 38px; }
  .workflow article, .workflow article:not(:last-child), .workflow article:nth-child(2) { margin-right: 0; border-right: 0; border-top: 1px solid #b8d2d7; padding: 27px 0 32px 32px; }
  .workflow article::before { left: 0; }
  .workflow h3 { min-height: 0; }
  .confirmation-badges { display: grid; grid-template-columns: 1fr; }
  .confirmation-badges span { width: 100%; }
  .confirmation-message, .agenda-update { padding: 18px; }
  .demo-actions { display: grid; grid-template-columns: 1fr; }
  .agenda-update-row { grid-template-columns: 44px 1fr; }
  .agenda-update-row > b { grid-column: 2; }
  .health-grid, .agendaflow-grid, .platform-overview-grid, .value-grid, .evolution-grid { grid-template-columns: 1fr; gap: 10px; }
  .health-grid article { padding: 18px; }
  .agendaflow-grid article { min-height: 0; padding: 19px; }
  .platform-overview-grid { border-left: 0; }
  .platform-overview-grid article { min-height: 0; border-left: 1px solid var(--line); }
  .fragmented-tools { min-height: 0; }
  .connected-operation ul { grid-template-columns: 1fr; }
  .usability-layout { gap: 30px; }
  .interface-mockup { min-height: 330px; }
  .mockup-topbar { grid-template-columns: 30px 1fr; }
  .mockup-topbar span { display: none; }
  .mockup-body { min-height: 272px; grid-template-columns: 88px 1fr; }
  .mockup-sidebar { padding: 10px 6px; }
  .mockup-sidebar b { overflow-wrap: anywhere; padding: 7px 5px; font-size: 0.56rem; }
  .mockup-content { padding: 10px; }
  .mockup-summary { gap: 5px; }
  .mockup-summary span { padding: 7px 5px; font-size: 0.52rem; }
  .mockup-summary b { font-size: 0.8rem; }
  .mockup-agenda { padding: 9px; }
  .mockup-agenda p { grid-template-columns: 34px 1fr; }
  .mockup-agenda p b { grid-column: 2; }
  .value-comparison { grid-template-columns: 1fr; gap: 14px; }
  .value-comparison article { min-height: 0; }
  .value-connector { padding: 5px 0; }
  .value-grid { border-left: 0; }
  .value-grid article { min-height: 0; border-left: 1px solid #bfd5d7; }
  .evolution-grid::before { display: none; }
  .evolution-grid article { min-height: 0; }
  .control-list { grid-template-columns: 1fr; }
  .control-list article, .control-list article:nth-child(even) { min-height: 0; border-right: 0; padding: 19px 4px; }
  .boundaries-grid { grid-template-columns: 1fr; }
  .boundaries-grid article { padding: 24px; }
  .boundaries-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .plan-card { padding: 24px; }
  .plan-card.featured { padding: 23px; }
  .plan-title-row { display: block; }
  .plan-badge { display: inline-block; margin-top: 12px; }
  .security-badges { grid-template-columns: 1fr; }
  .security-badges span { min-height: 68px; }
  .impact-section { min-height: 330px; padding: 58px 16px; }
  .impact-section strong { font-size: 1.05rem; }
  .final-cta { min-height: 0; padding: 62px 16px; }
  .final-benefits { grid-template-columns: repeat(2, 1fr); }
  .final-benefits span { min-height: 70px; padding-right: 8px; font-size: 0.68rem; }
  footer { grid-template-columns: 1fr; justify-items: start; padding: 28px 16px; }
  .footer-actions { justify-self: start; align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-modal { align-items: flex-start; padding: 16px; }
  .contact-panel { max-height: calc(100vh - 32px); padding: 20px; }
}

@media (max-width: 380px) {
  .site-brand { width: 120px; }
  .access-button { max-width: 122px; line-height: 1.2; }
  .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: 2.4rem; }
  .timeline-column li { grid-template-columns: 50px 1fr; padding-right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .benefit-card, .agendaflow-grid article { transition: none; }
  .response-indicator span { animation: none; }
}
