﻿:root {
  --bg: #fbfbfc;
  --bg-strong: #eef0f3;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --line: rgba(104, 108, 118, 0.16);
  --ink: #64666e;
  --muted: #81838b;
  --teal: #08cbb1;
  --teal-deep: #00b89d;
  --brand-plus: #aa2c66;
  --brand-plus-deep: #8d1f53;
  --gold: #d81b60;
  --gold-soft: rgba(216, 27, 96, 0.12);
  --danger: #d81b60;
  --rose: #d81b60;
  --rose-deep: #ba1654;
  --shadow: 0 20px 56px rgba(86, 91, 102, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 27, 96, 0.04), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(8, 203, 177, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 56%, #f1f2f5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 20rem;
  height: 20rem;
  opacity: 0.42;
  background:
    radial-gradient(circle at 11% 16%, rgba(8, 203, 177, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 28% 36%, rgba(8, 203, 177, 0.36) 0 3px, transparent 4px),
    radial-gradient(circle at 56% 21%, rgba(8, 203, 177, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 79% 8%, rgba(8, 203, 177, 0.72) 0 3px, transparent 4px),
    linear-gradient(35deg, transparent 48.9%, rgba(166, 170, 179, 0.55) 49.5%, transparent 50.2%),
    linear-gradient(78deg, transparent 49.1%, rgba(166, 170, 179, 0.45) 49.8%, transparent 50.5%),
    linear-gradient(120deg, transparent 49%, rgba(8, 203, 177, 0.18) 49.6%, transparent 50.2%);
  background-repeat: no-repeat;
}

body::before {
  top: -1.25rem;
  left: -1.75rem;
}

body::after {
  top: -1.25rem;
  right: -1.75rem;
  transform: scaleX(-1);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(12, 112, 104, 0.26);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3.25rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 7rem;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  bottom: -2.5rem;
  width: 20rem;
  height: 20rem;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
  background:
    radial-gradient(circle at 11% 16%, rgba(8, 203, 177, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 28% 36%, rgba(8, 203, 177, 0.36) 0 3px, transparent 4px),
    radial-gradient(circle at 56% 21%, rgba(8, 203, 177, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 79% 8%, rgba(8, 203, 177, 0.72) 0 3px, transparent 4px),
    linear-gradient(35deg, transparent 48.9%, rgba(166, 170, 179, 0.55) 49.5%, transparent 50.2%),
    linear-gradient(78deg, transparent 49.1%, rgba(166, 170, 179, 0.45) 49.8%, transparent 50.5%),
    linear-gradient(120deg, transparent 49%, rgba(8, 203, 177, 0.18) 49.6%, transparent 50.2%);
  background-repeat: no-repeat;
}

.page-shell::before {
  left: -2rem;
  transform: scaleY(-1);
}

.page-shell::after {
  right: -2rem;
  transform: scale(-1, -1);
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) auto auto;
  align-items: center;
  gap: 1.75rem;
  margin-top: 1rem;
  padding: 1rem 1.35rem 1rem 1.1rem;
  border: 1px solid rgba(101, 113, 127, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 250, 0.92)),
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  box-shadow:
    0 18px 42px rgba(20, 34, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.9rem;
  height: 5.9rem;
  flex: 0 0 5.9rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 20px 28px rgba(86, 101, 117, 0.18));
  transition: transform 200ms ease, filter 200ms ease;
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 24px 32px rgba(86, 101, 117, 0.22));
}

.brand-copy {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: #2f3945;
}

.brand-subline {
  color: #6e7886;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.wordmark-plus {
  margin-left: -0.08em;
  background: linear-gradient(180deg, #e2578e 0%, #b42365 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(184, 47, 105, 0.14));
  font-weight: 950;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  background: linear-gradient(180deg, #e6ecf3 0%, #c8d2dc 56%, #a6b1be 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-name-text {
  display: inline-block;
  background: linear-gradient(180deg, #dce2ea 0%, #c3ccd7 58%, #a5afbb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-name--heading {
  font-weight: 900;
  font-size: 1.08em;
}

.brand-name--copy,
.brand-name--inline {
  font-weight: 880;
}

.brand-name--copy {
  background: none;
  color: #707b89;
  -webkit-text-fill-color: #707b89;
}

.brand-name--copy .brand-name-text {
  background: none;
  color: #707b89;
  -webkit-text-fill-color: #707b89;
}

.brand-name--inline {
  font-size: 1.08em;
}

.brand-name--heading .wordmark-plus,
.brand-name--copy .wordmark-plus,
.brand-name--inline .wordmark-plus {
  background: none;
  color: #c52a67;
  -webkit-text-fill-color: #c52a67;
  filter: none;
}

.eyebrow .brand-name--inline,
.panel-kicker .brand-name--inline,
.value-tag .brand-wordmark--inline img,
.presentation-room-card-kicker .brand-wordmark--inline img {
  height: 1.18em;
}

.button .brand-wordmark--inline img {
  height: 1.08em;
}

.site-nav .brand-wordmark--inline img {
  height: 1.22rem;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  vertical-align: -0.15em;
  line-height: 0;
}

.brand-wordmark img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 1.08em;
  object-fit: contain;
}

.brand-wordmark--inline {
  margin-inline: 0.03em;
}

.brand-wordmark--inline img {
  height: 1.08em;
}

.brand-wordmark--header img {
  height: 5.2rem;
}

.brand-wordmark--heading img {
  height: 1.16em;
}

.brand-wordmark--footer img {
  height: 2.35rem;
}

.contact-availability {
  margin: 0.75rem 0 0;
  color: var(--teal-deep);
  font-weight: 600;
}

.contact-service {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  position: relative;
  color: #6c7684;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(8, 203, 177, 0.12), rgba(156, 39, 92, 0.55));
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #24303d;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.section {
  padding: 4.6rem 0 0;
}

main > .section:not(.hero),
.value-strip,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 2rem -1.2rem -1.2rem;
  border-radius: 2.1rem;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.88), rgba(232, 238, 245, 0.96));
  border: 1px solid rgba(23, 37, 47, 0.06);
  z-index: -1;
}

.section-head {
  max-width: 54rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.hero-copy h1,
.hero-panel h2,
.glass-card h2,
.lead-card h2,
.assessment-card h2 {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.section-head p {
  margin: 0.9rem 0 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin: 0 0 2rem;
  align-items: start;
}

.faq-intro-card,
.faq-card {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.faq-intro-card {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
}

.faq-intro-card::after,
.faq-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% auto;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 203, 177, 0.16), transparent 68%);
  pointer-events: none;
}

.faq-intro-card h3 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.faq-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-intro-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-intro-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 0 0.22rem rgba(8, 203, 177, 0.12);
}

.faq-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.faq-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-height: 100%;
  padding: 1.35rem;
}

.faq-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: rgba(8, 203, 177, 0.12);
  color: #0c7068;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-card h3 {
  margin: 0;
  max-width: 17ch;
  font-size: 1.18rem;
  line-height: 1.14;
  text-wrap: balance;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.eyebrow,
.panel-kicker,
.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 3rem;
}

.hero-copy,
.hero-panel {
  min-height: 100%;
}

.hero-copy {
  padding: 2rem 0 0;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.97;
  max-width: 12ch;
}

.hero-text {
  max-width: 44rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-pill-row span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(104, 108, 118, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  cursor: pointer;
  will-change: transform, box-shadow;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:disabled {
  cursor: not-allowed;
}

.button:hover,
.button:focus-visible,
.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px) scale(1.015);
  animation: buttonPulseHover 1.15s ease-in-out infinite;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  --button-hover-ring: rgba(8, 203, 177, 0.16);
  box-shadow: 0 16px 30px rgba(8, 203, 177, 0.24);
}

.button-secondary {
  border-color: rgba(8, 203, 177, 0.32);
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-deep);
  --button-hover-ring: rgba(8, 203, 177, 0.1);
  box-shadow: 0 12px 26px rgba(15, 66, 78, 0.08);
}

.button-call-inline {
  min-height: auto;
  padding: 0.68rem 1rem;
  font-size: 0.92rem;
  line-height: 1;
  vertical-align: middle;
}

@keyframes buttonPulseHover {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(8, 203, 177, 0),
      0 18px 34px rgba(15, 66, 78, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 0.55rem var(--button-hover-ring, rgba(8, 203, 177, 0.12)),
      0 22px 38px rgba(15, 66, 78, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .floating-cta {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .floating-cta:hover,
  .floating-cta:focus-visible {
    transform: none;
    animation: none;
  }
}

.button-header {
  white-space: nowrap;
  padding-inline: 1.2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.hero-points li {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(104, 108, 118, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-metrics article {
  padding: 1.1rem 1rem;
  border-top: 1px solid rgba(8, 203, 177, 0.18);
}

.hero-metrics strong {
  display: block;
  font-size: 2rem;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--teal-deep);
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.45;
}

.glass-card {
  border: 1px solid rgba(104, 108, 118, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 252, 0.84));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.3rem;
  border-top: 4px solid rgba(8, 203, 177, 0.4);
}

.hero-panel h2 {
  font-size: 2rem;
  margin-top: 0.1rem;
}

.hero-mockup {
  width: 100%;
  margin-top: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(23, 37, 47, 0.08);
  box-shadow: 0 18px 40px rgba(23, 37, 47, 0.12);
}

.hero-book-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  align-items: end;
  margin-top: 1rem;
  overflow: visible;
}

.hero-books-strip {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(23, 37, 47, 0.1));
  border-radius: 1.5rem;
}

.hero-book {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  filter: drop-shadow(0 18px 26px rgba(23, 37, 47, 0.14));
}

.hero-book-left,
.hero-book-right {
  transform: translateY(0.5rem) rotate(-4deg) scale(1.04);
}

.hero-book-right {
  transform: translateY(0.5rem) rotate(4deg) scale(1.04);
}

.hero-book-center {
  transform: translateY(-0.35rem) scale(1.07);
}

.hero-feed,
.update-grid,
.obligation-grid,
.sources-grid,
.backup-steps,
.plan-list {
  display: grid;
  gap: 1rem;
}

.hero-feed {
  margin-top: 1.1rem;
}

.hero-feed article,
.update-card,
.obligation-card,
.source-card,
.backup-step,
.plan-item {
  border: 1px solid rgba(23, 37, 47, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.hero-feed article {
  padding: 1rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  background: rgba(12, 112, 104, 0.1);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill.gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.pill.danger {
  background: rgba(159, 74, 50, 0.12);
  color: var(--danger);
}

.hero-feed h3,
.update-card h3,
.obligation-card h3,
.source-card h3,
.profile-panel h3,
.backup-card h3,
.plan-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-feed p,
.hero-panel-footer p,
.update-card p,
.obligation-card p,
.source-card p,
.backup-step p,
.plan-item p,
.profile-panel p,
.lead-result,
.assessment-result {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inline-link {
  color: var(--rose);
  font-weight: 700;
}

.inline-link--action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 203, 177, 0.24);
  background: rgba(8, 203, 177, 0.08);
  color: var(--teal-deep);
  text-decoration: none;
}

.inline-link--action:hover,
.inline-link--action:focus-visible {
  color: #fff;
  border-color: rgba(8, 203, 177, 0.48);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
}

.hero-panel-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 0.25rem 0;
  border-top: 1px solid rgba(216, 27, 96, 0.16);
}

.presentation-room {
  position: relative;
  padding-top: 3.15rem;
}

.presentation-room-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  padding: 1.7rem;
  border: 1px solid rgba(104, 108, 118, 0.12);
  border-radius: clamp(2rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.11), transparent 30%),
    radial-gradient(circle at left center, rgba(8, 203, 177, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 246, 249, 0.9));
  box-shadow:
    0 22px 56px rgba(23, 37, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.presentation-room-shell::after {
  content: "";
  position: absolute;
  inset: auto auto -5rem -4rem;
  width: 13rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 203, 177, 0.16), transparent 72%);
  pointer-events: none;
}

.presentation-room-story,
.presentation-room-stack {
  position: relative;
  z-index: 1;
}

.presentation-room-story {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.presentation-room-story h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.1vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.presentation-room-lead,
.presentation-room-copy {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.72;
}

.presentation-room-lead {
  font-size: 1.04rem;
  color: var(--ink);
}

.presentation-room-points {
  display: grid;
  gap: 0.82rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.presentation-room-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.presentation-room-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 0 0.22rem rgba(8, 203, 177, 0.12);
}


.presentation-room-quote {
  width: fit-content;
  max-width: 28rem;
  padding: 0.9rem 1.05rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(104, 108, 118, 0.12);
  box-shadow: 0 14px 30px rgba(23, 37, 47, 0.06);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.presentation-room-stack {
  display: grid;
  gap: 1rem;
}

.presentation-room-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  padding: 1.45rem;
}

.presentation-room-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -26% auto;
  width: 11rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 203, 177, 0.12), transparent 72%);
  pointer-events: none;
}

.presentation-room-card-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(8, 203, 177, 0.12);
  color: #0c7068;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.presentation-room-card h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.presentation-room-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.presentation-room-card--cta {
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 250, 0.9));
}

.presentation-room-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.presentation-room-specs div {
  display: grid;
  gap: 0.32rem;
  padding: 0.95rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 37, 47, 0.08);
}

.presentation-room-specs strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.presentation-room-specs span {
  color: var(--muted);
  line-height: 1.55;
}

.presentation-room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.presentation-room-note {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(216, 27, 96, 0.14);
  font-size: 0.94rem;
}

.value-strip,
.readiness-layout,
.backup-layout,
.lead-layout,
.funding-layout {
  display: grid;
  gap: 1rem;
}

.partner-band {
  padding-top: 2.4rem;
}

.logo-banner {
  display: grid;
  gap: 1rem;
}

.logo-banner-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.45rem;
}

.logo-banner-copy h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.05;
}

.logo-banner-copy p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 38rem;
}

.logo-banner-visual {
  display: flex;
  justify-content: flex-end;
}

.logo-poster-card {
  width: min(100%, 430px);
  padding: 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(104, 108, 118, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 246, 249, 0.88)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(86, 91, 102, 0.1);
}

.logo-poster-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 203, 177, 0.12);
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.logo-poster-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 37, 47, 0.08);
  box-shadow: 0 16px 36px rgba(23, 37, 47, 0.07);
}

.logo-poster-chip img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  height: auto;
}

.logo-banner .partner-logos {
  display: flex;
  align-items: center;
  min-height: 118px;
}

.logo-banner .partner-logo-track {
  animation-duration: 92s;
}

.logo-banner .partner-logo-item {
  width: clamp(160px, 15vw, 220px);
  min-height: 98px;
}

.awareness-section {
  padding-top: 0.35rem;
}

.awareness-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.35rem;
  align-items: center;
  padding: 1.45rem;
}

.awareness-copy h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  line-height: 1.06;
}

.awareness-copy p:last-of-type {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.68;
  max-width: 40rem;
}

.awareness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.awareness-visual {
  display: grid;
  gap: 0.8rem;
}

.awareness-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(23, 37, 47, 0.08);
  background:
    radial-gradient(circle at top right, rgba(216, 27, 96, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 250, 0.94));
  box-shadow: 0 20px 44px rgba(23, 37, 47, 0.1);
  padding: 1rem;
}

.awareness-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.awareness-visual-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.awareness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.awareness-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem 1.25rem;
}

.awareness-card h3 {
  font-size: 1.22rem;
  line-height: 1.15;
}

.awareness-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.awareness-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awareness-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #44505f;
  line-height: 1.55;
}

.awareness-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d61e5d 0%, #08cbb1 100%);
  box-shadow: 0 0 0 5px rgba(8, 203, 177, 0.08);
}

.notable-customers {
  padding-top: 0.4rem;
}

.notable-customers-shell {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 28px;
}

.notable-customers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.notable-customers-copy h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.notable-customers-copy p:last-child {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.partner-logo-item.is-dark {
  background: linear-gradient(180deg, rgba(34, 39, 45, 0.98), rgba(23, 27, 32, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(7, 13, 24, 0.32);
}

.brand-band {
  padding-top: 2.4rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(23, 37, 47, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(20, 40, 62, 0.08);
}

.brand-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(235, 244, 247, 0.92)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 37, 47, 0.06);
}

.brand-card-media img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.brand-card-copy {
  display: grid;
  gap: 0.65rem;
}

.brand-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.brand-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 66, 67, 0.14);
  background: rgba(31, 98, 101, 0.08);
  color: var(--teal-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 1.45rem;
}

.partner-copy p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.partner-logos {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 1) 94%,
    transparent 100%
  );
}

.partner-logo-track {
  display: flex;
  width: max-content;
  animation: partner-marquee 62s linear infinite;
}

.partner-logo-group {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  padding-right: 0.85rem;
}

.partner-logo-item {
  width: clamp(150px, 14vw, 220px);
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 37, 47, 0.08);
  box-shadow: 0 18px 42px rgba(20, 40, 62, 0.08);
}

.partner-logo-item img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 74px;
  object-fit: contain;
  filter: saturate(0.98);
  aspect-ratio: 3 / 1;
}

.partner-logo-item.is-dark img {
  filter: none;
}

.partner-logos:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logos-reverse .partner-logo-track {
  animation-name: partner-marquee-reverse;
  animation-duration: 42s;
}

.partner-logos-compact {
  min-height: 102px;
}

.partner-logos-compact .partner-logo-item {
  width: clamp(168px, 13vw, 218px);
  min-height: 92px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.94);
}

.partner-logos-compact .partner-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 54px;
  margin-inline: auto;
  aspect-ratio: auto;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partner-marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.value-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.value-strip article,
.checklist-card,
.urgency-card,
.profile-panel,
.backup-card,
.plan-card,
.assessment-card,
.lead-card {
  padding: 1.45rem;
}

.value-strip h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.value-strip p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.update-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.funding-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.funding-card {
  padding: 1.45rem;
}

.funding-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.22rem;
  line-height: 1.3;
}

.funding-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.funding-note {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 37, 47, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.funding-note span {
  color: var(--muted);
  line-height: 1.65;
}

.funding-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.funding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.product-grid,
.operations-grid,
.ebook-layout {
  display: grid;
  gap: 1rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.operations-card,
.fit-card,
.ebook-visual,
.ebook-detail {
  padding: 1.4rem;
}

.product-card h3,
.ebook-detail h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
}

.product-card p,
.ebook-detail p,
.fit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  margin-top: 1rem;
}

.operations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.operations-grid div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 37, 47, 0.08);
}

.operations-grid strong,
.fit-card h2,
.operations-card h2,
.partner-copy h2,
.ebook-visual h2,
.ebook-section h2 {
  font-size: 1.7rem;
  line-height: 1.08;
}

.operations-grid span,
.fit-list li {
  color: var(--muted);
  line-height: 1.55;
}

.fit-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.fit-list li {
  position: relative;
  padding-left: 1.1rem;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal);
}

.ebook-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ebook-visual {
  display: grid;
  gap: 1rem;
}

.ebook-visual img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(23, 37, 47, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.ebook-visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ebook-card-stack {
  display: grid;
  gap: 1rem;
}

.ebook-sequence-shell {
  display: grid;
  gap: 1rem;
}

.ebook-sequence-intro,
.ebook-consult-card,
.ebook-flow-card {
  padding: 1.45rem;
}

.ebook-sequence-intro h2,
.ebook-consult-card h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.08;
}

.ebook-sequence-intro p,
.ebook-consult-card p {
  color: var(--muted);
  line-height: 1.65;
}

.ebook-sequence-state {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 37, 47, 0.08);
}

.ebook-sequence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ebook-flow-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.ebook-flow-card.is-locked {
  opacity: 0.72;
}

.ebook-flow-card.is-complete {
  border-color: rgba(12, 112, 104, 0.18);
}

.ebook-cover {
  display: block;
  width: min(100%, 320px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.35rem;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  background: transparent;
  filter: drop-shadow(0 22px 30px rgba(23, 37, 47, 0.16));
}

.ebook-flow-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.ebook-step-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: rgba(12, 112, 104, 0.1);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ebook-flow-title {
  margin: 0;
  font-size: 1.18rem;
}

.ebook-flow-copy,
.ebook-flow-note,
.ebook-flow-list li {
  color: var(--muted);
  line-height: 1.6;
}

.ebook-flow-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ebook-flow-list li {
  position: relative;
  padding-left: 1.05rem;
}

.ebook-flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal);
}

.ebook-action-disabled {
  width: 100%;
  opacity: 1;
  cursor: not-allowed;
}

.ebook-flow-note {
  min-height: 3rem;
  padding-top: 0.2rem;
  font-size: 0.92rem;
}

.ebook-consult-card {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.ebook-consult-card.is-ready {
  border-color: rgba(12, 112, 104, 0.22);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(234, 245, 238, 0.86));
}

.ebook-consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.update-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.card-link {
  color: var(--teal-deep);
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.filter-chip {
  border: 1px solid rgba(23, 37, 47, 0.09);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--ink);
  color: #fff;
}

.obligation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.obligation-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.obligation-card ul,
.checklist,
.profile-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.obligation-card li,
.checklist li,
.profile-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.obligation-card li::before,
.checklist li::before,
.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.authority-line {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(23, 37, 47, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.readiness-layout {
  grid-template-columns: 1fr;
}

.checklist-card h2,
.urgency-card h2,
.backup-card h2,
.plan-card h2,
.profile-panel h3,
.assessment-card h2,
.lead-card h2 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.urgency-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.urgency-stack div {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 37, 47, 0.07);
}

.urgency-stack strong {
  font-size: 1rem;
}

.urgency-stack span {
  color: var(--muted);
  line-height: 1.5;
}

.profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.profile-tab {
  border: 1px solid rgba(23, 37, 47, 0.09);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  cursor: pointer;
}

.profile-tab.is-active {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
}

.profile-panel {
  display: grid;
  gap: 1rem;
}

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

.profile-column {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 37, 47, 0.08);
}

.profile-column h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.backup-layout,
.lead-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.backup-step,
.plan-item {
  padding: 1rem;
}

.backup-step {
  display: grid;
  gap: 0.6rem;
}

.backup-step-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(12, 112, 104, 0.12);
  color: var(--teal-deep);
  font-weight: 700;
}

.plan-list {
  margin-top: 1rem;
}

.plan-item {
  display: grid;
  gap: 0.35rem;
}

.plan-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(154, 123, 63, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.assessment-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.assessment-question {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 37, 47, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.assessment-question p {
  margin: 0 0 0.85rem;
  line-height: 1.55;
}

.toggle-row {
  display: inline-flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.toggle-button {
  border: 1px solid rgba(23, 37, 47, 0.09);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  cursor: pointer;
}

.toggle-button.is-selected[data-value="yes"] {
  background: rgba(12, 112, 104, 0.14);
  color: var(--teal-deep);
  border-color: rgba(12, 112, 104, 0.22);
}

.toggle-button.is-selected[data-value="no"] {
  background: rgba(159, 74, 50, 0.12);
  color: var(--danger);
  border-color: rgba(159, 74, 50, 0.2);
}

.assessment-result,
.lead-result {
  min-height: 4.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 37, 47, 0.08);
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 37, 47, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  margin: 1.6rem 0 1.8rem;
  align-items: start;
}

.contact-cta-copy {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.contact-cta-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.contact-cta-copy p {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-cta-list,
.contact-cta-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-cta-list li,
.contact-cta-meta li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-cta-list li::before,
.contact-cta-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--teal);
}

.contact-cta-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
  align-content: center;
  padding: 1.15rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(8, 203, 177, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 247, 0.98)),
    var(--surface-strong);
  box-shadow: 0 1.6rem 3rem rgba(55, 71, 88, 0.08);
}

.contact-cta-panel {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.4rem;
}

.contact-cta-panel h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.08;
}

.contact-cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-cta-contact {
  display: grid;
  gap: 0.12rem;
}

.contact-cta-note {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-cta-phone {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.contact-cta-phone a {
  white-space: nowrap;
}

.sources-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.source-card {
  display: grid;
  position: relative;
  min-width: 0;
  gap: 0.72rem;
  padding: 1.2rem 1.3rem;
  overflow: hidden;
  isolation: isolate;
}

.source-card::after,
.privacy-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 203, 177, 0.14), transparent 72%);
  pointer-events: none;
}

.source-card > *,
.privacy-card > * {
  position: relative;
  z-index: 1;
}

.source-card h3 {
  max-width: 20ch;
  font-size: clamp(1.05rem, 0.98rem + 0.28vw, 1.2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.source-card p {
  max-width: 58ch;
  font-size: 0.97rem;
  line-height: 1.72;
}

.privacy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.privacy-card {
  display: grid;
  position: relative;
  min-width: 0;
  align-content: start;
  gap: 0.95rem;
  padding: 1.45rem 1.55rem;
  overflow: hidden;
  isolation: isolate;
}

.privacy-card-wide {
  grid-column: 1 / -1;
  padding: 1.55rem 1.7rem;
}

.privacy-card h3 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.14rem, 1.02rem + 0.42vw, 1.34rem);
  line-height: 1.14;
  text-wrap: balance;
  hyphens: auto;
}

.privacy-card p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.privacy-list {
  margin: 0;
  padding-left: 1.15rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.privacy-footnote {
  margin-top: 0.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(23, 37, 47, 0.08);
  font-size: 0.95rem;
}

.privacy-card-wide p,
.privacy-card-wide .privacy-list {
  max-width: none;
}

.privacy-card-wide .privacy-list {
  columns: 2;
  column-gap: 2rem;
}

.privacy-card-wide .privacy-list li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.privacy-section .section-head {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.privacy-section .section-head p {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.72;
}

.site-footer {
  display: grid;
  gap: 1.6rem;
  margin-top: 4rem;
  padding: 1.8rem 0 1rem;
  border-top: 1px solid rgba(23, 37, 47, 0.08);
}

.site-footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #c5ccd8;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.site-footer-branding {
  display: grid;
  gap: 0.7rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 72ch;
}

.site-footer-rail {
  display: grid;
  gap: 1.05rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.48rem 0.68rem;
  margin: 0;
  color: rgba(51, 71, 199, 0.72);
}

.site-footer-divider {
  color: rgba(51, 71, 199, 0.55);
  font-weight: 500;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3347c7;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #2332a6;
}

.site-footer-mini-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.15rem;
  height: 2.55rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
  margin-inline: 0.08rem;
}

.site-footer-mini-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-footer-alt {
  border-color: rgba(51, 71, 199, 0.12);
  background: rgba(51, 71, 199, 0.06);
  color: #2332a6;
  --button-hover-ring: rgba(51, 71, 199, 0.12);
  box-shadow: 0 12px 24px rgba(46, 51, 87, 0.08);
}

.footer-cookie-trigger {
  appearance: none;
}

.cookie-consent-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  isolation: isolate;
}

.cookie-consent-shell[hidden] {
  display: none !important;
}

.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 36, 0.5);
  backdrop-filter: blur(12px);
}

.cookie-consent-panel {
  position: relative;
  z-index: 2;
  width: min(46rem, 100%);
  max-height: min(88dvh, 52rem);
  overflow: auto;
  padding: 1.5rem;
  border: 1px solid rgba(35, 50, 74, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 250, 0.98)),
    rgba(247, 248, 253, 0.98);
  box-shadow:
    0 28px 70px rgba(16, 28, 44, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.cookie-consent-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cookie-consent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 203, 177, 0.12);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 0.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(35, 50, 74, 0.1);
}

.cookie-consent-copy {
  max-width: 41rem;
}

.cookie-consent-head h2 {
  margin: 0.2rem 0 0;
  color: #23324a;
  font-size: clamp(1.95rem, 2.2vw, 2.45rem);
  line-height: 1.04;
}

.cookie-consent-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(35, 50, 74, 0.08);
  border-radius: 999px;
  background: rgba(35, 50, 74, 0.06);
  color: #23324a;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.cookie-consent-close:hover,
.cookie-consent-close:focus-visible {
  transform: translateY(-1px);
  background: #23324a;
  border-color: #23324a;
  color: #fff;
}

.cookie-consent-shell[data-mode="gate"] .cookie-consent-close {
  display: none;
}

.cookie-consent-intro {
  margin: 1rem 0 0;
  color: #55607d;
  line-height: 1.68;
}

.cookie-consent-status {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(35, 50, 74, 0.04);
  border: 1px solid rgba(35, 50, 74, 0.08);
}

.cookie-consent-status strong {
  color: #23324a;
  font-size: 1.05rem;
}

.cookie-consent-status p {
  margin: 0;
  color: #5f6980;
  line-height: 1.6;
}

.cookie-consent-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.cookie-consent-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(35, 50, 74, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.cookie-consent-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent-card-copy h3 {
  margin: 0;
  color: #23324a;
  font-size: 1.34rem;
  font-weight: 600;
}

.cookie-consent-card-copy p {
  margin: 0.5rem 0 0;
  color: #55607d;
  line-height: 1.6;
}

.cookie-consent-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(35, 50, 74, 0.08);
  color: #23324a;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-option-toggle {
  margin-top: 0.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f7f8f;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.cookie-option-detail {
  margin-top: 0.65rem;
  color: #62708c;
  line-height: 1.6;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.cookie-switch-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(35, 50, 74, 0.08);
  background: rgba(123, 136, 156, 0.28);
  transition: background 160ms ease;
}

.cookie-switch-track::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(17, 25, 56, 0.2);
  transition: transform 160ms ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  border-color: rgba(22, 148, 158, 0.18);
  background: linear-gradient(135deg, #23324a 0%, #0ca997 100%);
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(0.98rem);
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(35, 50, 74, 0.08);
}

.button-cookie-minimal {
  border-color: rgba(35, 50, 74, 0.12);
  background: rgba(35, 50, 74, 0.04);
  color: #23324a;
  --button-hover-ring: rgba(35, 50, 74, 0.1);
  box-shadow: 0 10px 22px rgba(17, 36, 59, 0.06);
}

.cookie-consent-actions .button-primary {
  background: linear-gradient(135deg, #23324a 0%, var(--teal-deep) 100%);
  box-shadow: 0 16px 32px rgba(17, 36, 59, 0.22);
}

.cookie-consent-actions .button-secondary {
  border-color: rgba(35, 50, 74, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #23324a;
  box-shadow: 0 12px 26px rgba(17, 36, 59, 0.08);
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.cookie-consent-links a {
  color: #5a647b;
  text-decoration: none;
}

.cookie-consent-links a:hover,
.cookie-consent-links a:focus-visible {
  color: #23324a;
}

body.cookie-modal-open {
  overflow: hidden;
}

body.cookie-consent-pending {
  overflow: hidden;
}

body.cookie-consent-pending .page-shell,
body.cookie-consent-pending .floating-cta,
body.cookie-consent-pending .support-chat-launcher,
body.cookie-consent-pending .support-chat-panel {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(8, 203, 177, 0.28);
}

.support-chat-launcher {
  position: fixed;
  right: 1rem;
  bottom: 5.8rem;
  z-index: 26;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow:
    0 18px 34px rgba(14, 34, 48, 0.16),
    0 0 0 1px rgba(8, 203, 177, 0.12);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.support-chat-launcher-badge {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-plus) 0%, var(--brand-plus-deep) 100%);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-panel {
  position: fixed;
  right: 1rem;
  bottom: 10.6rem;
  z-index: 25;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 0.9rem;
  width: min(31rem, calc(100vw - 1.5rem));
  height: min(52rem, calc(100dvh - 11.8rem));
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(8, 203, 177, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 246, 0.98)),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 28px 64px rgba(14, 34, 48, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.support-chat-panel[hidden] {
  display: none !important;
}

.support-chat-panel.is-open {
  animation: supportChatFadeUp 220ms ease;
}

.support-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.support-chat-header h2 {
  margin: 0.25rem 0 0;
  font-size: 1.35rem;
}

.support-chat-close {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 37, 47, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.support-chat-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0;
}

.support-chat-suggestion {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(8, 203, 177, 0.14);
  border-radius: 999px;
  background: rgba(8, 203, 177, 0.08);
  color: var(--teal-deep);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.support-chat-messages {
  display: grid;
  gap: 0.9rem;
  margin-top: 0;
  min-height: 14rem;
  max-height: none;
  overflow-y: auto;
  padding-right: 0.35rem;
  align-content: start;
}

.support-chat-message {
  display: grid;
  gap: 0.38rem;
}

.support-chat-message--assistant {
  justify-items: start;
}

.support-chat-message--user {
  justify-items: end;
}

.support-chat-role {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(63, 77, 92, 0.72);
}

.support-chat-bubble {
  width: fit-content;
  max-width: 100%;
  min-width: min(100%, 11rem);
  padding: 0.95rem 1rem;
  border-radius: 20px;
  line-height: 1.65;
  background: rgba(8, 203, 177, 0.09);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(8, 203, 177, 0.08);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support-chat-message--assistant .support-chat-bubble {
  border-top-left-radius: 0.5rem;
}

.support-chat-message--user .support-chat-bubble {
  border-top-right-radius: 0.5rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
}

.support-chat-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0;
}

.support-chat-label {
  font-weight: 700;
}

.support-chat-form textarea {
  min-height: 6.8rem;
  resize: vertical;
  border: 1px solid rgba(23, 37, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.95rem 1rem;
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
}

.support-chat-form textarea:focus-visible {
  outline: 2px solid rgba(8, 203, 177, 0.28);
  border-color: rgba(8, 203, 177, 0.36);
}

.support-chat-actions {
  display: grid;
  gap: 0.75rem;
}

.support-chat-meta {
  display: grid;
  gap: 0.4rem;
}

.support-chat-meta-row {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-chat-meta-block {
  display: grid;
  gap: 0.16rem;
}

.support-chat-availability-note {
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support-chat-meta .inline-link {
  font-weight: 700;
}

.support-chat-handoff {
  display: grid;
  gap: 0.65rem;
  margin-top: 0;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(233, 92, 136, 0.08);
  border: 1px solid rgba(233, 92, 136, 0.12);
}

.support-chat-handoff p {
  margin: 0;
  color: var(--muted);
}

.support-chat-handoff-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.support-chat-handoff-actions .button {
  width: 100%;
}

.support-chat-handoff-form {
  display: grid;
  gap: 0.8rem;
}

.support-chat-handoff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.support-chat-handoff-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-weight: 700;
}

.support-chat-handoff-form input,
.support-chat-handoff-form select,
.support-chat-handoff-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 37, 47, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.82rem 0.95rem;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.support-chat-handoff-form textarea {
  min-height: 5.8rem;
  resize: vertical;
}

.support-chat-handoff-form input:focus-visible,
.support-chat-handoff-form select:focus-visible,
.support-chat-handoff-form textarea:focus-visible {
  outline: 2px solid rgba(233, 92, 136, 0.18);
  border-color: rgba(233, 92, 136, 0.28);
}

.support-chat-handoff-submit-row {
  display: grid;
  gap: 0.55rem;
}

.support-chat-handoff-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.support-chat-handoff-result {
  min-height: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 37, 47, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.support-chat-handoff-result:empty {
  display: none;
}

@keyframes supportChatFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 1rem;
  }

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

  .site-nav {
    justify-content: flex-start;
  }

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

  .presentation-room-shell,
  .presentation-room-specs {
    grid-template-columns: 1fr;
  }

  .notable-customers-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .brand-grid,
  .partner-band-inner,
  .logo-banner-shell,
  .awareness-shell,
  .contact-cta-shell,
  .product-grid,
  .operations-layout,
  .awareness-grid,
  .ebook-sequence-grid,
  .operations-grid,
  .ebook-layout,
  .update-grid,
  .obligation-grid,
  .profile-grid,
  .backup-layout,
  .funding-layout,
  .lead-layout,
  .sources-grid,
  .privacy-layout,
  .readiness-layout,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .logo-banner-visual {
    justify-content: flex-start;
  }

  .awareness-copy h2 {
    max-width: 16ch;
  }

  .presentation-room-story h2 {
    max-width: 13ch;
  }

  .support-chat-panel {
    width: min(29rem, calc(100vw - 2rem));
    height: min(49rem, calc(100dvh - 11.8rem));
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .privacy-card-wide .privacy-list {
    columns: 1;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 30px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .presentation-room-shell {
    padding: 1.3rem;
    border-radius: 2rem;
  }

  .awareness-shell {
    padding: 1.25rem;
    border-radius: 2rem;
  }

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

  .presentation-room-story h2 {
    max-width: none;
  }

  .awareness-copy h2 {
    max-width: none;
  }

  

.presentation-room-quote {
    max-width: none;
  }

  .presentation-room-actions .button {
    width: 100%;
  }

  .brand-mark {
    width: 5rem;
    height: 5rem;
    flex-basis: 5rem;
  }

  .brand-wordmark--header img {
    height: 4.1rem;
  }

  .button-header {
    width: 100%;
    justify-content: center;
  }

  .hero-copy {
    padding-top: 1rem;
  }

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

  .site-footer {
    gap: 1.25rem;
  }

  .site-footer-links,
  .site-footer-actions {
    justify-content: flex-start;
  }

  .support-chat-panel {
    right: 0.9rem;
    left: 0.9rem;
    bottom: 8.9rem;
    width: auto;
    height: calc(100dvh - 9.9rem);
  }

  .support-chat-handoff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro-card,
  .faq-card {
    padding: 1.25rem;
  }

  .faq-intro-card h3 {
    max-width: none;
  }

  .faq-card h3 {
    max-width: none;
  }

  .presentation-room-shell {
    padding: 1.05rem;
  }

  .awareness-shell,
  .awareness-card {
    padding: 1.05rem;
  }

  .presentation-room-card {
    padding: 1.15rem;
  }

  .presentation-room-specs div {
    padding: 0.82rem;
  }

  .page-shell {
    width: min(calc(100% - 1.4rem), var(--max-width));
  }

  .site-footer-links {
    gap: 0.55rem;
  }

  .site-footer-divider {
    display: none;
  }

  .site-footer-mini-mark {
    order: 0;
  }

  .site-header {
    padding: 0.92rem;
  }

  .brand {
    gap: 0.9rem;
  }

  .brand-mark {
    width: 4.45rem;
    height: 4.45rem;
    flex-basis: 4.45rem;
  }

  .brand-wordmark--header img {
    height: 3.55rem;
  }

  .brand-subline {
    font-size: 0.79rem;
  }

  .source-card,
  .privacy-card,
  .privacy-card-wide {
    padding: 1.2rem 1.15rem;
  }

  .source-card p,
  .privacy-card p,
  .privacy-list,
  .privacy-section .section-head p {
    font-size: 0.95rem;
  }

  .section {
    padding-top: 3.6rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .section-head h2,
  .checklist-card h2,
  .urgency-card h2,
  .backup-card h2,
  .plan-card h2,
  .assessment-card h2,
  .lead-card h2 {
    font-size: 1.65rem;
  }

  .button,
  .floating-cta,
  .toggle-button,
  .filter-chip,
  .profile-tab {
    width: 100%;
  }

  .hero-actions,
  .hero-pill-row,
  .ebook-consult-actions,
  .ebook-visual-actions,
  .filter-row,
  .profile-tabs,
  .toggle-row,
  .brand-card-row {
    display: grid;
  }

  .partner-logo-item {
    width: clamp(132px, 44vw, 180px);
    min-height: 88px;
  }

  .partner-logos-compact .partner-logo-item {
    width: clamp(138px, 46vw, 178px);
  }

  .logo-banner .partner-logo-item {
    width: clamp(148px, 50vw, 192px);
  }

  .brand-card-media {
    min-height: 112px;
  }

  .logo-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .logo-poster-chip {
    min-height: 92px;
  }

  .floating-cta {
    right: 0.7rem;
    left: 0.7rem;
    bottom: 0.7rem;
  }

  .support-chat-launcher {
    right: 0.7rem;
    bottom: 5.2rem;
  }

  .support-chat-panel {
    right: 0.7rem;
    left: 0.7rem;
    bottom: 8.2rem;
    height: calc(100dvh - 9rem);
    width: auto;
    padding: 0.95rem;
  }

  .support-chat-handoff-actions {
    grid-template-columns: 1fr;
  }

  .site-footer-actions,
  .cookie-consent-actions {
    flex-direction: column;
  }

  .site-footer-actions .button,
  .cookie-consent-actions .button {
    width: 100%;
  }

  .cookie-consent-shell {
    padding: 0.75rem;
    place-items: center;
  }

  .cookie-consent-panel {
    width: 100%;
    max-height: min(88dvh, 46rem);
    border-radius: 24px;
    padding: 1.15rem 0.95rem 0.95rem;
  }

  .cookie-consent-head,
  .cookie-consent-card-head,
  .cookie-consent-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-card-copy h3 {
    font-size: 1.32rem;
  }
}










@media (max-width: 1180px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    align-items: start;
    row-gap: 0.85rem;
  }

  .brand {
    grid-area: brand;
    margin: 0;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
    margin: 0;
    padding-left: 0;
    justify-content: flex-start;
  }

  .button-header {
    grid-area: cta;
    justify-self: end;
  }
}
