:root {
  color-scheme: light;
  --ink: #121516;
  --muted: #495256;
  --line: #d9e0df;
  --paper: #f8f7f2;
  --white: #ffffff;
  --charcoal: #101719;
  --teal: #167d7f;
  --teal-dark: #0e595b;
  --amber: #8a5c1e;
  --amber-on-dark: #d99a45;
  --clay: #9a5441;
  --shadow: 0 20px 60px rgba(18, 21, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

:focus-visible {
  outline: 3px solid rgba(22, 125, 127, 0.34);
  outline-offset: 3px;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 247, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(18, 21, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  color: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 5vw, 64px) 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 23, 25, 0.94) 0%, rgba(16, 23, 25, 0.78) 42%, rgba(16, 23, 25, 0.24) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* .section-label sits on light backgrounds almost everywhere except these
   three dark sections; swap to the lighter amber there to keep >=4.5:1 contrast
   in both directions instead of picking one shade that fails one side. */
.eyebrow,
.statement .section-label,
.trust .section-label {
  color: var(--amber-on-dark);
}

h1,
h2,
h3,
p,
.brand {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
.brand {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.55rem, 6.2vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary.on-light {
  border-color: var(--line);
  color: var(--teal-dark);
  background: var(--white);
}

.button.secondary.on-light:hover {
  border-color: var(--teal);
  background: #f4fbfa;
}

.trust-microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 78px clamp(20px, 5vw, 64px);
}

.ai-simulator {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
}

.simulator-intro p:not(.section-label),
.simulator-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.simulator-intro p:not(.section-label) {
  max-width: 560px;
}

.simulator-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.simulator-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f6f5ef;
}

.simulator-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd7d5;
}

.simulator-toolbar span:first-child {
  background: var(--clay);
}

.simulator-toolbar span:nth-child(2) {
  background: var(--amber);
}

.simulator-toolbar span:nth-child(3) {
  background: var(--teal);
}

.simulator-toolbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.simulator-stage {
  padding: 18px;
  min-height: 720px;
}

.chat-card {
  display: none;
  flex-direction: column;
  gap: 14px;
  min-height: 680px;
}

.chat-card.is-active {
  display: flex;
  animation: chatPanelIn 260ms ease both;

  pointer-events: auto;
}

@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-label {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.chat-label.before {
  background: var(--clay);
}

.chat-label.after {
  background: var(--teal);
}

.chat-message {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.message-role {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
}

.message-role b {
  color: var(--ink);
  font-size: 0.95rem;
}

.message-role small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-message p {
  margin: 0;
  white-space: pre-line;
}

.typing-prompt {
  min-height: 48px;
  line-height: 1.5;
}

.typing-answer {
  min-height: 196px;
  line-height: 1.55;
}

.chat-message.user {
  width: min(92%, 560px);
  margin-left: auto;
  background: #f8f7f2;
  border-color: rgba(22, 125, 127, 0.22);
}

.chat-message.assistant {
  width: min(100%, 680px);
  margin-right: auto;
  background: var(--white);
}

.chat-message.scattered {
  border-color: rgba(154, 84, 65, 0.34);
  background: #fff8f5;
}

.chat-message.structured {
  border-color: rgba(22, 125, 127, 0.34);
  background: #f4fbfa;
}


.ai-answer-block {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.ai-answer-block h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.ai-answer-block ul,
.ai-answer-block ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-answer-block li + li {
  margin-top: 5px;
}

.ai-answer-block.weak {
  border-color: rgba(154, 84, 65, 0.22);
  background: rgba(255, 248, 245, 0.84);
}

.ai-answer-block.strong {
  border-color: rgba(22, 125, 127, 0.24);
  background: rgba(244, 251, 250, 0.9);
}

[data-sim-reveal] {
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

[data-sim-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.chat-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-flags span {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.chat-flags span {
  border: 1px solid rgba(154, 84, 65, 0.28);
  color: #7a3d2e;
  background: #fff8f5;
}

.store-preview {
  display: grid;
  gap: 10px;
}

.store-link {
  padding: 14px;
  border: 1px solid rgba(22, 125, 127, 0.28);
  border-radius: 8px;
  background: #f4fbfa;
}

.store-link span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
}

.store-link strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.store-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.product-options article {
  min-height: 112px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-options b {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  line-height: 1.25;
}

.product-options span {
  color: var(--muted);
  font-size: 0.82rem;
}

.simulator-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 18px 18px;
}

.simulator-progress button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfd7d5;
  cursor: pointer;
}

.simulator-progress button.is-active {
  background: var(--teal);
}

.simulator-note {
  max-width: 560px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.08);
}


.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.section-copy p,
.statement p,
.trust p,
.contact-intro p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}
.section-heading.with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1180px;
}

.section-thumb {
  width: min(100%, 340px);
  aspect-ratio: 4 / 3;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  background: var(--paper);
}

.process {
  background: var(--charcoal);
  color: var(--white);
}

.process .section-label {
  color: var(--amber-on-dark);
}

.process .process-track {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

.process .process-track article {
  background: rgba(255, 255, 255, 0.06);
}

.process .process-track p {
  color: rgba(255, 255, 255, 0.7);
}

.deliverables {
  background: var(--paper);
}


.visual-split,
.statement-inner,
.trust-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.visual-copy {
  max-width: 760px;
}

.visual-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-visual,
.statement-visual,
.trust-visual {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(217, 224, 223, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.statement-visual,
.trust-visual {
  box-shadow: none;
}

.section-visual img,
.statement-visual img,
.trust-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.data-risk-panel {
  width: min(100%, 560px);
  justify-self: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.risk-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.risk-panel-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-panel-header strong {
  font-size: 0.9rem;
}

.risk-panel-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.95fr) minmax(170px, 1.35fr) auto;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(217, 224, 223, 0.72);
}

.risk-panel-row b {
  font-size: 0.92rem;
}

.risk-panel-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.risk-panel-row em {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff8f5;
  color: #7a3d2e;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.data-risk-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}


.risk-section,
.industries {
  background: var(--white);
}

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

.risk-card,
.service-card,
.statement {
  background: var(--charcoal);
  color: var(--white);
}

.statement-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.statement p {
  max-width: 780px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.statement strong {
  display: block;
  margin-top: 30px;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  line-height: 1.04;
  color: var(--white);
}

.service-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  background: #fbfbf8;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.service-actions a,
.service-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
}

.service-actions button {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
}

.service-actions a {
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: var(--white);
}

.service-actions button:hover {
  background: var(--teal-dark);
}

.service-actions a:hover {
  border-color: var(--teal);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-track article {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
}

.process-track span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.process-track p {
  color: var(--muted);
}

.deliverable-grid,
.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-grid article,
.industry-list article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.deliverable-grid h3,
.industry-list h3 {
  margin: 0 0 10px;
}

.deliverable-grid p,
.industry-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust {
  background: var(--charcoal);
  color: var(--white);
}

.trust-box {
  max-width: 1180px;
  margin: 0 auto;
}

.trust p {
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  background: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.form-note,
.turnstile-wrap,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5d3;
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 125, 127, 0.18);
  border-color: var(--teal);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.turnstile-wrap {
  min-height: 65px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status.is-error {
  color: #9a2f2f;
}

.form-status.is-success {
  color: var(--teal-dark);
}



.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 14, 0.68);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-panel h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.modal-summary {
  max-width: 760px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

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

.modal-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.modal-section.wide {
  grid-column: 1 / -1;
}

.modal-section h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.modal-section ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.modal-section li + li {
  margin-top: 7px;
}

.modal-section p {
  margin: 0;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

.legal-page {
  padding-top: 140px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.legal-updated {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-content h2 {
  margin: 40px 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.legal-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--teal-dark);
}

.site-footer {
  padding: 44px clamp(20px, 5vw, 64px) 26px;
  background: #0b0f10;
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-weight: 760;
}

.footer-tagline {
  margin-top: 2px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 400 !important;
  font-size: 0.88rem;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-nav a,
.footer-legal a,
.footer-contact a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.mobile-audit-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  box-shadow: 0 14px 45px rgba(18, 21, 22, 0.22);
}

body.show-mobile-cta .mobile-audit-cta {
  display: none;
}

@media (max-width: 900px) {
  .simulator-stage {
    min-height: 820px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .split,
  .visual-split,
  .contact,
  .ai-simulator,
  .statement-inner,
  .trust-box,
  .section-heading.with-media {
    grid-template-columns: 1fr;
  }

  .audit-summary-grid,
  .source-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-layout,
  .source-roadmap,
  .audit-cta {
    grid-template-columns: 1fr;
  }

  .audit-cta {
    display: grid;
  }

  .section-thumb {
    justify-self: start;
  }

  .section-visual,
  .statement-visual,
  .trust-visual,
  .data-risk-panel {
    justify-self: start;
    width: min(100%, 520px);
  }

  .risk-grid,
  .service-grid,
  .deliverable-grid,
  .industry-list,
.process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .simulator-stage {
    min-height: 980px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 88vh;
    padding: 100px 20px 54px;
  }
.hero::after {
    background: linear-gradient(90deg, rgba(16, 23, 25, 0.96) 0%, rgba(16, 23, 25, 0.82) 100%);
  }

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

  body.show-mobile-cta .mobile-audit-cta {
    display: inline-flex;
  }

  body.modal-open .mobile-audit-cta {
    display: none;
  }

  .section {
    padding: 56px 20px;
  }

  .risk-grid,
  .service-grid,
  .deliverable-grid,
  .industry-list,
  .process-track,
  .contact-form,
  .audit-summary-grid,
  .source-map-grid,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }
.product-options {
    grid-template-columns: 1fr;
  }

  .chat-message.user,
  .chat-message.assistant {
    width: 100%;
  }

  .simulator-stage,
  .chat-card {
    min-height: 780px;
  }

  .typing-answer {
    min-height: 260px;
  }

  .typing-prompt {
    min-height: 72px;
  }

  .statement-visual,
  .trust-visual {
    min-height: 0;
  }

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

  .modal {
    padding: 12px;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    max-height: 92vh;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Card Hover Effects and Icon Styles */
.card-icon {
  display: block;
  margin-bottom: 16px;
  transition: transform 220ms ease;
}

.risk-card:hover .card-icon.risk,
.service-card:hover .card-icon.service,
.deliverable-grid article:hover .card-icon.deliv,
.industry-list article:hover .card-icon.industry {
  transform: scale(1.08);
}

.risk-card,
.service-card,
.deliverable-grid article,
.industry-list article,
/* Scroll-spy active link style */
.site-nav a.is-active {
  color: var(--teal) !important;
  font-weight: 760;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
}
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a.is-active {
  border-bottom-color: var(--teal);
}
