:root {
  --ink: #17143f;
  --ink-soft: #514f6d;
  --muted: #77758d;
  --purple: #7447d9;
  --purple-deep: #5930bd;
  --purple-pale: #f0eaff;
  --blue: #2868d8;
  --blue-pale: #eaf4ff;
  --green: #188f62;
  --amber: #e8a51a;
  --surface: #ffffff;
  --surface-soft: #fbfaff;
  --border: #e5def4;
  --shadow: 0 18px 50px rgba(62, 44, 112, 0.12);
  --shadow-soft: 0 8px 26px rgba(62, 44, 112, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fcfbff;
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--purple-deep);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(40, 104, 216, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(116, 71, 217, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell,
.hero-shell,
.benefit-shell,
.section-shell,
.contact-shell,
.footer-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-deep);
}

.brand-mark {
  font-size: 32px;
  color: var(--purple);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: 0.13em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--purple-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(116, 71, 217, 0.25);
}

.button-primary:hover {
  background: var(--purple-deep);
  box-shadow: 0 16px 32px rgba(116, 71, 217, 0.32);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--border);
}

.button-secondary:hover {
  background: white;
  border-color: #cfc2ea;
  box-shadow: var(--shadow-soft);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 19px;
}

.section-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 16%, rgba(224, 195, 255, 0.58), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(191, 231, 255, 0.62), transparent 37%),
    radial-gradient(circle at 58% 75%, rgba(239, 226, 255, 0.38), transparent 36%),
    #fdfcff;
}

.section-glow::before,
.section-glow::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 170px;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(116, 71, 217, 0.42) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
  pointer-events: none;
}

.section-glow::before {
  top: 12px;
  left: -25px;
}

.section-glow::after {
  right: -20px;
  bottom: 14px;
}

.hero {
  padding: 70px 0 58px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(116, 71, 217, 0.12);
}

.eyebrow.centered {
  justify-content: center;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5.25vw, 76px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.hero h1 span {
  color: var(--purple);
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 24px;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row .material-symbols-rounded {
  color: var(--green);
  font-size: 19px;
}

.demo-wrap {
  position: relative;
  padding: 94px 0 0 28px;
}

.speech-card {
  position: absolute;
  z-index: 4;
  top: 0;
  right: -20px;
  width: min(265px, 62%);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.speech-card .material-symbols-rounded {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 24px;
}

.chat-demo {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(116, 71, 217, 0.2);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(71, 49, 130, 0.16);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  background: rgba(245, 241, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  color: white !important;
  background: var(--purple);
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.chat-header div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.chat-header strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.chat-header span {
  color: var(--green);
  font-size: 11px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  background: #22b77e;
  border-radius: 50%;
}

.chat-messages {
  min-height: 260px;
  max-height: 260px;
  overflow-y: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fbfaff;
  scrollbar-width: thin;
  scrollbar-color: #d8cdec transparent;
}

.chat-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 5px 14px rgba(62, 44, 112, 0.07);
  animation: bubble-in 220ms ease both;
}

.chat-bubble.bot {
  align-self: flex-start;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}

.chat-bubble.user {
  align-self: flex-end;
  color: white;
  background: var(--purple);
  border-bottom-right-radius: 5px;
}

.chat-bubble.typing {
  color: var(--muted);
  font-style: italic;
}

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-chips {
  padding: 12px 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: white;
  border-top: 1px solid var(--border);
}

.chat-chips button {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--purple-deep);
  background: var(--purple-pale);
  border: 1px solid #d9ccf5;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.chat-chips button:hover {
  color: white;
  background: var(--purple);
}

.chat-input {
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: #f8f5ff;
  border-top: 1px solid var(--border);
}

.chat-input input {
  width: 100%;
  min-width: 0;
  padding: 11px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
}

.chat-input button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--purple);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.demo-note {
  margin: 0;
  padding: 11px 18px 14px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--border);
  font-size: 10px;
  line-height: 1.4;
}

.demo-note .material-symbols-rounded {
  color: var(--amber);
  font-size: 16px;
}

.benefit-band {
  position: relative;
  z-index: 2;
  padding: 0 0 30px;
  background: #fcfbff;
}

.benefit-shell {
  margin-top: -18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 28px;
  background: rgba(248, 245, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-shell article {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 4px 22px;
  border-right: 1px solid var(--border);
}

.benefit-shell article:last-child {
  border-right: 0;
}

.benefit-shell article > .material-symbols-rounded {
  color: var(--purple);
  font-size: 42px;
}

.benefit-shell article div {
  display: grid;
}

.benefit-shell strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.benefit-shell small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  padding: 104px 0;
}

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

.section-heading h2,
.projects-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.projects-copy > p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.process {
  position: relative;
  overflow: hidden;
  background: white;
}

.flow-controls {
  display: none;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.flow-controls button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

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

.flow-card {
  position: relative;
  min-height: 270px;
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.flow-card:not(:last-child)::after {
  content: "arrow_forward";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -25px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(62, 44, 112, 0.1);
}

.step-number {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.flow-icon {
  margin: 21px 0 16px;
  font-size: 44px;
}

.flow-icon.purple { color: var(--purple); }
.flow-icon.green { color: #0ba464; }
.flow-icon.teal { color: #2d9f94; }
.flow-icon.amber { color: var(--amber); }
.flow-icon.blue { color: var(--blue); }

.flow-card h3 {
  margin: 0;
  color: var(--purple-deep);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.flow-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.solutions {
  background: #f7f4ff;
}

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

.solution-card {
  position: relative;
  min-height: 440px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  background: var(--purple-pale);
  border-radius: 18px;
  font-size: 31px;
}

.card-label {
  width: fit-content;
  margin-top: 22px;
  padding: 6px 10px;
  color: var(--purple-deep);
  background: #f4efff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card h3,
.project-item h3 {
  margin: 16px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.solution-card > p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.solution-card > strong {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.45;
}

.solution-card > strong .material-symbols-rounded {
  font-size: 19px;
}

.text-link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-deep);
  font-weight: 800;
}

.text-link .material-symbols-rounded {
  font-size: 19px;
  transition: transform 180ms ease;
}

.text-link:hover .material-symbols-rounded {
  transform: translateX(4px);
}

.projects {
  background: white;
}

.projects-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.projects-copy .button {
  margin-top: 28px;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-item {
  padding: 24px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: flex-start;
  gap: 18px;
  background: #fbfaff;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.project-item > .material-symbols-rounded {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 17px;
  font-size: 29px;
}

.project-item h3 {
  margin: 2px 0 0;
  font-size: 18px;
}

.project-item p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact {
  padding: 110px 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.82fr);
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
}

.contact-links {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-links a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 700;
}

.contact-links a > .material-symbols-rounded,
.contact-links a > i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 21px;
}

.contact-links a span:last-child {
  display: grid;
}

.contact-links small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form {
  padding: 30px;
  display: grid;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(116, 71, 217, 0.2);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fcfbff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  background: white;
  border-color: var(--purple);
  outline: 3px solid rgba(116, 71, 217, 0.12);
}

.button-wide {
  width: 100%;
  min-height: 54px;
  border: 0;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  color: #eeecff;
  background: var(--ink);
}

.footer-shell {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-copy small,
.footer-shell p {
  color: #bdb9db;
}

.footer-shell p {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 19px;
}

.footer-links a:hover {
  background: var(--purple);
}

.footer-bottom {
  padding: 16px 24px;
  color: #918daa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.4vw, 62px);
  }

  .benefit-shell {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .benefit-shell article:nth-child(2) {
    border-right: 0;
  }

  .flow-controls {
    display: flex;
  }

  .flow-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #d8cdec transparent;
    padding: 4px 4px 18px;
  }

  .flow-card {
    flex: 0 0 205px;
    scroll-snap-align: start;
  }

  .flow-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 78px;
    right: 0;
    left: 0;
    height: calc(100vh - 78px);
    padding: 36px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(253, 252, 255, 0.98);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-shell,
  .projects-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .trust-row,
  .hero-actions {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .demo-wrap {
    width: min(100%, 570px);
    margin: 8px auto 0;
  }

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

  .solution-card {
    min-height: 0;
  }

  .projects-shell,
  .contact-shell {
    gap: 44px;
  }

  .projects-copy,
  .contact-copy {
    text-align: center;
  }

  .projects-copy .eyebrow,
  .contact-copy .eyebrow {
    justify-content: center;
  }

  .contact-links {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero-shell,
  .benefit-shell,
  .section-shell,
  .contact-shell,
  .footer-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-mark {
    font-size: 28px;
  }

  .hero {
    padding: 44px 0 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 9px 14px;
  }

  .demo-wrap {
    padding: 94px 0 0;
  }

  .speech-card {
    right: 8px;
    width: min(250px, 78%);
  }

  .chat-demo {
    min-height: 480px;
    border-radius: 22px;
  }

  .chat-messages {
    min-height: 230px;
    max-height: 230px;
  }

  .benefit-band {
    padding-top: 22px;
  }

  .benefit-shell {
    margin-top: 0;
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }

  .benefit-shell article,
  .benefit-shell article:nth-child(2) {
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .benefit-shell article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .projects-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .card-grid {
    gap: 16px;
  }

  .solution-card {
    padding: 24px;
    border-radius: 22px;
  }

  .project-item {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .project-item > .material-symbols-rounded {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 25px;
  }

  .lead-form {
    padding: 22px;
    border-radius: 22px;
  }

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

  .footer-shell {
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Service landing pages */
.service-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
}

.service-hero-shell,
.service-content-shell,
.legal-shell {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
}

.service-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--purple-deep);
}

.breadcrumbs .material-symbols-rounded {
  font-size: 17px;
}

.service-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-hero h1 em {
  color: var(--purple);
  font-style: normal;
}

.service-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.service-proof .material-symbols-rounded {
  color: var(--green);
  font-size: 19px;
}

.service-summary-card {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(116, 71, 217, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-summary-card::before {
  position: absolute;
  inset: -1px -1px auto;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-summary-icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 18px;
  place-items: center;
  box-shadow: 0 12px 28px rgba(89, 48, 189, 0.24);
}

.service-summary-icon .material-symbols-rounded {
  font-size: 30px;
}

.service-summary-card h2 {
  margin: 22px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.15;
}

.service-summary-card > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.check-list .material-symbols-rounded {
  margin-top: 1px;
  color: var(--green);
  font-size: 21px;
}

.service-intro-grid,
.service-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-panel,
.outcome-card,
.service-step,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.service-panel h2,
.service-cta h2,
.legal-shell h1 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-panel > p,
.service-cta p,
.legal-shell > p {
  color: var(--ink-soft);
}

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

.service-step,
.outcome-card {
  padding: 28px;
  border-radius: 22px;
}

.service-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  place-items: center;
}

.service-step h3,
.outcome-card h3 {
  margin: 18px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 1.2;
}

.service-step p,
.outcome-card p {
  margin: 0;
  color: var(--ink-soft);
}

.outcome-card .material-symbols-rounded {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--purple);
  background: var(--purple-pale);
  border-radius: 16px;
  font-size: 27px;
  place-items: center;
}

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

.faq-list details {
  padding: 0 24px;
  border-radius: 18px;
}

.faq-list summary {
  position: relative;
  padding: 22px 38px 22px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--purple);
  content: "+";
  font-size: 26px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 0 22px;
  margin: 0;
  color: var(--ink-soft);
}

.service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px;
  color: white;
  background: linear-gradient(125deg, var(--purple-deep), var(--blue));
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(67, 51, 151, 0.24);
}

.service-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.service-cta .button {
  color: var(--purple-deep);
  background: white;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 16px;
}

.service-card-actions .text-link {
  padding-top: 0;
}

.service-detail-link {
  color: var(--purple-deep);
  font-weight: 800;
}

.service-detail-link:hover {
  color: var(--blue);
}

.section-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  text-align: center;
}

.legal-page {
  padding: 82px 0 96px;
}

.legal-shell {
  max-width: 860px;
}

.legal-shell h2 {
  margin: 36px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.legal-shell ul {
  color: var(--ink-soft);
}

.legal-meta {
  margin-bottom: 34px;
  color: var(--muted);
}

.privacy-link {
  color: var(--purple-deep);
  font-weight: 700;
}

/* Consent banner: analytics only runs after an affirmative choice. */
.consent-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  max-width: 760px;
  padding: 20px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(31, 24, 78, 0.22);
}

.consent-banner.is-visible {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
}

.consent-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .service-hero-shell,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .service-hero-shell {
    gap: 42px;
  }

  .service-steps-grid {
    grid-template-columns: 1fr;
  }

  .service-cta {
    text-align: center;
  }

  .service-cta .button {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .service-hero {
    padding: 62px 0 56px;
  }

  .service-hero-shell,
  .service-content-shell,
  .legal-shell {
    width: min(calc(100% - 32px), 1120px);
  }

  .service-hero h1 {
    font-size: 42px;
  }

  .service-hero-lead {
    font-size: 18px;
  }

  .service-hero-actions,
  .service-hero-actions .button {
    width: 100%;
  }

  .service-intro-grid,
  .service-outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-summary-card,
  .service-cta {
    padding: 26px;
  }

  .consent-banner.is-visible {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: column-reverse;
  }

  .consent-actions .button {
    width: 100%;
  }
}
