.site-main {
  display: block;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  background:
    radial-gradient(circle at 12% 12%, rgba(85, 124, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(63, 184, 169, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.88) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.admin-shell__sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 12px;
  padding: 16px 14px;
  border-right: 1px solid rgba(85, 124, 255, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
}

.admin-shell__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-shell__brand .logo__wordmark-text {
  font-size: 1.0rem;
}

.admin-shell__brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(85, 124, 255, 0.12);
  color: var(--accent-blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-shell__sidebar-copy,
.admin-shell__sidebar-footer {
  display: grid;
  gap: 8px;
}

.admin-shell__sidebar-footer {
  margin-top: 4px;
}

.admin-shell__sidebar-copy p:last-child,
.admin-shell__sidebar-footer p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.admin-shell__nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.admin-shell__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(85, 124, 255, 0.08);
  color: var(--text-strong);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.2;
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.admin-shell__nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(85, 124, 255, 0.2);
  background: rgba(255, 255, 255, 0.88);
}

.admin-shell__nav-link.is-active {
  background: rgba(85, 124, 255, 0.14);
  border-color: rgba(85, 124, 255, 0.2);
  color: var(--accent-blue);
  box-shadow: inset 0 0 0 1px rgba(85, 124, 255, 0.04);
}

.admin-shell__sidebar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-shell__main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px clamp(18px, 3vw, 36px) 28px;
}

.admin-shell__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-shell__title {
  margin: 6px 0 0;
  color: var(--text-strong);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.admin-shell__intro {
  margin: 0;
  max-width: 68ch;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.admin-shell__header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.admin-shell__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(85, 124, 255, 0.12);
  color: var(--text-body);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-shell__notice {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(85, 124, 255, 0.12);
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.admin-shell__notice--hidden {
  display: none;
}

.admin-shell__notice.is-success {
  border-color: rgba(63, 184, 169, 0.22);
  background: rgba(63, 184, 169, 0.12);
}

.admin-shell__notice.is-error {
  border-color: rgba(213, 82, 104, 0.22);
  background: rgba(213, 82, 104, 0.1);
}

.admin-shell__bootstrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(85, 124, 255, 0.12) 0%, rgba(63, 184, 169, 0.08) 100%);
  border: 1px solid rgba(85, 124, 255, 0.14);
  box-shadow: 0 12px 28px rgba(24, 31, 41, 0.05);
}

.admin-shell__bootstrap--hidden {
  display: none;
}

.container {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-inline: clamp(22px, 4vw, 56px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.86);
  border-bottom-color: var(--line-subtle);
  box-shadow: 0 10px 24px rgba(24, 31, 41, 0.035);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(24px, 3vw, 44px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.logo__mark {
  flex-shrink: 0;
}

.logo__wordmark-text {
  display: inline-block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-bottom: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px;
}

.site-nav__primary {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav--app .site-nav__primary {
  display: none;
}

.site-nav--app {
  justify-content: flex-end;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.site-nav__cta {
  margin-left: 8px;
  white-space: nowrap;
}

.site-nav__auth {
  white-space: nowrap;
}

.site-nav__auth[hidden] {
  display: none !important;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.18;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.nav-link:hover {
  background: rgba(85, 124, 255, 0.06);
  color: var(--text-strong);
}

.nav-link.is-active {
  background: rgba(85, 124, 255, 0.09);
  color: var(--accent-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-subtle);
  box-shadow: var(--shadow-card);
}

.nav-toggle span {
  width: 20px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--text-strong);
  border-radius: 999px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-toggle.is-active span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.page-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  padding: calc(var(--nav-h) + clamp(10px, 2vw, 18px)) 0 clamp(56px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
  overflow: clip;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.page-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
}

.page-hero__glow--one {
  top: -120px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: rgba(85, 124, 255, 0.16);
}

.page-hero__glow--two {
  left: -80px;
  top: 140px;
  width: 360px;
  height: 360px;
  background: rgba(63, 184, 169, 0.12);
}

.page-hero__copy {
  position: relative;
  z-index: 1;
}

.page-hero__stack {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100svh - var(--nav-h) - clamp(72px, 8vw, 98px));
  transform: translateY(-6vh);
  padding-top: 0;
  gap: clamp(16px, 3vw, 24px);
}

.page-hero__copy--center {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  grid-template-columns: 1fr;
  grid-template-areas:
    'eyebrow'
    'title'
    'body'
    'actions';
  text-align: center;
}

.page-hero__eyebrow,
.section-eyebrow,
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__eyebrow {
  grid-area: eyebrow;
}

.page-hero__eyebrow::before,
.section-eyebrow::before,
.panel-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--grad-brand);
}

.page-hero__title {
  display: grid;
  gap: 6px;
  grid-area: title;
  width: min(100%, 760px);
  min-height: 3.35em;
  margin: 16px 0 0;
  font-size: clamp(2.15rem, 3.85vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.01;
  align-content: start;
  justify-items: center;
}

.page-hero__title-line {
  display: block;
  width: 100%;
  text-wrap: balance;
}

.page-hero__title-line--1 {
  color: var(--text-strong);
}

.page-hero__title-line--2 {
  color: var(--accent-blue);
}

.page-hero__title-line--3,
.page-hero__title-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero__body {
  grid-area: body;
  display: grid;
  align-content: start;
  max-width: 56ch;
  min-height: 6.9em;
  margin: 14px 0 0;
  color: var(--text-reading);
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  font-weight: 460;
  line-height: 1.72;
}

.page-hero__copy--center .page-hero__body {
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 50px;
  gap: 12px;
  margin: 18px 0 0;
}

.page-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
}

.page-hero__scroll-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__scroll-arrow {
  font-size: 1rem;
  line-height: 1;
}

.page-hero__copy--center .page-hero__actions {
  justify-content: center;
}

.page-hero__panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(85, 124, 255, 0.14);
  box-shadow: 0 18px 48px rgba(24, 31, 41, 0.06);
}

.hero-support__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.hero-support {
  padding-top: clamp(18px, 3vw, 28px);
}

.hero-support__visual .hero-visual {
  min-height: 280px;
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.hero-visual__ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  border: 1px solid rgba(85, 124, 255, 0.12);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-visual__ring--one {
  width: 164px;
  height: 164px;
}

.hero-visual__ring--two {
  width: 236px;
  height: 236px;
}

.hero-visual__core,
.hero-visual__node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-visual__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-visual__mesh-orbit,
.hero-visual__mesh-line {
  fill: none;
  stroke: url(#hero-visual-mesh-gradient);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual__mesh-orbit,
.hero-visual__mesh-line {
  opacity: 0.38;
}

.hero-visual__mesh-point {
  fill: rgba(85, 124, 255, 0.42);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 0.8;
}

.hero-visual__mesh-point--center {
  fill: rgba(125, 108, 242, 0.46);
}

.hero-visual__core {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual__core-icon,
.hero-visual__node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-visual__core-label,
.hero-visual__node-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-visual__node .icon svg,
.hero-visual__core .icon svg,
.feature-card__icon .icon svg,
.compare-card__icon .icon svg,
.step-card__icon .icon svg {
  width: 30px;
  height: 30px;
}

.hero-visual__core .icon svg {
  width: 38px;
  height: 38px;
}

.hero-visual__node--1 { top: 2px; left: 50%; transform: translateX(-50%); }
.hero-visual__node--2 { top: 44px; right: 0; }
.hero-visual__node--3 { bottom: 32px; right: 8px; }
.hero-visual__node--4 { bottom: 2px; left: 50%; transform: translateX(-50%); }
.hero-visual__node--5 { bottom: 32px; left: 8px; }
.hero-visual__node--6 { top: 44px; left: 0; }

.page-hero__panel-title,
.section-title,
.statement-title,
.cta-band__title,
.compare-card__title,
.split-panel__title,
.feature-card__title,
.step-card__title,
.site-footer__brand-name {
  color: var(--text-strong);
  letter-spacing: -0.035em;
}

.page-hero__panel-title {
  margin: 14px 0 12px;
  font-size: 1.58rem;
  font-weight: 700;
  line-height: 1.1;
}

.page-hero__panel-body,
.split-panel__body,
.split-copy,
.statement-copy,
.section-sub,
.feature-card__body,
.compare-card__list li,
.step-card__body {
  color: var(--text-reading);
}

.form-note,
.site-footer__brand-copy,
.site-footer__meta p {
  color: var(--text-body);
}

.page-hero__panel-list,
.split-panel__list,
.compare-card__list,
.form-detail-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.page-hero__panel-list li,
.split-panel__list li,
.compare-card__list li,
.form-detail-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  line-height: 1.58;
}

.page-hero__panel-list li::before,
.split-panel__list li::before,
.compare-card__list li::before,
.form-detail-list li::before {
  content: '→';
  color: var(--accent-blue);
  flex-shrink: 0;
}

.section {
  position: relative;
  padding: clamp(48px, 8vw, 120px) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(247, 243, 236, 0.22) 100%);
}

.section--tint {
  background: linear-gradient(180deg, rgba(238, 244, 255, 0.4) 0%, rgba(255, 255, 255, 0.22) 100%);
}

.section--warm {
  background: linear-gradient(180deg, rgba(252, 247, 239, 0.42) 0%, rgba(255, 255, 255, 0.22) 100%);
}

.section-intro,
.statement-wrap {
  max-width: 900px;
}

.section-intro {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.section-title,
.statement-title,
.cta-band__title {
  margin: 18px 0 18px;
  font-size: clamp(1.9rem, 4.5vw, 3.9rem);
  font-weight: 760;
  line-height: 1.02;
  text-wrap: balance;
}

.section-sub,
.statement-body,
.split-stack {
  max-width: 68ch;
}

.section-sub {
  font-size: 1.08rem;
  font-weight: 460;
  line-height: 1.84;
}

.split-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.site-footer {
  padding: 32px 0 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(24px, 3vw, 44px);
  display: grid;
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  gap: 14px;
  align-items: start;
}

.site-footer .logo__wordmark-text {
  font-size: 1.28rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 1040px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-shell__sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto auto auto;
    border-right: 0;
    border-bottom: 1px solid rgba(85, 124, 255, 0.1);
  }

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

  .page-hero {
    height: auto;
  }

  .page-hero__stack {
    min-height: calc(100svh - var(--nav-h) - clamp(30px, 5vw, 46px));
    transform: translateY(-4vh);
    padding-top: 0;
  }

  .split-layout,
  .form-layout,
  .hero-support__layout {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--nav-h) - 4px);
    right: 18px;
    left: 18px;
    z-index: 110;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line-subtle);
    box-shadow: var(--shadow-soft);
    max-height: calc(100svh - var(--nav-h) - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--t-base), transform var(--t-base);
  }

  .site-nav__primary {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    display: grid;
    gap: 6px;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .site-nav__cta,
  .site-nav__auth {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .site-nav__actions {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  .admin-shell__nav {
    grid-template-columns: 1fr;
  }

  .admin-shell__header,
  .admin-shell__bootstrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-shell__header-actions,
  .admin-shell__sidebar-actions {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero {
    padding-top: calc(var(--nav-h) + 18px);
  }

  .page-hero__stack {
    min-height: calc(100svh - var(--nav-h) - 36px);
    transform: translateY(-2vh);
    padding-top: 0;
  }

  .page-hero__scroll {
    bottom: 14px;
  }

  .page-hero__title {
    width: 100%;
    min-height: auto;
  }

  .page-hero__body {
    min-height: auto;
  }

  .logo__wordmark-text {
    font-size: 1.24rem;
  }

  .hero-support__visual .hero-visual,
  .hero-visual {
    min-height: 216px;
  }

  .hero-visual__ring--one {
    width: 142px;
    height: 142px;
  }

  .hero-visual__ring--two {
    width: 208px;
    height: 208px;
  }

  .page-hero__actions,
  .cta-band__actions,
  .site-footer__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__panel {
    padding: 20px;
  }

  .section--auth-entry {
    padding-top: calc(var(--nav-h) + 20px);
  }
}

/* ─── Compact hero (landing page) ──────────────────────────── */
.page-hero--compact {
  min-height: unset;
  height: auto;
  padding: calc(var(--nav-h) + 8px) 0 8px;
}

.page-hero--compact .page-hero__stack {
  min-height: unset;
  transform: none;
  align-content: start;
  gap: 6px;
}

.page-hero--compact .page-hero__title {
  min-height: 0;
  margin: 4px 0 2px;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.page-hero--compact .page-hero__body {
  min-height: 0;
  margin-top: 0;
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  max-width: 80ch;
  line-height: 1.62;
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) {
  background:
    radial-gradient(circle at 10% 10%, rgba(85, 124, 255, 0.1), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(63, 184, 169, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 249, 255, 0.95) 52%, rgba(251, 248, 242, 0.94) 100%);
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) .page-hero,
.site-main.page:not(.page--assessment-app):not(.page--app-auth) .section,
.site-main.page:not(.page--assessment-app):not(.page--app-auth) .section--soft,
.site-main.page:not(.page--assessment-app):not(.page--app-auth) .section--tint,
.site-main.page:not(.page--assessment-app):not(.page--app-auth) .section--warm {
  background: transparent;
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) .page-hero::before {
  display: none;
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) .page-hero {
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) .page-hero__glow {
  display: none;
}

body:not([class*="page-admin"]):not(.page-assessment):not(.page-onboarding) .site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-main.page:not(.page--assessment-app):not(.page--app-auth) .section:first-of-type {
  padding-top: 0;
  padding-bottom: clamp(36px, 4.5vw, 56px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: clamp(16px, 5vw, 22px);
  }

  .section {
    padding: clamp(36px, 8vw, 56px) 0;
  }

  .section--auth-entry {
    padding-top: calc(var(--nav-h) + 14px);
  }

  .auth-card {
    padding: 20px;
    border-radius: 22px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .page-hero--compact .page-hero__title {
    font-size: clamp(1.6rem, 7.5vw, 2.1rem);
  }

  .section-title,
  .statement-title,
  .cta-band__title {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .assessment-entry-overlay__title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    text-wrap: balance;
  }

  .site-nav {
    right: 10px;
    left: 10px;
    padding: 12px;
  }

  .page-hero__body {
    font-size: 1rem;
  }
}
