:root {
  --navy: #052e4c;
  --navy-2: #073b5d;
  --navy-3: #0a5075;
  --orange: #f24208;
  --orange-2: #ff6b2a;
  --ink: #14212b;
  --muted: #61717f;
  --line: #dbe5ec;
  --cloud: #eff5f8;
  --mist: #f7fafc;
  --white: #ffffff;
  --sand: #fff4ef;
  --green: #0f8b6f;
  --shadow: 0 24px 70px rgba(5, 46, 76, .13);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdfe 0%, #fff 42%, #f7fafc 100%);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.page-shell { overflow: hidden; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(242, 66, 8, .24);
  border-radius: 999px;
  background: rgba(242, 66, 8, .07);
  color: var(--orange);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: normal;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 10px 0 0 rgba(242,66,8,.55), 20px 0 0 rgba(242,66,8,.25);
  margin-right: 18px;
}

.section-pad { padding: 110px 0; }

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .94;
  letter-spacing: normal;
  font-weight: 820;
}

h2 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: normal;
  font-weight: 810;
}

h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: normal;
  font-weight: 770;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  max-width: 760px;
}

.text-muted { color: var(--muted); }
.accent { color: var(--orange); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,229,236,.8);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img { width: 148px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #50616f;
  font-weight: 670;
  font-size: 14px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: .18s ease;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--cloud);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 760;
  letter-spacing: normal;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 16px 34px rgba(242, 66, 8, .22);
}

.btn-primary:hover { background: #dc3a07; }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(5,46,76,.18);
  box-shadow: 0 10px 24px rgba(5, 46, 76, .08);
}

.hero {
  position: relative;
  padding: 72px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -15% auto auto;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle at 38% 36%, rgba(242,66,8,.18), transparent 24%), radial-gradient(circle at 68% 50%, rgba(5,46,76,.14), transparent 30%);
  filter: blur(18px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 54px;
  align-items: center;
}

.hero-solo {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-solo .hero-actions { justify-content: center; }
.hero-solo .hero-subhead { margin-left: auto; margin-right: auto; }
.hero-solo .proof-strip { margin-left: auto; margin-right: auto; }
.hero-solo .logos-note { justify-content: center; }

.hero-copy .eyebrow { margin-bottom: 22px; }

.hero-subhead {
  margin-bottom: 30px;
  max-width: 710px;
  color: #4d6070;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.proof-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(5,46,76,.05);
}

.proof-item strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  letter-spacing: normal;
  margin-bottom: 8px;
}

.proof-item span {
  display: block;
  color: #4f6171;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.3;
}

.hero-panel {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.72);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,245,248,.82));
  box-shadow: var(--shadow);
  padding: 18px;
  isolation: isolate;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -20px -30px 42px;
  height: 54px;
  border-radius: 50%;
  background: rgba(5,46,76,.12);
  filter: blur(28px);
  z-index: -1;
}

.panel-window {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(5,46,76,.10);
  background: #fff;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f5f8fa;
  border-bottom: 1px solid var(--line);
}

.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: #c7d3dc; }
.window-dots span:first-child { background: var(--orange); }
.window-title { font-size: 13px; font-weight: 780; color: var(--navy); }

.chat-area {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)),
    radial-gradient(circle at top right, rgba(242,66,8,.10), transparent 34%);
}

.message {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6eef3;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.avatar.embley {
  background: radial-gradient(circle at 35% 35%, #ff9f75 0%, var(--orange) 44%, #ba2f05 100%);
  color: white;
}

.bubble {
  padding: 14px 15px;
  border-radius: 16px;
  background: #eef5f8;
  color: #294354;
  font-weight: 610;
  font-size: 14px;
  line-height: 1.45;
}

.message.reply .bubble {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(5,46,76,.06);
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.micro-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.micro-card b { display: block; color: var(--navy); font-size: 13px; margin-bottom: 3px; }
.micro-card span { color: var(--muted); font-size: 12px; line-height: 1.25; display: block; }

.hero-value-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.rail-item {
  padding: 16px;
  background: #fbfdfe;
}

.rail-item strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 4px;
}

.rail-item strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.rail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.34;
}

.logos-note {
  margin-top: 26px;
  color: #6a7b88;
  font-size: 14px;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logos-note::before {
  content: "";
  height: 1px;
  width: 74px;
  background: var(--line);
}

.problem {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 50px;
  align-items: start;
}

.issue-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.issue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3a4d5c;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(5,46,76,.05);
}

.issue-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.problem-grid > .stat-quote { grid-column: 1 / -1; margin: 0; }

.stat-quote {
  margin: 30px 0 0;
  padding: 24px 26px 24px 28px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: var(--sand);
}

.stat-quote p {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 640;
}

.stat-quote cite {
  color: var(--orange);
  font-style: normal;
  font-weight: 760;
  font-size: 14px;
  letter-spacing: normal;
}

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

.stat-card {
  min-height: 175px;
  padding: 24px;
  border-radius: 24px;
  background: var(--cloud);
  border: 1px solid rgba(5,46,76,.08);
  position: relative;
  overflow: hidden;
}

.stat-card.dark {
  background: var(--navy);
  color: #fff;
}

.stat-card.dark h3,
.stat-card.dark strong { color: #fff; }
.stat-card.dark p { color: rgba(255,255,255,.72); }

.stat-card .num {
  display: block;
  color: var(--orange);
  font-size: 56px;
  line-height: .9;
  letter-spacing: normal;
  margin-bottom: 14px;
  font-weight: 850;
}

.stat-card h3 { font-size: 19px; margin-bottom: 7px; }
.stat-card p { margin: 0; color: #5f7180; font-weight: 560; }

.value-section {
  position: relative;
  padding: 118px 0;
  background:
    radial-gradient(circle at top left, rgba(242,66,8,.08), transparent 34%),
    linear-gradient(180deg, #fbfdfe, #fff);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.value-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(5,46,76,.07);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(242,66,8,.08);
}

.value-card.featured {
  background: var(--navy);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: 0 30px 80px rgba(5,46,76,.22);
}

.value-card.featured h3,
.value-card.featured .step-title { color: #fff; }
.value-card.featured p,
.value-card.featured li { color: rgba(255,255,255,.78); }
.value-card.featured .step-number { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.10); color: #fff; }
.value-card.featured .card-tag { background: rgba(242,66,8,.18); color: #fff; border-color: rgba(242,66,8,.42); }

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(5,46,76,.14);
  color: var(--navy);
  font-size: 26px;
  font-weight: 790;
  margin-bottom: 20px;
  background: #fff;
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid #ffd3c4;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 16px;
}

.step-title {
  font-size: 28px;
  letter-spacing: normal;
  color: var(--navy);
  line-height: 1.03;
  margin-bottom: 14px;
  font-weight: 820;
}

.value-card p { color: #526575; font-size: 16px; margin-bottom: 22px; }

.check-list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: #364b5c;
  font-weight: 680;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(242,66,8,.11);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.product-section { background: var(--navy); color: #fff; position: relative; }

.product-section h2 { color: #fff; }
.product-section .lede { color: rgba(255,255,255,.70); }
.product-section .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #fff; }

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

.product-card {
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.product-card .screen {
  aspect-ratio: 16 / 9;
  background: #eef2f5;
  overflow: hidden;
}

.product-card .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.product-copy {
  padding: 24px;
}

.product-copy h3 { color: #fff; font-size: 24px; }
.product-copy p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.capability-line {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.capability-line span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.76);
  font-weight: 720;
  text-align: center;
}

.system-section { background: #fff; }

.system-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.system-stack {
  display: flex;
  flex-direction: column;
}

.stack-context {
  padding: 22px 24px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7fbfd, #eff5f8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(5,46,76,.07);
}

.stack-label {
  display: block;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 16px;
}

.context-tokens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.context-token {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #395060;
  font-weight: 780;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(5,46,76,.08);
}

.stack-arrow {
  text-align: center;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  margin: 14px 0;
}

.stack-core {
  padding: 26px 24px;
  border-radius: 30px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 26px 70px rgba(5,46,76,.22);
}

.stack-core-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.stack-core-head .mini-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.stack-core-head strong { display: block; font-size: 20px; letter-spacing: normal; }
.stack-core-head span { color: rgba(255,255,255,.72); font-weight: 650; font-size: 13px; }

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.foundation-item {
  padding: 20px;
  border-radius: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.foundation-item b { display: block; color: var(--navy); margin-bottom: 7px; }
.foundation-item span { display: block; color: var(--muted); font-size: 14px; }

.thma-about {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 2fr;
  gap: 36px;
  align-items: start;
  padding: 34px 38px;
  border-radius: 26px;
  background: var(--sand);
  border: 1px solid #ffd9cb;
}

.thma-head .thma-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242,66,8,.16);
  color: #b8330a;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 14px;
}

.thma-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.thma-about p {
  margin: 0;
  color: #4a5b68;
  font-size: 17px;
  line-height: 1.6;
}

.how-it-works {
  background: var(--cloud);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.flow::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, rgba(5,46,76,.15), rgba(242,66,8,.42), rgba(5,46,76,.15));
}

.flow-step {
  position: relative;
  padding: 84px 24px 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(5,46,76,.06);
}

.flow-step .node {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(242,66,8,.22);
}

.flow-step h3 { font-size: 22px; }
.flow-step p { color: var(--muted); margin-bottom: 0; }

.comparison-section { background: #fff; }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.comparison-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5,46,76,.05);
}

.comparison-card h3 { font-size: 20px; }
.comparison-card p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

.comparison-card.embley {
  background: var(--navy);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(5,46,76,.18);
}

.comparison-card.embley h3 { color: #fff; }
.comparison-card.embley p { color: rgba(255,255,255,.72); }

.proof-section { background: var(--mist); }

.results-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.results-panel {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 52px rgba(5,46,76,.07);
}

.results-panel h3 { margin-bottom: 22px; }

.metric-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.metric-row strong {
  color: var(--orange);
  font-size: 32px;
  letter-spacing: normal;
  line-height: 1;
}

.metric-row span { color: #4a5f6e; font-weight: 650; font-size: 15px; }

.quotes {
  display: grid;
  gap: 14px;
}

.quote-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(5,46,76,.06);
  position: relative;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  opacity: .28;
  font-family: Georgia, serif;
}

.quote-card p {
  margin: 0;
  color: #3a5060;
  font-weight: 640;
  font-size: 15px;
  line-height: 1.5;
  padding-top: 18px;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.outcome {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.outcome b { display: block; color: var(--navy); margin-bottom: 7px; font-size: 16px; }
.outcome span { color: var(--muted); font-size: 14px; }

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 4px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(5,46,76,.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 770;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242,66,8,.10);
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  transition: transform .2s ease;
}

.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: #4a5f6e;
  font-size: 16px;
  line-height: 1.55;
}

.cta-section {
  padding: 80px 0;
  background: var(--cloud);
  border-top: 1px solid var(--line);
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 48px;
  border-radius: 34px;
  background: var(--navy);
  box-shadow: 0 30px 80px rgba(5,46,76,.20);
}

.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,.72); margin-bottom: 0; max-width: 560px; }

.footer {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  color: #6a7b88;
  font-size: 14px;
  font-weight: 620;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer img { width: 130px; }
.footer-links { display: flex; gap: 18px; }

.mobile-menu { display: none; }

@media (max-width: 1000px) {
  .hero-grid,
  .problem-grid,
  .system-grid,
  .results-grid,
  .cta-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero-panel { max-width: 720px; }
  .value-grid,
  .product-grid,
  .flow,
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .value-card.featured { transform: none; }
  .capability-line { grid-template-columns: 1fr 1fr; }
  .cta-card { text-align: left; }
  .cta-card .btn { width: fit-content; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-inner { height: auto; min-height: 68px; }
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .brand img { width: 132px; }
  .hero { padding: 44px 0 70px; }
  .section-pad, .value-section { padding: 76px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .proof-strip,
  .value-grid,
  .product-grid,
  .stat-mosaic,
  .foundation-grid,
  .flow,
  .comparison-grid,
  .outcome-strip,
  .hero-value-rail { grid-template-columns: 1fr; }
  .action-row { grid-template-columns: 1fr; }
  .flow::before { display: none; }
  .metric-row { grid-template-columns: 1fr; gap: 6px; }
  .cta-card { padding: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .thma-about { grid-template-columns: 1fr; gap: 16px; }
}
