:root {
  --bg: #07090d;
  --surface-a: #0b0f17;
  --surface-b: #0e131d;
  --surface-strong: #111826;
  --text: #e6eaf0;
  --body: #a0a8b8;
  --helper: #7b8496;
  --muted: #a0a8b8;
  --accent: #5b8cff;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --section-gap: clamp(0.82rem, 1.65vw, 1.12rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% -15%, rgba(91, 140, 255, 0.1), rgba(91, 140, 255, 0) 35%), var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.48;
}

a {
  color: #cfd7e6;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(91, 140, 255, 0.8);
  outline-offset: 2px;
}

.container {
  width: min(960px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 13, 0.66);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.brand {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0f3f8;
  letter-spacing: 0.015em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand::before {
  content: "T";
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dbe4f6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(124, 140, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(124, 140, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #9ea8b8;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  color: #f1f4f8;
  background: rgba(91, 140, 255, 0.12);
}

main > section,
main.page {
  padding: var(--section-gap) 0;
  position: relative;
}

main > section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.4));
}

.section-header {
  margin-bottom: 7px;
}

.section-header h2 {
  margin: 0 0 3px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.2;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 0.89rem;
}

.section-eyebrow {
  margin: 0 0 4px;
  color: #8c96a8;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.hero {
  padding-top: clamp(1rem, 2vw, 1.4rem);
  padding-bottom: clamp(0.62rem, 1.3vw, 0.85rem);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(0.9rem, 1.7vw, 1.2rem);
  background: linear-gradient(145deg, var(--surface-a), var(--surface-b));
}

.hero-shell::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 210px;
  top: -80px;
  right: -110px;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.13), rgba(91, 140, 255, 0));
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 7px;
  max-width: 14ch;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 3.9vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(0.93rem, 1.45vw, 1rem);
}

.button-row {
  margin-top: 9px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #f8fbff;
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.34), 0 8px 18px rgba(91, 140, 255, 0.22);
}

.btn.primary:hover {
  background: #6c98ff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: #d0d7e2;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.74;
}

.card,
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-a), var(--surface-b));
  padding: 0.72rem;
}

.card h3,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.card h3 {
  margin-bottom: 4px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: #eef2f8;
}

.card p,
.panel p,
.panel li {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.feature-item {
  padding: 0.48rem 0.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.feature-item h3 {
  margin: 0 0 5px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  color: #edf1f8;
}

.feature-item p {
  margin: 0;
  color: #a6afbe;
}

.feature-item:hover {
  border-color: rgba(91, 140, 255, 0.32);
  background: rgba(91, 140, 255, 0.06);
  transform: translateY(-1px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 3px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 15px;
  height: 1px;
  background: rgba(91, 140, 255, 0.24);
}

.step-item {
  position: relative;
  padding: 0.44rem 0.3rem;
  background: transparent;
}

.step-item h3 {
  margin: 0 0 4px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: #edf2f9;
}

.step-item p {
  margin: 0;
  color: #a7b0bf;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-right: 5px;
  border-radius: 999px;
  color: #dbe6ff;
  background: rgba(91, 140, 255, 0.26);
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.34);
  font-size: 0.75rem;
  font-weight: 700;
}

#demo .panel,
#pricing .panel,
#onboarding .panel,
#lead-capture .panel {
  background: linear-gradient(180deg, #101520, #111826);
}

.demo-placeholder {
  min-height: 142px;
  border: 1px solid rgba(91, 140, 255, 0.26);
  border-radius: 10px;
  background: #0c1118;
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.09), inset 0 0 20px rgba(91, 140, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.demo-placeholder p {
  margin: 0;
  max-width: 430px;
  color: #99a4b6;
}

.demo-placeholder iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 8px;
}

.pricing-card {
  border-color: rgba(91, 140, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.16), 0 0 28px rgba(91, 140, 255, 0.12);
}

.pricing-amount {
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount strong {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 2.85rem);
  line-height: 1;
  color: #f3f7ff;
}

.pricing-amount span {
  color: #b4bfcd;
  font-weight: 600;
  font-size: 0.93rem;
}

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

.pricing-list li {
  color: #adb7c8;
}

.pricing-note {
  margin-top: 4px;
  color: #8f9ab0;
  font-size: 0.82rem;
}

.faq-list {
  display: grid;
  gap: 5px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #10151d;
  overflow: hidden;
  transition: border-color 0.14s ease;
}

.faq-item:hover {
  border-color: rgba(91, 140, 255, 0.28);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.62rem;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.89rem;
  color: #e8edf5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

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

.faq-item summary::after {
  content: "+";
  color: #9fb5ff;
  font-size: 0.94rem;
}

.faq-item[open] summary {
  background: rgba(91, 140, 255, 0.08);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item .faq-answer {
  padding: 0 0.62rem 0.62rem;
  color: #a9b3c4;
  font-size: 0.87rem;
}

.form-intro {
  margin: 0 0 6px;
  color: #a8b2c2;
  font-size: 0.88rem;
}

.form-group {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-group h3 {
  margin: 0 0 5px;
  font-size: 0.91rem;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: #edf2f9;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #d7deea;
}

.field-optional {
  font-weight: 600;
  color: #95a0b3;
}

input,
select,
textarea,
button {
  width: 100%;
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b0f17;
  color: #edf2fa;
  padding: 7px 8px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 140, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: #788296;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

.form-actions {
  margin-top: 7px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

button {
  cursor: pointer;
}

button[type="submit"] {
  max-width: 200px;
  border: 1px solid rgba(91, 140, 255, 0.36);
  border-radius: 999px;
  background: #1f56d9;
  color: #f4f8ff;
  padding: 8px 11px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(31, 86, 217, 0.24);
}

button[type="submit"]:hover {
  background: #2d64e5;
}

button[disabled] {
  opacity: 0.68;
  cursor: not-allowed;
}

.inline-error {
  margin-top: 3px;
  min-height: 1rem;
  color: #ff9d9d;
  font-size: 0.8rem;
}

.status {
  margin: 0;
  color: #96a1b6;
  font-size: 0.84rem;
}

.lead-panel {
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #0f141d, #101621);
}

footer {
  border-top: 1px solid var(--border);
  padding: 10px 0;
  color: #7f899b;
  font-size: 0.8rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(0.84rem, 1.3vw, 1.08rem);
}

.page h1 {
  margin: 0 0 6px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 1.9vw, 1.6rem);
  line-height: 1.2;
}

.page h2 {
  margin: 7px 0 3px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #ecf1f8;
}

.page p,
.page li {
  max-width: 680px;
  color: #aeb8c8;
}

.page p + p,
.page ul + p,
.page p + ul {
  margin-top: 5px;
}

.page ul {
  padding-left: 18px;
}

@media (max-width: 920px) {
  .card-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .demo-placeholder iframe {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 48px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 6px 0;
  }

  .nav-links {
    width: 100%;
    row-gap: 3px;
  }

  main > section,
  main.page {
    padding: clamp(0.74rem, 4vw, 1.02rem) 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .button-row,
  .button-row .btn,
  button[type="submit"] {
    width: 100%;
    max-width: 100%;
  }
}

.helper-text {
  margin: 3px 0 0;
  color: #7b8496;
  font-size: 0.79rem;
}

.info-block {
  margin: 8px 0 10px;
  border: 1px solid rgba(91, 140, 255, 0.24);
  border-radius: 10px;
  background: rgba(91, 140, 255, 0.07);
  padding: 0.58rem 0.65rem;
}

.info-block h3 {
  margin: 0 0 4px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #e6eaf0;
}

.info-block p {
  margin: 0;
  color: #a0a8b8;
}

.start-shell {
  max-width: 820px;
}

.hidden {
  display: none;
}

/* Global text tone refinement for reduced glare and better reading comfort */
h1,
h2,
h3,
h4,
h5,
h6,
.brand,
label,
.faq-item summary,
.pricing-amount strong {
  color: var(--text);
}

p,
li,
.section-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.form-intro,
.faq-item .faq-answer,
.page p,
.page li {
  color: var(--body);
}

.helper-text,
.pricing-note,
.section-eyebrow,
.nav-links a,
.status,
.trust-line {
  color: var(--helper);
}

/* Final readability tuning */
.brand,
h1,
h2,
h3,
h4,
h5,
h6,
.faq-item summary,
.pricing-amount strong {
  color: #e6eaf0;
}

p,
li,
.section-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.form-intro,
.faq-item .faq-answer,
.page p,
.page li {
  color: #a0a8b8;
}

label {
  color: #b7c0cf;
}

.helper-text,
.pricing-note,
.section-eyebrow,
.nav-links a,
.status,
.trust-line {
  color: #7b8496;
}

.lead-lite {
  opacity: 0.95;
}

/* Final conversion hierarchy refinement */
:root {
  --body: #8a94a6;
  --helper: #6f7788;
}

p,
li,
.section-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.form-intro,
.faq-item .faq-answer,
.page p,
.page li {
  color: var(--body);
}

label {
  color: #838da0;
}

.helper-text,
.pricing-note,
.section-eyebrow,
.nav-links a,
.status,
.trust-line {
  color: var(--helper);
}

#mid-cta .cta-panel {
  border-color: rgba(91, 140, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.15), 0 0 26px rgba(91, 140, 255, 0.11);
  background: linear-gradient(180deg, #111827, #111a2b);
}

#mid-cta .section-intro {
  max-width: 700px;
}

/* Final typography hierarchy calibration */
.hero h1 {
  color: #e6eaf0;
}

.section-header h2,
.feature-item h3,
.step-item h3,
.faq-item summary,
.page h2,
.form-group h3 {
  color: #c7d0de;
}

/* Keep body/helper tiering calm and readable */
p,
li,
.section-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.form-intro,
.faq-item .faq-answer,
.page p,
.page li {
  color: #8a94a6;
}

.helper-text,
.pricing-note,
.section-eyebrow,
.nav-links a,
.status,
.trust-line {
  color: #6f7788;
}

/* Secondary focal point: mid-page CTA */
#mid-cta .section-header h2 {
  color: #dde4f2;
}

#mid-cta .cta-panel {
  border-color: rgba(91, 140, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.2), 0 0 32px rgba(91, 140, 255, 0.14);
}

/* Final non-hero heading dim pass */
.section-header h2,
.feature-item h3,
.step-item h3,
.faq-item summary,
.page h2,
.form-group h3 {
  color: #d0d7e1;
}

#mid-cta .section-header h2 {
  color: #d7deea;
}

/* Final hierarchy pass: dim non-hero headings and preserve CTA focal order */
:root {
  --text: #e6eaf0;
  --body: #97a1b2;
  --helper: #737d90;
}

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

.section-header h2,
.feature-item h3,
.step-item h3,
.faq-item summary,
.page h2,
.form-group h3,
.card h3,
.panel h2,
.panel h3,
.info-block h3 {
  color: #c3cad6;
  font-weight: 600;
}

#mid-cta .section-header h2 {
  color: #d0d7e3;
  font-weight: 600;
}

p,
li,
.section-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.form-intro,
.faq-item .faq-answer,
.page p,
.page li {
  color: var(--body);
}

label {
  color: #8c96a9;
}

.helper-text,
.pricing-note,
.section-eyebrow,
.nav-links a,
.status,
.trust-line {
  color: var(--helper);
}

/* Readability + layout comfort pass (no structural/logic changes) */
.container {
  width: min(1120px, 94%);
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: clamp(1.18rem, 1.5vw, 1.35rem);
}

.section-intro {
  font-size: 0.97rem;
  line-height: 1.55;
}

.card h3,
.feature-item h3,
.step-item h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2,
.info-block h3 {
  font-size: 1.02rem;
  line-height: 1.35;
}

.card p,
.panel p,
.panel li,
.feature-item p,
.step-item p,
.pricing-list li,
.faq-item .faq-answer,
.form-intro,
.page p,
.page li {
  font-size: 0.97rem;
  line-height: 1.58;
}

label {
  font-size: 0.91rem;
  margin-bottom: 4px;
}

.helper-text,
.status,
.pricing-note,
.section-eyebrow {
  font-size: 0.86rem;
  line-height: 1.45;
}

input,
select,
textarea {
  font-size: 0.96rem;
}

.faq-item summary {
  padding: 0.72rem;
}

.faq-item .faq-answer {
  padding: 0 0.72rem 0.72rem;
}

.page-shell {
  max-width: 920px;
  padding: clamp(0.95rem, 1.45vw, 1.22rem);
}

.start-shell {
  max-width: 980px;
}

@media (max-width: 760px) {
  .container {
    width: min(100%, 94%);
  }

  .card p,
  .panel p,
  .panel li,
  .feature-item p,
  .step-item p,
  .pricing-list li,
  .faq-item .faq-answer,
  .form-intro,
  .page p,
  .page li {
    font-size: 0.95rem;
  }

  label {
    font-size: 0.89rem;
  }
}

/* Final readability/layout comfort pass (stronger desktop widening + larger type) */
.container {
  width: min(1280px, 96%);
}

.page-shell {
  max-width: 1080px;
  padding: clamp(1.05rem, 1.55vw, 1.34rem);
}

.start-shell {
  max-width: 1160px;
}

.section-header h2 {
  font-size: clamp(1.24rem, 1.62vw, 1.42rem);
  margin: 0 0 8px;
}

.section-intro {
  font-size: 1.03rem;
  line-height: 1.6;
  max-width: 76ch;
}

.card h3,
.feature-item h3,
.step-item h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2,
.info-block h3 {
  font-size: 1.08rem;
  line-height: 1.38;
}

.card p,
.panel p,
.panel li,
.feature-item p,
.step-item p,
.pricing-list li,
.faq-item .faq-answer,
.form-intro,
.page p,
.page li {
  font-size: 1.02rem;
  line-height: 1.64;
}

.page p,
.page li {
  max-width: 82ch;
}

.button-row .btn,
button[type="submit"] {
  font-size: 0.9rem;
  padding: 10px 14px;
}

label {
  font-size: 0.96rem;
  margin-bottom: 5px;
}

.helper-text,
.status,
.pricing-note,
.section-eyebrow {
  font-size: 0.9rem;
  line-height: 1.5;
}

input,
select,
textarea {
  font-size: 1rem;
  padding: 9px 10px;
}

textarea {
  min-height: 94px;
}

.faq-item summary {
  padding: 0.78rem;
}

.faq-item .faq-answer {
  padding: 0 0.78rem 0.78rem;
}

@media (min-width: 1280px) {
  .card-grid {
    gap: 14px;
  }

  .steps {
    gap: 14px;
  }

  .form-grid {
    gap: 9px 10px;
  }
}

/* Final typography refinement pass: readability-first, structure unchanged */
.section-header h2 {
  font-size: clamp(1.28rem, 1.7vw, 1.48rem);
  line-height: 1.28;
}

.section-intro {
  font-size: 1.1rem;
  line-height: 1.66;
}

.card h3,
.feature-item h3,
.step-item h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2,
.info-block h3 {
  font-size: 1.12rem;
  line-height: 1.42;
}

.card p,
.panel p,
.panel li,
.feature-item p,
.step-item p,
.pricing-list li,
.faq-item .faq-answer,
.form-intro,
.page p,
.page li {
  font-size: 1.1rem;
  line-height: 1.7;
}

.pricing-note,
.status,
.trust-line {
  font-size: 0.98rem;
}

label {
  font-size: 1.02rem;
  line-height: 1.4;
}

.helper-text,
.section-eyebrow {
  font-size: 0.96rem;
  line-height: 1.52;
}

input,
select,
textarea {
  font-size: 1.03rem;
  line-height: 1.45;
  padding: 10px 11px;
}

textarea {
  min-height: 102px;
}

.faq-item summary {
  font-size: 1.1rem;
  padding: 0.84rem;
}

.faq-item .faq-answer {
  font-size: 1.07rem;
  padding: 0 0.84rem 0.84rem;
}

.button-row .btn,
button[type="submit"] {
  font-size: 0.95rem;
  line-height: 1.2;
}

footer {
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .section-intro {
    font-size: 1.04rem;
  }

  .card p,
  .panel p,
  .panel li,
  .feature-item p,
  .step-item p,
  .pricing-list li,
  .faq-item .faq-answer,
  .form-intro,
  .page p,
  .page li {
    font-size: 1.02rem;
  }

  label {
    font-size: 0.98rem;
  }

  .helper-text,
  .section-eyebrow {
    font-size: 0.92rem;
  }

  .button-row .btn,
  button[type="submit"] {
    font-size: 0.95rem;
  }
}

/* Strong global non-hero typography rescale (readability-first) */
.nav-links a {
  font-size: 1.08rem;
  padding: 6px 10px;
}

.section-header h2 {
  font-size: clamp(1.56rem, 2.1vw, 1.86rem);
  line-height: 1.24;
}

.section-intro {
  font-size: 1.34rem;
  line-height: 1.62;
}

.card h3,
.feature-item h3,
.step-item h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2,
.info-block h3 {
  font-size: 1.42rem;
  line-height: 1.36;
}

.card p,
.panel p,
.panel li,
.feature-item p,
.step-item p,
.pricing-list li,
.faq-item .faq-answer,
.form-intro,
.page p,
.page li {
  font-size: 1.3rem;
  line-height: 1.66;
}

label {
  font-size: 1.2rem;
  line-height: 1.36;
}

.helper-text,
.section-eyebrow,
.pricing-note,
.status,
.trust-line {
  font-size: 1.1rem;
  line-height: 1.5;
}

input,
select,
textarea {
  font-size: 1.2rem;
  line-height: 1.45;
  padding: 12px 13px;
}

textarea {
  min-height: 120px;
}

.faq-item summary {
  font-size: 1.34rem;
  padding: 1rem;
}

.faq-item .faq-answer {
  font-size: 1.24rem;
  padding: 0 1rem 1rem;
}

.button-row .btn,
button[type="submit"] {
  font-size: 1.08rem;
  padding: 12px 16px;
}

footer {
  font-size: 1.04rem;
}

/* Keep hero strongest without oversized inflation */
.hero h1 {
  font-size: clamp(1.95rem, 3.9vw, 2.7rem);
}

@media (max-width: 760px) {
  .nav-links a {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.36rem, 5.4vw, 1.62rem);
  }

  .section-intro {
    font-size: 1.16rem;
  }

  .card h3,
  .feature-item h3,
  .step-item h3,
  .panel h2,
  .panel h3,
  .form-group h3,
  .faq-item summary,
  .page h2,
  .info-block h3 {
    font-size: 1.24rem;
  }

  .card p,
  .panel p,
  .panel li,
  .feature-item p,
  .step-item p,
  .pricing-list li,
  .faq-item .faq-answer,
  .form-intro,
  .page p,
  .page li {
    font-size: 1.14rem;
  }

  label {
    font-size: 1.08rem;
  }

  .helper-text,
  .section-eyebrow,
  .pricing-note,
  .status,
  .trust-line {
    font-size: 1rem;
  }

  input,
  select,
  textarea {
    font-size: 1.08rem;
    padding: 11px 12px;
  }

  .faq-item summary {
    font-size: 1.2rem;
  }

  .faq-item .faq-answer {
    font-size: 1.12rem;
  }

  .button-row .btn,
  button[type="submit"] {
    font-size: 1rem;
  }
}

/* Hero balance adjustment (layout only, no typography/color changes) */
.hero h1 {
  max-width: 20ch;
}

.hero p {
  max-width: 78ch;
}

.hero .button-row {
  max-width: 78ch;
}

/* Final hero-only redesign: balanced two-column composition */
.hero-shell {
  padding: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-content {
  min-width: 0;
}

.hero-content h1 {
  max-width: 22ch;
  margin-bottom: 10px;
}

.hero-content p {
  max-width: 64ch;
}

.hero-content .button-row {
  margin-top: 12px;
}

.hero-visual {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 75% 28%, rgba(124, 140, 255, 0.2), rgba(124, 140, 255, 0) 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 22px;
  top: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.26), rgba(124, 140, 255, 0.04) 58%, rgba(124, 140, 255, 0));
  filter: blur(0.3px);
}

.hero-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 20, 31, 0.72);
  box-shadow: inset 0 0 0 1px rgba(124, 140, 255, 0.08);
}

.hero-panel-a {
  bottom: 26px;
  height: 72px;
}

.hero-panel-b {
  bottom: 112px;
  height: 48px;
  opacity: 0.82;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    min-height: 185px;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content .button-row {
    max-width: 100%;
  }
}

/* Final conversion refinement pass: clarity, trust, hierarchy, fluid rhythm */
.nav {
  min-height: 48px;
}

.brand {
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.brand::before {
  width: 22px;
  height: 22px;
  font-size: 0.76rem;
  border-radius: 7px;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  font-size: 1.12rem;
  padding: 6px 10px;
}

main > section {
  padding: clamp(0.95rem, 1.55vw, 1.25rem) 0;
}

main > section::after {
  height: 42px;
  background: linear-gradient(to bottom, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.26));
}

.section-header {
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.64rem, 2.1vw, 1.94rem);
  line-height: 1.22;
}

.section-intro {
  font-size: 1.24rem;
  line-height: 1.58;
  max-width: 68ch;
}

.card-grid {
  gap: 16px;
}

.feature-item,
.step-item {
  padding: 0.58rem 0.38rem;
}

.feature-item h3,
.step-item h3,
.card h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2 {
  font-size: 1.38rem;
  line-height: 1.32;
}

.feature-item p,
.step-item p,
.card p,
.panel p,
.panel li,
.pricing-list li,
.faq-item .faq-answer,
.form-intro,
.page p,
.page li {
  font-size: 1.2rem;
  line-height: 1.64;
}

.hero-shell {
  border-color: rgba(255, 255, 255, 0.09);
}

.hero-grid {
  gap: clamp(1.1rem, 2.4vw, 1.7rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.92fr);
}

.hero-content h1 {
  max-width: 21ch;
}

.hero-content p {
  max-width: 58ch;
}

.hero-trust {
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #90a0b8;
}

.hero-visual {
  min-height: 238px;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(124, 140, 255, 0.06);
}

.hero-panel-a {
  bottom: 24px;
  height: 76px;
}

.hero-panel-b {
  bottom: 112px;
  height: 50px;
}

.hero-signal {
  position: absolute;
  right: 22px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(11, 16, 26, 0.78);
  color: #b8c3d7;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.hero-signal-a {
  top: 24px;
}

.hero-signal-b {
  top: 58px;
}

.hero-signal-c {
  top: 92px;
}

.btn {
  font-size: 1.06rem;
}

.pricing-card {
  border-color: rgba(91, 140, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.18), 0 0 30px rgba(91, 140, 255, 0.1);
}

.pricing-note {
  font-size: 1.08rem;
}

.faq-list {
  gap: 8px;
}

.faq-item summary {
  padding: 0.92rem 0.95rem;
}

.faq-item .faq-answer {
  padding: 0 0.95rem 0.95rem;
}

.panel {
  background: linear-gradient(180deg, rgba(12, 17, 26, 0.92), rgba(13, 18, 28, 0.9));
}

#mid-cta .cta-panel,
#pricing .pricing-card {
  background: linear-gradient(180deg, rgba(16, 23, 36, 0.96), rgba(15, 22, 35, 0.94));
}

label {
  font-size: 1.14rem;
}

.helper-text {
  font-size: 1.03rem;
  line-height: 1.5;
}

input,
select,
textarea {
  font-size: 1.16rem;
  padding: 12px 13px;
}

textarea {
  min-height: 116px;
}

.form-actions {
  margin-top: 10px;
}

.status {
  font-size: 1.04rem;
}

footer,
footer a {
  font-size: 1.06rem;
}

@media (max-width: 980px) {
  .hero-signal {
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
  .nav-links a {
    font-size: 1.02rem;
  }

  .section-header h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.66rem);
  }

  .section-intro {
    font-size: 1.12rem;
  }

  .feature-item h3,
  .step-item h3,
  .card h3,
  .panel h2,
  .panel h3,
  .form-group h3,
  .faq-item summary,
  .page h2 {
    font-size: 1.24rem;
  }

  .feature-item p,
  .step-item p,
  .card p,
  .panel p,
  .panel li,
  .pricing-list li,
  .faq-item .faq-answer,
  .form-intro,
  .page p,
  .page li {
    font-size: 1.1rem;
  }

  label {
    font-size: 1.05rem;
  }

  .helper-text,
  .pricing-note,
  .status,
  .hero-trust {
    font-size: 0.98rem;
  }

  input,
  select,
  textarea {
    font-size: 1.08rem;
  }
}

/* Final conversion-focused polish: clearer hierarchy, trust cues, smoother flow */
.nav-links a {
  font-size: 1.06rem;
  padding: 6px 9px;
}

main > section {
  padding: clamp(0.9rem, 1.45vw, 1.2rem) 0;
}

main > section::after {
  height: 34px;
  background: linear-gradient(to bottom, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.2));
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.88fr);
  gap: clamp(1rem, 2vw, 1.45rem);
}

.hero-content h1 {
  max-width: 20ch;
  line-height: 1.02;
}

.hero-content p {
  max-width: 60ch;
  font-size: 1.16rem;
  line-height: 1.58;
}

.hero-trust {
  margin-top: 8px;
  font-size: 1.02rem;
  color: #91a0b4;
}

.hero-pain {
  margin-top: 6px;
  font-size: 1.02rem;
  color: #9cadc4;
}

.hero-trust-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.96rem;
  color: #a9b4c6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(17, 24, 37, 0.65);
}

.hero-visual {
  min-height: 220px;
}

.hero-signal {
  font-size: 0.88rem;
  color: #c2cde0;
}

.section-header h2 {
  font-size: clamp(1.48rem, 1.95vw, 1.76rem);
}

.section-intro,
.form-intro,
.pricing-note {
  font-size: 1.12rem;
  line-height: 1.58;
}

.feature-item h3,
.step-item h3,
.card h3,
.panel h2,
.panel h3,
.form-group h3,
.faq-item summary,
.page h2 {
  font-size: 1.3rem;
}

.feature-item p,
.step-item p,
.card p,
.panel p,
.panel li,
.pricing-list li,
.faq-item .faq-answer,
.page p,
.page li {
  font-size: 1.12rem;
  line-height: 1.62;
}

label {
  font-size: 1.08rem;
}

.helper-text,
.status {
  font-size: 1rem;
}

input,
select,
textarea {
  font-size: 1.1rem;
  padding: 11px 12px;
}

.faq-list {
  gap: 7px;
}

.faq-item summary {
  padding: 0.9rem;
}

.faq-item .faq-answer {
  padding: 0 0.9rem 0.9rem;
}

.pricing-card {
  border-color: rgba(91, 140, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 255, 0.14), 0 0 24px rgba(91, 140, 255, 0.08);
}

.lead-panel {
  border-color: rgba(255, 255, 255, 0.1);
}

footer,
footer a {
  font-size: 1rem;
}

.footer-legal {
  font-size: 0.92rem;
  opacity: 0.84;
}

.footer-legal a {
  color: #95a2b7;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #c8d1df;
}

@media (max-width: 980px) {
  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-links a {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.34rem, 5vw, 1.56rem);
  }

  .section-intro,
  .form-intro,
  .pricing-note,
  .hero-content p {
    font-size: 1.04rem;
  }

  .feature-item h3,
  .step-item h3,
  .card h3,
  .panel h2,
  .panel h3,
  .form-group h3,
  .faq-item summary,
  .page h2 {
    font-size: 1.18rem;
  }

  .feature-item p,
  .step-item p,
  .card p,
  .panel p,
  .panel li,
  .pricing-list li,
  .faq-item .faq-answer,
  .page p,
  .page li {
    font-size: 1.02rem;
  }

  label {
    font-size: 1.02rem;
  }

  .helper-text,
  .status,
  .hero-trust,
  .hero-pain,
  .hero-trust-strip span {
    font-size: 0.94rem;
  }

  input,
  select,
  textarea {
    font-size: 1.02rem;
  }

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

/* Focused conversion refinement: clarity + trust + smoother rhythm */
.hero-content p {
  max-width: 62ch;
}

.hero-clarify {
  margin-top: 8px;
  font-size: 1.08rem;
  color: #9eabc0;
}

.hero-trust {
  margin-top: 6px;
  font-size: 1rem;
  color: #95a5bc;
}

.hero-pain {
  margin-top: 5px;
  font-size: 1rem;
  color: #a2b2c9;
}

.hero-cta-note {
  margin: 8px 0 0;
  font-size: 0.98rem;
  color: #8f9eb7;
}

.hero-trust-strip {
  margin-top: 12px;
  gap: 9px;
}

.hero-trust-strip span {
  font-size: 0.92rem;
  color: #b1bcd0;
  background: rgba(16, 22, 33, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-signal {
  font-size: 0.86rem;
  color: #becbe1;
}

#what-it-does .section-intro {
  max-width: 56ch;
}

#what-it-does .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

#what-it-does .feature-item {
  padding: 0.2rem 0.1rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  text-align: left;
}

#what-it-does .feature-item:hover {
  border: 0;
  background: transparent;
  transform: none;
}

#what-it-does .feature-item h3 {
  margin: 0 0 9px;
  font-size: 1.22rem;
  line-height: 1.25;
}

#what-it-does .feature-item p {
  margin: 0;
  max-width: 30ch;
  font-size: 1.04rem;
  line-height: 1.5;
}

#what-it-does {
  padding-top: clamp(0.48rem, 1vw, 0.72rem);
}

#what-it-does::after {
  display: none;
}

.section-header {
  margin-bottom: 12px;
}

.section-intro {
  max-width: 70ch;
}

.panel {
  border-color: rgba(255, 255, 255, 0.075);
}

.pricing-value {
  margin: 7px 0 0;
  font-size: 1.05rem;
  color: #9eacc2;
}

.pricing-note {
  margin-top: 6px;
}

.faq-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  color: #d2daea;
}

.faq-item .faq-answer {
  color: #a8b4c8;
}

.lead-panel .form-intro {
  color: #a6b4c8;
}

@media (max-width: 760px) {
  .hero-clarify,
  .hero-trust,
  .hero-pain,
  .hero-cta-note,
  .pricing-value {
    font-size: 0.95rem;
  }

  .hero-trust-strip span {
    font-size: 0.9rem;
  }
}

/* Precision landing balance pass */
.hero-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: clamp(0.92rem, 1.85vw, 1.3rem);
}

.hero-content h1 {
  max-width: 18.2ch;
  margin-bottom: 14px;
  line-height: 1.08;
}

.hero-content p {
  max-width: 50ch;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero-content .button-row {
  margin-top: 14px;
}

.hero-cta-note {
  margin-top: 10px;
}

.hero-visual {
  min-height: 248px;
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(124, 140, 255, 0.1);
}

.hero-orb {
  opacity: 0.96;
}

#what-it-does {
  padding-top: clamp(0.35rem, 0.9vw, 0.6rem);
}

#how-it-works .container,
#mid-cta .container,
#demo .container,
#faq .container,
#lead-capture .container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

#how-it-works .steps {
  max-width: 100%;
  margin: 0;
  gap: clamp(1rem, 2vw, 1.45rem);
}

#how-it-works .step-item {
  max-width: none;
  margin: 0;
}

#mid-cta .section-intro {
  max-width: 56ch;
}

#demo .section-intro {
  max-width: 56ch;
}

#faq .faq-list {
  max-width: 1040px;
  margin: 0;
}

#lead-capture .panel,
#lead-capture .lead-panel {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;
  }

  #how-it-works .steps,
  #faq .faq-list {
    max-width: 100%;
  }
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin-top: 4px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.86rem;
  color: #cfd7e5;
  line-height: 1.35;
}

.check-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  flex: 0 0 auto;
}

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

/* Onboarding polish pass: readability + structured controls */
#step1-form .form-grid,
#category-setup-form .form-grid {
  gap: 10px 12px;
}

#step1-form .form-group,
#category-setup-form .form-group {
  margin-top: 12px;
  padding-top: 11px;
}

button.secondary-outline {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d7deea;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

button.secondary-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.check-grid {
  gap: 8px 10px;
}

.check-option {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
}

.check-option span {
  color: #bac3d3;
}

.setup-next-card {
  border: 1px solid rgba(91, 140, 255, 0.2);
  border-radius: 10px;
  background: rgba(91, 140, 255, 0.06);
  padding: 10px 12px;
}

.setup-next-card h3 {
  margin-bottom: 6px;
}

.setup-next-card p {
  margin: 0;
}

/* Final onboarding visual polish (style-only, no structural changes) */
:root {
  --body: #a8b2c2;
  --helper: #8792a6;
}

.page-shell {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 24, 34, 0.92), rgba(16, 21, 30, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.page h1,
.panel > h1,
.section-header h2 {
  font-size: clamp(1.38rem, 2.1vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.page h2,
.panel h2,
.panel h3,
.form-group h3 {
  font-size: clamp(1.04rem, 1.45vw, 1.12rem);
  font-weight: 600;
  line-height: 1.3;
}

.form-group {
  margin-top: 16px;
  padding-top: 15px;
}

.form-grid {
  gap: 18px 16px;
}

label {
  margin-bottom: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #c5cedd;
  line-height: 1.35;
}

.helper-text {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #8792a6;
}

input,
select,
textarea {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 27, 39, 0.95);
  color: #e4eaf4;
  padding: 11px 12px;
  font-size: 0.98rem;
  line-height: 1.35;
}

textarea {
  min-height: 100px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 140, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.2), 0 0 0 1px rgba(91, 140, 255, 0.28);
}

.check-grid {
  gap: 10px 12px;
}

.check-option {
  min-height: 42px;
  padding: 10px 12px;
  gap: 10px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.check-option span {
  font-size: 0.94rem;
  line-height: 1.4;
}

.check-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

button[type="submit"] {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 600;
  background: #2a66ea;
  border-color: rgba(121, 161, 255, 0.52);
  box-shadow: 0 10px 20px rgba(27, 76, 191, 0.3);
}

button[type="submit"]:hover {
  background: #3672f2;
}

.status,
.inline-error {
  font-size: 0.86rem;
}

/* Stripe-style premium dark polish (style-only override) */
:root {
  --bg-main: #0a0f1c;
  --bg-surface: #0f172a;
  --bg-elevated: #131c31;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  --text-primary: #e6edf6;
  --text-secondary: #9fb0c5;
  --text-muted: #6b7c93;

  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.25);
}

html,
body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

main > section,
main.page {
  padding: clamp(1.5rem, 2.4vw, 2rem) 0;
}

.page-shell,
.panel,
.card,
.lead-panel,
.hero-shell,
.cta-panel,
.faq-item,
.info-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
}

.hero-shell,
.pricing-card,
#mid-cta .cta-panel,
#demo .panel,
#pricing .panel,
#onboarding .panel,
#lead-capture .panel {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.page h1,
.panel > h1,
.section-header h2,
.page h2,
.form-group h3,
.panel h2,
.panel h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
}

p,
li,
.section-intro,
.form-intro,
.feature-item p,
.step-item p,
.pricing-list li,
.faq-item .faq-answer,
.page p,
.page li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px;
}

label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.helper-text,
.pricing-note,
.status,
.section-eyebrow,
.nav-links a,
.trust-line {
  color: var(--text-muted);
}

.form-group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.form-grid {
  gap: 18px 18px;
}

input,
select,
textarea {
  background: #0b1220;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.45;
}

textarea {
  min-height: 104px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.check-grid {
  gap: 12px;
}

.check-option {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
}

.check-option span {
  color: var(--text-secondary);
  font-size: 15px;
}

button[type="submit"],
.btn.primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

button[type="submit"]:hover,
.btn.primary:hover {
  background: linear-gradient(180deg, #4b8df6, var(--accent-hover));
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.3);
}

.btn.secondary,
button.secondary,
button.secondary-outline {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border-radius: 10px;
}

.nav-links a:hover,
.faq-item:hover,
.check-option:hover {
  border-color: var(--border-strong);
}

/* Workshop Premium redesign */
:root {
  --workshop-bg: #080d12;
  --workshop-bg-soft: #0b1118;
  --workshop-surface: #101820;
  --workshop-surface-2: #17212b;
  --workshop-surface-3: #1d2a36;
  --workshop-border: rgba(234, 240, 244, 0.08);
  --workshop-border-strong: rgba(234, 240, 244, 0.14);
  --workshop-text: #eaf0f4;
  --workshop-body: #a9b6c2;
  --workshop-muted: #74808d;
  --workshop-accent: #4f7fa8;
  --workshop-accent-hover: #5b8db8;
  --workshop-accent-dark: #2f5f86;
  --workshop-brass: #c2a35f;
  --workshop-green: #75ad8b;
  --workshop-danger: #d98b8b;
  --workshop-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

html,
body {
  background:
    radial-gradient(circle at 18% -12%, rgba(79, 127, 168, 0.12), rgba(79, 127, 168, 0) 34%),
    linear-gradient(180deg, var(--workshop-bg), var(--workshop-bg-soft) 48%, var(--workshop-bg));
  color: var(--workshop-text);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  width: min(1160px, 92%);
}

header {
  background: rgba(8, 13, 18, 0.82);
  border-bottom: 1px solid var(--workshop-border);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 68px;
}

.brand,
.page h1,
.hero h1,
.section-copy h2,
.section-header h2,
.pricing-copy h2,
.final-cta h2,
.panel h1,
.panel h2,
.form-group h3,
.faq-item summary,
.pricing-amount strong {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--workshop-text);
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand::before {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: var(--workshop-text);
  background: linear-gradient(180deg, rgba(79, 127, 168, 0.32), rgba(79, 127, 168, 0.12));
  border-color: rgba(234, 240, 244, 0.18);
  box-shadow: none;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  color: var(--workshop-body);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--workshop-text);
  background: rgba(234, 240, 244, 0.04);
  border-color: var(--workshop-border);
}

.nav-links .nav-cta {
  background: var(--workshop-accent);
  border-color: rgba(234, 240, 244, 0.12);
  color: #fff;
  padding-inline: 14px;
}

.nav-links .nav-cta:hover {
  background: var(--workshop-accent-hover);
  color: #fff;
}

main > section,
main.page {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

main > section::after {
  display: none;
}

.hero {
  padding-top: clamp(2.8rem, 6vw, 5.6rem);
  padding-bottom: clamp(3.6rem, 6.5vw, 6.5rem);
}

.hero-shell,
.page-shell,
.panel,
.matte-panel,
.pricing-card,
.faq-item,
.final-cta-shell,
.demo-frame,
.info-block {
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.98), rgba(13, 20, 28, 0.98));
  border: 1px solid var(--workshop-border);
  border-radius: 12px;
  box-shadow: none;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--workshop-shadow);
}

.hero-shell::before {
  width: 1px;
  height: auto;
  inset: 24px auto 24px 50%;
  background: linear-gradient(180deg, transparent, rgba(234, 240, 244, 0.09), transparent);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-content h1 {
  max-width: 10ch;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-content p {
  max-width: 54ch;
  color: var(--workshop-body);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.58;
}

.button-row {
  gap: 10px;
  margin-top: 22px;
}

.btn,
button[type="submit"],
button.secondary-outline {
  border-radius: 10px;
  min-height: 44px;
}

.btn.primary,
button[type="submit"] {
  background: linear-gradient(180deg, var(--workshop-accent), var(--workshop-accent-dark));
  border: 1px solid rgba(234, 240, 244, 0.14);
  box-shadow: 0 14px 28px rgba(47, 95, 134, 0.28);
}

.btn.primary:hover,
button[type="submit"]:hover {
  background: linear-gradient(180deg, var(--workshop-accent-hover), var(--workshop-accent));
  box-shadow: 0 18px 34px rgba(47, 95, 134, 0.32);
}

.btn.secondary,
button.secondary-outline {
  background: rgba(234, 240, 244, 0.03);
  border: 1px solid var(--workshop-border-strong);
  color: var(--workshop-body);
}

.btn.secondary:hover,
button.secondary-outline:hover {
  background: rgba(234, 240, 244, 0.06);
  color: var(--workshop-text);
}

.hero-cta-note,
.trust-line {
  color: var(--workshop-muted);
  font-size: 0.98rem;
}

.hero-trust-strip {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust-strip span,
.trust-stack span {
  background: rgba(234, 240, 244, 0.035);
  border: 1px solid var(--workshop-border);
  border-radius: 999px;
  color: var(--workshop-body);
  font-size: 0.94rem;
  padding: 9px 12px;
}

.communication-flow {
  position: relative;
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(29, 42, 54, 0.94), rgba(13, 20, 28, 0.96)),
    var(--workshop-surface);
  border-color: var(--workshop-border-strong);
  box-shadow: inset 0 1px 0 rgba(234, 240, 244, 0.08);
}

.flow-topbar,
.flow-row,
.priority-item,
.control-row,
.next-steps div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flow-topbar {
  margin-bottom: 16px;
  color: var(--workshop-body);
  font-size: 0.94rem;
}

.flow-topbar strong,
.flow-row strong,
.priority-item strong,
.control-row strong {
  color: var(--workshop-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.message-card,
.flow-row,
.summary-card {
  border: 1px solid var(--workshop-border);
  border-radius: 12px;
  background: rgba(8, 13, 18, 0.64);
  padding: 16px;
}

.message-card,
.flow-row {
  margin-bottom: 12px;
}

.customer-message {
  margin-right: 46px;
}

.response-card {
  margin-left: 46px;
  border-color: rgba(79, 127, 168, 0.28);
}

.card-label {
  display: block;
  margin-bottom: 6px;
  color: var(--workshop-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.message-card p,
.flow-row p,
.summary-card p,
.priority-item p,
.control-note {
  margin: 0;
  color: var(--workshop-body);
  font-size: 0.98rem;
  line-height: 1.48;
}

.priority-row {
  border-color: rgba(194, 163, 95, 0.42);
}

.priority-row strong,
.highlighted strong {
  color: var(--workshop-brass);
}

.summary-card {
  margin-top: 16px;
  background: rgba(79, 127, 168, 0.1);
  border-color: rgba(79, 127, 168, 0.24);
}

.narrative-section {
  border-top: 1px solid rgba(234, 240, 244, 0.04);
}

.split-section,
.pricing-shell,
.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.section-copy h2,
.section-header h2,
.pricing-copy h2,
.final-cta h2,
.page h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.section-copy p,
.pricing-copy p,
.final-cta p,
.page p,
.panel p,
.faq-item .faq-answer {
  color: var(--workshop-body);
  font-size: 1.08rem;
  line-height: 1.62;
}

.section-copy p {
  max-width: 62ch;
  margin: 0 0 14px;
}

.matte-panel {
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.message-timeline {
  display: grid;
  gap: 12px;
}

.timeline-item,
.action-row,
.priority-item,
.control-row,
.control-note,
.next-steps div {
  border: 1px solid var(--workshop-border);
  border-radius: 10px;
  background: rgba(234, 240, 244, 0.025);
  padding: 14px 16px;
}

.timeline-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--workshop-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.timeline-item p,
.action-row p {
  margin: 0;
  color: var(--workshop-body);
}

.timeline-item.active {
  border-color: rgba(79, 127, 168, 0.36);
  background: rgba(79, 127, 168, 0.08);
}

.action-list {
  display: grid;
  gap: 12px;
}

.action-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.action-row span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--workshop-green);
  box-shadow: 0 0 0 4px rgba(117, 173, 139, 0.12);
}

.priority-board,
.control-panel {
  display: grid;
  gap: 12px;
}

.priority-item span,
.control-row span {
  color: var(--workshop-body);
}

.priority-item.highlighted {
  border-color: rgba(194, 163, 95, 0.42);
  background: rgba(194, 163, 95, 0.08);
}

.control-note {
  color: var(--workshop-muted);
}

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

.workshop-steps::before {
  display: none;
}

.workshop-steps .step-item {
  border: 1px solid var(--workshop-border);
  border-radius: 12px;
  background: rgba(234, 240, 244, 0.025);
  padding: 18px;
}

.workshop-steps .step-item h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--workshop-text);
  font-size: 1.05rem;
  line-height: 1.34;
}

.step-index {
  background: rgba(79, 127, 168, 0.18);
  box-shadow: 0 0 0 1px rgba(79, 127, 168, 0.3);
}

.demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(79, 127, 168, 0.14), rgba(194, 163, 95, 0.06)),
    var(--workshop-surface);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(234, 240, 244, 0.08);
  border: 1px solid var(--workshop-border-strong);
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-left: 18px solid var(--workshop-text);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.demo-frame p {
  position: absolute;
  bottom: 22px;
  margin: 0;
  color: var(--workshop-body);
}

.pricing-shell {
  align-items: start;
}

.pricing-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-color: rgba(79, 127, 168, 0.28);
  background: linear-gradient(180deg, rgba(23, 33, 43, 0.98), rgba(13, 20, 28, 0.98));
}

.pricing-amount {
  margin-bottom: 4px;
}

.pricing-amount strong {
  font-size: clamp(3.5rem, 7vw, 5rem);
  line-height: 0.95;
}

.pricing-amount span,
.pricing-trial {
  color: var(--workshop-body);
  font-weight: 700;
}

.pricing-trial {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.pricing-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0 0 24px;
}

.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--workshop-body);
  font-size: 1rem;
  line-height: 1.45;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--workshop-green);
}

.faq-shell {
  max-width: 920px;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  background: rgba(16, 24, 32, 0.86);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 1.05rem;
}

.faq-item[open] summary {
  background: rgba(79, 127, 168, 0.08);
}

.faq-item .faq-answer {
  padding: 0 20px 18px;
}

.final-cta {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.final-cta-shell {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: left;
  border-color: rgba(79, 127, 168, 0.28);
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p {
  max-width: 680px;
}

.page-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.start-layout {
  align-items: start;
}

.start-intro {
  position: sticky;
  top: 96px;
}

.step-kicker,
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--workshop-brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.page h2,
.panel h2,
.form-group h3,
.info-block h3 {
  margin: 0 0 10px;
  color: var(--workshop-text);
  font-size: 1.2rem;
  font-weight: 700;
}

.info-block {
  margin: 22px 0;
  background: rgba(79, 127, 168, 0.08);
  border-color: rgba(79, 127, 168, 0.22);
}

.form-group {
  border-top-color: var(--workshop-border);
}

label {
  color: var(--workshop-body);
  font-size: 0.9rem;
}

input,
select,
textarea {
  background: rgba(8, 13, 18, 0.78);
  border-color: var(--workshop-border-strong);
  color: var(--workshop-text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--workshop-accent);
  box-shadow: 0 0 0 3px rgba(79, 127, 168, 0.2);
}

.helper-text,
.status {
  color: var(--workshop-muted);
}

.inline-error {
  color: var(--workshop-danger);
}

.check-option {
  background: rgba(234, 240, 244, 0.025);
  border-color: var(--workshop-border);
}

.check-option:hover {
  background: rgba(234, 240, 244, 0.045);
  border-color: var(--workshop-border-strong);
}

.check-option span {
  color: var(--workshop-body);
}

.setup-next-card {
  background: rgba(79, 127, 168, 0.08);
  border-color: rgba(79, 127, 168, 0.24);
}

.success-shell {
  max-width: 760px;
}

.next-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.next-steps span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(79, 127, 168, 0.18);
  color: var(--workshop-text);
  font-weight: 800;
}

.next-steps p {
  margin: 0;
}

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

footer {
  border-top-color: var(--workshop-border);
  background: rgba(8, 13, 18, 0.72);
  padding: 28px 0;
}

.footer-row {
  align-items: flex-start;
}

footer p {
  margin: 0 0 6px;
  color: var(--workshop-muted);
  font-size: 0.95rem;
}

footer a {
  color: var(--workshop-body);
}

.footer-brand {
  color: var(--workshop-text);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .split-section.reverse,
  .pricing-shell,
  .start-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell::before {
    display: none;
  }

  .hero-content h1 {
    max-width: 12ch;
  }

  .communication-flow {
    min-height: auto;
  }

  .workshop-steps,
  .pricing-list {
    grid-template-columns: 1fr;
  }

  .start-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, 90%);
  }

  .nav {
    min-height: 62px;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .nav-links {
    width: auto;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  main > section,
  main.page {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-shell,
  .page-shell,
  .panel,
  .matte-panel,
  .pricing-card,
  .final-cta-shell {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .section-copy h2,
  .section-header h2,
  .pricing-copy h2,
  .final-cta h2,
  .page h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

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

  .customer-message,
  .response-card {
    margin-left: 0;
    margin-right: 0;
  }

  .flow-row,
  .priority-item,
  .control-row,
  .next-steps div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .demo-frame {
    min-height: 220px;
  }

  .button-row,
  .button-row .btn,
  button[type="submit"] {
    width: 100%;
    max-width: 100%;
  }

  .footer-row {
    flex-direction: column;
  }
}

/* Visual refinement pass: tighter hierarchy, richer product UI, restrained premium depth */
:root {
  --refine-bg: #070c13;
  --refine-surface: rgba(14, 22, 32, 0.86);
  --refine-surface-strong: rgba(20, 31, 44, 0.92);
  --refine-line: rgba(210, 226, 240, 0.1);
  --refine-line-strong: rgba(210, 226, 240, 0.18);
  --refine-blue: #4f8fd9;
  --refine-cyan: #59bfd5;
  --refine-violet: #8c7af2;
  --refine-amber: #d6a84f;
  --refine-glow-blue: rgba(79, 143, 217, 0.22);
  --refine-glow-amber: rgba(214, 168, 79, 0.2);
}

html,
body {
  background:
    radial-gradient(circle at 20% -8%, rgba(79, 143, 217, 0.16), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(140, 122, 242, 0.1), transparent 28%),
    linear-gradient(180deg, #060a10 0%, #080d13 44%, #070b11 100%);
}

.container {
  width: min(1180px, 92%);
}

header {
  background: rgba(6, 10, 16, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav {
  min-height: 62px;
}

main > section,
main.page {
  padding: clamp(3rem, 5.4vw, 5rem) 0;
}

.hero {
  padding-top: clamp(2.2rem, 4.8vw, 4.4rem);
  padding-bottom: clamp(3rem, 5.6vw, 5.4rem);
}

.hero-shell {
  padding: clamp(1.35rem, 2.8vw, 2.2rem);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 42%, rgba(79, 143, 217, 0.075)),
    linear-gradient(180deg, rgba(16, 24, 34, 0.96), rgba(10, 16, 24, 0.96));
  border-color: rgba(210, 226, 240, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(1.8rem, 4.4vw, 4rem);
}

.hero-content h1 {
  max-width: 11.5ch;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.25vw, 4.35rem);
  line-height: 1.01;
}

.hero-content p {
  max-width: 48ch;
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.56;
}

.section-copy h2,
.section-header h2,
.pricing-copy h2,
.final-cta h2,
.page h1 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.85vw, 2.45rem);
  line-height: 1.12;
}

.section-copy p,
.pricing-copy p,
.final-cta p,
.page p,
.panel p,
.faq-item .faq-answer {
  font-size: 1rem;
  line-height: 1.58;
}

.section-copy p {
  margin-bottom: 10px;
}

.split-section,
.pricing-shell,
.start-layout {
  gap: clamp(1.8rem, 4.7vw, 4rem);
}

.matte-panel,
.pricing-card,
.demo-frame,
.final-cta-shell,
.page-shell,
.panel,
.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, var(--refine-surface-strong), rgba(11, 17, 25, 0.92));
  border-color: var(--refine-line);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.matte-panel {
  padding: clamp(1rem, 2vw, 1.65rem);
}

.btn.primary,
button[type="submit"],
.nav-links .nav-cta {
  background: linear-gradient(180deg, #5ca3ee, #3978bd);
  border-color: rgba(137, 190, 242, 0.42);
  box-shadow: 0 14px 28px rgba(57, 120, 189, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn.primary:hover,
button[type="submit"]:hover,
.nav-links .nav-cta:hover {
  background: linear-gradient(180deg, #6cb2f5, #4185cc);
}

.btn.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border-color: var(--refine-line-strong);
}

.hero-trust-strip {
  margin-top: 18px;
  gap: 8px;
}

.hero-trust-strip span,
.trust-stack span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border-color: rgba(210, 226, 240, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
  padding: 8px 11px;
}

.communication-flow {
  min-height: 480px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(89, 191, 213, 0.13), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(140, 122, 242, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(20, 31, 44, 0.96), rgba(9, 15, 23, 0.98));
  border-color: rgba(210, 226, 240, 0.17);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(79, 143, 217, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.communication-flow::before {
  content: "";
  position: absolute;
  inset: 44px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 226, 240, 0.16), transparent);
}

.flow-topbar {
  min-height: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(210, 226, 240, 0.09);
}

.flow-topbar span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--refine-cyan);
  box-shadow: 0 0 16px rgba(89, 191, 213, 0.58);
  vertical-align: 1px;
}

.message-card,
.flow-row,
.summary-card {
  border-color: rgba(210, 226, 240, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 12, 19, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.message-card {
  position: relative;
}

.message-card::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(169, 182, 194, 0.5);
}

.customer-message::after {
  right: 16px;
}

.response-card::after {
  right: 16px;
  background: var(--refine-blue);
  box-shadow: 0 0 16px var(--refine-glow-blue);
}

.response-card {
  border-color: rgba(79, 143, 217, 0.3);
  background:
    linear-gradient(180deg, rgba(79, 143, 217, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(7, 12, 19, 0.76);
}

.priority-row,
.priority-item.highlighted {
  border-color: rgba(214, 168, 79, 0.48);
  background:
    linear-gradient(180deg, rgba(214, 168, 79, 0.16), rgba(214, 168, 79, 0.04)),
    rgba(9, 15, 23, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 34px var(--refine-glow-amber), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.summary-card {
  border-color: rgba(89, 191, 213, 0.28);
  background:
    linear-gradient(180deg, rgba(89, 191, 213, 0.12), rgba(79, 143, 217, 0.04)),
    rgba(7, 12, 19, 0.78);
}

.card-label {
  color: rgba(169, 182, 194, 0.8);
  font-size: 0.72rem;
}

.message-card p,
.flow-row p,
.summary-card p {
  font-size: 0.94rem;
}

.message-timeline {
  gap: 10px;
}

.timeline-item,
.action-row,
.priority-item,
.control-row,
.control-note,
.next-steps div {
  border-color: rgba(210, 226, 240, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 12, 19, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.action-list {
  position: relative;
  gap: 0;
  padding: 12px;
}

.action-list::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 31px;
  width: 1px;
  background: linear-gradient(180deg, var(--refine-blue), var(--refine-cyan), var(--refine-amber));
  opacity: 0.58;
}

.action-row {
  position: relative;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 13px 14px;
}

.action-row:last-child {
  margin-bottom: 0;
}

.action-row span {
  z-index: 1;
  width: 14px;
  height: 14px;
  justify-self: center;
  background: linear-gradient(180deg, var(--refine-cyan), var(--refine-blue));
  box-shadow: 0 0 0 4px rgba(89, 191, 213, 0.12), 0 0 20px rgba(89, 191, 213, 0.28);
}

.action-row:nth-child(4) span,
.action-row:nth-child(5) span {
  background: linear-gradient(180deg, var(--refine-amber), #a97826);
  box-shadow: 0 0 0 4px rgba(214, 168, 79, 0.12), 0 0 20px rgba(214, 168, 79, 0.26);
}

.priority-board {
  gap: 10px;
}

.priority-item {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  padding: 16px 18px;
}

.priority-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--refine-blue);
  opacity: 0.85;
}

.priority-item:nth-child(2)::before {
  background: var(--refine-cyan);
}

.priority-item.highlighted::before {
  width: 4px;
  background: var(--refine-amber);
  box-shadow: 0 0 24px rgba(214, 168, 79, 0.5);
}

.priority-item span,
.control-row span {
  font-size: 0.98rem;
}

.priority-item strong,
.control-row strong,
.flow-row strong {
  border: 1px solid rgba(210, 226, 240, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.045);
}

.priority-item.highlighted strong,
.priority-row strong {
  border-color: rgba(214, 168, 79, 0.34);
  background: rgba(214, 168, 79, 0.12);
}

.control-panel {
  position: relative;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.control-panel::before {
  content: "";
  display: block;
  height: 42px;
  border-bottom: 1px solid rgba(210, 226, 240, 0.1);
  background:
    radial-gradient(circle at 22px 21px, #ff6b6b 0 4px, transparent 4.5px),
    radial-gradient(circle at 40px 21px, #f6c85f 0 4px, transparent 4.5px),
    radial-gradient(circle at 58px 21px, #75d39d 0 4px, transparent 4.5px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.control-row,
.control-note {
  margin: 0 14px 10px;
}

.control-row:first-of-type {
  margin-top: 14px;
}

.control-row {
  min-height: 58px;
}

.control-row strong {
  color: #dfefff;
}

.control-row:nth-child(2) strong,
.control-row:nth-child(3) strong {
  color: #c9f2dc;
  border-color: rgba(117, 211, 157, 0.28);
  background: rgba(117, 211, 157, 0.09);
}

.control-note {
  border-color: rgba(89, 191, 213, 0.2);
  background: rgba(89, 191, 213, 0.07);
  color: #a9c7d1;
}

.workshop-steps {
  gap: 12px;
}

.workshop-steps .step-item {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(8, 13, 18, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.workshop-steps .step-item h3 {
  font-size: 0.98rem;
}

.step-index {
  background: linear-gradient(180deg, rgba(79, 143, 217, 0.34), rgba(79, 143, 217, 0.12));
  box-shadow: 0 0 0 1px rgba(79, 143, 217, 0.34), 0 0 22px rgba(79, 143, 217, 0.16);
}

.demo-frame {
  min-height: 250px;
  background:
    radial-gradient(circle at 50% 48%, rgba(79, 143, 217, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(89, 191, 213, 0.1), rgba(140, 122, 242, 0.08) 48%, rgba(214, 168, 79, 0.06)),
    var(--workshop-surface);
}

.play-button {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 30px rgba(79, 143, 217, 0.12);
}

.play-button::after {
  left: 26px;
  top: 20px;
  border-left-width: 16px;
  border-top-width: 12px;
  border-bottom-width: 12px;
}

.pricing-card {
  padding: clamp(1.35rem, 2.5vw, 2.1rem);
  border-color: rgba(79, 143, 217, 0.32);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), 0 0 36px rgba(79, 143, 217, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.pricing-amount strong {
  font-size: clamp(2.9rem, 5.4vw, 4.15rem);
}

.pricing-trial {
  margin-bottom: 18px;
}

.pricing-list {
  gap: 8px 16px;
}

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

.faq-item summary {
  padding: 15px 18px;
}

.faq-item .faq-answer {
  padding: 0 18px 15px;
}

.final-cta {
  padding-top: clamp(3rem, 5.4vw, 5rem);
}

.final-cta-shell {
  padding: clamp(1.7rem, 3.8vw, 3.25rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(89, 191, 213, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(20, 31, 44, 0.96), rgba(9, 15, 23, 0.96));
}

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

  .communication-flow {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  main > section,
  main.page {
    padding: 2.85rem 0;
  }

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

  .section-copy h2,
  .section-header h2,
  .pricing-copy h2,
  .final-cta h2,
  .page h1 {
    font-size: clamp(1.65rem, 7.4vw, 2.25rem);
  }

  .communication-flow {
    min-height: auto;
  }

  .priority-item strong,
  .control-row strong,
  .flow-row strong {
    align-self: flex-start;
  }
}

/* Polish pass #3: readability, color hierarchy, mature product finish */
:root {
  --polish-text-secondary: #c0ccd8;
  --polish-text-soft: #aebdcc;
  --polish-muted: #8fa0b2;
  --polish-blue: #5da4ef;
  --polish-blue-soft: rgba(93, 164, 239, 0.16);
  --polish-amber: #d8aa4e;
  --polish-amber-soft: rgba(216, 170, 78, 0.14);
  --polish-green: #77c69a;
  --polish-green-soft: rgba(119, 198, 154, 0.13);
}

body,
p,
li,
.section-copy p,
.pricing-copy p,
.final-cta p,
.page p,
.panel p,
.faq-item .faq-answer,
.hero-content p {
  color: var(--polish-text-secondary);
}

.helper-text,
.status,
.hero-cta-note,
.trust-line,
.card-label,
.timeline-item span,
.footer-row p,
.pricing-amount span,
.pricing-trial {
  color: var(--polish-muted);
}

.message-card p,
.flow-row p,
.summary-card p,
.timeline-item p,
.action-row p,
.priority-item span,
.control-row span {
  color: var(--polish-text-soft);
}

header {
  background:
    linear-gradient(180deg, rgba(8, 13, 20, 0.9), rgba(8, 13, 20, 0.72));
  border-bottom-color: rgba(210, 226, 240, 0.1);
}

.brand {
  gap: 10px;
}

.brand::before {
  background:
    linear-gradient(135deg, rgba(93, 164, 239, 0.45), rgba(89, 191, 213, 0.14)),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(160, 206, 248, 0.28);
  box-shadow: 0 0 24px rgba(93, 164, 239, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-links {
  gap: 10px;
}

.nav-links a {
  color: #b7c5d4;
  padding: 8px 12px;
  border-color: rgba(255, 255, 255, 0.02);
}

.nav-links a:hover {
  color: #f1f7fb;
  background: rgba(93, 164, 239, 0.08);
  border-color: rgba(93, 164, 239, 0.2);
}

.nav-links .nav-cta {
  padding-inline: 16px;
  box-shadow: 0 12px 24px rgba(57, 120, 189, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-shell {
  border-color: rgba(210, 226, 240, 0.17);
}

.communication-flow {
  background:
    radial-gradient(circle at 13% 0%, rgba(89, 191, 213, 0.16), transparent 29%),
    radial-gradient(circle at 100% 8%, rgba(93, 164, 239, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(8, 14, 22, 0.99));
}

.flow-topbar strong {
  border: 1px solid rgba(119, 198, 154, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: #ccf4dc;
  background: var(--polish-green-soft);
}

.customer-message {
  border-color: rgba(210, 226, 240, 0.16);
}

.customer-message::after {
  background: var(--polish-blue);
  box-shadow: 0 0 18px rgba(93, 164, 239, 0.38);
}

.response-card {
  border-color: rgba(119, 198, 154, 0.36);
  background:
    linear-gradient(180deg, rgba(119, 198, 154, 0.13), rgba(255, 255, 255, 0.018)),
    rgba(7, 12, 19, 0.78);
}

.response-card::after {
  background: var(--polish-green);
  box-shadow: 0 0 18px rgba(119, 198, 154, 0.48);
}

.response-card .card-label,
.summary-card .card-label {
  color: #9bd9b7;
}

.flow-row:not(.priority-row) {
  border-color: rgba(93, 164, 239, 0.28);
  background:
    linear-gradient(180deg, rgba(93, 164, 239, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(7, 12, 19, 0.76);
}

.flow-row:not(.priority-row) strong {
  color: #c8eff9;
  border-color: rgba(89, 191, 213, 0.28);
  background: rgba(89, 191, 213, 0.1);
}

.priority-row,
.priority-item.highlighted {
  border-color: rgba(216, 170, 78, 0.58);
  background:
    linear-gradient(180deg, rgba(216, 170, 78, 0.2), rgba(216, 170, 78, 0.055)),
    rgba(9, 15, 23, 0.82);
}

.priority-row .card-label,
.priority-item.highlighted span,
.priority-item.highlighted strong,
.priority-row strong {
  color: #f0cf86;
}

.summary-card {
  border-color: rgba(119, 198, 154, 0.32);
  background:
    linear-gradient(180deg, rgba(119, 198, 154, 0.12), rgba(93, 164, 239, 0.045)),
    rgba(7, 12, 19, 0.8);
}

.message-timeline {
  position: relative;
  padding: 16px;
}

.message-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 31px;
  width: 1px;
  background: linear-gradient(180deg, var(--polish-blue), var(--polish-green), var(--polish-amber));
  opacity: 0.65;
}

.timeline-item {
  position: relative;
  padding-left: 42px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--polish-blue);
  box-shadow: 0 0 0 4px rgba(93, 164, 239, 0.12), 0 0 18px rgba(93, 164, 239, 0.34);
}

.timeline-item:nth-child(2)::before {
  background: var(--polish-green);
  box-shadow: 0 0 0 4px rgba(119, 198, 154, 0.12), 0 0 18px rgba(119, 198, 154, 0.3);
}

.timeline-item.active {
  border-color: rgba(216, 170, 78, 0.44);
  background:
    linear-gradient(180deg, rgba(216, 170, 78, 0.12), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 19, 0.6);
}

.timeline-item.active::before {
  background: var(--polish-amber);
  box-shadow: 0 0 0 4px rgba(216, 170, 78, 0.13), 0 0 22px rgba(216, 170, 78, 0.36);
}

.timeline-item.active span {
  color: #f0cf86;
}

.action-row:nth-child(1) span,
.action-row:nth-child(2) span,
.action-row:nth-child(3) span {
  background: linear-gradient(180deg, var(--polish-green), #4e9a6d);
  box-shadow: 0 0 0 4px rgba(119, 198, 154, 0.12), 0 0 20px rgba(119, 198, 154, 0.24);
}

.action-row:nth-child(4) span,
.action-row:nth-child(5) span {
  background: linear-gradient(180deg, var(--polish-amber), #a97826);
}

.priority-item:nth-child(1) {
  border-color: rgba(119, 198, 154, 0.24);
}

.priority-item:nth-child(1)::before {
  background: var(--polish-green);
}

.priority-item:nth-child(1) strong {
  color: #c9f2dc;
  border-color: rgba(119, 198, 154, 0.25);
  background: var(--polish-green-soft);
}

.priority-item:nth-child(2) {
  border-color: rgba(89, 191, 213, 0.22);
}

.priority-item:nth-child(2) strong {
  color: #c8eff9;
  border-color: rgba(89, 191, 213, 0.24);
  background: rgba(89, 191, 213, 0.09);
}

.pricing-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(93, 164, 239, 0.18), transparent 34%),
    radial-gradient(circle at 0% 96%, rgba(119, 198, 154, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 37, 53, 0.98), rgba(9, 15, 23, 0.98));
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--polish-blue), var(--polish-green), var(--polish-amber));
}

.pricing-amount {
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(210, 226, 240, 0.1);
}

.pricing-amount strong {
  color: #f7fbff;
  text-shadow: 0 0 34px rgba(93, 164, 239, 0.14);
}

.pricing-trial {
  display: inline-flex;
  width: auto;
  margin-bottom: 20px;
  border: 1px solid rgba(119, 198, 154, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  color: #c9f2dc;
  background: var(--polish-green-soft);
}

.pricing-list li {
  color: var(--polish-text-secondary);
}

.pricing-list li::before {
  background: var(--polish-green);
  box-shadow: 0 0 14px rgba(119, 198, 154, 0.32);
}

.pricing-list li:nth-last-child(-n + 3)::before {
  background: var(--polish-amber);
  box-shadow: 0 0 14px rgba(216, 170, 78, 0.32);
}

.faq-item .faq-answer {
  color: var(--polish-text-secondary);
}

footer p {
  color: var(--polish-muted);
}

@media (max-width: 760px) {
  .message-timeline {
    padding: 14px;
  }

  .message-timeline::before {
    left: 29px;
  }

  .timeline-item {
    padding-left: 38px;
  }
}

/* Polish pass #4: calm card color, shift energy into ambient page depth */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(93, 164, 239, 0.12), transparent 34%),
    radial-gradient(circle at 12% 28%, rgba(93, 164, 239, 0.055), transparent 26%),
    radial-gradient(circle at 92% 48%, rgba(93, 164, 239, 0.06), transparent 28%),
    linear-gradient(180deg, #060a10 0%, #080e15 42%, #060a10 100%);
}

.narrative-section,
.hero,
.final-cta {
  position: relative;
  isolation: isolate;
}

.narrative-section::before,
.hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
}

.hero::before {
  background:
    radial-gradient(circle at 70% 34%, rgba(93, 164, 239, 0.16), transparent 32%),
    radial-gradient(circle at 22% 26%, rgba(93, 164, 239, 0.095), transparent 28%);
}

#problem::before {
  background: radial-gradient(circle at 74% 52%, rgba(93, 164, 239, 0.075), transparent 30%);
}

#prioritization::before {
  background:
    radial-gradient(circle at 28% 50%, rgba(93, 164, 239, 0.055), transparent 26%),
    radial-gradient(circle at 78% 42%, rgba(93, 164, 239, 0.08), transparent 28%);
}

#control::before {
  background: radial-gradient(circle at 26% 46%, rgba(93, 164, 239, 0.07), transparent 30%);
}

#pricing::before {
  background: radial-gradient(circle at 72% 50%, rgba(93, 164, 239, 0.09), transparent 30%);
}

.final-cta::before {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(93, 164, 239, 0.18), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(93, 164, 239, 0.1), transparent 26%);
}

.hero-shell {
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(93, 164, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -36px -28px auto -44px;
  height: 220px;
  z-index: -1;
  background: radial-gradient(circle, rgba(93, 164, 239, 0.1), transparent 66%);
  pointer-events: none;
}

.communication-flow {
  background:
    radial-gradient(circle at 80% 10%, rgba(93, 164, 239, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(8, 14, 22, 0.99));
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(93, 164, 239, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.message-card,
.flow-row,
.summary-card,
.timeline-item,
.priority-item,
.control-row,
.control-note,
.action-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
    rgba(7, 12, 19, 0.74);
}

.response-card,
.summary-card,
.flow-row:not(.priority-row),
.priority-row,
.priority-item.highlighted,
.timeline-item.active,
.priority-item:nth-child(1),
.priority-item:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(7, 12, 19, 0.76);
}

.response-card {
  border-color: rgba(210, 226, 240, 0.16);
}

.summary-card,
.flow-row:not(.priority-row) {
  border-color: rgba(93, 164, 239, 0.2);
}

.priority-row,
.priority-item.highlighted,
.timeline-item.active {
  border-color: rgba(216, 170, 78, 0.32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.priority-row .card-label,
.priority-item.highlighted span,
.priority-item.highlighted strong,
.priority-row strong,
.timeline-item.active span {
  color: #e7c577;
}

.response-card .card-label,
.summary-card .card-label {
  color: rgba(192, 204, 216, 0.86);
}

.flow-topbar strong,
.priority-item strong,
.control-row strong,
.flow-row strong,
.priority-item:nth-child(1) strong,
.priority-item:nth-child(2) strong {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(210, 226, 240, 0.13);
  color: #d9e7f3;
}

.response-card::after,
.summary-card::after,
.timeline-item:nth-child(2)::before,
.action-row:nth-child(1) span,
.action-row:nth-child(2) span,
.action-row:nth-child(3) span {
  background: var(--polish-green);
  box-shadow: 0 0 0 4px rgba(119, 198, 154, 0.1), 0 0 16px rgba(119, 198, 154, 0.24);
}

.priority-row strong,
.priority-item.highlighted strong,
.timeline-item.active::before,
.action-row:nth-child(4) span,
.action-row:nth-child(5) span {
  background: var(--polish-amber);
}

.priority-row strong,
.priority-item.highlighted strong {
  color: #1d1608;
  border-color: rgba(216, 170, 78, 0.28);
}

.message-timeline {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(20, 31, 44, 0.92), rgba(11, 17, 25, 0.92));
}

.message-timeline::before {
  background: linear-gradient(180deg, rgba(93, 164, 239, 0.7), rgba(93, 164, 239, 0.22));
}

.priority-item::before {
  background: rgba(93, 164, 239, 0.78);
  box-shadow: none;
}

.priority-item:nth-child(1)::before,
.priority-item:nth-child(2)::before {
  background: rgba(93, 164, 239, 0.78);
}

.priority-item.highlighted::before {
  background: var(--polish-amber);
  box-shadow: 0 0 18px rgba(216, 170, 78, 0.28);
}

.control-panel {
  background:
    radial-gradient(circle at 85% 0%, rgba(93, 164, 239, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(20, 31, 44, 0.94), rgba(10, 16, 24, 0.94));
}

.control-row:nth-child(2) strong,
.control-row:nth-child(3) strong {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(210, 226, 240, 0.13);
  color: #d9e7f3;
}

.control-note {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(93, 164, 239, 0.18);
}

.pricing-card {
  background:
    radial-gradient(circle at 88% 0%, rgba(93, 164, 239, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(24, 37, 53, 0.98), rgba(9, 15, 23, 0.98));
  border-color: rgba(93, 164, 239, 0.28);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.32),
    0 0 58px rgba(93, 164, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.pricing-card::before {
  display: none;
}

.pricing-trial {
  color: #c9f2dc;
  background: rgba(119, 198, 154, 0.11);
  border-color: rgba(119, 198, 154, 0.24);
}

.pricing-list li::before {
  background: var(--polish-green);
  box-shadow: 0 0 12px rgba(119, 198, 154, 0.24);
}

.pricing-list li:nth-last-child(-n + 3)::before {
  background: var(--polish-amber);
  box-shadow: 0 0 12px rgba(216, 170, 78, 0.22);
}

.demo-frame {
  background:
    radial-gradient(circle at 50% 48%, rgba(93, 164, 239, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(20, 31, 44, 0.94), rgba(9, 15, 23, 0.96));
  border-color: rgba(93, 164, 239, 0.2);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.28),
    0 0 64px rgba(93, 164, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.play-button {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(210, 226, 240, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 34px rgba(93, 164, 239, 0.14);
}

.final-cta-shell {
  background:
    radial-gradient(circle at 72% 22%, rgba(93, 164, 239, 0.2), transparent 32%),
    radial-gradient(circle at 24% 80%, rgba(93, 164, 239, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(8, 14, 22, 0.98));
  border-color: rgba(93, 164, 239, 0.3);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(93, 164, 239, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Final homepage-only balance pass */
main:not(.page) > section {
  padding-top: clamp(2.75rem, 5vw, 4.65rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.65rem);
}

main:not(.page) .hero {
  padding-top: clamp(2.1rem, 4.7vw, 4.25rem);
  padding-bottom: clamp(2.85rem, 5.4vw, 5.05rem);
}

main:not(.page) .section-copy p,
main:not(.page) .pricing-copy p,
main:not(.page) .final-cta p,
main:not(.page) .faq-item .faq-answer {
  color: #c5d0dc;
}

main:not(.page) .hero-cta-note,
main:not(.page) .trust-line,
main:not(.page) .card-label {
  color: #96a7b8;
}

main:not(.page) .split-section,
main:not(.page) .pricing-shell {
  gap: clamp(1.7rem, 4.3vw, 3.75rem);
}

main:not(.page) .matte-panel,
main:not(.page) .pricing-card,
main:not(.page) .demo-frame {
  border-color: rgba(210, 226, 240, 0.115);
}

main:not(.page) .communication-flow {
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.34),
    0 0 56px rgba(93, 164, 239, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

main:not(.page) .pricing-card {
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.3),
    0 0 44px rgba(93, 164, 239, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

main:not(.page) .faq-list {
  gap: 9px;
}

main:not(.page) .faq-item summary {
  padding: 14px 17px;
}

main:not(.page) .faq-item .faq-answer {
  padding: 0 17px 14px;
}

main:not(.page) .final-cta {
  padding-top: clamp(2.6rem, 4.6vw, 4.35rem);
  padding-bottom: clamp(2.9rem, 5vw, 4.7rem);
}

main:not(.page) .final-cta::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(93, 164, 239, 0.145), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(93, 164, 239, 0.075), transparent 26%);
}

main:not(.page) .final-cta-shell {
  padding: clamp(1.45rem, 3.25vw, 2.85rem);
  background:
    radial-gradient(circle at 72% 22%, rgba(93, 164, 239, 0.165), transparent 32%),
    radial-gradient(circle at 24% 80%, rgba(93, 164, 239, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.98), rgba(8, 14, 22, 0.98));
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.34),
    0 0 68px rgba(93, 164, 239, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

main:not(.page) .final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

main:not(.page) .final-cta p {
  max-width: 650px;
}

main:not(.page) .final-cta .button-row {
  margin-top: 18px;
}

main:not(.page) .final-cta .trust-line {
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  main:not(.page) .hero-grid {
    gap: 1.35rem;
  }

  main:not(.page) .communication-flow {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  main:not(.page) > section {
    padding-top: 2.45rem;
    padding-bottom: 2.45rem;
  }

  main:not(.page) .hero {
    padding-top: 1.85rem;
    padding-bottom: 2.65rem;
  }

  main:not(.page) .hero-shell,
  main:not(.page) .matte-panel,
  main:not(.page) .pricing-card,
  main:not(.page) .final-cta-shell {
    padding: 18px;
  }

  main:not(.page) .message-card,
  main:not(.page) .flow-row,
  main:not(.page) .summary-card,
  main:not(.page) .timeline-item,
  main:not(.page) .priority-item,
  main:not(.page) .control-row,
  main:not(.page) .action-row {
    padding: 13px 14px;
  }

  main:not(.page) .final-cta {
    padding-top: 2.35rem;
    padding-bottom: 2.7rem;
  }

  main:not(.page) .final-cta-shell {
    padding: 20px;
  }

  main:not(.page) .final-cta .button-row {
    margin-top: 16px;
  }
}

/* Homepage density pass: compact premium rhythm */
main:not(.page) > section {
  padding-top: clamp(2.05rem, 3.75vw, 3.65rem);
  padding-bottom: clamp(2.05rem, 3.75vw, 3.65rem);
}

main:not(.page) .hero {
  padding-top: clamp(1.15rem, 2.65vw, 2.55rem);
  padding-bottom: clamp(1.55rem, 3vw, 3rem);
}

main:not(.page) .hero-shell {
  padding: clamp(0.95rem, 1.75vw, 1.45rem);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    0 0 54px rgba(93, 164, 239, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

main:not(.page) .hero-shell::before {
  top: 18px;
  bottom: 18px;
}

main:not(.page) .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(1.25rem, 3vw, 2.85rem);
}

main:not(.page) .hero-content h1 {
  margin-bottom: 12px;
  max-width: 11ch;
}

main:not(.page) .hero h1 {
  font-size: clamp(2.05rem, 4.1vw, 3.35rem);
  line-height: 1.02;
}

main:not(.page) .hero-content p {
  max-width: 47ch;
  font-size: clamp(0.99rem, 1.08vw, 1.08rem);
  line-height: 1.54;
}

main:not(.page) .hero-content .button-row {
  margin-top: 16px;
}

main:not(.page) .hero-cta-note {
  margin-top: 12px;
}

main:not(.page) .hero-trust-strip {
  margin-top: 12px;
  gap: 7px;
}

main:not(.page) .hero-trust-strip span {
  padding: 7px 10px;
  font-size: 0.84rem;
}

main:not(.page) .communication-flow {
  min-height: 360px;
  padding: 12px;
}

main:not(.page) .communication-flow::before {
  inset: 34px 12px auto;
}

main:not(.page) .flow-topbar {
  margin-bottom: 9px;
  min-height: 22px;
  padding-bottom: 8px;
  font-size: 0.86rem;
}

main:not(.page) .message-card,
main:not(.page) .flow-row,
main:not(.page) .summary-card {
  padding: 10px 12px;
}

main:not(.page) .message-card,
main:not(.page) .flow-row {
  margin-bottom: 7px;
}

main:not(.page) .customer-message {
  margin-right: 28px;
}

main:not(.page) .response-card {
  margin-left: 28px;
}

main:not(.page) .summary-card {
  margin-top: 8px;
}

main:not(.page) .card-label {
  margin-bottom: 4px;
  font-size: 0.68rem;
}

main:not(.page) .message-card p,
main:not(.page) .flow-row p,
main:not(.page) .summary-card p {
  font-size: 0.86rem;
  line-height: 1.36;
}

main:not(.page) .flow-topbar strong,
main:not(.page) .flow-row strong,
main:not(.page) .priority-item strong,
main:not(.page) .control-row strong {
  font-size: 0.78rem;
}

main:not(.page) .section-copy h2,
main:not(.page) .section-header h2,
main:not(.page) .pricing-copy h2,
main:not(.page) .final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 2.55vw, 2.18rem);
  line-height: 1.13;
}

main:not(.page) .section-copy p,
main:not(.page) .pricing-copy p,
main:not(.page) .final-cta p,
main:not(.page) .faq-item .faq-answer {
  font-size: 0.98rem;
  line-height: 1.55;
}

main:not(.page) .section-copy p {
  margin-bottom: 8px;
}

main:not(.page) .split-section,
main:not(.page) .pricing-shell {
  gap: clamp(1.3rem, 3.25vw, 2.85rem);
}

main:not(.page) .matte-panel {
  padding: clamp(0.9rem, 1.75vw, 1.45rem);
}

main:not(.page) .timeline-item,
main:not(.page) .action-row,
main:not(.page) .priority-item,
main:not(.page) .control-row,
main:not(.page) .control-note {
  padding: 12px 14px;
}

main:not(.page) .message-timeline,
main:not(.page) .priority-board {
  gap: 8px;
}

main:not(.page) .action-list {
  padding: 10px;
}

main:not(.page) .action-row {
  margin-bottom: 8px;
}

main:not(.page) .priority-item {
  min-height: 62px;
}

main:not(.page) .control-panel::before {
  height: 36px;
}

main:not(.page) .control-row:first-of-type {
  margin-top: 11px;
}

main:not(.page) .control-row,
main:not(.page) .control-note {
  margin-right: 11px;
  margin-bottom: 8px;
  margin-left: 11px;
}

main:not(.page) .control-row {
  min-height: 50px;
}

main:not(.page) .workshop-steps {
  gap: 10px;
}

main:not(.page) .workshop-steps .step-item {
  padding: 14px;
}

main:not(.page) .workshop-steps .step-item h3 {
  font-size: 0.94rem;
  line-height: 1.3;
}

main:not(.page) .demo-frame {
  min-height: 220px;
}

main:not(.page) .play-button {
  width: 58px;
  height: 58px;
}

main:not(.page) .play-button::after {
  left: 24px;
  top: 18px;
  border-left-width: 15px;
  border-top-width: 11px;
  border-bottom-width: 11px;
}

main:not(.page) .pricing-card {
  padding: clamp(1.15rem, 2.15vw, 1.85rem);
}

main:not(.page) .pricing-amount strong {
  font-size: clamp(2.55rem, 4.7vw, 3.72rem);
}

main:not(.page) .pricing-trial {
  margin-bottom: 14px;
}

main:not(.page) .pricing-list {
  gap: 7px 14px;
  margin-bottom: 18px;
}

main:not(.page) .pricing-list li {
  font-size: 0.96rem;
  line-height: 1.38;
}

main:not(.page) .faq-list {
  gap: 8px;
}

main:not(.page) .faq-item summary {
  padding: 12px 15px;
  font-size: 0.98rem;
}

main:not(.page) .faq-item .faq-answer {
  padding: 0 15px 12px;
}

main:not(.page) .final-cta {
  padding-top: clamp(2rem, 3.6vw, 3.45rem);
  padding-bottom: clamp(2.15rem, 3.8vw, 3.65rem);
}

main:not(.page) .final-cta-shell {
  padding: clamp(1.25rem, 2.75vw, 2.35rem);
}

main:not(.page) .final-cta h2 {
  max-width: 700px;
  margin-bottom: 9px;
}

main:not(.page) .final-cta p {
  max-width: 620px;
}

main:not(.page) .final-cta .button-row {
  margin-top: 14px;
}

main:not(.page) .final-cta .trust-line {
  margin-top: 9px;
}

@media (max-width: 980px) {
  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  main:not(.page) .communication-flow {
    min-height: 360px;
  }

  main:not(.page) .workshop-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  main:not(.page) > section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  main:not(.page) .hero {
    padding-top: 1.35rem;
    padding-bottom: 2rem;
  }

  main:not(.page) .hero-shell,
  main:not(.page) .matte-panel,
  main:not(.page) .pricing-card,
  main:not(.page) .final-cta-shell {
    padding: 13px;
  }

  main:not(.page) .hero h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.65rem);
  }

  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
  }

  main:not(.page) .section-copy h2,
  main:not(.page) .section-header h2,
  main:not(.page) .pricing-copy h2,
  main:not(.page) .final-cta h2 {
    font-size: clamp(1.48rem, 6.8vw, 2.05rem);
  }

  main:not(.page) .communication-flow {
    min-height: auto;
    padding: 11px;
  }

  main:not(.page) .communication-flow::before {
    inset: 34px 11px auto;
  }

  main:not(.page) .flow-topbar {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 0.8rem;
  }

  main:not(.page) .customer-message,
  main:not(.page) .response-card {
    margin-left: 0;
    margin-right: 0;
  }

  main:not(.page) .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  main:not(.page) .hero-trust-strip span {
    min-height: 34px;
    white-space: normal;
  }

  main:not(.page) .message-card,
  main:not(.page) .flow-row,
  main:not(.page) .summary-card,
  main:not(.page) .timeline-item,
  main:not(.page) .priority-item,
  main:not(.page) .control-row,
  main:not(.page) .action-row {
    padding: 9px 10px;
  }

  main:not(.page) .communication-flow .flow-row {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  main:not(.page) .message-card,
  main:not(.page) .flow-row {
    margin-bottom: 7px;
  }

  main:not(.page) .summary-card {
    margin-top: 7px;
  }

  main:not(.page) .card-label {
    font-size: 0.62rem;
  }

  main:not(.page) .message-card p,
  main:not(.page) .flow-row p,
  main:not(.page) .summary-card p {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  main:not(.page) .flow-row strong {
    padding: 4px 7px;
    font-size: 0.7rem;
  }

  main:not(.page) .workshop-steps {
    grid-template-columns: 1fr;
  }

  main:not(.page) .demo-frame {
    min-height: 190px;
  }

  main:not(.page) .pricing-list {
    grid-template-columns: 1fr;
  }

  main:not(.page) .final-cta {
    padding-top: 1.9rem;
    padding-bottom: 2.1rem;
  }

  main:not(.page) .final-cta-shell {
    padding: 17px;
  }
}

/* Homepage hero composition pass: restore presence, refine headline balance */
main:not(.page) .hero {
  padding-top: clamp(1.6rem, 3.35vw, 3.35rem);
  padding-bottom: clamp(2.05rem, 3.95vw, 4.05rem);
}

main:not(.page) .hero-shell {
  padding: clamp(1.25rem, 2.3vw, 2rem);
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(93, 164, 239, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

main:not(.page) .hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: clamp(1.65rem, 3.85vw, 3.75rem);
}

main:not(.page) .hero-content {
  max-width: 520px;
}

main:not(.page) .hero-content h1 {
  max-width: 13.8ch;
  margin-bottom: 15px;
}

main:not(.page) .hero h1 {
  font-size: clamp(2.45rem, 4.35vw, 3.85rem);
  line-height: 1.03;
  text-wrap: balance;
}

main:not(.page) .hero-content p {
  max-width: 46ch;
  font-size: clamp(1.01rem, 1.16vw, 1.12rem);
  line-height: 1.56;
}

main:not(.page) .hero-content .button-row {
  margin-top: 20px;
}

main:not(.page) .hero-cta-note {
  margin-top: 14px;
}

main:not(.page) .communication-flow {
  min-height: 430px;
  padding: 15px;
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.38),
    0 0 72px rgba(93, 164, 239, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.085);
}

main:not(.page) .communication-flow::before {
  inset: 39px 15px auto;
}

main:not(.page) .flow-topbar {
  margin-bottom: 12px;
  min-height: 26px;
  padding-bottom: 10px;
}

main:not(.page) .message-card,
main:not(.page) .flow-row,
main:not(.page) .summary-card {
  padding: 12px 14px;
}

main:not(.page) .message-card,
main:not(.page) .flow-row {
  margin-bottom: 9px;
}

main:not(.page) .customer-message {
  margin-right: 34px;
}

main:not(.page) .response-card {
  margin-left: 34px;
}

main:not(.page) .summary-card {
  margin-top: 10px;
}

main:not(.page) .message-card p,
main:not(.page) .flow-row p,
main:not(.page) .summary-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

main:not(.page) .hero-trust-strip {
  margin-top: 16px;
  gap: 8px;
}

main:not(.page) .hero-trust-strip span {
  padding: 8px 11px;
}

@media (max-width: 980px) {
  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  main:not(.page) .hero-content {
    max-width: 680px;
  }

  main:not(.page) .communication-flow {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  main:not(.page) .hero {
    padding-top: 1.55rem;
    padding-bottom: 2.35rem;
  }

  main:not(.page) .hero-shell {
    padding: 17px;
  }

  main:not(.page) .hero-content h1 {
    max-width: 12.5ch;
    margin-bottom: 12px;
  }

  main:not(.page) .hero h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.95rem);
  }

  main:not(.page) .communication-flow {
    min-height: auto;
    padding: 12px;
  }

  main:not(.page) .customer-message,
  main:not(.page) .response-card {
    margin-left: 0;
    margin-right: 0;
  }

  main:not(.page) .message-card,
  main:not(.page) .flow-row,
  main:not(.page) .summary-card {
    padding: 10px 11px;
  }

  main:not(.page) .message-card p,
  main:not(.page) .flow-row p,
  main:not(.page) .summary-card p {
    font-size: 0.84rem;
  }
}

/* Homepage hero honesty pass: spacious hero, intentional two-line statement */
main:not(.page) .hero {
  padding-top: clamp(1.8rem, 3.65vw, 3.65rem);
  padding-bottom: clamp(2.3rem, 4.25vw, 4.35rem);
}

main:not(.page) .hero-shell {
  padding: clamp(1.45rem, 2.55vw, 2.25rem);
}

main:not(.page) .hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(1.85rem, 4.15vw, 4rem);
}

main:not(.page) .hero-content h1 {
  max-width: 16ch;
  margin-bottom: 17px;
}

main:not(.page) .hero h1 {
  font-size: clamp(2.45rem, 4.35vw, 3.85rem);
  line-height: 1.04;
  text-wrap: auto;
}

main:not(.page) .hero-content p {
  max-width: 45ch;
}

main:not(.page) .hero-content .button-row {
  margin-top: 22px;
}

main:not(.page) .hero-cta-note {
  margin-top: 15px;
}

main:not(.page) .communication-flow {
  min-height: 450px;
  padding: 17px;
}

main:not(.page) .communication-flow::before {
  inset: 42px 17px auto;
}

main:not(.page) .flow-topbar {
  margin-bottom: 13px;
  padding-bottom: 11px;
}

main:not(.page) .message-card,
main:not(.page) .flow-row,
main:not(.page) .summary-card {
  padding: 13px 15px;
}

main:not(.page) .message-card,
main:not(.page) .flow-row {
  margin-bottom: 10px;
}

main:not(.page) .summary-card {
  margin-top: 11px;
}

main:not(.page) .hero-trust-strip {
  margin-top: 18px;
}

@media (max-width: 980px) {
  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  main:not(.page) .communication-flow {
    min-height: 410px;
  }
}

@media (max-width: 760px) {
  main:not(.page) .hero {
    padding-top: 1.65rem;
    padding-bottom: 2.5rem;
  }

  main:not(.page) .hero-shell {
    padding: 18px;
  }

  main:not(.page) .hero-content h1 {
    max-width: 16ch;
    margin-bottom: 13px;
  }

  main:not(.page) .hero h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.95rem);
  }

  main:not(.page) .communication-flow {
    min-height: auto;
    padding: 13px;
  }

  main:not(.page) .message-card,
  main:not(.page) .flow-row,
  main:not(.page) .summary-card {
    padding: 11px 12px;
  }
}

/* Homepage hero regression fix: preserve two-line headline, prevent dot overlap */
main:not(.page) .hero-content h1 {
  max-width: none;
}

main:not(.page) .hero h1 {
  white-space: nowrap;
}

main:not(.page) .communication-flow .message-card::after {
  display: none;
}

main:not(.page) .communication-flow .message-card,
main:not(.page) .communication-flow .flow-row,
main:not(.page) .communication-flow .summary-card {
  padding-right: 15px;
}

@media (max-width: 760px) {
  main:not(.page) .hero h1 {
    font-size: clamp(1.92rem, 9.55vw, 2.7rem);
  }

  main:not(.page) .communication-flow .message-card,
  main:not(.page) .communication-flow .flow-row,
  main:not(.page) .communication-flow .summary-card {
    padding-right: 12px;
  }
}

/* Homepage hero balance and timeline dot cleanup */
main:not(.page) .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  text-align: center;
}

main:not(.page) .hero-content h1 {
  margin-right: auto;
  margin-left: auto;
}

main:not(.page) .hero-content p {
  margin-right: auto;
  margin-left: auto;
}

main:not(.page) .hero-content .button-row {
  justify-content: center;
}

main:not(.page) .hero-cta-note {
  width: 100%;
}

main:not(.page) .message-timeline::before,
main:not(.page) .timeline-item::before {
  display: none;
}

main:not(.page) .timeline-item {
  padding-left: 14px;
}

@media (max-width: 980px) {
  main:not(.page) .hero-content {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  main:not(.page) .hero-content {
    max-width: 100%;
  }
}

/* Homepage hero hierarchy pass: outcome first, quieter mockup */
main:not(.page) .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(2rem, 4.5vw, 4.4rem);
}

main:not(.page) .communication-flow {
  width: min(100%, 520px);
  min-height: 370px;
  justify-self: end;
  padding: 14px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.3),
    0 0 46px rgba(93, 164, 239, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

main:not(.page) .communication-flow::before {
  inset: 37px 14px auto;
}

main:not(.page) .communication-flow .flow-topbar {
  margin-bottom: 10px;
  min-height: 24px;
  padding-bottom: 8px;
}

main:not(.page) .communication-flow .message-card,
main:not(.page) .communication-flow .flow-row {
  padding: 11px 13px;
  margin-bottom: 8px;
}

main:not(.page) .communication-flow .card-label {
  font-size: 0.64rem;
}

main:not(.page) .communication-flow .message-card p,
main:not(.page) .communication-flow .flow-row p {
  font-size: 0.84rem;
  line-height: 1.35;
}

main:not(.page) .communication-flow .flow-row strong {
  font-size: 0.72rem;
  padding: 4px 8px;
}

main:not(.page) .customer-message,
main:not(.page) .response-card {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 980px) {
  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
  }

  main:not(.page) .communication-flow {
    justify-self: center;
    width: min(100%, 560px);
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  main:not(.page) .communication-flow {
    width: 100%;
    min-height: auto;
    padding: 12px;
  }

  main:not(.page) .communication-flow .message-card,
  main:not(.page) .communication-flow .flow-row {
    padding: 10px 11px;
  }
}

/* Homepage hero hierarchy correction: large hero, 60/40 internal balance */
main:not(.page) .hero-shell {
  min-height: clamp(580px, 46vw, 650px);
}

main:not(.page) .hero-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 1fr);
  align-items: center;
  min-height: 100%;
  gap: clamp(2.25rem, 5vw, 5rem);
}

main:not(.page) .hero-content {
  max-width: 680px;
}

main:not(.page) .communication-flow {
  width: min(100%, 470px);
  min-height: 390px;
  justify-self: end;
}

@media (max-width: 980px) {
  main:not(.page) .hero-shell {
    min-height: auto;
  }

  main:not(.page) .hero-grid {
    grid-template-columns: 1fr;
  }

  main:not(.page) .communication-flow {
    justify-self: center;
    width: min(100%, 540px);
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  main:not(.page) .communication-flow {
    width: 100%;
    min-height: auto;
  }
}

/* Temporary honest hero value card */
main:not(.page) .hero-value-card {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 430px);
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(210, 226, 240, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 10%, rgba(93, 164, 239, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(22, 34, 49, 0.97), rgba(8, 14, 22, 0.99));
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(93, 164, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

main:not(.page) .hero-value-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 12px;
  border: 1px solid rgba(210, 226, 240, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
}

main:not(.page) .value-card-header {
  display: flex;
  align-items: center;
  min-height: 74px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(210, 226, 240, 0.1);
}

main:not(.page) .value-card-header span {
  max-width: 12ch;
  color: var(--workshop-text);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

main:not(.page) .value-card-list {
  display: grid;
  gap: 10px;
}

main:not(.page) .value-card-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(210, 226, 240, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(7, 12, 19, 0.56);
}

main:not(.page) .value-card-row span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(93, 164, 239, 0.78);
  box-shadow: 0 0 14px rgba(93, 164, 239, 0.24);
}

main:not(.page) .value-card-row p {
  margin: 0;
  color: #d7e2ee;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 980px) {
  main:not(.page) .hero-value-card {
    justify-self: center;
    width: min(100%, 500px);
    min-height: auto;
  }
}

@media (max-width: 760px) {
  main:not(.page) .hero-value-card {
    width: 100%;
    padding: 18px;
  }

  main:not(.page) .value-card-header {
    min-height: auto;
  }

  main:not(.page) .value-card-header span {
    max-width: none;
    font-size: 1.45rem;
  }
}
