:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe3ee;
  --soft: #f8fafc;
  --panel: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #10b981;
  --green-dark: #059669;
  --red: #ef4444;
  --amber: #f59e0b;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 238, 0.92);
  display: flex;
  height: 66px;
  justify-content: space-between;
  padding: 0 clamp(24px, 4.4vw, 82px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: url("assets/brand-tile.png") center / cover no-repeat;
  border-radius: 9px;
  color: transparent;
  display: grid;
  font-size: 17px;
  font-weight: 860;
  height: 40px;
  place-items: center;
  width: 40px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 19px;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
  font-size: 14px;
  font-weight: 720;
}

.nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  gap: 14px;
}

.ghost-button,
.header-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 760;
  height: 40px;
  justify-content: center;
  padding: 0 24px;
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--ink);
}

.header-action {
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
  color: var(--white);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 3.8vw, 58px);
  grid-template-columns: minmax(590px, 0.86fr) minmax(650px, 1.14fr);
  min-height: 376px;
  padding: 30px clamp(24px, 4.4vw, 82px) 16px;
}

.hero-copy {
  max-width: 670px;
}

.status-line {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 14px;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
}

.status-line span {
  background: var(--green);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.status-line strong {
  color: var(--blue);
}

.status-line em {
  font-style: normal;
}

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

h1 {
  font-size: clamp(36px, 2.55vw, 38px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.12;
  max-width: 680px;
}

.hero-copy p {
  color: #52627a;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 780;
  height: 46px;
  justify-content: center;
  padding: 0 26px;
}

.primary-button {
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
  color: var(--white);
}

.primary-button:hover,
.header-action:hover {
  background: var(--blue-dark);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 0;
  max-width: 690px;
}

.hero-metrics div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  padding: 0 18px;
}

.hero-metrics div:first-child {
  padding-left: 0;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.metric-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
}

.metric-icon::after {
  content: none;
}

.metric-icon.clock { background-image: url("assets/metric-clock.png"); }
.metric-icon.rocket { background-image: url("assets/metric-workflow.png"); }
.metric-icon.price { background-image: url("assets/metric-price.png"); }
.metric-icon.clear { background-image: url("assets/metric-clear.png"); }

.hero-metrics dt {
  font-size: 15px;
  font-weight: 820;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-metrics dd {
  color: var(--muted);
  font-size: 13px;
  margin: 3px 0 0;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  background: url("assets/hero-ambient.png") center / cover no-repeat;
  content: "";
  inset: -54px -34px -40px -56px;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.ambient-canvas {
  height: 100%;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.app-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    url("assets/card-sheen.png") right top / 72% auto no-repeat,
    var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: 126px 1fr;
  height: auto;
  min-height: 410px;
  overflow: hidden;
  position: relative;
}

.app-sidebar {
  background: #fbfdff;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
  grid-auto-rows: max-content;
  padding: 12px 11px;
}

.mini-brand {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.mini-brand span {
  background: url("assets/brand-tile.png") center / cover no-repeat;
  border-radius: 7px;
  color: transparent;
  display: grid;
  font-size: 13px;
  font-weight: 850;
  height: 28px;
  place-items: center;
  width: 28px;
}

.mini-brand b {
  font-size: 12px;
}

.app-sidebar a {
  border-radius: 8px;
  color: #475569;
  font-size: 12px;
  padding: 8px 9px;
}

.app-sidebar a.active {
  background: #eef4ff;
  color: var(--ink);
  font-weight: 780;
}

.app-sidebar a strong {
  background: var(--blue);
  border-radius: 7px;
  color: var(--white);
  float: right;
  font-size: 11px;
  padding: 2px 6px;
}

.app-main {
  overflow: visible;
  padding: 14px 14px 16px;
}

.app-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.app-head h2 {
  font-size: 20px;
  line-height: 1;
}

.profile-dot {
  background: url("assets/avatar-manager.png") center / cover no-repeat;
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  height: 31px;
  width: 31px;
}

.filter-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 112px 104px 112px 1fr 106px;
  margin-bottom: 10px;
}

.filter-row span,
.filter-row button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #475569;
  font-size: 12px;
  height: 30px;
  padding: 0 10px;
}

.filter-row span {
  align-items: center;
  display: flex;
}

.filter-row button {
  background: var(--blue);
  color: var(--white);
  font-weight: 760;
}

.app-grid {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.05fr 1.3fr 1.1fr;
}

.inbox-list,
.draft-panel,
.approval-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.inbox-list {
  overflow: hidden;
}

.inbox-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 2px;
  min-height: 43px;
  padding: 7px 10px;
  position: relative;
}

.inbox-list article::before {
  align-self: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  grid-row: 1 / 3;
  height: 20px;
  width: 20px;
}

.inbox-list article:nth-child(1)::before,
.inbox-list article:nth-child(5)::before {
  background-image: url("assets/channel-telegram.png");
}

.inbox-list article:nth-child(2)::before {
  background-image: url("assets/channel-email.png");
}

.inbox-list article:nth-child(3)::before {
  background-image: url("assets/channel-web.png");
}

.inbox-list article:nth-child(4)::before {
  background-image: url("assets/channel-whatsapp.png");
}

.inbox-list b,
.inbox-list small {
  grid-column: 2;
}

.inbox-list article.selected {
  background: #eff6ff;
}

.inbox-list b {
  font-size: 13px;
}

.inbox-list small {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-list time {
  color: var(--muted);
  font-size: 11px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.show-all {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 760;
  padding: 9px 12px;
  text-align: center;
}

.draft-panel,
.approval-panel {
  padding: 12px;
}

.draft-panel h3,
.approval-panel h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.message-box,
.approval-note {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334155;
  font-size: 12px;
  line-height: 1.42;
  min-height: 106px;
  padding: 10px;
}

.message-box p + p {
  margin-top: 10px;
}

.confidence {
  color: #475569;
  display: block;
  font-size: 12px;
  margin-top: 14px;
}

.confidence-bar {
  background: #e2e8f0;
  border-radius: 999px;
  height: 8px;
  margin: 7px 0 14px;
  overflow: hidden;
}

.confidence-bar i {
  background: var(--green);
  display: block;
  height: 100%;
  width: 86%;
}

.outline-action,
.blue-action,
.approve-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  font-size: 13px;
  font-weight: 760;
  height: 36px;
  margin-top: 8px;
  width: 100%;
}

.blue-action {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.approve-action {
  background: #f0fdf4;
  border-color: rgba(16, 185, 129, 0.55);
  color: var(--green-dark);
}

.manager {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.manager span {
  background: url("assets/avatar-manager.png") center / cover no-repeat;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.12);
  height: 26px;
  width: 26px;
}

.manager b {
  font-size: 13px;
}

.proof-strip,
.pilot-cards,
.benefit-strip,
.matrix-section,
.truth-band,
.timeline,
.section,
.faq {
  margin-left: clamp(24px, 4.4vw, 82px);
  margin-right: clamp(24px, 4.4vw, 82px);
}

.proof-strip {
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.92)),
    url("assets/premium-strip-surface.png") center / cover no-repeat,
    var(--white);
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.035);
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
  height: 76px;
  margin-top: 18px;
  overflow: hidden;
}

.proof-strip > strong,
.proof-strip > span {
  min-height: 0;
  padding: 12px 22px;
}

.proof-strip > strong {
  align-items: center;
  display: flex;
  font-size: 15px;
  line-height: 1.35;
}

.proof-strip > span {
  align-content: center;
  align-items: center;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 6px;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
}

.proof-strip i,
.benefit-strip i {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 999px;
  display: block;
  height: 30px;
  position: relative;
  width: 30px;
}

.proof-strip i {
  grid-row: 1 / 3;
}

.proof-strip i::after,
.benefit-strip i::after {
  content: none;
}

.proof-strip > span:nth-of-type(1) i { background-image: url("assets/audit-ux.png"); }
.proof-strip > span:nth-of-type(2) i { background-image: url("assets/audit-design.png"); }
.proof-strip > span:nth-of-type(3) i { background-image: url("assets/audit-accessibility.png"); }
.proof-strip > span:nth-of-type(4) i { background-image: url("assets/audit-conversion.png"); }
.proof-strip > span:nth-of-type(5) i { background-image: url("assets/audit-privacy.png"); }

.proof-strip span {
  font-size: 13px;
  font-weight: 780;
  line-height: 1.12;
}

.proof-strip small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 500;
  grid-column: 2;
  line-height: 1.15;
}

.proof-strip .audit-keywords {
  display: none;
}

.pilot-cards {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.14fr 1.05fr;
  margin-top: 18px;
}

.pilot-card {
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("assets/premium-card-surface.png") right -130px top -130px / 92% auto no-repeat,
    var(--white);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
  height: auto;
  min-height: 390px;
  overflow: visible;
  padding: 18px;
  position: relative;
}

.card-index {
  background: #eaf2ff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
  color: var(--blue);
  display: inline-grid;
  font-weight: 820;
  height: 28px;
  margin-right: 8px;
  place-items: center;
  width: 28px;
}

.pilot-card h2 {
  display: inline;
  font-size: 21px;
  line-height: 1.2;
}

.real-label {
  background: #dcfce7;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-block;
  font-size: 12px;
  font-weight: 760;
  margin-left: 8px;
  padding: 5px 9px;
}

.before-after {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.before-after > div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 10px;
  padding: 13px;
}

.after-box {
  background:
    linear-gradient(180deg, rgba(240, 253, 244, 0.95), rgba(236, 253, 245, 0.82)),
    url("assets/premium-green-surface.png") right -80px top -80px / 105% auto no-repeat;
  border-color: rgba(16, 185, 129, 0.36) !important;
}

.before-after h3 {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.after-box h3 {
  color: var(--green-dark);
}

.before-after p {
  display: grid;
  gap: 3px;
  margin-top: 13px;
  position: relative;
}

.before-after strong {
  font-size: 22px;
}

.before-after small {
  color: var(--muted);
  font-size: 12px;
}

.before-after em {
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  position: absolute;
  right: 0;
  top: 2px;
}

.after-box b {
  color: var(--green-dark);
  display: block;
  font-size: 18px;
  margin-top: 18px;
}

.pilot-card footer {
  background:
    linear-gradient(180deg, rgba(240, 253, 244, 0.94), rgba(236, 253, 245, 0.9)),
    url("assets/premium-green-surface.png") center / cover no-repeat;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 10px;
  color: #166534;
  font-size: 14px;
  font-weight: 680;
  margin-top: 14px;
  padding: 10px 12px;
}

.safety-card-main > p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 18px 36px;
}

.safety-flow {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 22px 1.18fr 22px 1fr;
  margin-top: 18px;
}

.safety-flow > div {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-size: 14px;
  font-weight: 760;
  min-height: 108px;
  padding: 14px;
  place-items: center;
  text-align: center;
}

.safety-flow > span {
  background: var(--muted);
  height: 1px;
  width: 22px;
}

.ai-check {
  background: #fbfdff;
}

.ai-check small,
.ai-check em {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.ai-check i {
  background: linear-gradient(90deg, var(--green) 72%, #e2e8f0 72%);
  border-radius: 999px;
  display: block;
  height: 8px;
  margin: 10px auto 4px;
  width: 92px;
}

.human-check button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  height: 32px;
  margin-top: 7px;
  width: 100%;
}

.human-check button:first-of-type {
  border-color: rgba(16, 185, 129, 0.5);
  color: var(--green-dark);
}

.risk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.risk-tags span {
  align-items: center;
  background: #f8fafc;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  font-size: 12px;
  gap: 6px;
  padding: 7px 10px;
}

.risk-tags span::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 16px;
  width: 16px;
}

.risk-tags span:nth-child(1)::before { background-image: url("assets/risk-price.png"); }
.risk-tags span:nth-child(2)::before { background-image: url("assets/risk-legal.png"); }
.risk-tags span:nth-child(3)::before { background-image: url("assets/risk-data.png"); }
.risk-tags span:nth-child(4)::before { background-image: url("assets/risk-unknown.png"); }

.calc-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.15fr 1fr 86px;
  margin-right: 38%;
  margin-top: 16px;
}

.calc-row span {
  color: #334155;
  font-size: 13px;
}

.calc-row i {
  background: linear-gradient(90deg, var(--blue) var(--w), #e2e8f0 var(--w));
  border-radius: 999px;
  height: 5px;
}

.calc-row b {
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  padding: 8px;
  text-align: center;
}

.roi-result {
  background:
    linear-gradient(180deg, rgba(240, 253, 244, 0.96), rgba(236, 253, 245, 0.9)),
    url("assets/premium-green-surface.png") center / cover no-repeat;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  bottom: 52px;
  padding: 18px;
  position: absolute;
  right: 18px;
  top: 94px;
  width: calc(36% - 18px);
}

.roi-result span {
  color: #334155;
  display: block;
  font-size: 13px;
}

.roi-result strong {
  color: var(--green-dark);
  display: block;
  font-size: 27px;
  line-height: 1.05;
  margin: 7px 0 16px;
}

.roi-card-main > small {
  bottom: 18px;
  color: var(--muted);
  display: block;
  left: 18px;
  margin-top: 0;
  position: absolute;
  right: 18px;
}

.benefit-strip {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.9)),
    url("assets/premium-strip-surface.png") center / cover no-repeat,
    var(--white);
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.045);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  overflow: hidden;
}

.benefit-strip article {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 250, 252, 0.52)),
    url("assets/premium-benefit-surface.png") right -70px top -70px / 120% auto no-repeat;
  display: grid;
  gap: 6px 16px;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 124px;
  padding: 22px 24px;
}

.benefit-strip i {
  grid-row: 1 / 3;
  height: 34px;
  width: 34px;
}

.benefit-strip b,
.benefit-strip span {
  grid-column: 2;
}

.benefit-strip article:nth-child(1) i { background-image: url("assets/benefit-start.png"); }
.benefit-strip article:nth-child(2) i { background-image: url("assets/benefit-process.png"); }
.benefit-strip article:nth-child(3) i { background-image: url("assets/benefit-security.png"); }
.benefit-strip article:nth-child(4) i { background-image: url("assets/benefit-integration.png"); }
.benefit-strip article:nth-child(5) i { background-image: url("assets/benefit-scale.png"); }

.benefit-strip article + article {
  border-left: 1px solid var(--line);
}

.benefit-strip b {
  font-size: 16px;
  line-height: 1.18;
}

.benefit-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  max-width: 230px;
}

.matrix-section,
.truth-band,
.timeline,
.section,
.faq {
  padding: clamp(62px, 8vw, 112px) 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.truth-band h2,
.timeline h2,
.section h2,
.faq h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.section-head p,
.truth-band p,
.section p,
.split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 760px;
}

.matrix-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.matrix-table div {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
}

.matrix-table div:first-child {
  background: var(--ink);
  color: var(--white);
}

.matrix-table div + div {
  border-top: 1px solid var(--line);
}

.matrix-table strong,
.matrix-table span {
  border-right: 1px solid var(--line);
  display: block;
  font-size: 15px;
  line-height: 1.45;
  padding: 18px;
}

.matrix-table strong:last-child,
.matrix-table span:last-child {
  border-right: 0;
}

.truth-band {
  align-items: start;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.truth-band p,
.truth-band li {
  color: #cbd5e1;
}

.truth-band ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.truth-band li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 17px;
  line-height: 1.45;
  padding: 0 0 14px;
}

.timeline {
  background: var(--soft);
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(24px, 4.4vw, 82px);
  padding-right: clamp(24px, 4.4vw, 82px);
}

.timeline ol {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 180px 1fr;
  padding: 20px 22px;
}

.timeline strong {
  color: var(--blue);
}

.timeline span {
  color: var(--ink);
  font-size: 18px;
}

.split {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0 24px;
}

.faq {
  padding-top: 28px;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 780;
}

details p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 850px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(24px, 4.4vw, 82px);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 18px;
  }

  .nav {
    display: none;
  }

  .proof-strip {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pilot-cards,
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .pilot-card {
    height: auto;
    min-height: 332px;
    overflow: visible;
  }

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

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

  .benefit-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .calc-row {
    margin-right: 0;
  }

  .roi-result,
  .roi-card-main > small {
    bottom: auto;
    left: auto;
    position: static;
    right: auto;
    top: auto;
    width: auto;
  }

  .roi-result {
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }

  .hero {
    display: block;
    overflow: clip;
    padding: 38px 20px 20px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 16px 0;
  }

  .hero-visual {
    margin-top: 30px;
  }

  .hero-visual::before {
    inset: -22px 0 -18px 0;
    opacity: 0.54;
  }

  .app-shell {
    height: auto;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .filter-row,
  .app-grid,
  .before-after,
  .safety-flow,
  .matrix-table div,
  .split,
  .truth-band {
    grid-template-columns: 1fr;
  }

  .filter-row span:nth-child(n + 3) {
    display: none;
  }

  .app-grid {
    gap: 12px;
  }

  .approval-panel {
    display: none;
  }

  .safety-flow > span {
    display: none;
  }

  .proof-strip,
  .pilot-cards,
  .benefit-strip,
  .matrix-section,
  .truth-band,
  .section,
  .faq {
    margin-left: 20px;
    margin-right: 20px;
  }

  .proof-strip {
    height: auto;
    grid-template-columns: 1fr;
  }

  .proof-strip > strong,
  .proof-strip > span {
    min-height: auto;
    padding: 18px;
  }

  .pilot-card {
    padding: 18px;
  }

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

  .matrix-table div:first-child {
    display: none;
  }

  .matrix-table div:not(:first-child) {
    display: block;
    padding: 14px 0;
  }

  .matrix-table span {
    border-right: 0;
    padding: 7px 18px;
  }

  .matrix-table span:first-child {
    color: var(--blue);
    font-weight: 820;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}
