:root {
  --bg: #eef4fa;
  --ink: #10243f;
  --ink-strong: #091426;
  --muted: #5b6c82;
  --muted-strong: #425168;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --surface-dark: #11253f;
  --accent: #1f73e8;
  --accent-strong: #1459bf;
  --accent-soft: #8fd0ff;
  --accent-mist: rgba(31, 115, 232, 0.12);
  --line: rgba(16, 36, 63, 0.12);
  --line-strong: rgba(16, 36, 63, 0.2);
  --shadow: 0 24px 60px rgba(16, 36, 63, 0.12);
  --shadow-soft: 0 18px 40px rgba(16, 36, 63, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 8%, rgba(143, 208, 255, 0.42), transparent 20%),
    radial-gradient(circle at 92% 10%, rgba(31, 115, 232, 0.14), transparent 18%),
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.3), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fa 43%, #e8eff7 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    repeating-linear-gradient(
      90deg,
      rgba(16, 36, 63, 0.025) 0,
      rgba(16, 36, 63, 0.025) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
  z-index: 0;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 32px;
}

.topline {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(16, 36, 63, 0.08);
}

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

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a,
.nav-cta,
.btn {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(31, 115, 232, 0.08);
  color: var(--ink);
}

.site-nav a.is-active {
  background: rgba(31, 115, 232, 0.12);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-header[data-open="true"] .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header[data-open="true"] .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn:hover,
.btn:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 30px rgba(31, 115, 232, 0.2);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 36px rgba(31, 115, 232, 0.26);
}

.btn-secondary {
  border-color: rgba(16, 36, 63, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(31, 115, 232, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.nav-cta {
  margin-left: 4px;
}

main {
  padding-top: 24px;
}

section[id] {
  scroll-margin-top: 108px;
}

.content-section {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}

.page-hero-copy,
.page-hero-card {
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.page-hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(143, 208, 255, 0.28), transparent 22%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 249, 255, 0.88) 100%);
}

.page-hero-card {
  padding: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(31, 115, 232, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 246, 254, 0.94) 100%);
}

.page-hero-copy h1,
.page-hero-card h2,
.callout-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-hero-copy h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--ink-strong);
}

.page-hero-copy p,
.page-hero-card p,
.section-note,
.resource-card p,
.callout-card p,
.detail-card p,
.split-card p {
  color: var(--muted);
}

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

.page-hero-card h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--ink-strong);
}

.mini-list,
.bullet-list,
.stack-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.mini-list li,
.bullet-list li,
.stack-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
  font-weight: 700;
}

.mini-list li::before,
.bullet-list li::before,
.stack-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 5px rgba(31, 115, 232, 0.1);
  transform: translateY(-50%);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-grid,
.resource-grid,
.sequence-grid,
.callout-grid,
.kpi-strip,
.split-grid,
.footer-grid {
  display: grid;
  gap: 14px;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.detail-card,
.resource-card,
.sequence-card,
.callout-card,
.split-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.05);
}

.detail-card h3,
.resource-card h3,
.sequence-card h3,
.split-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.callout-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.callout-card {
  background:
    linear-gradient(180deg, rgba(31, 115, 232, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.callout-card h3 {
  font-size: 1.35rem;
  color: var(--ink-strong);
}

.sequence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.sequence-card {
  padding-top: 20px;
}

.sequence-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e8eff 0%, #1b66d3 100%);
  box-shadow: 0 12px 24px rgba(31, 115, 232, 0.24);
  color: #fff;
  font-weight: 800;
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-type {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(31, 115, 232, 0.08);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card .btn,
.link-card .btn {
  width: fit-content;
  margin-top: auto;
}

.kpi-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.kpi-card {
  padding: 18px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.05);
}

.kpi-card strong {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.kpi-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
}

.kpi-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.05);
}

.link-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.split-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.split-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
  font-weight: 700;
}

.split-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  transform: translateY(-50%);
}

.hero,
.numbers-band,
.platform-section,
.compare-section,
.workflow-section,
.insight-section,
.faq-section,
.demo-section {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.9fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}

.hero-copy,
.hero-panel,
.numbers-band,
.platform-section,
.compare-section,
.workflow-section,
.insight-section,
.faq-section,
.demo-section,
.role-strip {
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.hero-panel {
  overflow: hidden;
}

.hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 16% 14%, rgba(143, 208, 255, 0.28), transparent 24%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 249, 255, 0.88) 100%);
}

.hero-copy h1,
.section-heading h2,
.hero-panel h2,
.insight-copy h2,
.demo-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(3.3rem, 6vw, 5.9rem);
  color: var(--ink-strong);
}

.hero-intro {
  max-width: 63ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #17365f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-pill-dark {
  border-color: rgba(143, 208, 255, 0.18);
  background: rgba(143, 208, 255, 0.08);
  color: var(--accent-soft);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.proof-card,
.number-card,
.module-card,
.workflow-card,
.compare-card,
.board-grid article,
.demo-benefits article {
  min-height: 100%;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.05);
}

.proof-card {
  padding: 18px;
}

.proof-card strong,
.module-card h3,
.workflow-card h3,
.board-grid strong,
.demo-benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--ink);
}

.proof-card p,
.number-card p,
.module-card p,
.workflow-card p,
.compare-list li,
.insight-copy p,
.insight-list li,
.board-grid p,
.faq-item p,
.demo-copy p,
.demo-benefits p,
.form-feedback {
  color: var(--muted);
}

.hero-panel {
  position: relative;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 14%, rgba(31, 115, 232, 0.2), transparent 20%),
    linear-gradient(160deg, #132945 0%, #10243f 56%, #173764 100%);
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 208, 255, 0.22) 0%, rgba(143, 208, 255, 0) 70%);
  pointer-events: none;
}

.hero-panel-head {
  position: relative;
}

.hero-panel h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 2.85rem);
  color: #fff;
}

.hero-panel-head p,
.panel-flow p {
  color: rgba(238, 245, 255, 0.78);
}

.panel-surface {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(143, 208, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.panel-surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
}

.panel-surface-grid article {
  padding: 16px;
  border: 1px solid rgba(143, 208, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.panel-surface-grid strong {
  display: block;
  color: #f4f8ff;
  font-size: 1rem;
  line-height: 1.45;
}

.surface-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-label,
.board-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-flow {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
}

.panel-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px 14px 0;
}

.panel-flow article + article {
  border-top: 1px solid rgba(143, 208, 255, 0.1);
}

.panel-flow span,
.workflow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e8eff 0%, #1b66d3 100%);
  box-shadow: 0 12px 24px rgba(31, 115, 232, 0.24);
  color: #fff;
  font-weight: 800;
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding: 18px;
}

.role-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-weight: 700;
}

.numbers-band,
.platform-section,
.compare-section,
.workflow-section,
.faq-section {
  margin-top: 20px;
  padding: 28px;
}

.section-heading {
  max-width: 72ch;
}

.section-heading h2,
.insight-copy h2,
.demo-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  color: var(--ink-strong);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
}

.numbers-grid,
.module-grid,
.workflow-grid,
.demo-benefits {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.number-card {
  padding: 22px;
}

.number-card strong {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.number-card span {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

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

.module-card {
  padding: 22px;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(31, 115, 232, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.compare-card {
  padding: 24px;
}

.compare-card-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 249, 253, 0.96) 100%);
}

.compare-card-accent {
  background:
    linear-gradient(180deg, rgba(31, 115, 232, 0.1) 0%, rgba(255, 255, 255, 0.96) 100%);
}

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

.compare-list li {
  position: relative;
  padding-left: 22px;
}

.compare-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(31, 115, 232, 0.12);
  transform: translateY(-50%);
}

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

.workflow-card {
  padding: 22px;
}

.workflow-card span {
  margin-bottom: 18px;
}

.insight-section,
.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 20px;
  margin-top: 20px;
  padding: 28px;
}

.insight-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(143, 208, 255, 0.18), transparent 20%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 254, 0.92) 100%);
}

.insight-copy p {
  margin-top: 16px;
}

.insight-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.insight-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.insight-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  transform: translateY(-50%);
}

.insight-board {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.board-header {
  display: grid;
  gap: 4px;
  padding: 4px 6px;
}

.board-header strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.board-header span {
  color: var(--muted);
}

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

.board-grid article {
  padding: 18px;
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.faq-item {
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 18px 56px 18px 20px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

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

.demo-section {
  align-items: start;
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 208, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 247, 255, 0.95) 100%);
}

.demo-copy p {
  margin-top: 16px;
}

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

.demo-benefits article {
  padding: 18px;
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.demo-form input::placeholder {
  color: #8c98aa;
}

.demo-form input:focus-visible,
.demo-form select:focus-visible,
.demo-form textarea:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(31, 115, 232, 0.3);
  outline-offset: 2px;
}

.demo-form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-feedback.is-success {
  color: var(--accent-strong);
}

.site-footer {
  margin: 20px 0 8px;
  padding: 26px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

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

.footer-brand {
  display: grid;
  gap: 10px;
}

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

.footer-brand-copy strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.footer-brand-copy span,
.footer-note,
.footer-links p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.footer-links a {
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 63, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.05);
}

.blog-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card .btn {
  width: fit-content;
  margin-top: auto;
}

.blog-card-meta,
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-post-meta {
  margin-top: 16px;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 115, 232, 0.12);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
}

.blog-article > :first-child {
  margin-top: 0;
}

.blog-article h1,
.blog-article h2,
.blog-article h3 {
  margin: 1.5em 0 0.55em;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink-strong);
}

.blog-article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.blog-article h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.blog-article h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.blog-article p,
.blog-article li,
.blog-article blockquote {
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.blog-article p {
  margin: 0 0 1.1em;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}

.blog-article li + li {
  margin-top: 0.5em;
}

.blog-article blockquote {
  margin: 1.5em 0;
  padding: 1px 0 1px 18px;
  border-left: 4px solid rgba(31, 115, 232, 0.28);
}

.blog-article pre {
  overflow-x: auto;
  margin: 1.5em 0;
  padding: 16px;
  border: 1px solid rgba(16, 36, 63, 0.08);
  border-radius: 16px;
  background: #10243f;
  color: #f3f7fd;
}

.blog-article code {
  padding: 0.15em 0.4em;
  border-radius: 8px;
  background: rgba(16, 36, 63, 0.08);
  color: var(--ink-strong);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.92em;
}

.blog-article pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.blog-article a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
}

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

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

@media (max-width: 1120px) {
  .hero,
  .page-hero,
  .insight-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .numbers-grid,
  .module-grid,
  .workflow-grid,
  .demo-benefits,
  .detail-grid,
  .resource-grid,
  .link-grid,
  .kpi-strip,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-shell {
    width: min(var(--content-width), calc(100% - 20px));
  }

  .site-header {
    top: 10px;
    gap: 12px;
    border-radius: 28px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(16, 36, 63, 0.08);
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero-copy,
  .hero-panel,
  .numbers-band,
  .platform-section,
  .compare-section,
  .workflow-section,
  .insight-section,
  .faq-section,
  .demo-section {
    padding: 22px;
    border-radius: 26px;
  }

  .proof-grid,
  .numbers-grid,
  .module-grid,
  .workflow-grid,
  .compare-grid,
  .board-grid,
  .demo-benefits,
  .panel-surface-grid,
  .detail-grid,
  .resource-grid,
  .sequence-grid,
  .callout-grid,
  .kpi-strip,
  .link-grid,
  .blog-grid,
  .split-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topline {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }

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

  .brand-copy span {
    letter-spacing: 0.06em;
  }

  main {
    padding-top: 18px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-intro,
  .page-hero-copy p,
  .section-heading p,
  .insight-copy p,
  .demo-copy p {
    font-size: 0.97rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .page-hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .page-hero-actions .btn,
  .demo-form .btn {
    width: 100%;
  }

  .hero-chip-row span,
  .role-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .proof-grid,
  .numbers-grid,
  .module-grid,
  .workflow-grid,
  .demo-benefits,
  .detail-grid,
  .resource-grid,
  .sequence-grid,
  .callout-grid,
  .kpi-strip,
  .link-grid,
  .blog-grid,
  .split-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 10px;
  }
}

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

  .reveal,
  .btn,
  .site-nav a,
  .nav-toggle span {
    transition: none;
  }
}

/* Enterprise refresh */

:root {
  --bg: #eef3f8;
  --bg-strong: #08111e;
  --ink: #11243e;
  --ink-strong: #08111f;
  --muted: #61718a;
  --muted-strong: #405168;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #0b1728;
  --surface-dark-strong: #101f35;
  --accent: #2a63f6;
  --accent-strong: #1b47bf;
  --accent-soft: #8ed2ff;
  --accent-mint: #18b89a;
  --line: rgba(9, 20, 38, 0.1);
  --line-strong: rgba(9, 20, 38, 0.18);
  --shadow: 0 40px 90px rgba(8, 17, 31, 0.16);
  --shadow-soft: 0 24px 54px rgba(8, 17, 31, 0.08);
  --shadow-card: 0 18px 36px rgba(8, 17, 31, 0.06);
  --content-width: 100%;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

body {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #edf2f8 44%, #eef3f8 100%);
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    repeating-linear-gradient(
      90deg,
      rgba(17, 36, 62, 0.03) 0,
      rgba(17, 36, 62, 0.03) 1px,
      transparent 1px,
      transparent 108px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 39rem;
  background:
    radial-gradient(circle at 14% 14%, rgba(142, 210, 255, 0.18), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(42, 99, 246, 0.22), transparent 24%),
    linear-gradient(135deg, #08111f 0%, #10233a 52%, #14345f 100%);
  pointer-events: none;
  z-index: 0;
}

.site-shell {
  width: min(var(--content-width), calc(100% - 24px));
  padding-bottom: 44px;
}

.topline {
  margin-top: 22px;
  padding: 12px 20px;
  border: 1px solid rgba(142, 210, 255, 0.12);
  background: rgba(8, 17, 31, 0.48);
  color: rgba(240, 246, 255, 0.88);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  top: 16px;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(142, 210, 255, 0.12);
  background: rgba(8, 17, 31, 0.7);
  box-shadow: 0 24px 44px rgba(8, 17, 31, 0.2);
}

.site-header[data-scrolled="true"] {
  background: rgba(8, 17, 31, 0.88);
  box-shadow: 0 28px 56px rgba(8, 17, 31, 0.26);
}

.brand-copy strong,
.brand-copy span,
.site-nav a,
.site-header .btn-secondary,
.hero-copy h1,
.page-hero-copy h1,
.hero-panel h2,
.page-hero-card h2 {
  color: #fff;
}

.brand-copy span {
  color: rgba(214, 230, 255, 0.74);
}

.site-nav {
  gap: 10px;
}

.site-nav a {
  color: rgba(229, 239, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  background: #fff;
}

.btn {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-primary {
  background: linear-gradient(180deg, #2f70ff 0%, #1949c9 100%);
  box-shadow: 0 16px 32px rgba(42, 99, 246, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(42, 99, 246, 0.3);
}

.btn-secondary {
  border-color: rgba(17, 36, 62, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-strong);
}

.site-header .btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.site-header .btn-secondary:hover,
.site-header .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.content-section,
.numbers-band,
.platform-section,
.compare-section,
.workflow-section,
.insight-section,
.faq-section,
.demo-section,
.role-strip,
.site-footer {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.9) 100%);
  box-shadow: var(--shadow-soft);
}

.hero,
.page-hero {
  gap: 24px;
  align-items: start;
}

.hero.hero-premium {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.page-hero-card {
  border: 1px solid rgba(142, 210, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.page-hero-card,
.architecture-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(142, 210, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #08111f 0%, #10233a 48%, #14345f 100%);
  color: #fff;
}

.hero-copy,
.page-hero-copy {
  padding: 40px;
}

.hero-panel,
.page-hero-card {
  padding: 28px;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.hero-panel h2,
.page-hero-card h2,
.insight-copy h2,
.demo-copy h2,
.callout-card h3,
.architecture-card h3,
.blog-article h1,
.blog-article h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3.3rem, 6vw, 5.6rem);
}

.page-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.hero-intro,
.page-hero-copy p,
.page-hero-card p,
.hero-support-line,
.section-note {
  color: rgba(231, 240, 255, 0.8);
}

.hero-intro {
  max-width: 60ch;
  margin-top: 20px;
  font-size: 1.05rem;
}

.hero-support-line {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.section-pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 244, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.section-pill-dark {
  background: rgba(142, 210, 255, 0.08);
  color: var(--accent-soft);
}

.hero-chip-row,
.pill-row,
.integration-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row {
  margin-top: 24px;
}

.hero-chip-row span,
.pill,
.integration-marquee span,
.role-strip span {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(17, 36, 62, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-chip-row span,
.page-hero-card .pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(235, 244, 255, 0.86);
}

.proof-grid,
.numbers-grid,
.module-grid,
.workflow-grid,
.demo-benefits,
.detail-grid,
.resource-grid,
.link-grid,
.kpi-strip,
.blog-grid,
.footer-grid,
.callout-grid,
.split-grid,
.sequence-grid {
  gap: 16px;
}

.proof-card,
.number-card,
.module-card,
.workflow-card,
.compare-card,
.board-grid article,
.demo-benefits article,
.detail-card,
.resource-card,
.sequence-card,
.callout-card,
.split-card,
.kpi-card,
.link-card,
.blog-card,
.request-sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.92) 100%);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.proof-card:hover,
.number-card:hover,
.module-card:hover,
.workflow-card:hover,
.compare-card:hover,
.board-grid article:hover,
.demo-benefits article:hover,
.detail-card:hover,
.resource-card:hover,
.sequence-card:hover,
.callout-card:hover,
.split-card:hover,
.kpi-card:hover,
.link-card:hover,
.blog-card:hover,
.request-sidebar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 99, 246, 0.18);
  box-shadow: 0 24px 48px rgba(8, 17, 31, 0.1);
}

.proof-card,
.number-card,
.module-card,
.workflow-card,
.compare-card,
.board-grid article,
.demo-benefits article,
.detail-card,
.resource-card,
.sequence-card,
.callout-card,
.split-card,
.kpi-card,
.link-card,
.blog-card,
.request-sidebar-card {
  padding: 22px;
}

.proof-card p,
.number-card p,
.module-card p,
.workflow-card p,
.compare-list li,
.insight-copy p,
.insight-list li,
.board-grid p,
.faq-item p,
.demo-copy p,
.demo-benefits p,
.form-feedback,
.detail-card p,
.resource-card p,
.sequence-card p,
.callout-card p,
.split-card p,
.kpi-card p,
.link-card p,
.blog-card p,
.request-sidebar-card p {
  color: var(--muted);
}

.proof-card-stat {
  position: relative;
}

.proof-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 38px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(42, 99, 246, 0.08);
  color: var(--accent-strong);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-panel-premium {
  position: relative;
  overflow: hidden;
}

.hero-panel-premium::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 210, 255, 0.28) 0%, rgba(142, 210, 255, 0) 72%);
  pointer-events: none;
}

.hero-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(142, 210, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.hero-window-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(142, 210, 255, 0.1);
}

.hero-window-dots {
  display: inline-flex;
  gap: 6px;
}

.hero-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-window-dots span:first-child {
  background: rgba(255, 255, 255, 0.5);
}

.hero-window-dots span:nth-child(2) {
  background: rgba(142, 210, 255, 0.45);
}

.hero-window-dots span:last-child {
  background: rgba(24, 184, 154, 0.5);
}

.hero-window-label,
.hero-window-state {
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-window-label {
  color: rgba(236, 244, 255, 0.88);
}

.hero-window-state {
  margin-left: auto;
  color: var(--accent-soft);
}

.hero-workspace {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 428px;
}

.workspace-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(142, 210, 255, 0.08);
  background: rgba(8, 17, 31, 0.22);
}

.workspace-nav-label,
.metric-label,
.workspace-card-head span,
.stack-title,
.hero-float-card span {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.queue-item {
  display: grid;
  gap: 4px;
  padding: 12px 12px 13px;
  border: 1px solid rgba(142, 210, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.queue-item strong {
  color: #f5f8ff;
  font-size: 0.95rem;
}

.queue-item span {
  color: rgba(231, 240, 255, 0.68);
  font-size: 0.82rem;
}

.queue-item.is-active {
  border-color: rgba(142, 210, 255, 0.2);
  background: rgba(142, 210, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-hero-card .mini-list li,
.hero-panel .mini-list li {
  color: rgba(236, 244, 255, 0.82);
}

.workspace-main {
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.workspace-metric,
.workspace-card {
  border: 1px solid rgba(142, 210, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.workspace-metric {
  padding: 14px 16px;
}

.workspace-metric strong,
.workspace-card-head strong {
  display: block;
  margin-top: 10px;
  color: #fff;
}

.workspace-metric strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.9rem;
  letter-spacing: -0.06em;
}

.workspace-metric p,
.workspace-note,
.timeline-item p {
  margin: 8px 0 0;
  color: rgba(231, 240, 255, 0.7);
  font-size: 0.88rem;
}

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

.workspace-card {
  padding: 16px;
}

.workspace-card-wide {
  grid-column: 1 / span 2;
}

.workspace-card-head {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.workspace-table {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(8, 17, 31, 0.2);
  color: rgba(236, 244, 255, 0.86);
  font-size: 0.84rem;
}

.table-row span:first-child {
  font-weight: 700;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-high {
  background: rgba(255, 108, 99, 0.16);
  color: #ffc1bb;
}

.status-medium {
  background: rgba(255, 197, 74, 0.16);
  color: #ffd783;
}

.status-low {
  background: rgba(24, 184, 154, 0.16);
  color: #8ef0dc;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
}

.timeline-item + .timeline-item {
  border-top: 1px solid rgba(142, 210, 255, 0.08);
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #2d7dff 100%);
  box-shadow: 0 0 0 5px rgba(142, 210, 255, 0.08);
}

.timeline-item strong {
  color: #fff;
  font-size: 0.95rem;
}

.forecast-bars {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.forecast-bar {
  display: grid;
  gap: 8px;
}

.forecast-bar span {
  color: rgba(236, 244, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.forecast-bar strong {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-soft) 0%, var(--accent) 100%);
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(142, 210, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.86);
  box-shadow: 0 18px 34px rgba(8, 17, 31, 0.22);
  backdrop-filter: blur(14px);
}

.hero-float-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(242, 247, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-float-card-top {
  top: 38px;
  right: 28px;
}

.hero-float-card-bottom {
  right: 30px;
  bottom: 28px;
}

.role-strip {
  gap: 10px;
  justify-content: flex-start;
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.integration-section .section-heading,
.integration-section .integration-marquee,
.integration-notes {
  margin-top: 22px;
}

.section-heading {
  max-width: 74ch;
}

.section-heading h2,
.insight-copy h2,
.demo-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  color: var(--ink-strong);
}

.section-heading p,
.board-header span,
.footer-note,
.footer-meta,
.blog-post-meta,
.blog-card-meta {
  color: var(--muted);
}

.resource-type,
.compare-label,
.board-kicker {
  background: rgba(42, 99, 246, 0.08);
  color: var(--accent-strong);
}

.compare-card-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 252, 0.98) 100%);
}

.compare-card-accent {
  background:
    linear-gradient(180deg, rgba(42, 99, 246, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.workflow-card span,
.sequence-step,
.panel-flow span {
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #2f70ff 0%, #1949c9 100%);
}

.insight-section,
.demo-section {
  padding: 32px;
}

.insight-board {
  border-color: var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.board-header strong {
  color: var(--ink-strong);
}

.architecture-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.architecture-card {
  padding: 26px;
  border: 1px solid rgba(142, 210, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.architecture-card .resource-type {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 244, 255, 0.88);
}

.architecture-card h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
}

.integration-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.integration-column {
  padding: 18px;
  border: 1px solid rgba(142, 210, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.platform-node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  min-width: 140px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #2f70ff 0%, #1949c9 100%);
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 20px 34px rgba(42, 99, 246, 0.22);
}

.stack-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.stack-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
  font-weight: 700;
}

.architecture-card .stack-list li {
  color: rgba(235, 244, 255, 0.82);
}

.stack-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  transform: translateY(-50%);
}

.governance-stack,
.request-sidebar {
  display: grid;
  gap: 16px;
}

.request-section .section-heading {
  margin-bottom: 24px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.demo-form,
.request-sidebar-card {
  border-color: var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}

.demo-form {
  gap: 16px;
  padding: 24px;
}

.demo-form label {
  color: var(--ink-strong);
  font-weight: 700;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  border: 1px solid rgba(17, 36, 62, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.demo-form input:focus-visible,
.demo-form select:focus-visible,
.demo-form textarea:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(42, 99, 246, 0.28);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(42, 99, 246, 0.08);
}

.request-sidebar-card h3 {
  margin: 10px 0 0;
  color: var(--ink-strong);
  font-size: 1.12rem;
}

.request-sidebar-card p {
  margin-top: 12px;
}

.site-footer {
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

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

.footer-brand-copy strong,
.footer-links strong {
  color: var(--ink-strong);
}

.footer-brand-copy span,
.footer-links a,
.footer-meta span {
  color: var(--muted-strong);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(24, 184, 154, 0.1);
  color: #10826d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-meta,
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
}

.blog-article {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}

.blog-article h1 {
  margin: 0 0 20px;
  color: var(--ink-strong);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.blog-article h2 {
  margin: 32px 0 14px;
  color: var(--ink-strong);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.blog-article p,
.blog-article li {
  color: var(--muted-strong);
}

.blog-article ul {
  padding-left: 22px;
}

.form-feedback.is-success {
  color: var(--accent-strong);
}

@media (max-width: 1180px) {
  .hero,
  .page-hero,
  .insight-section,
  .demo-section,
  .architecture-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .workspace-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(142, 210, 255, 0.08);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .queue-item:first-of-type {
    grid-column: 1 / -1;
  }

  .proof-grid,
  .detail-grid,
  .resource-grid,
  .link-grid,
  .kpi-strip,
  .blog-grid,
  .footer-grid,
  .workflow-grid,
  .sequence-grid,
  .callout-grid,
  .demo-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1360px) {
  .hero.hero-premium,
  .page-hero,
  .architecture-layout,
  .request-layout,
  .insight-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .numbers-grid,
  .module-grid,
  .workflow-grid,
  .sequence-grid,
  .kpi-strip,
  .demo-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workspace-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(142, 210, 255, 0.08);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(var(--content-width), calc(100% - 16px));
  }

  .site-header {
    gap: 12px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .site-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(8, 17, 31, 0.96);
  }

  .site-nav a {
    color: rgba(236, 244, 255, 0.86);
  }

  .hero-copy,
  .hero-panel,
  .page-hero-copy,
  .page-hero-card,
  .content-section,
  .numbers-band,
  .platform-section,
  .compare-section,
  .workflow-section,
  .insight-section,
  .faq-section,
  .demo-section,
  .site-footer {
    padding: 24px;
    border-radius: 28px;
  }

  .proof-grid,
  .detail-grid,
  .resource-grid,
  .link-grid,
  .kpi-strip,
  .blog-grid,
  .footer-grid,
  .workflow-grid,
  .sequence-grid,
  .callout-grid,
  .demo-benefits,
  .numbers-grid,
  .module-grid,
  .field-grid,
  .split-grid,
  .board-grid,
  .workspace-grid,
  .workspace-metrics,
  .integration-stack,
  .workspace-sidebar {
    grid-template-columns: 1fr;
  }

  .workspace-card-wide,
  .queue-item:first-of-type {
    grid-column: auto;
  }

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

  .hero-float-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  body::after {
    height: 33rem;
  }

  .topline {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 0.74rem;
  }

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

  .site-shell {
    width: min(var(--content-width), calc(100% - 12px));
  }

  .hero-copy,
  .page-hero-copy,
  .hero-panel,
  .page-hero-card,
  .content-section,
  .numbers-band,
  .platform-section,
  .compare-section,
  .workflow-section,
  .insight-section,
  .faq-section,
  .demo-section,
  .site-footer {
    padding: 20px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-actions,
  .page-hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .page-hero-actions .btn,
  .demo-form .btn {
    width: 100%;
  }

  .hero-chip-row span,
  .pill,
  .integration-marquee span,
  .role-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Clean commercial layout */

main > .content-section,
main > .numbers-band,
main > .platform-section,
main > .workflow-section,
main > .insight-section,
main > .faq-section {
  margin-top: 0;
  padding: 72px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main > .compare-section,
main > .demo-section {
  margin-top: 26px;
  padding: 42px;
  border: 1px solid rgba(17, 36, 62, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.94) 100%);
  box-shadow: var(--shadow-soft);
}

main > .content-section + .content-section,
main > .content-section + .compare-section,
main > .content-section + .workflow-section,
main > .workflow-section + .content-section,
main > .compare-section + .content-section,
main > .numbers-band + .content-section,
main > .platform-section + .content-section,
main > .role-strip + .content-section,
main > .page-hero + .content-section,
main > .hero + .content-section {
  border-top: 1px solid rgba(17, 36, 62, 0.08);
}

.section-heading {
  max-width: 62rem;
}

.section-heading p {
  max-width: 54rem;
  font-size: 1.03rem;
}

.detail-grid,
.resource-grid,
.link-grid,
.sequence-grid,
.split-grid,
.blog-grid {
  gap: 28px 34px;
  margin-top: 28px;
}

.detail-card,
.resource-card,
.sequence-card,
.split-card,
.link-card,
.blog-card,
.kpi-card {
  min-height: 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(17, 36, 62, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-card:hover,
.resource-card:hover,
.sequence-card:hover,
.split-card:hover,
.link-card:hover,
.blog-card:hover,
.kpi-card:hover {
  transform: none;
  border-color: rgba(17, 36, 62, 0.18);
  box-shadow: none;
}

.detail-card h3,
.resource-card h3,
.sequence-card h3,
.split-card h3,
.link-card h3,
.blog-card h3,
.kpi-card span {
  font-size: 1.18rem;
}

.callout-grid {
  gap: 18px;
  margin-top: 30px;
}

.callout-card {
  padding: 28px;
  border: 1px solid rgba(17, 36, 62, 0.08);
  border-radius: 24px;
  background: rgba(42, 99, 246, 0.04);
  box-shadow: none;
}

.callout-card:hover {
  transform: none;
  box-shadow: none;
}

.resource-card .btn-secondary,
.link-card .btn-secondary,
.blog-card .btn-secondary {
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
  box-shadow: none;
}

.resource-card .btn-secondary:hover,
.resource-card .btn-secondary:focus-visible,
.link-card .btn-secondary:hover,
.link-card .btn-secondary:focus-visible,
.blog-card .btn-secondary:hover,
.blog-card .btn-secondary:focus-visible {
  transform: none;
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  box-shadow: none;
}

.compare-grid {
  gap: 24px;
}

.compare-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.compare-card:hover {
  transform: none;
  box-shadow: none;
}

.compare-card-muted,
.compare-card-accent {
  background: transparent;
}

.compare-list {
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 36, 62, 0.12);
}

.insight-board,
.demo-form,
.request-sidebar-card {
  box-shadow: none;
}

body[data-page="resources"] .resource-grid,
body[data-page="index"] .detail-grid,
body[data-page="platform"] .detail-grid,
body[data-page="solutions"] .detail-grid,
body[data-page="operations"] .detail-grid {
  align-items: start;
}

body[data-page="resources"] .content-section,
body[data-page="demo"] .content-section {
  padding-top: 62px;
  padding-bottom: 62px;
}

@media (max-width: 860px) {
  main > .content-section,
  main > .numbers-band,
  main > .platform-section,
  main > .workflow-section,
  main > .insight-section,
  main > .faq-section {
    padding: 48px 0;
  }

  main > .compare-section,
  main > .demo-section {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .detail-grid,
  .resource-grid,
  .link-grid,
  .sequence-grid,
  .split-grid,
  .blog-grid {
    gap: 22px;
  }
}

/* Contrast and editorial refresh */

:root {
  --ink: #0e1d33;
  --ink-strong: #071322;
  --muted: #43536c;
  --muted-strong: #22324a;
  --line: rgba(10, 22, 40, 0.14);
  --line-strong: rgba(10, 22, 40, 0.22);
}

body {
  background:
    radial-gradient(circle at 14% 28%, rgba(42, 99, 246, 0.08), transparent 22%),
    radial-gradient(circle at 88% 44%, rgba(24, 184, 154, 0.07), transparent 20%),
    radial-gradient(circle at 30% 78%, rgba(142, 210, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 30%, #fbfdff 64%, #eef4fb 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(
      90deg,
      rgba(17, 36, 62, 0.022) 0,
      rgba(17, 36, 62, 0.022) 1px,
      transparent 1px,
      transparent 128px
    );
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 32rem 0 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(42, 99, 246, 0.05), transparent 18%),
    radial-gradient(circle at 92% 34%, rgba(24, 184, 154, 0.05), transparent 18%),
    radial-gradient(circle at 34% 68%, rgba(142, 210, 255, 0.08), transparent 22%);
  pointer-events: none;
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
}

.hero-copy,
.page-hero-copy {
  padding: 42px 0 38px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero.hero-premium,
.page-hero {
  padding: 34px 32px 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(142, 210, 255, 0.12), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(42, 99, 246, 0.16), transparent 24%),
    linear-gradient(160deg, #08111f 0%, #0f243d 52%, #123560 100%);
}

.hero-panel,
.page-hero-card {
  border: 1px solid rgba(142, 210, 255, 0.12);
  border-radius: 28px;
  box-shadow: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(142, 210, 255, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(8, 17, 31, 0.9) 0%, rgba(16, 35, 58, 0.88) 100%);
}

.hero-copy h1,
.page-hero-copy h1 {
  max-width: 11ch;
}

.proof-grid {
  gap: 18px;
  margin-top: 30px;
}

.proof-card {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.proof-card p {
  color: rgba(235, 243, 255, 0.76);
}

.section-heading h2,
.insight-copy h2,
.demo-copy h2,
.detail-card h3,
.resource-card h3,
.sequence-card h3,
.split-card h3,
.link-card h3,
.blog-card h3,
.callout-card h3 {
  color: var(--ink-strong);
}

.section-heading p,
.detail-card p,
.resource-card p,
.sequence-card p,
.split-card p,
.link-card p,
.blog-card p,
.request-sidebar-card p,
.demo-copy p,
.board-grid p,
.footer-note,
.footer-meta span {
  color: var(--muted);
}

.detail-card p,
.resource-card p,
.sequence-card p,
.split-card p,
.link-card p,
.blog-card p,
.compare-list li,
.stack-list li,
.split-card li,
.bullet-list li,
.insight-list li {
  color: var(--muted-strong);
}

.content-section .section-pill,
.compare-section .section-pill,
.workflow-section .section-pill,
.insight-section .section-pill,
.faq-section .section-pill,
.demo-section .section-pill,
.section-heading .section-pill,
.resource-card .resource-type,
.blog-card .resource-type,
.link-card .resource-type,
.request-sidebar-card .resource-type {
  border-color: rgba(16, 36, 62, 0.14);
  background: rgba(42, 99, 246, 0.08);
  color: #173eaa;
}

.role-strip span {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: none;
}

main > .content-section,
main > .numbers-band,
main > .platform-section,
main > .workflow-section,
main > .insight-section,
main > .faq-section {
  padding: 82px 18px;
}

main > .content-section:nth-of-type(odd),
main > .numbers-band:nth-of-type(odd),
main > .platform-section:nth-of-type(odd),
main > .workflow-section:nth-of-type(odd),
main > .insight-section:nth-of-type(odd),
main > .faq-section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.82) 0%, rgba(243, 247, 253, 0.62) 100%);
}

main > .content-section:nth-of-type(even),
main > .numbers-band:nth-of-type(even),
main > .platform-section:nth-of-type(even),
main > .workflow-section:nth-of-type(even),
main > .insight-section:nth-of-type(even),
main > .faq-section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(244, 248, 255, 0.48) 100%);
}

main > .content-section + .content-section,
main > .content-section + .compare-section,
main > .content-section + .workflow-section,
main > .workflow-section + .content-section,
main > .compare-section + .content-section,
main > .numbers-band + .content-section,
main > .platform-section + .content-section,
main > .role-strip + .content-section,
main > .page-hero + .content-section,
main > .hero + .content-section {
  border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.compare-section,
.demo-section {
  box-shadow: none;
}

.compare-card,
.callout-card,
.request-sidebar-card,
.insight-board,
.demo-form {
  background: transparent;
}

.callout-card,
.request-sidebar-card {
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(42, 99, 246, 0.22);
  border-radius: 0;
}

.insight-board,
.demo-form {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.request-layout {
  gap: 42px;
}

.request-sidebar {
  gap: 28px;
  padding-top: 18px;
  border-left: 1px solid rgba(10, 22, 40, 0.1);
  padding-left: 34px;
}

.demo-form {
  gap: 20px;
}

.demo-form label {
  color: var(--ink-strong);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  border-width: 0 0 1px;
  border-color: rgba(10, 22, 40, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--ink-strong);
  box-shadow: none;
  padding: 12px 0;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #566983;
}

.demo-form input:focus-visible,
.demo-form select:focus-visible,
.demo-form textarea:focus-visible {
  box-shadow: none;
  border-color: var(--accent);
}

.resource-grid,
.detail-grid,
.split-grid,
.sequence-grid,
.link-grid,
.blog-grid {
  align-items: start;
}

.blog-article {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0;
}

.blog-article h1,
.blog-article h2 {
  color: var(--ink-strong);
}

.blog-article p,
.blog-article li {
  color: var(--muted-strong);
}

@media (max-width: 1360px) {
  .hero-copy,
  .page-hero-copy {
    padding-right: 0;
  }
}

@media (max-width: 1100px) {
  .request-layout {
    gap: 26px;
  }

  .request-sidebar {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(10, 22, 40, 0.1);
    padding-top: 28px;
  }
}

@media (max-width: 860px) {
  main > .content-section,
  main > .numbers-band,
  main > .platform-section,
  main > .workflow-section,
  main > .insight-section,
  main > .faq-section {
    padding: 56px 12px;
  }

  .hero-copy,
  .page-hero-copy {
    padding: 20px 0 28px;
  }

  .hero-panel,
  .page-hero-card {
    padding: 22px;
  }
}

/* Keep sections visible immediately so the page never shows blank layout bands. */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.role-strip {
  gap: 10px 16px;
  align-items: center;
  justify-content: flex-start;
  margin-top: -18px;
  padding: 24px 28px 18px;
  border: 1px solid rgba(142, 210, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.98) 0%, rgba(12, 28, 48, 0.94) 100%);
  box-shadow: none;
}

.role-strip span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(232, 241, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-strip span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(142, 210, 255, 0.28);
}

main > .role-strip + .content-section {
  border-top: 0;
  padding-top: 68px;
}

.integration-section {
  position: relative;
  overflow: hidden;
}

.integration-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 96px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.94) 0%, rgba(8, 17, 31, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.integration-section > * {
  position: relative;
  z-index: 1;
}

.hero.hero-premium .proof-grid {
  gap: 14px;
  margin-top: 24px;
}

.hero.hero-premium .proof-card {
  padding-top: 14px;
}

.hero.hero-premium .proof-card strong {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.hero.hero-premium .proof-card p {
  display: none;
}

.workspace-main {
  gap: 10px;
  padding: 16px;
}

.workspace-metrics,
.workspace-grid {
  gap: 10px;
}

.workspace-metric {
  padding: 12px 14px;
}

.workspace-card {
  padding: 14px;
}

.workspace-card-head {
  margin-bottom: 10px;
}

.table-row {
  padding: 9px 10px;
}

.action-timeline {
  gap: 10px;
}

.workspace-note {
  display: none;
}

@media (max-width: 1360px) {
  .role-strip span {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .role-strip {
    margin-top: -12px;
    padding: 18px 18px 14px;
    gap: 8px;
  }

  .role-strip span {
    width: 100%;
    gap: 0;
  }

  .role-strip span:not(:last-child)::after {
    display: none;
  }
}

/* Remove the fixed top-of-viewport overlay and any simulated hero-to-section fade. */
body::after {
  display: none;
}

.role-strip {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.role-strip span {
  color: #5a6b83;
}

.role-strip span:not(:last-child)::after {
  background: rgba(10, 22, 40, 0.24);
}

main > .role-strip + .content-section {
  border-top: 1px solid rgba(10, 22, 40, 0.1);
  padding-top: 82px;
}

.integration-section {
  overflow: visible;
}

.integration-section::before {
  display: none;
}

@media (max-width: 860px) {
  .role-strip {
    margin-top: 16px;
    padding: 0;
  }
}

/* De-emphasize the footer so it reads as utility, not a featured section. */
.site-footer {
  margin-top: 28px;
  padding: 18px 0 8px;
  border: 0;
  border-top: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid {
  gap: 18px;
}

.footer-brand {
  gap: 8px;
}

.footer-brand-top img {
  opacity: 0.86;
}

.footer-brand-copy strong,
.footer-links strong {
  color: #2d3a4f;
}

.footer-brand-copy span,
.footer-note,
.footer-links a,
.footer-meta span {
  color: #66758b;
}

.footer-brand-copy span,
.footer-note,
.footer-links a {
  font-size: 0.92rem;
}

.footer-note {
  max-width: 56ch;
}

.footer-links {
  gap: 6px;
}

.footer-links a {
  font-weight: 600;
}

.footer-meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  font-size: 0.86rem;
}

@media (max-width: 860px) {
  .site-footer {
    padding: 16px 0 6px;
  }
}

/* Tone the homepage hero down so it sets context without overpowering the page. */
.hero.hero-premium {
  padding: 26px 28px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 14%, rgba(142, 210, 255, 0.08), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(42, 99, 246, 0.1), transparent 22%),
    linear-gradient(160deg, #0c1a2b 0%, #12263d 52%, #183553 100%);
}

.hero.hero-premium .hero-copy {
  padding: 28px 0 22px;
}

.hero.hero-premium .hero-panel {
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(142, 210, 255, 0.08), transparent 22%),
    linear-gradient(160deg, rgba(10, 22, 40, 0.82) 0%, rgba(16, 35, 58, 0.8) 100%);
}

.hero.hero-premium .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 4.9vw, 4.6rem);
  letter-spacing: -0.05em;
}

.hero.hero-premium .hero-intro {
  max-width: 58ch;
  margin-top: 16px;
  font-size: 0.98rem;
  color: rgba(231, 240, 255, 0.72);
}

.hero.hero-premium .hero-actions {
  margin-top: 20px;
}

.hero.hero-premium .hero-support-line {
  max-width: 56ch;
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(231, 240, 255, 0.62);
}

.hero.hero-premium .hero-chip-row {
  gap: 8px;
  margin-top: 18px;
}

.hero.hero-premium .hero-chip-row span {
  min-height: 32px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(233, 242, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero.hero-premium .proof-grid {
  gap: 12px;
  margin-top: 18px;
}

.hero.hero-premium .proof-card {
  padding-top: 12px;
  border-top-color: rgba(255, 255, 255, 0.09);
}

.hero.hero-premium .proof-stat {
  min-width: 48px;
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.hero.hero-premium .proof-card strong {
  font-size: 0.88rem;
  color: rgba(236, 244, 255, 0.78);
}

.hero.hero-premium .workspace-main {
  gap: 8px;
  padding: 14px;
}

.hero.hero-premium .workspace-metrics,
.hero.hero-premium .workspace-grid {
  gap: 8px;
}

.hero.hero-premium .workspace-metric {
  padding: 10px 12px;
}

.hero.hero-premium .workspace-metric strong {
  font-size: 1.65rem;
}

.hero.hero-premium .workspace-card {
  padding: 12px;
  border-radius: 18px;
}

.hero.hero-premium .workspace-card-head strong {
  margin-top: 8px;
  font-size: 0.98rem;
}

.hero.hero-premium .table-row {
  padding: 8px 9px;
  font-size: 0.86rem;
}

@media (max-width: 1360px) {
  .hero.hero-premium {
    padding: 24px 24px 26px;
  }
}

@media (max-width: 860px) {
  .hero.hero-premium {
    padding: 20px 20px 22px;
    border-radius: 26px;
  }

  .hero.hero-premium .hero-copy {
    padding: 20px 0 18px;
  }

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

  .hero.hero-premium .hero-panel {
    padding: 18px;
  }
}

/* Cap the homepage hero so it never dominates more than roughly two-thirds of the viewport. */
.hero.hero-premium {
  max-height: min(66svh, 760px);
  overflow: hidden;
}

.hero.hero-premium .hero-copy,
.hero.hero-premium .hero-panel {
  min-height: 0;
}

.hero.hero-premium .hero-copy {
  display: grid;
  align-content: start;
}

.hero.hero-premium .hero-support-line,
.hero.hero-premium .proof-grid,
.hero.hero-premium .hero-float-card {
  display: none;
}

.hero.hero-premium .hero-chip-row span:nth-child(n + 3) {
  display: none;
}

.hero.hero-premium .hero-panel {
  align-self: stretch;
}

.hero.hero-premium .hero-window,
.hero.hero-premium .hero-workspace {
  height: 100%;
}

.hero.hero-premium .hero-workspace {
  min-height: 0;
  grid-template-columns: 160px minmax(0, 1fr);
}

.hero.hero-premium .workspace-sidebar {
  gap: 8px;
  padding: 12px;
}

.hero.hero-premium .workspace-sidebar .queue-item:last-of-type,
.hero.hero-premium .workspace-grid .workspace-card:last-child {
  display: none;
}

@media (max-width: 860px) {
  .hero.hero-premium {
    max-height: min(66svh, 640px);
  }

  .hero.hero-premium .hero-copy {
    padding: 14px 0 8px;
  }

  .hero.hero-premium .hero-copy h1 {
    font-size: clamp(2.05rem, 9.6vw, 3.15rem);
  }

  .hero.hero-premium .hero-intro {
    margin-top: 12px;
    font-size: 0.93rem;
  }

  .hero.hero-premium .hero-actions {
    margin-top: 14px;
  }

  .hero.hero-premium .hero-panel {
    display: none;
  }

  .hero.hero-premium .hero-chip-row span:nth-child(n + 2) {
    display: none;
  }
}

/* More aggressive hero compression so the opening section reads as a lead-in, not a takeover. */
.hero.hero-premium {
  max-height: min(52svh, 580px);
  padding: 20px 24px 22px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.hero.hero-premium .hero-copy {
  padding: 18px 0 10px;
}

.hero.hero-premium .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 3.9vw, 3.85rem);
}

.hero.hero-premium .hero-intro {
  max-width: 52ch;
  margin-top: 12px;
  font-size: 0.92rem;
}

.hero.hero-premium .hero-actions {
  margin-top: 14px;
}

.hero.hero-premium .hero-actions .btn {
  padding: 12px 18px;
}

.hero.hero-premium .hero-chip-row {
  margin-top: 14px;
}

.hero.hero-premium .hero-chip-row span {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 0.76rem;
}

.hero.hero-premium .hero-panel {
  padding: 16px;
}

.hero.hero-premium .hero-window-bar {
  padding: 10px 14px;
}

.hero.hero-premium .hero-workspace {
  grid-template-columns: 136px minmax(0, 1fr);
}

.hero.hero-premium .workspace-sidebar {
  gap: 6px;
  padding: 10px;
}

.hero.hero-premium .queue-item {
  gap: 0;
  padding: 10px 10px 11px;
}

.hero.hero-premium .queue-item span,
.hero.hero-premium .workspace-metric p {
  display: none;
}

.hero.hero-premium .workspace-metric {
  padding: 9px 10px;
}

.hero.hero-premium .workspace-metric strong {
  font-size: 1.35rem;
}

.hero.hero-premium .workspace-card {
  padding: 10px;
}

.hero.hero-premium .workspace-card-head {
  margin-bottom: 8px;
}

.hero.hero-premium .workspace-card-head strong {
  margin-top: 6px;
  font-size: 0.9rem;
}

.hero.hero-premium .workspace-grid .workspace-card:nth-child(n + 2),
.hero.hero-premium .hero-float-card,
.hero.hero-premium .workspace-sidebar .queue-item:last-of-type {
  display: none;
}

.hero.hero-premium .table-row {
  padding: 7px 8px;
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .hero.hero-premium {
    max-height: min(58svh, 620px);
    padding: 18px 18px 18px;
    grid-template-columns: 1fr;
  }

  .hero.hero-premium .hero-copy {
    padding: 10px 0 6px;
  }

  .hero.hero-premium .hero-copy h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  }

  .hero.hero-premium .hero-intro {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .hero.hero-premium .hero-chip-row {
    display: none;
  }
}

/* Final hierarchy pass: make the hero materially smaller and push the footer further into the background. */
.hero.hero-premium {
  max-height: min(44svh, 470px);
  padding: 16px 20px 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.hero.hero-premium .hero-copy {
  padding: 10px 0 4px;
}

.hero.hero-premium .hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3.25vw, 3.1rem);
  line-height: 0.96;
}

.hero.hero-premium .hero-intro {
  max-width: 46ch;
  margin-top: 10px;
  font-size: 0.86rem;
  color: rgba(231, 240, 255, 0.64);
}

.hero.hero-premium .hero-actions {
  gap: 10px;
  margin-top: 12px;
}

.hero.hero-premium .hero-actions .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero.hero-premium .hero-chip-row {
  display: none;
}

.hero.hero-premium .hero-panel {
  padding: 12px;
}

.hero.hero-premium .hero-window-bar {
  padding: 8px 12px;
}

.hero.hero-premium .hero-window-label,
.hero.hero-premium .hero-window-state {
  font-size: 0.76rem;
}

.hero.hero-premium .hero-workspace {
  grid-template-columns: 120px minmax(0, 1fr);
}

.hero.hero-premium .workspace-sidebar {
  gap: 5px;
  padding: 8px;
}

.hero.hero-premium .workspace-nav-label,
.hero.hero-premium .workspace-card-head span,
.hero.hero-premium .metric-label {
  font-size: 0.62rem;
}

.hero.hero-premium .queue-item {
  padding: 8px 8px 9px;
  border-radius: 14px;
}

.hero.hero-premium .queue-item strong {
  font-size: 0.84rem;
}

.hero.hero-premium .workspace-metrics,
.hero.hero-premium .workspace-grid {
  gap: 6px;
}

.hero.hero-premium .workspace-metric {
  padding: 8px 9px;
  border-radius: 16px;
}

.hero.hero-premium .workspace-metric strong {
  font-size: 1.18rem;
}

.hero.hero-premium .workspace-card {
  padding: 9px;
  border-radius: 16px;
}

.hero.hero-premium .workspace-card-head {
  margin-bottom: 6px;
}

.hero.hero-premium .workspace-card-head strong {
  font-size: 0.84rem;
}

.hero.hero-premium .table-row {
  padding: 6px 7px;
  font-size: 0.76rem;
  border-radius: 12px;
}

.hero.hero-premium .status-tag {
  min-width: 62px;
  min-height: 24px;
  font-size: 0.66rem;
}

.site-footer {
  margin-top: 24px;
  border-top-color: rgba(10, 22, 40, 0.07);
}

.footer-brand-top img {
  opacity: 0.7;
}

.footer-brand-copy strong,
.footer-links strong {
  color: #606d80;
}

.footer-brand-copy span,
.footer-note,
.footer-links a,
.footer-meta span {
  color: #8691a1;
}

.footer-links a {
  font-weight: 500;
}

.footer-meta {
  border-top-color: rgba(10, 22, 40, 0.06);
}

@media (max-width: 1100px) {
  .hero.hero-premium {
    grid-template-columns: 1fr;
    max-height: min(46svh, 500px);
  }

  .hero.hero-premium .hero-panel {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero.hero-premium {
    max-height: min(50svh, 520px);
    padding: 16px 16px 14px;
  }

  .hero.hero-premium .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .hero.hero-premium .hero-intro {
    font-size: 0.84rem;
  }
}

/* Compact shared page headers: lighter, shorter, and properly two-column on desktop. */
.page-hero {
  min-width: 0;
  gap: 20px;
  align-items: start;
  margin-top: 10px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(142, 210, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(142, 210, 255, 0.1), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(42, 99, 246, 0.12), transparent 22%),
    linear-gradient(160deg, #0c1a2b 0%, #12263d 52%, #183553 100%);
  box-shadow: none;
}

.page-hero-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 4px 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero-copy h1 {
  max-width: 13ch;
  margin-top: 12px;
  font-size: clamp(1.95rem, 3.05vw, 2.95rem);
  color: #fff;
  letter-spacing: -0.055em;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.page-hero-copy p {
  max-width: 58ch;
  margin-top: 10px;
  color: rgba(231, 240, 255, 0.76);
  font-size: 0.92rem;
}

.page-hero-copy .section-pill,
.page-hero-card .section-pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 244, 255, 0.9);
}

.page-hero-actions {
  gap: 10px;
  margin-top: 14px;
}

.page-hero-actions .btn {
  min-width: 0;
  max-width: 100%;
  padding-inline: 16px;
}

.page-hero .pill-row,
.page-hero .blog-post-meta {
  margin-top: 12px;
}

.page-hero .pill,
.page-hero .blog-post-meta span {
  min-height: 28px;
  max-width: 100%;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(235, 244, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: normal;
}

.page-hero-card {
  min-width: 0;
  align-self: start;
  padding: 16px 18px;
  border: 1px solid rgba(142, 210, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(142, 210, 255, 0.08), transparent 24%),
    linear-gradient(160deg, rgba(10, 22, 40, 0.78) 0%, rgba(16, 35, 58, 0.76) 100%);
  box-shadow: none;
}

.page-hero-card h2 {
  margin-top: 8px;
  font-size: clamp(1.18rem, 1.75vw, 1.55rem);
  color: #fff;
  line-height: 1.02;
}

.page-hero-card p,
.page-hero-card .mini-list li,
.page-hero .section-note {
  color: rgba(231, 240, 255, 0.76);
  font-size: 0.9rem;
}

.page-hero .mini-list {
  gap: 8px;
  margin-top: 12px;
}

.page-hero-card .mini-list li {
  padding-left: 18px;
}

.page-hero-card .mini-list li::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px rgba(31, 115, 232, 0.14);
}

main > .page-hero + .content-section {
  padding-top: 40px;
}

@media (min-width: 1025px) {
  .page-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  }
}

@media (max-width: 1024px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 6.8vw, 2.7rem);
  }

  .page-hero-card {
    padding: 15px 16px;
  }
}

@media (max-width: 640px) {
  .topline,
  .site-header,
  .page-hero,
  .page-hero-copy,
  .page-hero-card {
    max-width: 100%;
  }

  .site-shell {
    overflow-x: clip;
  }

  .topline {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .site-header {
    width: 100%;
  }

  .brand-copy {
    min-width: 0;
  }

  .page-hero {
    gap: 14px;
    padding: 14px 14px 12px;
    border-radius: 24px;
  }

  .page-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 9.8vw, 2.45rem);
  }

  .page-hero-copy p {
    font-size: 0.89rem;
  }

  .page-hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
  }

  .btn,
  .page-hero-actions .btn,
  .hero-actions .btn {
    padding: 10px 14px;
    font-size: 0.88rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero .pill-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero .pill,
  .page-hero .blog-post-meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
