@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=League+Spartan:wght@400;500;600;700&display=swap");

:root {
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #111014;
  --ink-soft: #2d2931;
  --muted: #68636d;
  --line: #dedbd5;
  --line-dark: #c7c2ba;
  --purple: #6941a5;
  --purple-dark: #4f2e82;
  --purple-soft: #eee8f6;
  --amber: #f1b847;
  --amber-soft: #fff3d6;
  --orange: #e77b35;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(28, 20, 37, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--white); background: var(--purple); }
:focus-visible { outline: 3px solid rgba(105, 65, 165, 0.32); outline-offset: 3px; }

.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { max-width: 780px; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 14px; color: var(--white); background: var(--ink);
  transform: translateY(-140%); transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(17, 16, 20, 0.09);
  background: rgba(248, 247, 243, 0.94);
  backdrop-filter: blur(18px);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo {
  position: relative; width: 44px; height: 44px; overflow: hidden;
  border: 1px solid var(--ink); background: #fbfaf7;
}
.brand-logo img {
  width: 100%; height: 100%; max-width: none; transform: none;
}
.brand-wordmark {
  font-family: "League Spartan", "Century Gothic", sans-serif;
  font-size: 22px; font-weight: 600; letter-spacing: -0.55px; line-height: 0.95;
}
.brand-wordmark small {
  display: block; margin-top: 4px; font-family: "DM Sans", sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: 1.85px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position: relative; color: var(--ink-soft); }
.nav-links > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px;
  height: 2px; background: var(--purple); transition: right 0.2s ease;
}
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { right: 0; }
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: var(--ink); }
.menu-button {
  display: none; width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--line-dark); background: var(--white); cursor: pointer;
}
.menu-button span {
  display: block; width: 18px; height: 1.5px; margin: 5px auto; background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.btn, .nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 11px 18px; border: 1px solid transparent;
  border-radius: 999px; font-weight: 700; line-height: 1.2; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary, .nav-cta { color: var(--white); background: var(--ink); }
.btn-primary:hover, .nav-cta:hover { transform: translateY(-2px); background: var(--purple-dark); }
.btn-secondary { border-color: var(--line-dark); background: var(--white); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--purple); color: var(--purple-dark); }
.text-link { color: var(--purple-dark); font-weight: 700; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  position: relative; overflow: hidden; padding: 92px 0 74px;
  background:
    radial-gradient(circle at 92% 12%, rgba(241, 184, 71, 0.19), transparent 24rem),
    radial-gradient(circle at 2% 72%, rgba(105, 65, 165, 0.10), transparent 27rem),
    var(--paper);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-dark), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--purple-dark); font-size: 12px; font-weight: 700; letter-spacing: 1.55px; text-transform: uppercase;
}
.eyebrow::before, .kicker::before { content: ""; width: 22px; height: 2px; background: var(--amber); }
h1, h2, h3 {
  font-family: "League Spartan", "Century Gothic", sans-serif;
  color: var(--ink); text-wrap: balance;
}
h1 {
  max-width: 820px; margin: 20px 0 22px;
  font-size: clamp(52px, 7vw, 86px); font-weight: 600; line-height: 0.96; letter-spacing: -3px;
}
h2 {
  margin: 0 0 18px; font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600; line-height: 1; letter-spacing: -1.8px;
}
h3 { margin: 0 0 10px; font-size: 23px; font-weight: 600; line-height: 1.15; letter-spacing: -0.45px; }
p { margin: 0 0 16px; }
.lead { max-width: 740px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.muted { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 20px; color: var(--muted); font-size: 13px; }

.identity-stage { position: relative; width: 100%; max-width: 420px; margin-left: auto; }
.identity-stage::before, .identity-stage::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
}
.identity-stage::before {
  width: 124px; height: 124px; right: -30px; top: -24px; background: var(--purple);
}
.identity-stage::after {
  width: 72px; height: 72px; left: -27px; bottom: 24px; background: var(--amber);
}
.identity-card {
  position: relative; z-index: 1; aspect-ratio: 1; overflow: hidden;
  border: 1px solid var(--line-dark); background: #fbfaf7; box-shadow: var(--shadow);
}
.identity-card img { width: 170%; max-width: none; transform: translate(-20.5%, -20.5%); }

.decision-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.decision-item { padding: 25px 28px; border-right: 1px solid var(--line); }
.decision-item:first-child { padding-left: 0; }
.decision-item:last-child { padding-right: 0; border-right: 0; }
.decision-item strong {
  display: block; margin-bottom: 5px; font-family: "League Spartan", sans-serif;
  font-size: 20px; font-weight: 600;
}
.decision-item span { color: var(--muted); font-size: 14px; }

.section { padding: 88px 0; }
.section-white { background: var(--white); }
.section-tint { border-block: 1px solid var(--line); background: #f1efea; }
.section-purple { color: var(--white); background: var(--purple-dark); }
.section-purple h2, .section-purple h3 { color: var(--white); }
.section-purple .lead, .section-purple .muted { color: rgba(255, 255, 255, 0.72); }
.section-head { max-width: 820px; margin-bottom: 38px; }
.section-head.split {
  max-width: none; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: end;
}
.section-head.split .lead { justify-self: end; }
.rule { width: 100%; height: 1px; margin: 24px 0; background: var(--line); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card {
  min-height: 240px; padding: 30px; border: 1px solid var(--line);
  background: var(--white); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 0 18px 40px rgba(45, 32, 58, 0.07); }
.card-number {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px;
  color: var(--purple-dark); font-family: "League Spartan", sans-serif; font-size: 13px; font-weight: 700;
}
.card-number::after { content: ""; width: 34px; height: 3px; background: var(--amber); }
.card p { color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 8px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.feature-list { display: grid; gap: 0; margin-top: 25px; border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-item b {
  display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%;
  color: var(--white); background: var(--purple); font-size: 12px;
}
.feature-item strong { display: block; margin-bottom: 3px; }
.feature-item span { color: var(--muted); font-size: 14px; }

.hub-frame {
  overflow: hidden; border: 1px solid #d4d0ca; border-radius: 22px;
  background: var(--white); box-shadow: var(--shadow);
}
.hub-frame-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 18px; border-bottom: 1px solid var(--line); background: #faf9f6;
}
.hub-frame-title { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.hub-frame-title i { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--purple); }
.demo-label {
  padding: 5px 8px; border: 1px solid var(--line-dark); border-radius: 999px;
  color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
}
.hub-overview { padding: 20px; }
.hub-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hub-metric { padding: 15px; border: 1px solid var(--line); background: var(--paper); }
.hub-metric strong {
  display: block; font-family: "League Spartan", sans-serif; font-size: 27px; font-weight: 600; line-height: 1.15;
}
.hub-metric span { color: var(--muted); font-size: 11px; }
.hub-insight { margin-top: 12px; padding: 18px; color: var(--white); background: var(--ink); }
.hub-insight small { color: #d6d0db; }
.hub-insight p { margin: 7px 0 0; font-size: 14px; }
.spark-bars { display: flex; align-items: end; gap: 7px; height: 95px; margin-top: 16px; }
.spark-bars i { flex: 1; min-width: 8px; background: var(--purple-soft); border-top: 3px solid var(--purple); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.process-step { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); background: var(--white); }
.process-step:last-child { border-right: 0; }
.process-step .step-num { color: var(--orange); font-family: "League Spartan", sans-serif; font-size: 14px; font-weight: 700; }
.process-step h3 { margin-top: 52px; }
.process-step p { color: var(--muted); font-size: 14px; }

.page-hero {
  position: relative; isolation: isolate; overflow: hidden; padding: 76px 0 60px; border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(105, 65, 165, 0.07), transparent 48%),
    var(--paper);
}
.page-hero::after {
  content: ""; position: absolute; width: 180px; height: 180px; right: 7%; top: -92px;
  z-index: -1; border: 34px solid var(--amber); border-radius: 50%; opacity: 0.72;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 930px; font-size: clamp(48px, 6vw, 74px); }
.page-hero .lead { max-width: 820px; }

.service-list { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.service-row {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  padding: 40px 0; border-bottom: 1px solid var(--line-dark);
}
.service-row h3 { font-size: 29px; }
.service-row .service-tag {
  display: inline-block; margin-bottom: 15px; color: var(--purple-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.service-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin: 20px 0 0; padding: 0; list-style: none; }
.service-row li { position: relative; padding-left: 17px; color: var(--muted); font-size: 14px; }
.service-row li::before { content: ""; position: absolute; width: 6px; height: 6px; left: 0; top: 9px; border-radius: 50%; background: var(--amber); }

.hub-shell {
  display: grid; grid-template-columns: 218px 1fr; min-height: 720px;
  overflow: hidden; border: 1px solid var(--line-dark); border-radius: 24px; background: var(--white); box-shadow: var(--shadow);
}
.hub-sidebar { padding: 22px 16px; color: var(--white); background: var(--ink); }
.hub-side-title {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  font-family: "League Spartan", sans-serif; font-size: 18px; font-weight: 600;
}
.hub-side-title i { width: 12px; height: 12px; border-radius: 50%; background: var(--amber); box-shadow: 18px 0 0 var(--purple); }
.hub-side-item { margin: 4px 0; padding: 10px 11px; border-radius: 8px; color: #b8b4bd; font-size: 13px; }
.hub-side-item.active { color: var(--ink); background: var(--white); }
.hub-dashboard { padding: 24px; background: #f7f6f2; }
.hub-dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.hub-dash-head h2 { margin-bottom: 6px; font-size: 32px; }
.hub-dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.dash-card { padding: 16px; border: 1px solid var(--line); background: var(--white); }
.dash-card strong {
  display: block; font-family: "League Spartan", sans-serif; font-size: 28px; font-weight: 600; line-height: 1.15;
}
.dash-card span, .dash-card small { display: block; color: var(--muted); font-size: 11px; }
.dash-card small { margin-top: 5px; color: var(--purple-dark); font-weight: 600; }
.panel-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 12px; margin-top: 12px; }
.panel { min-height: 248px; padding: 18px; border: 1px solid var(--line); background: var(--white); }
.panel h3 { font-size: 18px; }
.barset { display: flex; align-items: flex-end; gap: 9px; height: 150px; padding-top: 14px; }
.bar { flex: 1; min-width: 9px; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--purple-dark), #9c7bc8); }
.legend { display: flex; justify-content: space-between; margin-top: 7px; color: var(--muted); font-size: 10px; }
.segment { padding: 12px 0; border-bottom: 1px solid var(--line); }
.segment:last-child { border-bottom: 0; }
.segment b { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.segment small { color: var(--muted); }
.scenario { margin-top: 12px; padding: 18px; border: 1px solid var(--line); background: var(--white); }
.scenario-top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.scenario label { margin-top: 0; }
.scenario-output { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
input[type="range"] { width: 100%; accent-color: var(--purple); }

.answer-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.answer-card { min-height: 225px; padding: 24px; border-right: 1px solid var(--line); background: var(--white); }
.answer-card:last-child { border-right: 0; }
.answer-card span {
  display: inline-grid; width: 27px; height: 27px; margin-bottom: 38px; place-items: center;
  border-radius: 50%; color: var(--white); background: var(--purple); font-size: 11px; font-weight: 700;
}
.answer-card h3 { font-size: 19px; }
.answer-card p { color: var(--muted); font-size: 13px; }

.cadence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cadence-card { padding: 28px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.cadence-card .kicker { color: var(--amber); }
.cadence-card h3 { margin-top: 38px; }
.cadence-card ul { margin: 16px 0 0; padding-left: 18px; color: rgba(255,255,255,0.72); font-size: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.value-card i { display: block; width: 38px; height: 5px; margin-bottom: 48px; background: var(--amber); }
.value-card:nth-child(2) i { background: var(--purple); }
.value-card:nth-child(3) i { background: var(--orange); }
.value-card p { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.contact-points { margin-top: 28px; border-top: 1px solid var(--line); }
.contact-point { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-point strong { display: block; }
.contact-point span { color: var(--muted); font-size: 14px; }
.form-card { padding: 32px; border: 1px solid var(--line-dark); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
input, textarea, select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-dark); border-radius: 0;
  color: var(--ink); background: #fcfbf8;
}
input:focus, textarea:focus, select:focus { border-color: var(--purple); outline: 3px solid rgba(105, 65, 165, 0.10); }
textarea { min-height: 150px; resize: vertical; }
.form-note { margin-top: 15px; color: var(--muted); font-size: 12px; }

.notice {
  padding: 17px 19px; border-left: 4px solid var(--amber);
  color: var(--ink-soft); background: var(--amber-soft); font-size: 13px;
}
.cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 48px; border: 1px solid var(--line-dark); background:
    radial-gradient(circle at 90% 0%, rgba(241,184,71,0.30), transparent 17rem),
    var(--white);
}
.cta h2 { max-width: 700px; }
.cta p { max-width: 620px; color: var(--muted); }

.footer { padding: 54px 0 34px; color: #cbc6d0; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 48px; padding-bottom: 40px; }
.footer-brand { color: var(--white); font-family: "League Spartan", sans-serif; font-size: 25px; font-weight: 600; }
.footer-copy { max-width: 420px; margin-top: 12px; color: #aaa4af; font-size: 14px; }
.footer h4 { margin: 0 0 13px; color: var(--white); font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; }
.footer a { display: block; margin: 7px 0; color: #bdb7c2; font-size: 14px; }
.footer a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); color: #8f8995; font-size: 12px;
}

@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .identity-stage { width: min(74vw, 380px); margin: 28px auto 0; }
  .section-head.split { grid-template-columns: 1fr; gap: 16px; }
  .section-head.split .lead { justify-self: start; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .answer-grid { grid-template-columns: 1fr 1fr; }
  .answer-card { border-bottom: 1px solid var(--line); }
  .answer-card:nth-child(even) { border-right: 0; }
  .answer-card:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .hub-shell { grid-template-columns: 1fr; }
  .hub-sidebar { display: none; }
  .hub-dashboard-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 72px; }
  .brand-logo { width: 39px; height: 39px; }
  .brand-wordmark { font-size: 19px; }
  .menu-button { display: block; }
  .nav-links {
    display: none; position: absolute; z-index: 80; top: 100%; left: 0; right: 0;
    min-height: calc(100dvh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto;
    padding: 30px max(22px, calc((100vw - var(--max)) / 2));
    align-items: stretch; flex-direction: column; gap: 7px;
    border-top: 1px solid var(--line); background: #f8f7f3; box-shadow: 0 28px 50px rgba(17,16,20,.10); font-size: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.nav-cta) { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .nav-cta { width: 100%; margin-top: 16px; }
  .hero { padding: 66px 0 58px; }
  h1 { font-size: clamp(48px, 15vw, 68px); letter-spacing: -2.1px; }
  .page-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-item, .decision-item:first-child, .decision-item:last-child {
    padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line);
  }
  .decision-item:last-child { border-bottom: 0; }
  .section { padding: 68px 0; }
  .cards, .values-grid, .cadence-grid { grid-template-columns: 1fr; }
  .card { min-height: 220px; }
  .service-row { grid-template-columns: 1fr; gap: 13px; padding: 32px 0; }
  .service-row ul { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 30px; }
  .answer-grid { grid-template-columns: 1fr; }
  .answer-card, .answer-card:nth-child(even), .answer-card:last-child {
    grid-column: auto; min-height: auto; border-right: 0; border-bottom: 1px solid var(--line);
  }
  .answer-card:last-child { border-bottom: 0; }
  .answer-card span { margin-bottom: 24px; }
  .hub-overview, .hub-dashboard { padding: 14px; }
  .hub-metrics, .hub-dashboard-grid, .panel-grid, .scenario-top, .scenario-output { grid-template-columns: 1fr; }
  .hub-metric { padding: 13px; }
  .panel { min-height: auto; }
  .scenario-top { gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-card { padding: 22px; }
  .cta { padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main > div:first-child { grid-column: auto; }
}

.engagement-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; margin:30px 0; }
.engagement-card { border:1px solid var(--line); padding:30px; background:white; }
.engagement-card.featured { border-top:4px solid var(--purple); }
.engagement-label { color:var(--purple); font-size:14px; font-weight:700; }
.engagement-card h3 { margin:18px 0; }
.engagement-card p { margin-bottom:22px; }
.pricing-note { margin:24px 0 40px; }
@media(max-width:900px) { .engagement-grid { grid-template-columns:1fr; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Public website section colors, using the existing brand palette. */
.section-lavender {
  background: linear-gradient(120deg, #eee8f6, #f6f2fa);
  border-color: #ded3ed;
}
.section-amber {
  background: linear-gradient(120deg, #fff3d6, #fff8e9);
  border-color: #ebddbd;
}
.section-peach {
  background: linear-gradient(120deg, #fbece2, #fff5ee);
  border-color: #edd8c9;
}
.section-lavender, .section-amber, .section-peach {
  box-shadow: inset 0 1px 0 rgba(79, 46, 130, 0.08);
}
.service-row {
  position: relative;
  isolation: isolate;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
}
.service-row:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, rgba(255, 243, 214, 0.7), transparent);
}
