:root {
  --ink: #102236;
  --ink-2: #20364b;
  --paper: #f4f1e9;
  --white: #ffffff;
  --line: #cfd6d9;
  --line-dark: #9da9af;
  --muted: #5f6d76;
  --copper: #a85f35;
  --copper-dark: #7e4325;
  --sage: #dfe8e2;
  --sage-deep: #315f51;
  --sand: #e7dfd1;
  --blue-pale: #e8eef2;
  --warning: #b66a20;
  --danger: #a13e34;
  --success: #397056;
  --shadow: 0 18px 42px rgba(16, 34, 54, 0.10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.13em;
  font-size: 1rem;
}
.brand-mark {
  width: 31px;
  height: 31px;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 25px 0 22px;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--copper);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line-dark);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: block;
  content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 40px), 850px); margin: 0 auto; }
section { padding: 92px 0; }
.section-tight { padding: 62px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-sage { background: var(--sage); }
.section-sand { background: var(--sand); }
.border-top { border-top: 1px solid var(--line); }

h1, h2, h3, h4 {
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.45rem, 5vw, 4.35rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 22px; }
.lead { font-size: clamp(1.12rem, 2vw, 1.32rem); color: var(--ink-2); max-width: 760px; }
.section-dark .lead { color: #d9e1e7; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 430px); gap: 60px; align-items: end; margin-bottom: 46px; }
.section-intro p { color: var(--muted); margin: 0; }
.section-dark .section-intro p { color: #c9d2d9; }
.kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--copper-dark);
}
.section-dark .kicker { color: #dfaa86; }
.rule { width: 70px; height: 4px; background: var(--copper); margin: 24px 0; }

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.93rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-1px); background: var(--ink-2); }
.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--white); }
.button-copper { background: var(--copper); border-color: var(--copper); }
.button-copper:hover { background: var(--copper-dark); }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover { background: #e9eef1; }
.button-small { min-height: 39px; padding: 8px 14px; font-size: 0.86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.hero {
  padding: 74px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 58px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.65rem, 5.1vw, 4.55rem); }
.hero-copy .lead { margin-top: 24px; }
.hero-note {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 14px;
  max-width: 590px;
  color: var(--muted);
  font-size: 0.93rem;
}
.hero-note::before { content: ""; background: var(--copper); }

.product-window {
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  min-width: 0;
}
.product-topbar {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border: 1px solid #a8b6c1; }
.window-user { display: flex; align-items: center; gap: 9px; }
.window-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.72rem;
}
.product-body { display: grid; grid-template-columns: 154px 1fr; min-height: 470px; }
.product-sidebar { background: #edf0ef; border-right: 1px solid var(--line); padding: 18px 12px; }
.sidebar-brand { font-weight: 850; letter-spacing: 0.12em; font-size: 0.78rem; margin: 0 0 21px 8px; }
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 9px;
  color: #50616d;
  font-size: 0.77rem;
  font-weight: 700;
  border-left: 3px solid transparent;
}
.sidebar-item.active { background: var(--white); color: var(--ink); border-left-color: var(--copper); }
.sidebar-icon { width: 16px; height: 16px; opacity: 0.9; }
.product-main { padding: 21px 22px 18px; min-width: 0; background: #fafbfa; }
.product-heading { display: flex; justify-content: space-between; align-items: start; gap: 18px; margin-bottom: 18px; }
.product-heading h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-heading p { margin: 0; color: var(--muted); font-size: 0.74rem; }
.status-live { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 800; color: var(--success); }
.status-live::before { content: ""; width: 7px; height: 7px; background: var(--success); }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 14px; }
.metric { padding: 12px 9px; border-right: 1px solid var(--line); background: var(--white); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: 1.22rem; line-height: 1; margin-bottom: 5px; }
.metric span { display: block; color: var(--muted); font-size: 0.62rem; line-height: 1.2; }
.operations-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 14px; }
.map-panel, .attention-panel, .voice-panel { border: 1px solid var(--line); background: var(--white); }
.panel-head { min-height: 39px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; border-bottom: 1px solid var(--line); }
.panel-head h4 { margin: 0; font-size: 0.72rem; letter-spacing: 0.02em; }
.panel-head a { color: var(--copper-dark); font-size: 0.64rem; font-weight: 750; text-decoration: none; }
.map-art { height: 172px; position: relative; overflow: hidden; background: #e8ecea; }
.map-road { position: absolute; height: 12px; background: #fff; border: 1px solid #d7dcda; transform-origin: left center; }
.map-road.r1 { width: 125%; left: -25px; top: 72px; transform: rotate(-12deg); }
.map-road.r2 { width: 100%; left: 30px; top: 112px; transform: rotate(21deg); }
.map-road.r3 { width: 75%; left: 125px; top: 17px; transform: rotate(76deg); }
.map-block { position: absolute; border: 1px solid #d2d8d5; background: #f6f7f5; }
.map-pin { position: absolute; width: 19px; height: 19px; border: 4px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.25); transform: rotate(45deg); }
.map-pin::after { content: ""; width: 5px; height: 5px; background: var(--white); position: absolute; top: 3px; left: 3px; }
.map-pin.green { background: var(--success); }
.map-pin.orange { background: var(--warning); }
.map-pin.blue { background: var(--ink-2); }
.pin-label { position: absolute; padding: 4px 6px; background: var(--ink); color: var(--white); font-size: 0.55rem; white-space: nowrap; }
.attention-list { padding: 3px 0; }
.attention-item { display: grid; grid-template-columns: 7px 1fr auto; gap: 9px; padding: 10px 10px; border-bottom: 1px solid #e7ebed; align-items: start; }
.attention-item:last-child { border-bottom: 0; }
.attention-dot { width: 7px; height: 7px; margin-top: 5px; background: var(--warning); }
.attention-dot.red { background: var(--danger); }
.attention-dot.green { background: var(--success); }
.attention-item strong { display: block; font-size: 0.66rem; line-height: 1.25; }
.attention-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.58rem; line-height: 1.25; }
.attention-time { color: var(--muted); font-size: 0.53rem; white-space: nowrap; }
.hero-voice { margin-top: 14px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); padding: 12px; }
.hero-voice-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.voice-mini { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mic-square { width: 29px; height: 29px; display: grid; place-items: center; background: var(--copper); flex: 0 0 auto; }
.voice-mini p { margin: 0; font-size: 0.65rem; color: #dfe6eb; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.voice-mini strong { display: block; color: var(--white); font-size: 0.7rem; }
.hero-voice .button { border-color: #6d7d8b; min-height: 32px; padding: 6px 9px; font-size: 0.61rem; background: transparent; }

.command-stage { background: var(--ink); color: var(--white); border-top: 1px solid #30485d; border-bottom: 1px solid #30485d; }
.command-shell { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: center; }
.command-copy h2 { max-width: 540px; }
.command-copy p { color: #cbd5dc; max-width: 560px; }
.command-example { border: 1px solid #516474; background: #142b41; box-shadow: 16px 16px 0 rgba(255,255,255,0.05); }
.command-input { padding: 23px; border-bottom: 1px solid #516474; }
.command-label { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 17px; font-size: 0.76rem; color: #c1cbd2; }
.listening-state { display: flex; gap: 3px; align-items: end; height: 18px; }
.listening-state span { width: 3px; background: #d9a17b; animation: bars 1s ease-in-out infinite; }
.listening-state span:nth-child(1) { height: 7px; }
.listening-state span:nth-child(2) { height: 15px; animation-delay: 0.12s; }
.listening-state span:nth-child(3) { height: 10px; animation-delay: 0.24s; }
.listening-state span:nth-child(4) { height: 17px; animation-delay: 0.36s; }
.listening-state span:nth-child(5) { height: 8px; animation-delay: 0.48s; }
@keyframes bars { 0%,100% { transform: scaleY(.65); opacity:.65; } 50% { transform:scaleY(1); opacity:1; } }
.command-transcript { min-height: 84px; font-size: clamp(1.25rem, 2.4vw, 1.85rem); line-height: 1.35; margin: 0; }
.command-caret { display: inline-block; width: 2px; height: 1.1em; background: #d9a17b; vertical-align: -0.15em; animation: blink 800ms step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.command-result { padding: 23px; background: var(--white); color: var(--ink); }
.command-result-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; margin-bottom: 17px; border-bottom: 1px solid var(--line); }
.command-result-head strong { display: block; }
.command-result-head span { color: var(--success); font-size: 0.78rem; font-weight: 800; }
.appointment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.appointment-field small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.62rem; font-weight: 800; margin-bottom: 4px; }
.appointment-field strong { font-size: 0.95rem; }
.confirm-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.confirm-row p { color: var(--muted); font-size: 0.76rem; margin: 0; }

.statement-band { background: var(--copper); color: var(--white); padding: 32px 0; }
.statement-inner { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 40px; }
.statement-inner strong { font-size: clamp(1.45rem, 2.6vw, 2.25rem); line-height: 1.2; }
.statement-inner p { margin: 0; font-size: 0.94rem; color: #f4e6dd; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-block { background: var(--white); padding: 29px; min-height: 240px; }
.feature-block .icon-box,
.module .icon-box { width: 42px; height: 42px; display: grid; place-items: center; background: var(--sage); margin-bottom: 27px; }
.feature-block h3 { margin-bottom: 12px; }
.feature-block p { color: var(--muted); font-size: 0.94rem; margin-bottom: 0; }
.feature-block a { display: inline-block; margin-top: 20px; font-weight: 750; font-size: 0.9rem; text-underline-offset: 4px; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-dark); background: var(--line-dark); gap: 1px; }
.coverage-cell { background: var(--white); padding: 32px; min-height: 260px; }
.coverage-cell:nth-child(2), .coverage-cell:nth-child(3) { background: var(--blue-pale); }
.coverage-cell h3 { margin-bottom: 12px; }
.coverage-cell p { color: var(--muted); font-size: 0.94rem; }
.inline-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; }
.inline-list li { position: relative; padding-left: 14px; font-size: 0.84rem; color: var(--ink-2); }
.inline-list li::before { content: ""; position: absolute; width: 5px; height: 5px; background: var(--copper); left: 0; top: 0.55em; }

.live-board { background: var(--white); border: 1px solid var(--line-dark); box-shadow: var(--shadow); }
.live-board-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.live-board-top h3 { margin: 0; }
.live-board-top p { margin: 3px 0 0; color: var(--muted); font-size: 0.82rem; }
.live-board-body { padding: 24px; }
.big-metrics { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); }
.big-metric { padding: 16px 13px; border-right: 1px solid var(--line); }
.big-metric:last-child { border-right: 0; }
.big-metric strong { display: block; font-size: 1.75rem; line-height: 1; }
.big-metric span { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 8px; }
.board-columns { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 18px; margin-top: 18px; }
.board-panel { border: 1px solid var(--line); min-width: 0; }
.board-panel-title { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid var(--line); }
.board-panel-title h4 { margin: 0; }
.board-table { width: 100%; border-collapse: collapse; font-size: 0.79rem; }
.board-table th { text-align: left; padding: 10px 12px; background: #edf1f2; color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
.board-table td { padding: 11px 12px; border-top: 1px solid #e3e8ea; vertical-align: middle; }
.status-cell { display: inline-flex; align-items: center; gap: 7px; font-weight: 750; }
.status-square { width: 7px; height: 7px; background: var(--success); }
.status-square.orange { background: var(--warning); }
.status-square.red { background: var(--danger); }
.feed-list { padding: 4px 14px 2px; }
.feed-item { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 12px 0; border-bottom: 1px solid #e3e8ea; }
.feed-item:last-child { border-bottom: 0; }
.feed-icon { width: 32px; height: 32px; display: grid; place-items: center; background: var(--sage); font-weight: 800; font-size: 0.7rem; }
.feed-item p { margin: 0; font-size: 0.79rem; }
.feed-item span { display: block; color: var(--muted); font-size: 0.68rem; margin-top: 3px; }

.context-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 60px; align-items: center; }
.context-list { border-left: 2px solid var(--line-dark); }
.context-item { padding: 7px 0 24px 28px; position: relative; }
.context-item::before { content: ""; position: absolute; width: 11px; height: 11px; left: -7px; top: 11px; background: var(--white); border: 2px solid var(--copper); }
.context-item h3 { font-size: 1.07rem; margin-bottom: 7px; }
.context-item p { color: var(--muted); font-size: 0.89rem; margin: 0; }
.conversation-mock { background: var(--white); border: 1px solid var(--line-dark); box-shadow: var(--shadow); }
.conversation-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 19px; border-bottom: 1px solid var(--line); }
.conversation-title strong { display: block; }
.conversation-title span { color: var(--muted); font-size: 0.75rem; }
.conversation-body { padding: 20px; }
.message { max-width: 86%; padding: 13px 14px; margin-bottom: 12px; border-left: 3px solid var(--line-dark); background: #edf1f2; font-size: 0.88rem; }
.message.mine { margin-left: auto; background: var(--sage); border-left-color: var(--sage-deep); }
.message small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.66rem; }
.message-action { border: 1px solid var(--copper); background: #fff7f1; padding: 14px; margin-top: 18px; }
.message-action strong { display: block; }
.message-action p { margin: 4px 0 12px; color: var(--muted); font-size: 0.8rem; }
.action-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.action-tag { border: 1px solid var(--line-dark); padding: 6px 9px; font-size: 0.7rem; font-weight: 750; background: var(--white); }

.workflow { counter-reset: flow; border-top: 1px solid var(--line-dark); }
.workflow-row { counter-increment: flow; display: grid; grid-template-columns: 100px 0.75fr 1.25fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.workflow-row::before { content: counter(flow, decimal-leading-zero); font-size: 1.25rem; font-weight: 850; color: var(--copper); }
.workflow-row h3 { margin: 0; }
.workflow-row p { margin: 0; color: var(--muted); }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); gap: 1px; background: var(--line); }
.module { background: var(--white); padding: 28px; min-height: 280px; }
.module h3 { margin-bottom: 11px; }
.module p { color: var(--muted); font-size: 0.9rem; }
.module ul { margin: 18px 0 0; padding: 0; list-style: none; }
.module li { padding: 8px 0 8px 17px; border-top: 1px solid #e3e8ea; font-size: 0.83rem; position: relative; }
.module li::before { content: ""; width: 5px; height: 5px; background: var(--copper); position: absolute; left: 0; top: 1.1em; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-top { align-items: start; }
.data-table-wrap { overflow-x: auto; border: 1px solid var(--line-dark); background: var(--white); }
.data-table { width: 100%; min-width: 650px; border-collapse: collapse; }
.data-table th { background: var(--ink); color: var(--white); text-align: left; padding: 14px 16px; font-size: 0.77rem; letter-spacing: 0.05em; }
.data-table td { padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; font-size: 0.88rem; }
.data-table td:first-child { font-weight: 800; width: 22%; }
.data-table tr:nth-child(even) td { background: #f2f5f5; }

.pricing-hero { padding: 72px 0 48px; }
.pricing-controls { display: flex; align-items: center; gap: 0; margin-top: 30px; }
.billing-button { border: 1px solid var(--ink); background: transparent; padding: 10px 14px; cursor: pointer; font-weight: 750; font-size: 0.86rem; }
.billing-button + .billing-button { border-left: 0; }
.billing-button.active { background: var(--ink); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); background: var(--line-dark); gap: 1px; }
.price-card { background: var(--white); padding: 27px 24px; display: flex; flex-direction: column; min-height: 620px; }
.price-card.featured { background: var(--sage); }
.price-card .plan-name { font-size: 1.22rem; font-weight: 850; margin: 0 0 8px; }
.price-card .plan-desc { min-height: 75px; color: var(--muted); font-size: 0.87rem; }
.price { display: flex; align-items: end; gap: 4px; min-height: 72px; margin: 20px 0 10px; }
.price strong { font-size: 2.65rem; line-height: 1; letter-spacing: -0.04em; }
.price span { color: var(--muted); font-size: 0.78rem; margin-bottom: 5px; }
.price-note { color: var(--muted); font-size: 0.74rem; min-height: 38px; }
.price-card .button { width: 100%; margin: 18px 0 22px; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li { padding: 9px 0 9px 19px; border-top: 1px solid rgba(157,169,175,0.55); font-size: 0.82rem; position: relative; }
.price-list li::before { content: ""; position: absolute; left: 0; top: 1.1em; width: 7px; height: 4px; border-left: 2px solid var(--success); border-bottom: 2px solid var(--success); transform: rotate(-45deg); }
.price-card small { display: block; margin-top: auto; padding-top: 20px; color: var(--muted); font-size: 0.69rem; }
.pricing-note { margin-top: 24px; color: var(--muted); font-size: 0.82rem; }

.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line-dark); }
.comparison-table th { background: var(--ink); color: var(--white); text-align: center; padding: 15px 12px; font-size: 0.75rem; }
.comparison-table th:first-child { text-align: left; width: 34%; }
.comparison-table td { border-top: 1px solid var(--line); padding: 13px 12px; text-align: center; font-size: 0.82rem; }
.comparison-table td:first-child { text-align: left; font-weight: 700; }
.comparison-table tr:nth-child(even) td { background: #f4f6f6; }
.check { color: var(--success); font-weight: 900; }
.dash { color: var(--line-dark); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq { background: var(--white); padding: 28px; }
.faq h3 { font-size: 1.05rem; }
.faq p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.about-hero { padding: 86px 0; }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.origin-card { background: var(--ink); color: var(--white); padding: 42px; position: relative; }
.origin-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 7px; background: var(--copper); }
.origin-card blockquote { margin: 0; font-size: 1.55rem; line-height: 1.35; font-weight: 750; }
.origin-card p { margin: 28px 0 0; color: #c8d1d8; font-size: 0.88rem; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.principle { background: var(--white); padding: 30px; min-height: 235px; }
.principle strong { display: block; color: var(--copper-dark); font-size: 0.83rem; letter-spacing: 0.08em; margin-bottom: 18px; }
.principle p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.credibility-strip { background: var(--ink-2); color: var(--white); padding: 0; border-top: 1px solid #385067; border-bottom: 1px solid #385067; }
.credibility-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; }
.credibility-intro, .credibility-item { padding: 28px 30px; border-right: 1px solid #40576b; }
.credibility-item:last-child { border-right: 0; }
.credibility-intro strong { display: block; font-size: 1.18rem; margin-bottom: 5px; }
.credibility-intro span, .credibility-item span { display: block; color: #c9d3da; font-size: 0.84rem; line-height: 1.45; }
.credibility-item strong { display: block; font-size: 2rem; line-height: 1; color: #f0c09f; margin-bottom: 8px; letter-spacing: -0.04em; }

.co-design-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.co-design-card { background: var(--white); padding: 38px; min-height: 390px; }
.co-design-card:nth-child(even) { background: #f7f6f1; }
.co-design-role { display: block; color: var(--copper-dark); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.co-design-stat { display: block; font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.95; letter-spacing: -0.055em; margin-bottom: 24px; }
.co-design-card h3 { max-width: 470px; }
.co-design-card p { color: var(--muted); font-size: 0.93rem; }
.co-design-card p:last-child { margin-bottom: 0; }

.partner-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.partner-summary { background: var(--ink); color: var(--white); padding: 38px; border-left: 7px solid var(--copper); }
.partner-summary strong { display: block; font-size: 1.45rem; line-height: 1.25; margin-bottom: 18px; }
.partner-summary p { color: #c8d1d8; margin-bottom: 0; }
.partner-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.partner-type { background: var(--white); padding: 32px; min-height: 250px; }
.partner-type h3 { font-size: 1.2rem; }
.partner-type p { color: var(--muted); font-size: 0.92rem; }
.partner-type ul { margin: 0; padding-left: 19px; color: var(--ink-2); font-size: 0.86rem; }
.partner-type li { margin: 6px 0; }
.partner-fit { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 65px; align-items: start; }
.fit-list { border-top: 1px solid var(--line-dark); }
.fit-row { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.fit-row strong { color: var(--copper-dark); }
.fit-row h3 { font-size: 1.05rem; margin-bottom: 7px; }
.fit-row p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.program-panel { background: var(--white); border: 1px solid var(--line-dark); box-shadow: var(--shadow); padding: 38px; }
.program-panel h3 { font-size: 1.45rem; }
.program-panel ul { padding-left: 20px; color: var(--ink-2); }
.program-panel li { margin: 10px 0; }
.program-panel .button { margin-top: 10px; }
.application-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.application-step { background: var(--white); padding: 28px; min-height: 245px; }
.application-step strong { display: block; color: var(--copper-dark); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 18px; }
.application-step h3 { font-size: 1.12rem; }
.application-step p { color: var(--muted); font-size: 0.88rem; margin: 0; }

.contact-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 64px; align-items: start; }
.contact-details { border-top: 1px solid var(--line-dark); }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item h3 { font-size: 1rem; margin-bottom: 7px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.9rem; margin: 0; }
.contact-form { background: var(--white); border: 1px solid var(--line-dark); padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 750; font-size: 0.83rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: #fbfbf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 2px rgba(168,95,53,0.12); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-actions p { margin: 0; color: var(--muted); font-size: 0.72rem; }
.form-status { margin-top: 17px; padding: 12px 14px; border-left: 4px solid var(--success); background: var(--sage); display: none; font-size: 0.86rem; }
.form-status.show { display: block; }

.legal-hero { padding: 72px 0 40px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 100px; border-top: 1px solid var(--line-dark); }
.legal-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 0.85rem; font-weight: 700; }
.legal-content h2 { font-size: 1.7rem; margin-top: 44px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; }
.legal-content p, .legal-content li { color: var(--ink-2); font-size: 0.94rem; }
.legal-content ul { padding-left: 22px; }
.notice { border-left: 5px solid var(--copper); background: var(--white); padding: 17px 19px; margin: 26px 0; }
.notice p { margin: 0; }

.cta-section { background: var(--ink); color: var(--white); padding: 72px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 800px; }
.cta-inner p { color: #c9d3da; max-width: 720px; margin: 0; }

.site-footer { background: #0b1b2a; color: var(--white); padding: 62px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, minmax(0, 0.7fr)); gap: 42px; }
.footer-brand p { color: #aebcc6; max-width: 410px; font-size: 0.88rem; margin-top: 21px; }
.footer-column h3 { font-size: 0.83rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-column a { display: block; color: #bdc8cf; text-decoration: none; font-size: 0.84rem; padding: 5px 0; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid #304254; margin-top: 46px; padding-top: 22px; color: #95a5b0; font-size: 0.75rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: inherit; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 550ms ease, transform 550ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .product-window { max-width: 850px; }
  .command-shell, .context-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card { min-height: 0; }
  .big-metrics { grid-template-columns: repeat(3, 1fr); }
  .big-metric:nth-child(3) { border-right: 0; }
  .big-metric:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .credibility-grid { grid-template-columns: 1fr 1fr; }
  .credibility-intro { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid #40576b; }
  .application-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: flex; justify-self: end; }
  .header-actions .button { display: none; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line-dark);
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .section-intro, .statement-inner, .split, .about-grid, .contact-layout, .cta-inner, .partner-hero-grid, .partner-fit { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .operations-grid, .board-columns { grid-template-columns: 1fr; }
  .workflow-row { grid-template-columns: 72px 1fr; }
  .workflow-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 0 20px; }
  .legal-nav a { min-width: 180px; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .container, .narrow, .header-inner { width: min(calc(100% - 28px), var(--max)); }
  section { padding: 68px 0; }
  .hero { padding: 52px 0 54px; }
  h1, .hero-copy h1 { font-size: 2.5rem; }
  h2 { font-size: 2.05rem; }
  .product-body { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .product-main { padding: 16px; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .operations-grid { display: block; }
  .attention-panel { margin-top: 12px; }
  .appointment-grid, .coverage-grid, .grid-3, .grid-4, .module-grid, .pricing-grid, .faq-grid, .principles, .form-grid, .co-design-grid, .partner-types, .application-steps, .credibility-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .credibility-intro { grid-column: auto; }
  .credibility-intro, .credibility-item { border-right: 0; border-bottom: 1px solid #40576b; padding: 24px 20px; }
  .credibility-item:last-child { border-bottom: 0; }
  .co-design-card, .partner-type, .program-panel { padding: 28px 22px; min-height: 0; }
  .fit-row { grid-template-columns: 58px 1fr; }
  .big-metrics { grid-template-columns: repeat(2, 1fr); }
  .big-metric { border-bottom: 1px solid var(--line); }
  .big-metric:nth-child(2n) { border-right: 0; }
  .big-metric:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .big-metric:nth-last-child(-n+2) { border-bottom: 0; }
  .workflow-row { grid-template-columns: 54px 1fr; gap: 15px; }
  .inline-list { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .contact-form { padding: 23px 18px; }
  .form-actions, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .command-example { box-shadow: 8px 8px 0 rgba(255,255,255,.05); }
  .command-input, .command-result { padding: 18px; }
  .command-result-head, .confirm-row { align-items: flex-start; flex-direction: column; }
  .statement-inner { gap: 12px; }
  .board-table th:nth-child(3), .board-table td:nth-child(3) { display: none; }
}

/* Pricing structure: connected access without per-user gating */
.pricing-principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  gap: 1px;
}
.pricing-principle > div { background: var(--white); padding: 28px 30px; }
.pricing-principle strong { display: block; font-size: 1.2rem; margin-bottom: 8px; }
.pricing-principle p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.plan-fit { margin: 0 0 12px; color: var(--copper-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.04em; }
.connect-plan {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid var(--line-dark);
  background: var(--white);
}
.connect-plan-price { padding: 34px; border-right: 1px solid var(--line); background: var(--ink); color: var(--white); }
.connect-plan-price .plan-name { font-size: 1.45rem; font-weight: 850; margin: 0 0 7px; }
.connect-plan-price .plan-fit, .connect-plan-price .price span, .connect-plan-price .price-note { color: #cbd5dc; }
.connect-plan-price .button { width: 100%; margin-top: 15px; }
.connect-plan-details { padding: 34px 38px; }
.connect-plan-details h3 { max-width: 680px; }
.connect-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.connect-note { margin: 24px 0 0; padding: 17px 18px; border-left: 4px solid var(--copper); background: #f7f3ec; color: var(--muted); font-size: 0.84rem; }
.connect-note strong { color: var(--ink); }
.enterprise-plan { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 70px; align-items: center; }
.enterprise-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.enterprise-price strong { font-size: 3.25rem; line-height: 1; }
.enterprise-price span { color: #c9d3da; font-size: 0.85rem; }
.enterprise-list { list-style: none; padding: 0; margin: 0 0 28px; }
.enterprise-list li { position: relative; padding: 10px 0 10px 21px; border-top: 1px solid #33495c; color: #dce4e9; font-size: 0.9rem; }
.enterprise-list li::before { content: ""; position: absolute; left: 0; top: 1.12em; width: 7px; height: 4px; border-left: 2px solid #86aa9b; border-bottom: 2px solid #86aa9b; transform: rotate(-45deg); }
.pricing-comparison { min-width: 1040px; }
.pricing-comparison th:first-child { width: 29%; }
.pricing-comparison th, .pricing-comparison td { padding-left: 10px; padding-right: 10px; }

@media (max-width: 1080px) {
  .connect-plan, .enterprise-plan { grid-template-columns: 1fr; }
  .connect-plan-price { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 650px) {
  .pricing-principle, .connect-feature-grid { grid-template-columns: 1fr; }
  .pricing-principle > div { padding: 24px 21px; }
  .connect-plan-price, .connect-plan-details { padding: 27px 22px; }
  .enterprise-plan { gap: 34px; }
}
