:root {
  --blue-950: #062146;
  --blue-900: #07346c;
  --blue-800: #0752b5;
  --blue-700: #0868ee;
  --blue-600: #0a74ff;
  --blue-100: #dcecff;
  --blue-050: #f3f8ff;
  --teal-600: #10a98f;
  --teal-100: #dff8f2;
  --violet-600: #7755f2;
  --violet-100: #ede8ff;
  --orange-500: #f59b22;
  --ink: #0e2442;
  --muted: #62718a;
  --line: #dbe7f7;
  --white: #ffffff;
  --shadow-soft: 0 22px 70px rgba(18, 69, 137, 0.16);
  --shadow-card: 0 18px 46px rgba(28, 81, 142, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fbff;
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.svg-sprite {
  display: none;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(214, 229, 247, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  color: #1d314f;
  font-size: 16px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0666ff 0%, #0054dd 100%);
  box-shadow: 0 16px 34px rgba(5, 92, 224, 0.28);
}

.btn-ghost {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.66);
  border-color: #93bdff;
}

.btn-outline {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.8);
  border-color: #75a8ff;
}

.btn-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.menu-toggle .icon {
  width: 32px;
  height: 32px;
}

.menu-toggle .icon-menu-close {
  display: none;
}

.mobile-nav {
  display: none;
}

.section-bleed {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 249, 255, 0.95) 46%, rgba(226, 240, 255, 0.98) 100%),
    linear-gradient(90deg, rgba(8, 104, 238, 0.06), rgba(16, 169, 143, 0.04));
}

.section-bleed::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(120deg, transparent 0 53%, rgba(30, 117, 245, 0.08) 53% 54%, transparent 54%),
    linear-gradient(160deg, transparent 0 64%, rgba(16, 169, 143, 0.08) 64% 65%, transparent 65%);
  pointer-events: none;
}

.hero {
  min-height: 760px;
  padding: 76px 0 68px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  color: var(--blue-700);
  background: #eaf3ff;
  border: 1px solid #d5e8ff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
}

.eyebrow-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 50%;
}

.hero h1 {
  margin: 34px 0 22px;
  color: #071e3f;
  font-size: 58px;
  line-height: 1.14;
  font-weight: 950;
}

.hero h1 span {
  color: var(--blue-700);
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 610px;
  margin: 0;
  color: #40516c;
  font-size: 21px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
  margin-top: 42px;
}

.hero-assurance span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 72px;
  color: #2b4c7b;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid #deebfb;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(39, 105, 185, 0.07);
}

.hero-assurance .icon {
  color: var(--blue-700);
  font-size: 22px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.ai-backdrop {
  position: absolute;
  top: 26px;
  right: 0;
  display: grid;
  place-items: center;
  width: 214px;
  height: 360px;
  color: rgba(7, 91, 207, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(221, 238, 255, 0.42)),
    linear-gradient(140deg, transparent 0 44%, rgba(7, 104, 238, 0.12) 44% 45%, transparent 45%);
  border: 1px solid rgba(154, 198, 255, 0.48);
  border-radius: 8px;
  font-size: 38px;
  font-weight: 950;
  transform: skewX(-7deg);
}

.dashboard-shell {
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  width: min(680px, 100%);
  min-height: 462px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 220, 244, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 22px 13px;
  color: #a6c7ee;
  background: linear-gradient(180deg, #07356d 0%, #041d3f 100%);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-sidebar img {
  width: 86px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.dashboard-sidebar span {
  padding: 8px 10px;
  border-radius: 7px;
}

.dashboard-sidebar .active {
  color: var(--white);
  background: var(--blue-700);
}

.dashboard-main {
  padding: 24px 24px 28px;
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.95), rgba(255, 255, 255, 1)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(13, 99, 216, 0.04) 38px 39px);
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #173765;
  font-size: 17px;
}

.dot-row {
  display: flex;
  gap: 8px;
}

.dot-row span {
  width: 8px;
  height: 8px;
  background: #c6d8f2;
  border-radius: 50%;
}

.dashboard-img {
  width: 100%;
  height: 362px;
  object-fit: cover;
  object-position: 50% 0%;
  border: 1px solid #e2edf9;
  border-radius: 8px;
}

.phone-shell {
  position: absolute;
  right: 12px;
  bottom: 18px;
  z-index: 4;
  width: 178px;
  height: 356px;
  overflow: hidden;
  background: #0c1730;
  border: 8px solid #0a1225;
  border-radius: 28px;
  box-shadow: 0 30px 58px rgba(2, 23, 56, 0.25);
  transform: rotate(-3deg);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 2%;
  border-radius: 18px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 16px;
  background: #0a1225;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.floating-card {
  position: absolute;
  right: 156px;
  bottom: 46px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid #d9e7f8;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.floating-card .icon {
  color: var(--teal-600);
  font-size: 34px;
}

.floating-card b,
.floating-card span {
  display: block;
}

.floating-card b {
  font-size: 15px;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
}

.proof-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 44, 93, 0.98), rgba(6, 72, 147, 0.96)),
    linear-gradient(120deg, transparent 0 70%, rgba(255, 255, 255, 0.12) 70% 71%, transparent 71%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 126px;
  align-items: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 0 48px;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--white);
  background: linear-gradient(135deg, #0a74ff, #074aa8);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.proof-icon.teal {
  background: linear-gradient(135deg, #1ec7a7, #0f8e78);
}

.proof-icon.violet {
  background: linear-gradient(135deg, #8a63ff, #6540d8);
}

.proof-icon .icon {
  font-size: 34px;
}

.proof-item strong {
  display: block;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 950;
}

.proof-item span {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.trust-grid h2,
.resource-copy h2 {
  margin: 18px 0 10px;
  color: #081f42;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 950;
}

.section-heading p,
.trust-grid p,
.resource-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scene-card,
.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.scene-card {
  display: grid;
  grid-template-rows: 230px auto;
}

.scene-image {
  position: relative;
  overflow: hidden;
  background: #eaf3ff;
}

.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.scene-hospital .scene-image img {
  object-position: 28% 0%;
}

.scene-ltc .scene-image img {
  object-position: 50% 20%;
}

.scene-community .scene-image img {
  object-position: 50% 8%;
}

.scene-card:hover .scene-image img {
  transform: scale(1.035);
}

.scene-badge {
  position: absolute;
  right: 18px;
  bottom: -26px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(213, 231, 252, 0.95);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(18, 67, 129, 0.16);
}

.scene-badge.teal {
  color: var(--teal-600);
}

.scene-badge.violet {
  color: var(--violet-600);
}

.scene-badge .icon {
  font-size: 36px;
}

.scene-content {
  padding: 34px 30px 28px;
}

.scene-content h3,
.product-card h3 {
  margin: 0 0 16px;
  color: #0c2852;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 950;
}

.scene-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #2c4770;
  font-size: 17px;
  list-style: none;
}

.scene-content li {
  position: relative;
  padding-left: 18px;
}

.scene-content li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue-600);
  border-radius: 50%;
}

.scene-ltc li::before {
  background: var(--teal-600);
}

.scene-community li::before {
  background: var(--violet-600);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
}

.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(10, 116, 255, 0.1), transparent 48%);
  pointer-events: none;
}

.product-teal::before {
  background: linear-gradient(135deg, rgba(16, 169, 143, 0.14), transparent 48%);
}

.product-violet::before {
  background: linear-gradient(135deg, rgba(119, 85, 242, 0.14), transparent 48%);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
}

.product-teal .product-icon {
  background: var(--teal-600);
}

.product-violet .product-icon {
  background: var(--violet-600);
}

.product-icon .icon {
  font-size: 30px;
}

.product-card p {
  min-height: 82px;
  margin: 0 0 20px;
  color: #4b607d;
  font-size: 17px;
}

.tag-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.tag-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 8px;
  color: #1f4d91;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e1edfb;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 1px solid #e4edf9;
  border-radius: 8px;
}

.product-teal img,
.product-violet img {
  object-position: 50% 8%;
}

.workflow-track {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  padding: 16px 0 0;
}

.workflow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #dceafd;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(20, 75, 145, 0.1);
}

.workflow-step .icon {
  font-size: 34px;
}

.workflow-step strong {
  color: #112f5d;
  font-size: 17px;
  font-weight: 950;
}

.workflow-step em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.workflow-arrow {
  position: relative;
  height: 76px;
}

.workflow-arrow::before {
  position: absolute;
  top: 37px;
  right: 8px;
  left: 8px;
  height: 2px;
  content: "";
  background: #a9c8f0;
}

.workflow-arrow::after {
  position: absolute;
  top: 32px;
  right: 6px;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid #a9c8f0;
  border-right: 2px solid #a9c8f0;
  transform: rotate(45deg);
}

.section-bleed-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 34, 75, 0.97), rgba(3, 64, 135, 0.95)),
    linear-gradient(120deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 69%, transparent 69%);
}

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

.section-kicker.light {
  color: #d8eaff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-grid h2,
.trust-grid p {
  color: var(--white);
}

.trust-grid p {
  color: rgba(232, 242, 255, 0.82);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 132px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.trust-stats div {
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
}

.trust-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-stats strong {
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.trust-stats span {
  color: rgba(232, 242, 255, 0.85);
  font-weight: 800;
}

.resource-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 44px;
  align-items: stretch;
  padding: 38px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.resource-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 22px;
}

.resource-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  text-align: left;
  color: #183760;
  background: var(--white);
  border: 1px solid #d8e5f6;
  border-radius: 8px;
  cursor: pointer;
}

.resource-option.active {
  border-color: #146df4;
  box-shadow: 0 10px 26px rgba(8, 104, 238, 0.14);
}

.resource-option b {
  font-size: 15px;
  line-height: 1.3;
}

.resource-option small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.book {
  grid-row: 1 / 3;
  display: block;
  width: 40px;
  height: 54px;
  border-radius: 5px 3px 3px 5px;
  box-shadow:
    inset -7px 0 0 rgba(255, 255, 255, 0.18),
    0 9px 18px rgba(31, 71, 128, 0.14);
}

.book-blue {
  background: linear-gradient(145deg, #0c73ff, #0754ca);
}

.book-teal {
  background: linear-gradient(145deg, #19b89c, #0b8c77);
}

.book-orange {
  background: linear-gradient(145deg, #ffad3e, #ec7a16);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lead-form label {
  display: block;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #d5e4f5;
  border-radius: 8px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(10, 116, 255, 0.12);
}

.btn-submit {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  font-size: 18px;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

.resource-visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(224, 239, 255, 0.78), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(8, 104, 238, 0.04) 34px 35px);
  border: 1px solid #dfebfa;
  border-radius: 8px;
}

.folder {
  position: relative;
  width: min(360px, 100%);
  height: 292px;
}

.book-cover {
  position: absolute;
  top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 108px;
  height: 196px;
  padding-top: 28px;
  color: var(--white);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 22px 42px rgba(24, 73, 132, 0.18);
}

.book-cover.blue {
  left: 56px;
  background: linear-gradient(160deg, #0d76ff, #0753c9);
  transform: rotate(-9deg);
}

.book-cover.teal {
  left: 138px;
  background: linear-gradient(160deg, #17b599, #0d8775);
  transform: rotate(-1deg);
}

.book-cover.orange {
  right: 48px;
  background: linear-gradient(160deg, #ffad38, #ec7c17);
  transform: rotate(9deg);
}

.folder-front {
  position: absolute;
  right: 30px;
  bottom: 20px;
  left: 30px;
  display: grid;
  place-items: center;
  height: 118px;
  background: linear-gradient(180deg, #ffffff, #edf4fc);
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(22, 68, 128, 0.18);
}

.folder-front img {
  width: 148px;
  height: 54px;
  object-fit: contain;
}

.faq-footer {
  padding: 0 0 72px;
  background: #f7fbff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(28, 81, 142, 0.08);
}

summary {
  min-height: 64px;
  padding: 20px 22px;
  color: #102f5e;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  color: rgba(235, 244, 255, 0.86);
  background:
    linear-gradient(90deg, #062345, #063e7b),
    linear-gradient(135deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 69%, transparent 69%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(4, minmax(120px, 0.75fr));
  gap: 42px;
  padding: 48px 0 32px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(235, 244, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 250px;
  height: 90px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  box-shadow:
    0 16px 36px rgba(0, 12, 35, 0.22),
    0 0 0 5px rgba(255, 255, 255, 0.06);
}

.footer-logo-plate img {
  width: 224px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-col strong {
  color: var(--white);
  font-size: 17px;
}

.footer-col a {
  color: rgba(235, 244, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.footer-bottom {
  padding: 18px 0 28px;
  color: rgba(235, 244, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: center;
}

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

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

  .hero-visual {
    min-height: 560px;
  }

  .dashboard-shell {
    width: calc(100% - 118px);
  }

  .proof-item {
    padding: 0 24px;
  }

  .resource-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 40px, 760px);
  }

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .menu-open .menu-toggle .icon-menu-open {
    display: none;
  }

  .menu-open .menu-toggle .icon-menu-close {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    z-index: 60;
    display: none;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
  }

  .menu-open .mobile-nav {
    display: grid;
    gap: 4px;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 0 14px;
    color: #16375f;
    border-radius: 7px;
    font-weight: 850;
    line-height: 48px;
  }

  .mobile-nav a:hover {
    background: #edf5ff;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 28px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 40px;
  }

  .hero h1 span {
    white-space: normal;
  }

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

  .hero-ctas,
  .hero-assurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-large {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 17px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .ai-backdrop {
    top: 0;
    right: 10px;
    width: 134px;
    height: 260px;
    font-size: 28px;
  }

  .dashboard-shell {
    top: 32px;
    left: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    width: calc(100% - 34px);
    min-height: 360px;
  }

  .dashboard-sidebar {
    gap: 9px;
    padding: 16px 8px;
  }

  .dashboard-sidebar img,
  .dashboard-sidebar span:not(.active) {
    display: none;
  }

  .dashboard-sidebar .active {
    display: block;
    padding: 8px 4px;
    writing-mode: vertical-rl;
  }

  .dashboard-main {
    padding: 18px;
  }

  .dashboard-img {
    height: 276px;
  }

  .phone-shell {
    right: 0;
    bottom: 0;
    width: 128px;
    height: 258px;
    border-width: 6px;
    border-radius: 22px;
  }

  .floating-card {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .proof-item {
    padding: 16px 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .scene-grid,
  .product-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .workflow-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }

  .workflow-arrow {
    display: none;
  }

  .trust-grid,
  .resource-shell {
    grid-template-columns: 1fr;
  }

  .resource-options,
  .lead-form {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 142px;
    height: 48px;
  }

  .mobile-nav {
    top: 72px;
    right: 14px;
    left: 14px;
  }

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

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-assurance span {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 16px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .dashboard-shell {
    width: 100%;
  }

  .phone-shell {
    width: 112px;
    height: 226px;
  }

  .proof-item {
    gap: 16px;
  }

  .proof-icon {
    width: 58px;
    height: 58px;
  }

  .proof-item strong {
    font-size: 36px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .trust-grid h2,
  .resource-copy h2 {
    font-size: 32px;
  }

  .scene-card {
    grid-template-rows: 178px auto;
  }

  .scene-content,
  .product-card {
    padding: 24px;
  }

  .scene-content h3,
  .product-card h3 {
    font-size: 23px;
  }

  .workflow-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .resource-shell {
    padding: 24px 18px;
  }

  .resource-option {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .resource-visual {
    min-height: 300px;
  }

  .folder {
    height: 252px;
  }

  .book-cover {
    width: 92px;
    height: 168px;
    font-size: 14px;
  }

  .book-cover.blue {
    left: 44px;
  }

  .book-cover.teal {
    left: 118px;
  }

  .book-cover.orange {
    right: 40px;
  }

  .folder-front {
    right: 24px;
    left: 24px;
    height: 98px;
  }

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

  .footer-logo-plate {
    width: 238px;
    height: 86px;
  }
}
