/* =========================================
   SWAHUB - STORY SYSTEM V3
   Light premium brand shell
========================================= */

:root {
  --sw-bg: #f6f8fc;
  --sw-bg-soft: #eef3fb;
  --sw-bg-muted: #f9fbfe;
  --sw-surface: rgba(255, 255, 255, 0.94);
  --sw-surface-strong: #ffffff;
  --sw-surface-tint: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  --sw-blue: #1b56fd;
  --sw-blue-deep: #1648d7;
  --sw-blue-soft: #dbe8ff;
  --sw-blue-faint: rgba(27, 86, 253, 0.08);
  --sw-navy: #0f1a2d;
  --sw-ink: #122133;
  --sw-ink-soft: #627087;
  --sw-ink-faint: #8090a9;
  --sw-border: rgba(194, 208, 232, 0.82);
  --sw-border-strong: rgba(176, 193, 222, 0.95);
  --sw-shadow-xl: 0 36px 90px rgba(22, 37, 66, 0.12);
  --sw-shadow-lg: 0 22px 54px rgba(22, 37, 66, 0.08);
  --sw-shadow-md: 0 12px 28px rgba(22, 37, 66, 0.06);
  --sw-radius-xl: 36px;
  --sw-radius-lg: 28px;
  --sw-radius-md: 22px;
  --sw-radius-sm: 16px;
  --sw-max: 1280px;
}

html {
  scroll-behavior: smooth;
}

body.home-page,
body.story-page {
  font-family: "Inter", sans-serif;
  background: var(--sw-bg);
  color: var(--sw-ink);
}

body.home-page .site-background,
body.story-page .site-background {
  background:
    radial-gradient(circle at 50% -10%, rgba(27, 86, 253, 0.11), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(27, 86, 253, 0.07), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(18, 33, 51, 0.05), transparent 18%),
    linear-gradient(180deg, #fbfcff 0%, #f3f6fb 46%, #f7f9fd 100%);
}

.container {
  width: min(100% - 48px, var(--sw-max));
}

body.home-page .site-header,
body.story-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.2), rgba(249, 251, 255, 0.04));
  border-bottom: 1px solid rgba(210, 220, 236, 0.04);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.home-page .site-header.scrolled,
body.story-page .site-header.scrolled {
  background: linear-gradient(180deg, rgba(248, 250, 254, 0.92), rgba(242, 246, 251, 0.86));
  border-bottom-color: rgba(206, 218, 239, 0.52);
  box-shadow: 0 18px 46px rgba(16, 30, 54, 0.08);
}

body.home-page .navbar,
body.story-page .navbar {
  min-height: 82px;
  gap: 24px;
}

body.home-page .brand,
body.story-page .brand {
  gap: 10px;
}

body.home-page .brand-logo,
body.story-page .brand-logo {
  width: 52px;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

body.home-page .brand-text,
body.story-page .brand-text {
  color: var(--sw-navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.home-page .nav-links,
body.story-page .nav-links {
  gap: 28px;
}

body.home-page .nav-links a,
body.story-page .nav-links a {
  color: rgba(26, 40, 62, 0.72);
  font-size: 14px;
  font-weight: 700;
}

body.home-page .nav-links a:hover,
body.home-page .nav-links a.active,
body.story-page .nav-links a:hover,
body.story-page .nav-links a.active {
  color: var(--sw-ink);
}

body.home-page .nav-links a.active::after,
body.home-page .nav-links a:hover::after,
body.story-page .nav-links a.active::after,
body.story-page .nav-links a:hover::after {
  height: 2px;
  background: var(--sw-blue);
}

body.home-page .nav-actions,
body.story-page .nav-actions {
  gap: 12px;
}

.site-top-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a69ff 0%, #1b56fd 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 28px rgba(27, 86, 253, 0.18);
}

.site-top-cta:hover {
  background: linear-gradient(180deg, #3975ff 0%, #245dff 100%);
  transform: translateY(-1px);
}

body.home-page .menu-toggle,
body.story-page .menu-toggle {
  border-color: rgba(184, 200, 226, 0.6);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(22, 37, 66, 0.04);
}

body.home-page .menu-toggle span,
body.story-page .menu-toggle span {
  background: var(--sw-navy);
}

body.home-page .home-nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

body.home-page .home-nav-shell .nav-links {
  justify-self: center;
  gap: 32px;
}

body.home-page .home-nav-shell .nav-actions {
  justify-self: end;
}

body.home-page .home-nav-shell .site-top-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--sw-blue);
  box-shadow: none;
}

body.home-page .home-nav-shell .site-top-cta:hover {
  background: #245dff;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 88px 0 42px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(27, 86, 253, 0.1), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(27, 86, 253, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-shell .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
}

.hero-copy {
  max-width: 560px;
}

.hero-copy .eyebrow,
.section-head .eyebrow,
.section-copy .eyebrow,
.site-cta .eyebrow,
.journey-kicker,
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(197, 212, 236, 0.86);
  color: var(--sw-blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow::before,
.section-head .eyebrow::before,
.section-copy .eyebrow::before,
.site-cta .eyebrow::before,
.journey-kicker::before,
.card-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8eb5ff 0%, #1b56fd 100%);
  box-shadow: 0 0 0 4px rgba(27, 86, 253, 0.08);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  color: var(--sw-navy);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 34rem;
  color: var(--sw-ink-soft);
  font-size: 19px;
  line-height: 1.68;
}

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

.hero-actions .btn-primary,
.section-actions .btn-primary,
.site-cta .btn-primary {
  background: linear-gradient(180deg, #2a69ff 0%, #1b56fd 100%);
  box-shadow: 0 16px 30px rgba(27, 86, 253, 0.18);
}

.hero-actions .btn-primary:hover,
.section-actions .btn-primary:hover,
.site-cta .btn-primary:hover {
  background: linear-gradient(180deg, #3975ff 0%, #245dff 100%);
}

.hero-actions .btn-secondary,
.section-actions .btn-secondary,
.site-cta .btn-secondary {
  border-color: rgba(180, 198, 225, 0.9);
  background: rgba(255, 255, 255, 0.84);
  color: var(--sw-ink);
  box-shadow: none;
}

.hero-actions .btn-secondary:hover,
.section-actions .btn-secondary:hover,
.site-cta .btn-secondary:hover {
  border-color: rgba(146, 171, 214, 0.96);
  background: #ffffff;
  color: var(--sw-navy);
}

.hero-note {
  margin-top: 18px;
  color: var(--sw-ink-faint);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-master-hero {
  position: relative;
  min-height: 100vh;
  padding: 0 0 48px;
}

.home-master-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 34% at 50% 14%, rgba(115, 149, 222, 0.26), rgba(115, 149, 222, 0) 74%),
    radial-gradient(30% 30% at 84% 52%, rgba(106, 139, 207, 0.18), rgba(106, 139, 207, 0) 78%),
    radial-gradient(30% 26% at 16% 24%, rgba(245, 214, 223, 0.18), rgba(245, 214, 223, 0) 78%),
    linear-gradient(180deg, #eef3fa 0%, #e9eff7 34%, #edf2f8 70%, #f4f7fb 100%);
  pointer-events: none;
}

.home-master-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 44%),
    radial-gradient(120% 90% at 50% 56%, rgba(255, 255, 255, 0) 56%, rgba(16, 28, 48, 0.11) 100%);
  pointer-events: none;
}

.home-cinematic-hero {
  position: relative;
  overflow: hidden;
  min-height: 980px;
  padding: 0;
}

.home-cinematic-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero-mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.mist-a {
  top: 84px;
  left: -4%;
  width: 44vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(125, 160, 233, 0.24), rgba(125, 160, 233, 0) 72%);
}

.mist-b {
  top: 180px;
  right: -4%;
  width: 42vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(84, 119, 196, 0.18), rgba(84, 119, 196, 0) 74%);
}

.mist-c {
  bottom: 28px;
  left: 18%;
  width: 58vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 74%);
}

.home-hero-copy-wrap {
  position: relative;
  z-index: 5;
  padding-top: 134px;
}

.home-positioning-wrap {
  position: relative;
  z-index: 5;
}

.home-hero-intro {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}

.home-hero-intro .eyebrow {
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(197, 211, 234, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.home-hero-intro h1 {
  max-width: min(100%, 16ch);
  margin: 18px 0 16px;
  color: #0c1524;
  font-size: clamp(58px, 7.4vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.09em;
  text-align: center;
}

.home-hero-intro p {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(32, 47, 69, 0.72);
  font-size: 19px;
  line-height: 1.68;
  text-align: center;
}

.home-hero-intro .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.home-hero-intro .hero-note {
  text-align: center;
  color: rgba(53, 68, 89, 0.62);
  letter-spacing: -0.015em;
  margin-top: 16px;
}

.hero-value-strip {
  max-width: 44rem;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(75, 91, 119, 0.34);
  text-align: center;
}

.hero-value-strip strong {
  display: block;
  max-width: 34rem;
  margin: 0 auto;
  color: var(--sw-navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-value-strip span {
  display: block;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7px;
  color: var(--sw-ink-soft);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
  text-wrap: balance;
}

.home-cinematic-scene {
  position: absolute;
  left: 50%;
  top: 250px;
  width: min(100% - 54px, 1180px);
  height: 640px;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-cinematic-scene::before {
  content: "";
  position: absolute;
  inset: 72px 10% 56px;
  background:
    radial-gradient(42% 38% at 50% 48%, rgba(120, 151, 219, 0.22), rgba(120, 151, 219, 0.08) 44%, rgba(120, 151, 219, 0) 72%),
    radial-gradient(20% 22% at 70% 34%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(244, 248, 255, 0.02));
  filter: blur(34px);
}

.home-cinematic-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(18% 15% at 50% 50%, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 82%),
    radial-gradient(78% 74% at 50% 54%, rgba(255, 255, 255, 0) 58%, rgba(18, 31, 52, 0.16) 100%);
}

.scene-depth-panel {
  position: absolute;
  border-radius: 44px;
  border: 1px solid rgba(203, 216, 239, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  filter: blur(0.2px);
  opacity: 0.36;
}

.scene-depth-left {
  left: 18%;
  top: 196px;
  width: 240px;
  height: 144px;
  transform: rotate(-7deg);
}

.scene-depth-right {
  right: 20%;
  top: 182px;
  width: 180px;
  height: 112px;
  transform: rotate(10deg);
}

.scene-atmospheric-ring {
  position: absolute;
  right: 18%;
  top: 138px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04) 34%, rgba(94, 126, 202, 0.08) 54%, rgba(94, 126, 202, 0) 76%);
  filter: blur(10px);
  opacity: 0.64;
}

.home-cinematic-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.scene-base-path,
.scene-flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scene-base-path {
  stroke: url(#flowBase);
  stroke-width: 3.6;
}

.orbit-trace {
  stroke-width: 2.8;
  opacity: 0.55;
}

.scene-flow-path {
  stroke: url(#flowLive);
  stroke-width: 4.2;
  opacity: 0.98;
  filter: drop-shadow(0 0 18px rgba(27, 86, 253, 0.18));
}

.scene-orbit-node {
  fill: #eef4ff;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 0.58;
  transition: transform 320ms ease, opacity 320ms ease, filter 320ms ease, fill 320ms ease;
  transform-box: fill-box;
  transform-origin: center;
}

.scene-orbit-node.is-live {
  fill: #1b56fd;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(27, 86, 253, 0.22));
  transform: scale(1.08);
}

.scene-signal {
  opacity: 0;
}

.scene-signal-halo {
  fill: url(#signalHalo);
}

.scene-signal-shell {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(27, 86, 253, 0.18);
  stroke-width: 1.5;
}

.scene-signal-core {
  fill: #1b56fd;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.scene-review-core,
.scene-origin,
.scene-node,
.scene-outcome-panel {
  position: absolute;
  z-index: 3;
  transition:
    opacity 320ms ease,
    transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 320ms ease;
}

.scene-review-core {
  left: 50%;
  top: 50%;
  width: 218px;
  height: 218px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.9) 42%, rgba(228, 237, 252, 0.64) 68%, rgba(228, 237, 252, 0) 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 30px 88px rgba(21, 42, 74, 0.12);
}

.scene-review-rings,
.scene-review-rings::before,
.scene-review-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.scene-review-rings {
  border: 1px solid rgba(129, 161, 223, 0.36);
}

.scene-review-rings::before {
  inset: 14px;
  border: 1px solid rgba(129, 161, 223, 0.28);
}

.scene-review-rings::after {
  inset: 34px;
  border: 1px solid rgba(129, 161, 223, 0.18);
}

.scene-micro {
  display: block;
  color: rgba(65, 81, 105, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-review-core strong,
.scene-origin-copy strong,
.scene-node strong,
.scene-outcome-panel strong {
  color: #112036;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.scene-origin {
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 0.48;
}

.scene-origin-business {
  left: 15%;
  top: 30%;
}

.scene-origin-contributor {
  left: 16%;
  top: 68%;
}

.scene-origin-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.82), rgba(239, 244, 255, 0.74) 58%, rgba(239, 244, 255, 0.16) 76%, rgba(239, 244, 255, 0) 100%);
}

.scene-origin-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(171, 190, 224, 0.46);
}

.scene-origin-mark svg {
  width: 46px;
  height: 34px;
}

.scene-node {
  display: grid;
  place-items: center;
  opacity: 0.52;
}

.scene-node::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #90b3ff 68%, #1b56fd 100%);
  box-shadow: 0 0 0 6px rgba(27, 86, 253, 0.06);
}

.scene-node-request {
  left: 25%;
  top: 49%;
}

.scene-node-request::before {
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
}

.scene-node-request span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(197, 211, 234, 0.34);
  color: rgba(24, 39, 61, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.scene-outcome-panel {
  left: 50%;
  bottom: 18px;
  right: auto;
  top: auto;
  display: grid;
  gap: 8px;
  width: 244px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(245, 249, 255, 0.28)),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(196, 210, 234, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 44px rgba(27, 43, 70, 0.06);
  opacity: 0.74;
  transform: translateX(-50%);
}

.home-cinematic-svg path,
.home-cinematic-svg circle,
.home-cinematic-svg rect,
.home-cinematic-svg line,
.scene-origin-mark path,
.scene-origin-mark circle,
.scene-origin-mark rect,
.scene-origin-mark line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scene-origin-mark path,
.scene-origin-mark circle,
.scene-origin-mark rect,
.scene-origin-mark line {
  fill: none;
  stroke: var(--sw-blue-deep);
  stroke-width: 2;
}

.scene-review-core,
.scene-origin,
.scene-node,
.scene-outcome-panel {
  filter: saturate(0.92);
}

.scene-stage-live {
  opacity: 1 !important;
  filter: saturate(1.08);
}

.scene-stage-live.scene-review-core {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 38px 110px rgba(27, 86, 253, 0.16);
}

.scene-stage-live.scene-origin,
.scene-stage-live.scene-node,
.scene-stage-live.scene-outcome-panel {
  transform: translateY(-8px);
}

@keyframes storyAtmosphereDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(0, -8px, 0) scale(1.02);
  }
}

.home-page .rail-section-head {
  display: block;
  margin-bottom: 14px;
}

.home-page .rail-section-head .heading-copy {
  max-width: 920px;
}

.home-page .rail-section-head .btn {
  margin-top: 18px;
}

.home-page .rail-section-copy {
  max-width: 840px;
  margin-bottom: 30px;
}

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

.hero-shell-home,
.hero-shell-story,
.hero-shell-process,
.hero-shell-about {
  padding-bottom: 26px;
}

.hero-intro {
  position: relative;
  z-index: 2;
}

.panorama-hero {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(24px, 4vw, 40px) 24px;
  border-radius: 40px;
  border: 1px solid rgba(189, 205, 229, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)),
    radial-gradient(circle at 10% 8%, rgba(27, 86, 253, 0.1), transparent 18%);
  box-shadow: var(--sw-shadow-xl);
}

.panorama-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 86, 253, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 86, 253, 0.03) 1px, transparent 1px);
  background-size: 120px 100%, 100% 124px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
  pointer-events: none;
}

.panorama-hero > * {
  position: relative;
  z-index: 1;
}

.panorama-hero .hero-copy {
  max-width: 660px;
}

.story-page .panorama-hero .hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.story-page .panorama-hero .hero-copy .eyebrow,
.story-page .page-summary .eyebrow {
  justify-content: center;
}

.story-page .panorama-hero .hero-copy h1 {
  max-width: 12.5ch;
  margin-left: auto;
  margin-right: auto;
}

.story-page .panorama-hero .hero-copy p {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.story-page .panorama-hero .hero-actions {
  justify-content: center;
}

.story-page .panorama-hero .hero-note {
  text-align: center;
}

.story-page .panorama-hero {
  overflow: visible;
  padding: 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.story-page .panorama-hero::before {
  display: none;
}

.panorama-hero .system-canvas-full {
  margin-top: 18px;
}

.panorama-hero .system-canvas-scroll {
  padding-left: 0;
  padding-right: 0;
}

.hero-shell-home .hero-copy,
.hero-shell-story .hero-copy,
.hero-shell-process .hero-copy,
.hero-shell-about .hero-copy {
  max-width: 640px;
}

.hero-shell-process .section-head {
  margin-bottom: 18px;
}

.system-canvas-full {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.system-canvas-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(22px, 4vw, 56px) 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 86, 253, 0.18) transparent;
}

.system-canvas-scroll::-webkit-scrollbar {
  height: 8px;
}

.system-canvas-scroll::-webkit-scrollbar-thumb {
  background: rgba(27, 86, 253, 0.2);
  border-radius: 999px;
}

.system-track {
  position: relative;
  margin: 0 auto;
}

.system-canvas-scroll.inline-scroll {
  padding: 0 0 12px;
}

.home-flow-track {
  width: 1520px;
  height: 386px;
}

.startup-flow-track,
.contributor-flow-track {
  width: 1180px;
  height: 306px;
}

.process-flow-track {
  width: 1760px;
  height: 356px;
}

.startup-inline-track,
.contributor-inline-track,
.preview-inline-track {
  width: 920px;
  height: 232px;
}

.flow-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flow-path-main {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: swFlow 18s linear infinite;
}

.flow-path .flow-node {
  fill: var(--sw-blue);
  filter: drop-shadow(0 0 8px rgba(27, 86, 253, 0.22));
}

.flow-path .flow-ghost {
  fill: rgba(27, 86, 253, 0.12);
}

.flow-scene {
  position: absolute;
  width: 176px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(189, 205, 229, 0.82);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 44px rgba(22, 37, 66, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.flow-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.flow-scene:hover {
  border-color: rgba(145, 170, 216, 0.98);
  box-shadow: 0 26px 56px rgba(22, 37, 66, 0.12);
}

.flow-scene.slim {
  width: 158px;
}

.flow-scene.wide {
  width: 192px;
}

.scene-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(231, 239, 255, 0.96), rgba(243, 247, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(27, 86, 253, 0.08);
}

.scene-graphic svg {
  width: 56px;
  height: 42px;
}

.scene-graphic path,
.scene-graphic circle,
.scene-graphic rect,
.scene-graphic line {
  stroke: var(--sw-blue-deep);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.scene-graphic .fill-blue {
  fill: rgba(27, 86, 253, 0.12);
  stroke: rgba(27, 86, 253, 0.18);
}

.scene-label {
  color: var(--sw-blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-title {
  margin-top: 8px;
  color: var(--sw-navy);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

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

.story-page .panorama-hero .page-signal-strip,
.story-page .panorama-hero .editorial-ribbon {
  width: 100%;
  margin-top: 34px;
}

.page-signal-strip.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rail-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.rail-section-head .heading-copy {
  max-width: 760px;
}

.rail-section-head h2 {
  margin: 18px 0 0;
  color: var(--sw-navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.rail-section-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.rail-section-copy p {
  color: var(--sw-ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.panorama-hero .page-signal-strip,
.panorama-hero .editorial-ribbon {
  margin-top: 28px;
}

.strip-item {
  padding: 18px 0 0;
  border-top: 1px solid rgba(205, 218, 238, 0.92);
}

.strip-item strong {
  display: block;
  color: var(--sw-navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.strip-item span {
  display: block;
  margin-top: 8px;
  color: var(--sw-ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.editorial-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
}

.editorial-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 86, 253, 0), rgba(27, 86, 253, 0.22), rgba(27, 86, 253, 0));
}

.editorial-point {
  position: relative;
  padding-top: 18px;
}

.editorial-point::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sw-blue);
  box-shadow: 0 0 0 6px rgba(27, 86, 253, 0.08);
}

.editorial-point .scene-label {
  display: block;
}

.editorial-point .scene-title {
  font-size: 24px;
}

.open-flow-block {
  position: relative;
  padding: 12px 0 2px;
}

.open-flow-track {
  position: relative;
  margin: 0 auto;
}

.open-flow-track::before {
  content: "";
  position: absolute;
  inset: 38px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 86, 253, 0), rgba(27, 86, 253, 0.16), rgba(27, 86, 253, 0));
}

.trust-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.trust-ledger-main h2 {
  margin: 18px 0 14px;
  color: var(--sw-navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.trust-ledger-main p {
  max-width: 42rem;
  color: var(--sw-ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.trust-ledger-main .contact-pill {
  margin-top: 22px;
}

.journey-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.2fr 1.08fr 0.82fr;
  gap: 18px;
  padding: 36px;
  min-height: 382px;
  border-radius: var(--sw-radius-xl);
  border: 1px solid rgba(188, 205, 230, 0.9);
  background:
    radial-gradient(circle at 10% 10%, rgba(27, 86, 253, 0.09), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(27, 86, 253, 0.08), transparent 17%),
    var(--sw-surface-tint);
  box-shadow: var(--sw-shadow-xl);
  overflow: hidden;
}

.journey-band::after {
  content: "";
  position: absolute;
  inset: auto 36px 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 86, 253, 0), rgba(27, 86, 253, 0.12), rgba(27, 86, 253, 0));
}

.journey-band.compact {
  grid-template-columns: repeat(4, 1fr);
  min-height: 320px;
}

.journey-band.compact .stage-access,
.journey-band.compact .stage-track,
.journey-band.compact .stage-join,
.journey-band.compact .stage-submit {
  margin-top: 44px;
}

.journey-band.compact .stage-intro,
.journey-band.compact .stage-request,
.journey-band.compact .stage-see {
  margin-top: 6px;
}

.journey-band.compact .stage-review,
.journey-band.compact .stage-selected,
.journey-band.compact .stage-choice,
.journey-band.compact .stage-close {
  margin-top: 104px;
}

.journey-band.compact .journey-stage.terminal {
  margin-top: 44px;
}

.journey-band.process-band {
  grid-template-columns: repeat(6, 1fr);
  min-height: 356px;
}

.journey-band.process-band .journey-stage:nth-child(1),
.journey-band.process-band .journey-stage:nth-child(6) {
  margin-top: 74px;
}

.journey-band.process-band .journey-stage:nth-child(2),
.journey-band.process-band .journey-stage:nth-child(4) {
  margin-top: 8px;
}

.journey-band.process-band .journey-stage:nth-child(3),
.journey-band.process-band .journey-stage:nth-child(5) {
  margin-top: 120px;
}

.journey-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.journey-line {
  stroke-dasharray: 8 10;
  animation: swFlow 16s linear infinite;
}

.journey-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(189, 204, 229, 0.84);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--sw-shadow-lg);
}

.journey-stage.soft {
  background: rgba(247, 250, 255, 0.92);
}

.journey-stage.terminal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(33, 95, 255, 0.1) 0%, rgba(27, 86, 253, 0.04) 100%),
    rgba(255, 255, 255, 0.94);
}

.journey-stage.stage-start {
  margin-top: 118px;
}

.journey-stage.stage-request {
  margin-top: 8px;
}

.journey-stage.stage-intro {
  margin-top: 140px;
}

.journey-stage.stage-choice {
  margin-top: 34px;
}

.journey-stage.stage-end {
  margin-top: 146px;
}

.journey-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journey-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(27, 86, 253, 0.08);
  color: var(--sw-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.journey-kicker {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.journey-kicker::before {
  width: 7px;
  height: 7px;
}

.journey-stage h3,
.journey-stage strong {
  display: block;
  margin-top: 14px;
  color: var(--sw-navy);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.journey-stage p {
  margin-top: 10px;
  color: var(--sw-ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.trust-strip-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(194, 209, 232, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sw-shadow-md);
  overflow: hidden;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 16px;
  color: var(--sw-ink);
  font-size: 14px;
  font-weight: 800;
}

.trust-strip-item + .trust-strip-item {
  border-left: 1px solid rgba(216, 226, 242, 0.86);
}

.trust-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #97bcff, #1b56fd);
  box-shadow: 0 0 0 4px rgba(27, 86, 253, 0.08);
}

.site-section {
  position: relative;
  padding: 108px 0;
}

.site-section.soft {
  background: linear-gradient(180deg, rgba(238, 244, 252, 0.72), rgba(249, 251, 254, 0));
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.site-cta h2,
.page-summary h2,
.faq-panel h2 {
  margin: 18px 0 14px;
  color: var(--sw-navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.section-head p,
.section-copy p,
.page-summary p,
.faq-panel p,
.site-cta p {
  max-width: 60ch;
  color: var(--sw-ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 40px;
  align-items: center;
}

.section-grid.reverse .section-copy {
  order: 2;
}

.section-grid.reverse .section-visual {
  order: 1;
}

.section-copy {
  max-width: 560px;
}

.signal-panel,
.value-card,
.page-summary,
.faq-panel,
.lane-card,
.site-cta,
.story-band-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--sw-radius-lg);
  border: 1px solid rgba(189, 205, 229, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--sw-shadow-lg);
}

.signal-panel,
.page-summary,
.faq-panel,
.lane-card,
.site-cta,
.story-band-panel {
  padding: 34px;
}

.signal-panel::before,
.site-cta::before,
.story-band-panel::before {
  content: "";
  position: absolute;
  inset: auto -36px -64px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(27, 86, 253, 0.06);
}

.signal-panel > *,
.site-cta > *,
.story-band-panel > * {
  position: relative;
  z-index: 1;
}

.signal-panel h3,
.value-card h3,
.lane-card h3,
.story-band-panel h3 {
  color: var(--sw-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.signal-panel p,
.value-card p,
.lane-card p,
.story-band-panel p {
  margin-top: 12px;
  color: var(--sw-ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.signal-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.signal-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 224, 239, 0.9);
}

.signal-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(27, 86, 253, 0.08);
  color: var(--sw-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.signal-item strong {
  display: block;
  color: var(--sw-ink);
  font-size: 16px;
  font-weight: 800;
}

.signal-item span {
  display: block;
  margin-top: 6px;
  color: var(--sw-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.story-band-panel .journey-band {
  min-height: 300px;
  padding: 28px;
  border-radius: 24px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.96), rgba(240, 245, 255, 0.94));
}

.story-band-panel .journey-stage {
  box-shadow: var(--sw-shadow-md);
}

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

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

.value-card {
  padding: 28px;
}

.value-card .card-tag {
  margin-bottom: 14px;
}

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

.chip-row span,
.contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(27, 86, 253, 0.06);
  color: var(--sw-blue-deep);
  font-size: 13px;
  font-weight: 700;
}

.process-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--sw-radius-lg);
  border: 1px solid rgba(189, 205, 229, 0.86);
  background:
    radial-gradient(circle at 12% 10%, rgba(27, 86, 253, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.95));
  box-shadow: var(--sw-shadow-xl);
}

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

.lane-card ol {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.lane-card li {
  position: relative;
  padding-top: 16px;
  padding-left: 50px;
  border-top: 1px solid rgba(214, 224, 239, 0.9);
  color: var(--sw-ink-soft);
  line-height: 1.68;
}

.lane-card li::before {
  content: attr(data-step);
  position: absolute;
  top: 16px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(27, 86, 253, 0.08);
  color: var(--sw-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.faq-panel {
  max-width: 920px;
  margin: 0 auto;
}

.story-page .faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(214, 224, 239, 0.92);
}

.story-page .faq-item:last-child {
  border-bottom: 0;
}

.story-page .faq-item summary {
  position: relative;
  padding-right: 42px;
  color: var(--sw-navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.story-page .faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--sw-blue-deep);
  font-size: 24px;
  font-weight: 500;
}

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

.story-page .faq-item p {
  margin-top: 14px;
  max-width: 64ch;
  color: var(--sw-ink-soft);
  line-height: 1.72;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-cta {
  padding: 38px;
  background:
    radial-gradient(circle at 88% 18%, rgba(27, 86, 253, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.96));
}

.site-footer {
  padding: 34px 0 28px;
  border-top: 1px solid rgba(210, 220, 236, 0.82);
  background: rgba(252, 253, 255, 0.94);
}

.site-footer .footer-grid {
  gap: 24px;
}

.site-footer .brand {
  gap: 10px;
}

.site-footer .brand-logo {
  width: 54px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.site-footer .brand-text {
  font-size: 21px;
  letter-spacing: -0.05em;
}

.footer-brand p,
.footer-note,
.footer-bottom p {
  color: var(--sw-ink-soft);
}

.footer-mail {
  color: var(--sw-blue-deep);
  font-weight: 800;
}

.footer-links h4 {
  color: var(--sw-navy);
}

.footer-links a {
  color: var(--sw-ink-soft);
}

.footer-links a:hover {
  color: var(--sw-blue-deep);
}

@keyframes swFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -180;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-line,
  .float,
  .mist-a,
  .mist-b,
  .mist-c {
    animation: none !important;
  }

  .scene-signal {
    display: none;
  }
}

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

  .hero-copy,
  .section-copy {
    max-width: 100%;
  }

  .rail-section-head,
  .trust-ledger {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-hero-intro h1 {
    max-width: min(100%, 15ch);
    font-size: clamp(54px, 7vw, 84px);
  }

  .home-cinematic-scene {
    width: min(100% - 40px, 1440px);
    height: 700px;
  }

  .rail-section-head {
    align-items: start;
  }

  .journey-band {
    min-height: 0;
  }

  .journey-stage.stage-start,
  .journey-stage.stage-request,
  .journey-stage.stage-intro,
  .journey-stage.stage-choice,
  .journey-stage.stage-end,
  .journey-band.compact .journey-stage,
  .journey-band.process-band .journey-stage {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 40px, var(--sw-max));
  }

  .home-master-hero {
    min-height: auto;
  }

  .home-hero-intro {
    margin-bottom: 28px;
  }

  .home-hero-intro h1 {
    font-size: clamp(48px, 8vw, 74px);
  }

  .home-cinematic-hero {
    min-height: 0;
    padding-top: 100px;
  }

  .home-cinematic-scene {
    width: min(100% - 36px, 1320px);
    height: 640px;
    margin-top: -24px;
  }

  .scene-origin {
    max-width: 194px;
  }

  .scene-review-core {
    width: 190px;
    height: 190px;
  }

  .system-canvas-full {
    margin-top: 20px;
  }

  .page-signal-strip,
  .page-signal-strip.four,
  .editorial-ribbon,
  .trust-ledger {
    grid-template-columns: 1fr;
  }

  .journey-band {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px;
  }

  .journey-path {
    display: none;
  }

  .journey-band::after {
    display: none;
  }

  .value-grid,
  .value-grid.two,
  .lane-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  body.home-page .nav-links,
  body.story-page .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(192, 208, 232, 0.9);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 44px rgba(22, 37, 66, 0.12);
  }

  body.home-page .nav-links.show,
  body.story-page .nav-links.show {
    display: flex;
  }

  body.home-page .nav-links a,
  body.story-page .nav-links a {
    width: 100%;
    padding: 12px 6px;
  }

  body.home-page .nav-links a::after,
  body.story-page .nav-links a::after {
    display: none;
  }

  .site-top-cta {
    display: none;
  }

  .hero-shell {
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 10vw, 62px);
  }

  body.home-page .home-nav-shell {
    display: flex;
  }

  body.home-page .home-nav-shell .brand-logo {
    width: 54px;
  }

  .home-hero-intro h1 {
    max-width: min(100%, 13.5ch);
    font-size: clamp(44px, 10vw, 64px);
  }

  .home-cinematic-scene {
    height: 580px;
  }

  .scene-depth-left,
  .scene-atmospheric-ring {
    opacity: 0.55;
  }

  .panorama-hero {
    padding: 28px 24px 20px;
    border-radius: 30px;
  }

  .section-head h2,
  .section-copy h2,
  .site-cta h2,
  .page-summary h2,
  .faq-panel h2 {
    font-size: clamp(32px, 7vw, 44px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--sw-max));
  }

  .home-master-hero {
    padding-bottom: 24px;
  }

  .home-cinematic-hero {
    padding-top: 92px;
  }

  .home-hero-intro {
    margin-bottom: 22px;
  }

  .home-hero-intro h1 {
    max-width: min(100%, 12.5ch);
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.98;
  }

  .home-hero-intro p {
    font-size: 17px;
    line-height: 1.62;
  }

  .home-cinematic-scene {
    width: min(100% - 20px, 860px);
    height: 740px;
    margin-top: 0;
  }

  .home-cinematic-scene::before {
    inset: 160px 0 30px;
    border-radius: 34px;
  }

  .scene-depth-left {
    left: 2%;
    top: 224px;
    width: 180px;
    height: 130px;
  }

  .scene-atmospheric-ring {
    right: 0;
    top: 168px;
    width: 220px;
    height: 220px;
  }

  .scene-review-core {
    left: 52%;
    top: 48%;
    width: 184px;
    height: 184px;
  }

  .scene-origin {
    gap: 12px;
    max-width: 170px;
  }

  .scene-origin-business {
    left: 6%;
    top: 22%;
  }

  .scene-origin-contributor {
    left: 6%;
    top: 72%;
  }

  .scene-origin-mark {
    width: 58px;
    height: 58px;
  }

  .scene-origin-mark svg {
    width: 38px;
    height: 28px;
  }

  .scene-node {
    max-width: 132px;
  }

  .scene-node-request {
    left: 16%;
    top: 42%;
  }

  .scene-outcome-panel {
    right: 2%;
    top: 55%;
    width: 172px;
    padding: 14px 16px;
  }

  .scene-review-core strong,
  .scene-origin-copy strong,
  .scene-node strong,
  .scene-outcome-panel strong {
    font-size: 14px;
  }

  .rail-section-head h2,
  .trust-ledger-main h2 {
    font-size: clamp(32px, 7vw, 44px);
  }

  .hero-copy p,
  .section-head p,
  .section-copy p,
  .page-summary p,
  .faq-panel p,
  .site-cta p {
    font-size: 16px;
  }

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

  .trust-strip-item:nth-child(3),
  .trust-strip-item:nth-child(4) {
    border-top: 1px solid rgba(216, 226, 242, 0.86);
  }

  .trust-strip-item:nth-child(3) {
    border-left: 0;
  }

  .site-section {
    padding: 82px 0;
  }

  .system-canvas-scroll {
    padding-left: 20px;
    padding-right: 20px;
  }

  .signal-panel,
  .page-summary,
  .faq-panel,
  .lane-card,
  .site-cta,
  .story-band-panel,
  .process-panel {
    padding: 26px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  body.home-page .navbar,
  body.story-page .navbar {
    min-height: 74px;
  }

  body.home-page .brand-logo,
  body.story-page .brand-logo {
    width: 42px;
    height: auto;
  }

  body.home-page .brand-text,
  body.story-page .brand-text {
    font-size: 18px;
  }

  .hero-actions,
  .section-actions,
  .contact-row {
    flex-direction: column;
  }

  .home-cinematic-hero {
    padding-top: 84px;
  }

  .home-hero-copy-wrap {
    padding-top: 0;
  }

  .home-cinematic-scene {
    width: calc(100% - 14px);
    height: 680px;
  }

  .scene-depth-left,
  .scene-atmospheric-ring {
    display: none;
  }

  .scene-review-core {
    left: 50%;
    top: 48%;
    width: 156px;
    height: 156px;
  }

  .scene-origin {
    max-width: 132px;
  }

  .scene-origin-copy,
  .scene-node {
    gap: 4px;
  }

  .scene-micro {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .scene-review-core strong,
  .scene-origin-copy strong,
  .scene-node strong,
  .scene-outcome-panel strong {
    font-size: 13px;
  }

  .scene-node-request {
    left: 13%;
    top: 41%;
  }

  .scene-outcome-panel {
    right: 3%;
    top: 56%;
    width: 150px;
    padding: 12px 14px;
  }

  .site-footer .brand-logo {
    width: 48px;
    height: auto;
  }

  .rail-section-head {
    gap: 18px;
  }

  .home-flow-track {
    width: 1460px;
  }

  .startup-flow-track,
  .contributor-flow-track {
    width: 1120px;
  }

  .process-flow-track {
    width: 1700px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .site-cta .btn,
  .contact-pill {
    width: 100%;
    justify-content: center;
  }

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

  .trust-strip-item + .trust-strip-item,
  .trust-strip-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(216, 226, 242, 0.86);
  }

.story-page .faq-item summary {
  font-size: 18px;
}
}

/* =========================================
   HOMEPAGE HERO RESET
   Meta-inspired restraint, Swahub-specific flow
========================================= */

body.home-page .site-background {
  background:
    radial-gradient(46% 34% at 50% -6%, rgba(88, 126, 206, 0.26), rgba(88, 126, 206, 0) 74%),
    radial-gradient(28% 26% at 14% 24%, rgba(255, 226, 233, 0.32), rgba(255, 226, 233, 0) 72%),
    radial-gradient(34% 30% at 88% 26%, rgba(171, 200, 255, 0.28), rgba(171, 200, 255, 0) 74%),
    linear-gradient(180deg, #ecf2fa 0%, #edf3fb 30%, #f3f7fc 66%, #f7f9fd 100%);
}

body.home-page .site-header {
  background: linear-gradient(180deg, rgba(241, 246, 252, 0.78), rgba(241, 246, 252, 0.3));
  border-bottom: 1px solid rgba(176, 195, 226, 0.22);
}

body.home-page .site-header.scrolled {
  background: linear-gradient(180deg, rgba(240, 245, 252, 0.96), rgba(238, 243, 250, 0.9));
  border-bottom-color: rgba(185, 202, 231, 0.5);
  box-shadow: 0 18px 44px rgba(24, 42, 72, 0.08);
}

body.home-page .home-nav-shell {
  gap: 42px;
}

body.home-page .home-nav-shell .nav-links {
  gap: 34px;
}

body.home-page .home-nav-shell .site-top-cta {
  min-height: 44px;
  padding: 0 20px;
  background: linear-gradient(180deg, #2e67f7 0%, #1b56fd 100%);
  box-shadow: 0 14px 28px rgba(27, 86, 253, 0.16);
}

.home-master-hero {
  min-height: 100svh;
}

.home-master-hero::before {
  background:
    radial-gradient(42% 28% at 50% 14%, rgba(119, 154, 229, 0.38), rgba(119, 154, 229, 0) 72%),
    radial-gradient(32% 28% at 76% 54%, rgba(124, 158, 225, 0.24), rgba(124, 158, 225, 0) 72%),
    radial-gradient(24% 20% at 22% 54%, rgba(255, 233, 239, 0.26), rgba(255, 233, 239, 0) 74%),
    linear-gradient(180deg, rgba(226, 236, 248, 0.92) 0%, rgba(236, 243, 251, 0.84) 34%, rgba(243, 247, 252, 0.82) 100%);
}

.home-master-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(92% 72% at 50% 44%, rgba(255, 255, 255, 0) 54%, rgba(19, 34, 58, 0.16) 100%);
}

.home-cinematic-hero {
  min-height: auto;
  padding-bottom: 72px;
}

.home-cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 84px 2% 76px;
  background:
    radial-gradient(44% 38% at 50% 52%, rgba(145, 176, 239, 0.24), rgba(145, 176, 239, 0.06) 46%, rgba(145, 176, 239, 0) 76%),
    radial-gradient(24% 28% at 12% 28%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 74%),
    radial-gradient(22% 26% at 90% 22%, rgba(184, 207, 249, 0.3), rgba(184, 207, 249, 0) 74%);
  pointer-events: none;
}

.home-cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 124px 0 auto;
  height: 600px;
  background:
    linear-gradient(90deg, rgba(109, 144, 219, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(109, 144, 219, 0.08) 1px, transparent 1px);
  background-size: 132px 100%, 100% 132px;
  opacity: 0.11;
  mask-image: radial-gradient(72% 68% at 50% 38%, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0) 84%);
  pointer-events: none;
}

.home-hero-mist {
  filter: blur(52px);
}

.mist-a {
  top: 62px;
  left: -2%;
  width: 42vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(255, 228, 236, 0.46), rgba(255, 228, 236, 0) 74%);
}

.mist-b {
  top: 118px;
  right: -2%;
  width: 46vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(127, 161, 229, 0.24), rgba(127, 161, 229, 0) 72%);
}

.mist-c {
  bottom: 62px;
  left: 18%;
  width: 64vw;
  height: 26vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 74%);
}

.home-hero-copy-wrap {
  padding-top: 94px;
}

.home-hero-intro {
  max-width: 980px;
  position: relative;
  z-index: 6;
}

.home-hero-intro .eyebrow {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(183, 201, 230, 0.48);
  color: rgba(40, 81, 173, 0.94);
}

.home-hero-intro h1 {
  max-width: min(100%, 16ch);
  margin-top: 20px;
  color: #0b1527;
  text-shadow: 0 18px 44px rgba(255, 255, 255, 0.34);
}

.home-hero-intro p {
  max-width: 42rem;
  color: rgba(22, 37, 61, 0.7);
}

.home-hero-architecture-wrap {
  position: relative;
  z-index: 4;
  margin-top: 26px;
}

.architecture-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-architecture-flow {
  --architecture-scale: 0.88;
  --architecture-scale-offset: 80px;
  --architecture-ring-scale-x: 0.9;
  --architecture-orbit-duration: 16.8s;
  --architecture-segment-count: 16;
  --architecture-step-duration: calc(var(--architecture-orbit-duration) / var(--architecture-segment-count));
  --architecture-flow-ease: cubic-bezier(0.32, 0.06, 0.18, 1);
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: 36px;
  border: 1px solid rgba(166, 186, 222, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(241, 247, 255, 0.97)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.98),
    inset 0 -22px 34px rgba(201, 216, 244, 0.24),
    inset 18px 0 28px rgba(255, 255, 255, 0.22),
    inset -18px 0 28px rgba(203, 219, 247, 0.12),
    0 16px 30px rgba(27, 49, 84, 0.08),
    0 34px 84px rgba(18, 34, 61, 0.12),
    0 56px 120px rgba(18, 34, 61, 0.08);
  isolation: isolate;
  transform: perspective(1800px) rotateX(3.2deg);
  transform-style: preserve-3d;
}

.home-architecture-flow::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -10px 18px rgba(186, 205, 240, 0.16);
  pointer-events: none;
  transform: translateZ(10px);
}

.home-architecture-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(180, 203, 247, 0.16), rgba(180, 203, 247, 0) 34%),
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 84% 18%, rgba(226, 236, 255, 0.76), rgba(226, 236, 255, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(176, 199, 241, 0.12));
  pointer-events: none;
  transform: translateZ(2px);
}

.architecture-canvas {
  position: relative;
  z-index: 1;
  min-height: 676px;
  transform: scale(var(--architecture-scale));
  transform-origin: center top;
  margin-bottom: calc(-1 * var(--architecture-scale-offset));
}

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

.architecture-orbit-lines {
  transform-box: fill-box;
  transform-origin: center center;
  transform: scaleX(var(--architecture-ring-scale-x));
}

.architecture-loop-guide,
.architecture-loop-segment,
.architecture-connector {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.architecture-loop-guide {
  stroke: rgba(205, 218, 241, 0.94);
  stroke-width: 2.3;
  stroke-dasharray: 9 12;
}

.architecture-loop-segment {
  stroke: url(#architectureLoopStroke);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 5px rgba(27, 86, 253, 0.05));
  opacity: 0.14;
  animation: architectureOrbitSegment var(--architecture-orbit-duration) var(--architecture-flow-ease) infinite;
  animation-delay: calc(var(--segment-order, 0) * var(--architecture-step-duration));
}

.architecture-connector {
  stroke: rgba(194, 208, 236, 0.96);
  stroke-width: 4;
}

.architecture-stage-layer {
  position: relative;
  z-index: 2;
  min-height: 676px;
}

.architecture-node,
.architecture-hub {
  position: absolute;
}

.architecture-node {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 190px;
  min-height: 66px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(190, 204, 230, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 249, 255, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 40px rgba(20, 39, 70, 0.075);
  left: 50%;
  top: 366px;
  transform:
    translate(-50%, -50%)
    translate(var(--node-x, 0), var(--node-y, 0))
    translate(var(--card-offset-x, 0), var(--card-offset-y, 0));
  overflow: visible;
}

.architecture-node::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.architecture-node > :not(.architecture-node-echo) {
  position: relative;
  z-index: 1;
}

.architecture-node-dot {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(239, 244, 252, 1), rgba(226, 233, 246, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 0 0 4px rgba(27, 86, 253, 0.05);
  flex: 0 0 auto;
}

.architecture-node-avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  flex: 0 0 auto;
  object-fit: cover;
  overflow: visible;
}

.architecture-node-label {
  display: block;
  color: #33415a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.architecture-node-echo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  border-radius: 0;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transform:
    translate(-50%, -50%)
    translate(var(--echo-x, 0), var(--echo-y, 0))
    scale(0.58)
    rotate(var(--echo-tilt, -8deg));
  filter: blur(0.9px) saturate(1.12);
  box-shadow: none;
  mix-blend-mode: normal;
  animation: architectureNodeEcho var(--architecture-orbit-duration) var(--architecture-flow-ease) infinite;
  animation-delay: calc(var(--echo-step, 0) * var(--architecture-step-duration));
}

.architecture-hub {
  left: 50%;
  top: 366px;
  width: 318px;
  min-height: 154px;
  padding: 22px 24px 24px;
  border-radius: 26px;
  border: 1px solid rgba(156, 184, 239, 0.94);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 1), rgba(245, 249, 255, 0.99) 42%, rgba(227, 237, 255, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -16px 28px rgba(195, 211, 245, 0.24),
    0 30px 84px rgba(27, 86, 253, 0.14);
  transform: translate(-50%, -50%);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 11px;
  text-align: center;
  overflow: visible;
  animation: architectureHubCardGlow var(--architecture-orbit-duration) ease-in-out infinite;
}

.architecture-hub::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  pointer-events: none;
}

.architecture-hub::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 34px 18px rgba(27, 86, 253, 0.18),
    -156px -84px 0 0 rgba(27, 86, 253, 0.86),
    -128px -118px 0 -1px rgba(122, 166, 255, 0.84),
    -182px -42px 0 -1px rgba(217, 230, 255, 0.92),
    164px -92px 0 0 rgba(27, 86, 253, 0.88),
    130px -122px 0 -1px rgba(115, 160, 255, 0.84),
    196px -52px 0 -1px rgba(217, 230, 255, 0.92),
    -178px 74px 0 0 rgba(27, 86, 253, 0.82),
    -138px 108px 0 -1px rgba(127, 171, 255, 0.82),
    -204px 34px 0 -1px rgba(217, 230, 255, 0.9),
    184px 78px 0 0 rgba(27, 86, 253, 0.84),
    142px 116px 0 -1px rgba(127, 171, 255, 0.82),
    210px 30px 0 -1px rgba(217, 230, 255, 0.9),
    -42px -168px 0 -1px rgba(104, 151, 255, 0.78),
    38px -176px 0 -1px rgba(104, 151, 255, 0.78),
    -26px 176px 0 -1px rgba(104, 151, 255, 0.76),
    22px 182px 0 -1px rgba(104, 151, 255, 0.76);
  filter: blur(0.2px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.22);
  transform-origin: center;
  animation: architectureHubAura var(--architecture-orbit-duration) cubic-bezier(0.12, 0.72, 0.18, 1) infinite;
}

.architecture-hub > * {
  position: relative;
  z-index: 1;
}

.architecture-hub-echo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122px;
  height: 122px;
  object-fit: contain;
  border-radius: 0;
  --echo-x: 0px;
  --echo-y: -64px;
  --echo-drift-x: 0px;
  --echo-drift-y: -92px;
  --echo-tilt: -6deg;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transform:
    translate(-50%, -50%)
    translate(var(--echo-x), var(--echo-y))
    scale(0.58)
    rotate(var(--echo-tilt));
  filter: blur(1.8px) saturate(1.08);
  animation: architectureNodeEcho var(--architecture-orbit-duration) var(--architecture-flow-ease) infinite;
  animation-delay: calc(15 * var(--architecture-step-duration));
}

.architecture-hub-celebration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.architecture-hub-celebration::before,
.architecture-hub-celebration::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.18) rotate(0deg);
  transform-origin: center;
  will-change: transform, opacity, text-shadow;
}

.architecture-hub-celebration::before {
  color: #ffd45c;
  text-shadow:
    -150px -88px 0 #4f8bff,
    -118px -126px 0 #ffd45c,
    -192px -42px 0 #ff7a6b,
    158px -92px 0 #69d2ff,
    126px -130px 0 #8a7dff,
    196px -46px 0 #ffd45c,
    -176px 80px 0 #47dfb6,
    -136px 116px 0 #ffd45c,
    -206px 28px 0 #ff7a6b,
    184px 78px 0 #ff7a6b,
    144px 118px 0 #47dfb6,
    212px 24px 0 #ffd45c;
  animation: architectureCelebrationBurstA var(--architecture-orbit-duration) cubic-bezier(0.16, 0.78, 0.2, 1) infinite;
}

.architecture-hub-celebration::after {
  color: #ffffff;
  font-size: 18px;
  text-shadow:
    -96px -156px 0 #ffd45c,
    92px -164px 0 #69d2ff,
    -222px -2px 0 #8a7dff,
    226px 4px 0 #ff7a6b,
    -98px 164px 0 #47dfb6,
    88px 170px 0 #ffd45c,
    -36px -188px 0 #ffffff,
    42px -192px 0 #ffffff,
    -28px 188px 0 #ffffff,
    34px 192px 0 #ffffff;
  animation: architectureCelebrationBurstB var(--architecture-orbit-duration) cubic-bezier(0.16, 0.78, 0.2, 1) infinite;
}

.architecture-hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(200, 214, 239, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: #213555;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.architecture-hub-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.architecture-hub-avatar {
  width: 28px;
  height: 28px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  flex: 0 0 auto;
}

.architecture-hub strong {
  display: block;
  margin: 0;
  color: #0c1730;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.architecture-hub p {
  margin: 0;
  color: rgba(31, 48, 72, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.architecture-node-contributor {
  --node-x: 164px;
  --node-y: -220px;
  --card-offset-x: 54px;
  --card-offset-y: -94px;
  --echo-step: 3;
  --echo-x: 104px;
  --echo-y: -20px;
  --echo-drift-x: 30px;
  --echo-drift-y: -10px;
  --echo-tilt: 8deg;
}

.architecture-node-access {
  --node-x: -164px;
  --node-y: -220px;
  --card-offset-x: -54px;
  --card-offset-y: -94px;
  --echo-step: 0;
  --echo-x: -104px;
  --echo-y: -20px;
  --echo-drift-x: -30px;
  --echo-drift-y: -10px;
  --echo-tilt: -8deg;
}

.architecture-node-need {
  --node-x: 384px;
  --node-y: -92px;
  --card-offset-x: 70px;
  --card-offset-y: -34px;
  --echo-step: 5;
  --echo-x: 112px;
  --echo-y: -4px;
  --echo-drift-x: 34px;
  --echo-drift-y: -8px;
  --echo-tilt: 10deg;
}

.architecture-node-interest {
  --node-x: -384px;
  --node-y: -92px;
  --card-offset-x: -70px;
  --card-offset-y: -34px;
  --echo-step: 15;
  --echo-x: -112px;
  --echo-y: -4px;
  --echo-drift-x: -34px;
  --echo-drift-y: -8px;
  --echo-tilt: -10deg;
}

.architecture-node-profiles {
  --node-x: 384px;
  --node-y: 92px;
  --card-offset-x: 70px;
  --card-offset-y: 34px;
  --echo-step: 7;
  --echo-x: 112px;
  --echo-y: 6px;
  --echo-drift-x: 34px;
  --echo-drift-y: 10px;
  --echo-tilt: 10deg;
}

.architecture-node-wins {
  --node-x: -384px;
  --node-y: 92px;
  --card-offset-x: -70px;
  --card-offset-y: 34px;
  --echo-step: 13;
  --echo-x: -112px;
  --echo-y: 6px;
  --echo-drift-x: -34px;
  --echo-drift-y: 10px;
  --echo-tilt: -10deg;
}

.architecture-node-startup {
  --node-x: 164px;
  --node-y: 220px;
  --card-offset-x: 42px;
  --card-offset-y: 72px;
  --echo-step: 9;
  --echo-x: 104px;
  --echo-y: -6px;
  --echo-drift-x: 30px;
  --echo-drift-y: 4px;
  --echo-tilt: 9deg;
}

.architecture-node-trust {
  --node-x: -164px;
  --node-y: 220px;
  --card-offset-x: -42px;
  --card-offset-y: 72px;
  --echo-step: 11;
  --echo-x: -104px;
  --echo-y: -6px;
  --echo-drift-x: -30px;
  --echo-drift-y: 4px;
  --echo-tilt: -9deg;
}

@keyframes architectureOrbitSegment {
  0%,
  100% {
    opacity: 0.08;
    stroke-width: 2.45;
    filter: drop-shadow(0 0 2px rgba(27, 86, 253, 0.02));
  }

  8% {
    opacity: 0.98;
    stroke-width: 3.15;
    filter: drop-shadow(0 0 9px rgba(27, 86, 253, 0.15));
  }

  16% {
    opacity: 0.54;
    stroke-width: 2.8;
    filter: drop-shadow(0 0 5px rgba(27, 86, 253, 0.06));
  }

  26% {
    opacity: 0.18;
    stroke-width: 2.6;
    filter: drop-shadow(0 0 3px rgba(27, 86, 253, 0.03));
  }
}

@keyframes architectureNodeEcho {
  0%,
  100% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      translate(var(--echo-x, 0), var(--echo-y, 0))
      scale(0.46)
      rotate(var(--echo-tilt, -8deg));
    filter: blur(2.4px) saturate(1.02);
  }

  8% {
    opacity: 0.92;
    transform:
      translate(-50%, -50%)
      translate(var(--echo-x, 0), var(--echo-y, 0))
      scale(1.02)
      rotate(calc(var(--echo-tilt, -8deg) * 0.65));
    filter: blur(0.25px) saturate(1.14);
  }

  16% {
    opacity: 0.58;
    transform:
      translate(-50%, -50%)
      translate(calc(var(--echo-x, 0) + var(--echo-drift-x, 0) * 0.45), calc(var(--echo-y, 0) + var(--echo-drift-y, 0) * 0.45))
      scale(1.14)
      rotate(calc(var(--echo-tilt, -8deg) * 0.38));
    filter: blur(0.7px) saturate(1.1);
  }

  26% {
    opacity: 0.18;
    transform:
      translate(-50%, -50%)
      translate(calc(var(--echo-x, 0) + var(--echo-drift-x, 0)), calc(var(--echo-y, 0) + var(--echo-drift-y, 0)))
      scale(1.24)
      rotate(calc(var(--echo-tilt, -8deg) * 0.18));
    filter: blur(1.6px) saturate(1.04);
  }
}

@keyframes architectureHubCardGlow {
  0%,
  95% {
    border-color: rgba(156, 184, 239, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -16px 28px rgba(195, 211, 245, 0.24),
      0 30px 84px rgba(27, 86, 253, 0.14);
  }

  97%,
  99.2% {
    border-color: rgba(106, 150, 248, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -16px 28px rgba(195, 211, 245, 0.28),
      0 30px 84px rgba(27, 86, 253, 0.18),
      0 0 0 1px rgba(97, 143, 247, 0.26);
  }

  100% {
    border-color: rgba(156, 184, 239, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -16px 28px rgba(195, 211, 245, 0.24),
      0 30px 84px rgba(27, 86, 253, 0.14);
  }
}

@keyframes architectureHubAura {
  0%,
  95.5% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(-10deg);
  }

  97% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.74) rotate(-2deg);
  }

  98.2% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02) rotate(5deg);
  }

  99.2% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1.18) rotate(10deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3) rotate(14deg);
  }
}

@keyframes architectureCelebrationBurstA {
  0%,
  96% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.16) rotate(-16deg);
  }

  97.1% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.94) rotate(2deg);
  }

  99% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.24) rotate(18deg);
  }
}

@keyframes architectureCelebrationBurstB {
  0%,
  96.2% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1) rotate(10deg);
  }

  97.2% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.72) rotate(-4deg);
  }

  99% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.02) rotate(-12deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2) rotate(-20deg);
  }
}

@media (max-width: 1200px) {
  .home-architecture-flow {
    --architecture-scale-offset: 79px;
  }

  .architecture-canvas,
  .architecture-stage-layer {
    min-height: 658px;
  }

  .architecture-node {
    width: 184px;
    top: 356px;
  }

  .architecture-node-label {
    font-size: 17px;
  }

  .architecture-node-contributor {
    --node-x: 144px;
    --node-y: -208px;
    --card-offset-x: 50px;
    --card-offset-y: -92px;
  }

  .architecture-node-access {
    --node-x: -144px;
    --node-y: -208px;
    --card-offset-x: -50px;
    --card-offset-y: -92px;
  }

  .architecture-node-need {
    --card-offset-x: 62px;
    --card-offset-y: -30px;
  }

  .architecture-node-interest {
    --card-offset-x: -62px;
    --card-offset-y: -30px;
  }

  .architecture-node-need {
    --node-x: 356px;
    --node-y: -88px;
  }

  .architecture-node-interest {
    --node-x: -356px;
    --node-y: -88px;
  }

  .architecture-node-profiles {
    --node-x: 356px;
    --node-y: 88px;
    --card-offset-x: 62px;
    --card-offset-y: 30px;
  }

  .architecture-node-wins {
    --node-x: -356px;
    --node-y: 88px;
    --card-offset-x: -62px;
    --card-offset-y: 30px;
  }

  .architecture-node-startup {
    --node-x: 144px;
    --node-y: 208px;
    --card-offset-x: 38px;
    --card-offset-y: 62px;
  }

  .architecture-node-trust {
    --node-x: -144px;
    --node-y: 208px;
    --card-offset-x: -38px;
    --card-offset-y: 62px;
  }

  .architecture-hub {
    top: 356px;
    width: 300px;
  }

  .architecture-hub strong {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  .home-hero-architecture-wrap {
    margin-top: 16px;
  }

  .home-architecture-flow {
    --architecture-scale-offset: 78px;
    padding: 28px 22px;
    border-radius: 34px;
  }

  .home-architecture-flow::before {
    inset: 12px;
    border-radius: 24px;
  }

  .architecture-canvas,
  .architecture-stage-layer {
    min-height: 654px;
  }

  .architecture-node {
    width: 184px;
    min-height: 70px;
    padding: 16px 17px;
    top: 366px;
  }

  .architecture-node-label {
    font-size: 17px;
  }

  .architecture-node-contributor {
    --node-x: 132px;
    --node-y: -200px;
    --card-offset-x: 58px;
    --card-offset-y: -104px;
  }

  .architecture-node-access {
    --node-x: -132px;
    --node-y: -200px;
    --card-offset-x: -58px;
    --card-offset-y: -104px;
  }

  .architecture-node-need {
    --card-offset-x: 66px;
    --card-offset-y: -34px;
  }

  .architecture-node-interest {
    --card-offset-x: -66px;
    --card-offset-y: -34px;
  }

  .architecture-node-need {
    --node-x: 326px;
    --node-y: -84px;
  }

  .architecture-node-interest {
    --node-x: -326px;
    --node-y: -84px;
  }

  .architecture-node-profiles {
    --node-x: 326px;
    --node-y: 84px;
    --card-offset-x: 66px;
    --card-offset-y: 34px;
  }

  .architecture-node-wins {
    --node-x: -326px;
    --node-y: 84px;
    --card-offset-x: -66px;
    --card-offset-y: 34px;
  }

  .architecture-node-startup {
    --node-x: 132px;
    --node-y: 200px;
    --card-offset-x: 42px;
    --card-offset-y: 68px;
  }

  .architecture-node-trust {
    --node-x: -132px;
    --node-y: 200px;
    --card-offset-x: -42px;
    --card-offset-y: 68px;
  }

  .architecture-hub {
    top: 366px;
    width: 292px;
    min-height: 150px;
    padding: 22px 24px;
  }

  .architecture-hub strong {
    font-size: 25px;
  }
}

@media (max-width: 860px) {
  .home-architecture-flow {
    --architecture-scale: 1;
    --architecture-scale-offset: 0px;
    --architecture-ring-scale-x: 1;
    padding: 22px 16px;
    border-radius: 30px;
    transform: none;
  }

  .architecture-lines {
    display: none;
  }

  .architecture-canvas,
  .architecture-stage-layer {
    min-height: 0;
  }

  .architecture-stage-layer {
    display: grid;
    gap: 12px;
  }

  .architecture-node,
  .architecture-hub,
  .architecture-node-contributor,
  .architecture-node-trust {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .architecture-hub,
  .architecture-hub::after,
  .architecture-loop-segment,
  .architecture-node-echo,
  .architecture-hub-echo,
  .architecture-hub-celebration::before,
  .architecture-hub-celebration::after {
    animation: none;
  }

  .architecture-node-echo {
    display: none;
  }

  .architecture-hub-echo {
    display: none;
  }

  .architecture-hub {
    min-height: 144px;
    order: 9;
  }
}

@media (max-width: 640px) {
  .home-cinematic-hero {
    padding-top: 86px;
  }

  .home-hero-copy-wrap {
    padding-top: 88px;
  }

  .home-hero-intro {
    max-width: 680px;
  }

  .home-architecture-flow {
    padding: 18px 14px;
    border-radius: 26px;
  }

  .architecture-node {
    min-height: 66px;
    padding: 15px 15px;
  }

  .architecture-node::before,
  .architecture-hub::before {
    inset: 8px;
  }

  .architecture-node-label {
    font-size: 16px;
  }

  .architecture-hub {
    min-height: 136px;
    padding: 20px 18px;
    gap: 12px;
  }

  .architecture-hub-brand {
    min-height: 36px;
    font-size: 16px;
  }

  .architecture-hub-logo {
    width: 24px;
    height: 24px;
  }

  .architecture-hub strong {
    font-size: 28px;
  }
}

/* =========================================
   VISUAL REFINEMENT PASS
   Premium dark shell / spacing / card polish
========================================= */

:root {
  --sw-bg: #0b0d12;
  --sw-bg-soft: #0f1319;
  --sw-bg-muted: #141920;
  --sw-surface: rgba(17, 21, 28, 0.9);
  --sw-surface-strong: #161c24;
  --sw-surface-tint: linear-gradient(180deg, rgba(22, 28, 36, 0.98), rgba(17, 21, 28, 0.96));
  --sw-blue: #1b55fe;
  --sw-blue-deep: #8caeff;
  --sw-blue-soft: rgba(27, 85, 254, 0.18);
  --sw-blue-faint: rgba(27, 85, 254, 0.12);
  --sw-navy: #f4f7fb;
  --sw-ink: #eef2f8;
  --sw-ink-soft: #a7b3c2;
  --sw-ink-faint: #7f8b9a;
  --sw-border: rgba(35, 43, 54, 0.92);
  --sw-border-strong: rgba(54, 64, 80, 0.96);
  --sw-shadow-xl: 0 36px 96px rgba(0, 0, 0, 0.42);
  --sw-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.34);
  --sw-shadow-md: 0 16px 40px rgba(0, 0, 0, 0.24);
  --sw-radius-xl: 32px;
  --sw-radius-lg: 28px;
  --sw-radius-md: 22px;
  --sw-radius-sm: 16px;
  --sw-max: 1240px;
}

html {
  color-scheme: dark;
}

body.home-page,
body.story-page {
  background: var(--sw-bg);
  color: var(--sw-ink);
}

body.home-page .site-background,
body.story-page .site-background,
body.home-page,
body.story-page {
  background:
    radial-gradient(circle at 50% -12%, rgba(27, 85, 254, 0.18), transparent 28%),
    radial-gradient(circle at 12% 16%, rgba(27, 85, 254, 0.08), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(52, 66, 89, 0.18), transparent 24%),
    linear-gradient(180deg, #0b0d12 0%, #0c1015 36%, #0f1319 72%, #11161d 100%);
}

body.home-page .site-header,
body.story-page .site-header {
  background: rgba(9, 12, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

body.home-page .site-header.scrolled,
body.story-page .site-header.scrolled {
  background: rgba(10, 13, 19, 0.92);
  border-bottom-color: rgba(54, 64, 80, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

body.home-page .brand-text,
body.story-page .brand-text {
  color: var(--sw-navy);
}

body.home-page .nav-links a,
body.story-page .nav-links a {
  color: rgba(220, 228, 241, 0.68);
}

body.home-page .nav-links a:hover,
body.home-page .nav-links a.active,
body.story-page .nav-links a:hover,
body.story-page .nav-links a.active {
  color: var(--sw-navy);
}

.site-top-cta {
  background: linear-gradient(180deg, #2f67ff 0%, #1b55fe 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(27, 85, 254, 0.24);
}

.site-top-cta:hover {
  background: linear-gradient(180deg, #4174ff 0%, #2960ff 100%);
}

body.home-page .menu-toggle,
body.story-page .menu-toggle {
  border-color: rgba(56, 66, 82, 0.88);
  background: rgba(17, 21, 28, 0.88);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

body.home-page .menu-toggle span,
body.story-page .menu-toggle span {
  background: var(--sw-navy);
}

.hero-shell {
  padding: 100px 0 56px;
}

.hero-shell::before {
  background:
    radial-gradient(circle at 16% 10%, rgba(27, 85, 254, 0.16), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(27, 85, 254, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.hero-copy .eyebrow,
.section-head .eyebrow,
.section-copy .eyebrow,
.site-cta .eyebrow,
.journey-kicker,
.card-tag {
  background: rgba(17, 21, 28, 0.88);
  border: 1px solid rgba(56, 66, 82, 0.9);
  color: #c3d2ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-copy .eyebrow::before,
.section-head .eyebrow::before,
.section-copy .eyebrow::before,
.site-cta .eyebrow::before,
.journey-kicker::before,
.card-tag::before {
  background: linear-gradient(180deg, #8bb0ff 0%, #1b55fe 100%);
  box-shadow: 0 0 0 4px rgba(27, 85, 254, 0.16);
}

.hero-copy h1,
.section-head h2,
.section-copy h2,
.site-cta h2,
.page-summary h2,
.faq-panel h2,
.rail-section-head h2,
.trust-ledger-main h2,
.value-card h3,
.lane-card h3,
.story-band-panel h3,
.signal-panel h3,
.journey-stage h3,
.journey-stage strong,
.scene-title,
.footer-links h4 {
  color: var(--sw-navy);
}

.hero-copy p,
.section-head p,
.section-copy p,
.page-summary p,
.faq-panel p,
.site-cta p,
.rail-section-copy p,
.trust-ledger-main p,
.value-card p,
.lane-card p,
.story-band-panel p,
.signal-panel p,
.journey-stage p,
.strip-item span,
.footer-brand p,
.footer-note,
.footer-bottom p,
.story-page .faq-item p {
  color: var(--sw-ink-soft);
}

.hero-actions,
.section-actions {
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .btn,
.section-actions .btn,
.site-cta .btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-actions .btn-primary,
.section-actions .btn-primary,
.site-cta .btn-primary {
  background: linear-gradient(180deg, #2f67ff 0%, #1b55fe 100%);
  box-shadow: 0 18px 34px rgba(27, 85, 254, 0.22);
}

.hero-actions .btn-primary:hover,
.section-actions .btn-primary:hover,
.site-cta .btn-primary:hover {
  background: linear-gradient(180deg, #4174ff 0%, #2960ff 100%);
  box-shadow: 0 22px 40px rgba(27, 85, 254, 0.28);
}

.hero-actions .btn-secondary,
.section-actions .btn-secondary,
.site-cta .btn-secondary {
  background: rgba(17, 21, 28, 0.92);
  border-color: rgba(56, 66, 82, 0.96);
  color: var(--sw-navy);
  box-shadow: none;
}

.hero-actions .btn-secondary:hover,
.section-actions .btn-secondary:hover,
.site-cta .btn-secondary:hover {
  border-color: rgba(92, 110, 138, 0.96);
  background: rgba(20, 25, 33, 0.96);
  color: #ffffff;
}

.hero-note {
  color: var(--sw-ink-faint);
}

.journey-kicker {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: #8caeff;
  box-shadow: none;
}

.journey-kicker::before {
  width: 7px;
  height: 7px;
}

.home-master-hero::before {
  background:
    radial-gradient(42% 30% at 50% 14%, rgba(27, 85, 254, 0.22), rgba(27, 85, 254, 0) 72%),
    radial-gradient(28% 24% at 78% 54%, rgba(27, 85, 254, 0.12), rgba(27, 85, 254, 0) 72%),
    radial-gradient(24% 20% at 18% 42%, rgba(71, 84, 104, 0.18), rgba(71, 84, 104, 0) 74%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.92) 0%, rgba(12, 16, 22, 0.82) 40%, rgba(11, 14, 20, 0.68) 100%);
}

.home-master-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(110% 80% at 50% 58%, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.32) 100%);
}

.home-hero-intro .eyebrow {
  justify-content: flex-start;
  background: rgba(15, 19, 25, 0.8);
  border-color: rgba(56, 66, 82, 0.92);
  color: #c3d2ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-hero-intro h1 {
  color: var(--sw-navy);
  text-shadow: none;
}

.home-hero-intro p {
  color: rgba(226, 233, 243, 0.76);
}

.home-hero-intro .hero-note {
  color: var(--sw-ink-faint);
}

body.home-page .home-nav-shell .site-top-cta {
  box-shadow: 0 16px 32px rgba(27, 85, 254, 0.24);
}

.panorama-hero {
  box-shadow: none;
}

.system-canvas-scroll {
  scrollbar-color: rgba(121, 156, 255, 0.32) transparent;
}

.system-canvas-scroll::-webkit-scrollbar-thumb {
  background: rgba(121, 156, 255, 0.32);
}

.page-signal-strip,
.editorial-ribbon {
  gap: 18px;
}

.strip-item,
.editorial-point {
  padding: 22px;
  border: 1px solid var(--sw-border);
  border-radius: 24px;
  background: rgba(17, 21, 28, 0.78);
  box-shadow: var(--sw-shadow-md);
}

.strip-item strong {
  color: var(--sw-navy);
}

.editorial-ribbon::before {
  display: none;
}

.editorial-point {
  padding-left: 28px;
}

.editorial-point::before {
  top: 22px;
  left: 18px;
  box-shadow: 0 0 0 6px rgba(27, 85, 254, 0.14);
}

.editorial-point .scene-title {
  color: var(--sw-navy);
}

.architecture-node-label {
  color: #33415a;
}

.rail-section-head {
  margin-bottom: 22px;
}

.rail-section-copy {
  margin-bottom: 36px;
}

.flow-scene {
  border: 1px solid var(--sw-border);
  background: rgba(17, 21, 28, 0.84);
  box-shadow: var(--sw-shadow-lg);
}

.flow-scene::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.flow-scene:hover {
  border-color: rgba(83, 100, 127, 0.94);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.42);
}

.scene-graphic {
  background: linear-gradient(180deg, rgba(23, 29, 38, 0.96), rgba(18, 23, 31, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

.scene-graphic path,
.scene-graphic circle,
.scene-graphic rect,
.scene-graphic line {
  stroke: #8caeff;
}

.scene-graphic .fill-blue {
  fill: rgba(27, 85, 254, 0.18);
  stroke: rgba(115, 154, 255, 0.24);
}

.scene-label {
  color: #8caeff;
}

.open-flow-track::before {
  background: linear-gradient(90deg, rgba(27, 85, 254, 0), rgba(27, 85, 254, 0.2), rgba(27, 85, 254, 0));
}

.site-section {
  padding: 120px 0;
}

.site-section.soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.signal-panel,
.value-card,
.page-summary,
.faq-panel,
.lane-card,
.site-cta,
.story-band-panel,
.process-panel {
  border: 1px solid var(--sw-border);
  background: var(--sw-surface-tint);
  box-shadow: var(--sw-shadow-lg);
}

.signal-panel,
.page-summary,
.faq-panel,
.lane-card,
.site-cta,
.story-band-panel {
  padding: 36px;
}

.signal-panel::before,
.site-cta::before,
.story-band-panel::before {
  background: radial-gradient(circle, rgba(27, 85, 254, 0.16), rgba(27, 85, 254, 0) 72%);
}

.chip-row span,
.contact-pill,
.signal-index,
.journey-chip {
  background: rgba(27, 85, 254, 0.14);
  color: #c3d2ff;
}

.signal-item,
.lane-card li {
  border-top-color: rgba(43, 52, 66, 0.92);
}

.signal-item strong {
  color: var(--sw-navy);
}

.journey-band {
  border: 1px solid var(--sw-border);
  background:
    radial-gradient(circle at 10% 10%, rgba(27, 85, 254, 0.12), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(27, 85, 254, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(14, 18, 25, 0.96));
  box-shadow: var(--sw-shadow-xl);
}

.journey-band::after {
  background: linear-gradient(90deg, rgba(27, 85, 254, 0), rgba(27, 85, 254, 0.18), rgba(27, 85, 254, 0));
}

.journey-stage {
  border: 1px solid rgba(56, 66, 82, 0.92);
  background: linear-gradient(180deg, rgba(24, 30, 39, 0.98), rgba(18, 23, 31, 0.94));
  box-shadow: var(--sw-shadow-md);
}

.journey-stage.soft {
  background: linear-gradient(180deg, rgba(27, 33, 43, 0.98), rgba(19, 24, 32, 0.94));
}

.journey-stage.terminal {
  background:
    linear-gradient(180deg, rgba(27, 85, 254, 0.18), rgba(18, 23, 31, 0.94) 70%),
    rgba(19, 24, 32, 0.96);
}

.journey-stage h3,
.journey-stage strong {
  color: var(--sw-navy);
}

.trust-strip {
  border: 1px solid var(--sw-border);
  background: rgba(17, 21, 28, 0.84);
  box-shadow: var(--sw-shadow-md);
}

.trust-strip-item {
  color: var(--sw-navy);
}

.trust-strip-item + .trust-strip-item {
  border-left-color: rgba(43, 52, 66, 0.92);
}

.story-page .faq-item {
  border-bottom-color: rgba(43, 52, 66, 0.92);
}

.story-page .faq-item summary {
  color: var(--sw-navy);
}

.story-page .faq-item summary::after {
  color: #9db8ff;
}

.site-footer {
  margin-top: 0;
  padding: 38px 0 28px;
  border-top: 1px solid rgba(43, 52, 66, 0.92);
  background: rgba(8, 10, 14, 0.96);
}

.site-footer .footer-grid {
  gap: 28px;
  padding-bottom: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(43, 52, 66, 0.92);
  padding-top: 22px;
}

.footer-mail {
  color: #9db8ff;
}

.footer-links a {
  color: var(--sw-ink-soft);
}

.footer-links a:hover {
  color: var(--sw-navy);
}

@media (max-width: 992px) {
  body.home-page .nav-links,
  body.story-page .nav-links {
    border-color: rgba(56, 66, 82, 0.92);
    background: rgba(13, 17, 24, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  }

  body.home-page .nav-links a,
  body.story-page .nav-links a {
    color: rgba(224, 232, 243, 0.78);
  }
}

@media (max-width: 768px) {
  .site-section {
    padding: 92px 0;
  }

  .signal-panel,
  .page-summary,
  .faq-panel,
  .lane-card,
  .site-cta,
  .story-band-panel,
  .process-panel,
  .strip-item,
  .editorial-point {
    padding: 26px;
  }
}

/* =========================================
   LAYOUT BALANCE
   Keep dark polish without over-framing
========================================= */

@media (min-width: 993px) {
  body.home-page .nav-links,
  body.story-page .nav-links {
    padding: 10px 18px;
    border: 1px solid rgba(46, 56, 71, 0.92);
    border-radius: 999px;
    background: rgba(12, 16, 23, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 10px 28px rgba(0, 0, 0, 0.18);
  }
}

.home-hero-copy-wrap {
  padding-top: 148px;
}

.home-hero-intro {
  max-width: 920px;
}

.home-hero-intro p {
  max-width: 48rem;
}

.hero-actions {
  gap: 14px;
}

body.story-page .hero-shell {
  padding-top: 112px;
  padding-bottom: 34px;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: 34px;
}

.footer-links {
  align-content: start;
}

.footer-links h4 {
  margin: 0 0 12px;
  color: var(--sw-navy);
  letter-spacing: -0.02em;
}

.footer-links p,
.footer-note {
  max-width: 28ch;
}

.faq-panel {
  padding-top: 12px;
  padding-bottom: 12px;
}

.story-page .faq-item {
  padding: 10px 0;
}

.story-page .faq-item summary {
  font-size: 20px;
  line-height: 1.42;
}

@media (max-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.story-page .hero-shell {
    padding-top: 92px;
  }
}

/* =========================================
   FINAL UI POLISH
   Readability / spacing / wrapper reduction
========================================= */

body.story-page .hero-shell {
  padding-top: 132px;
  padding-bottom: 42px;
}

body.story-page .panorama-hero .hero-copy {
  padding-top: 8px;
}

body.story-page .panorama-hero .system-canvas-full,
body.story-page .panorama-hero .page-signal-strip,
body.story-page .panorama-hero .editorial-ribbon {
  margin-top: 30px;
}

.process-panel {
  padding: 30px;
  border-color: rgba(39, 48, 61, 0.88);
  background:
    radial-gradient(circle at 12% 10%, rgba(27, 85, 254, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.9), rgba(14, 18, 25, 0.84));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.site-cta {
  border-color: rgba(39, 48, 61, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.faq-panel {
  max-width: 960px;
  padding: 18px 30px;
  border-color: rgba(43, 52, 66, 0.96);
  background:
    radial-gradient(circle at 88% 10%, rgba(27, 85, 254, 0.08), rgba(27, 85, 254, 0) 22%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(13, 17, 24, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 22px 58px rgba(0, 0, 0, 0.28);
}

.story-page .faq-item {
  padding: 18px 0;
  border-bottom-color: rgba(52, 61, 76, 0.92);
}

.story-page .faq-item summary {
  color: #f4f7fb;
}

.story-page .faq-item summary::after {
  color: #b9cbff;
}

.story-page .faq-item p {
  color: #b9c4d3;
}

.story-page .faq-item[open] {
  background: linear-gradient(180deg, rgba(27, 85, 254, 0.05), rgba(27, 85, 254, 0.02));
}

.story-page .faq-item[open] summary {
  color: #ffffff;
}

.home-architecture-flow {
  border-color: rgba(47, 60, 82, 0.96);
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 85, 254, 0.06), rgba(27, 85, 254, 0) 24%),
    linear-gradient(180deg, rgba(24, 31, 42, 0.98), rgba(18, 24, 33, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -16px 28px rgba(9, 14, 20, 0.24),
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 34px 84px rgba(0, 0, 0, 0.24);
}

.home-architecture-flow::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 98, 183, 0.1), rgba(61, 98, 183, 0) 34%),
    radial-gradient(circle at 16% 16%, rgba(89, 123, 198, 0.08), rgba(89, 123, 198, 0) 26%),
    radial-gradient(circle at 84% 18%, rgba(71, 103, 170, 0.08), rgba(71, 103, 170, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(27, 85, 254, 0.028));
}

.architecture-node {
  border-color: rgba(85, 100, 128, 0.9);
  background: linear-gradient(180deg, rgba(228, 234, 243, 0.96), rgba(210, 218, 230, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 14px 30px rgba(0, 0, 0, 0.16);
}

.architecture-hub {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -12px 22px rgba(115, 142, 194, 0.14),
    0 22px 58px rgba(0, 0, 0, 0.2);
}

.architecture-node-echo,
.architecture-hub-echo {
  display: none;
}

@media (max-width: 992px) {
  body.story-page .hero-shell {
    padding-top: 116px;
  }
}

@media (max-width: 768px) {
  body.story-page .hero-shell {
    padding-top: 104px;
    padding-bottom: 30px;
  }

  .faq-panel,
  .process-panel {
    padding: 24px;
  }
}

/* =========================================
   HOMEPAGE VISUAL POLISH
   Glare cleanup / flow panel integration
========================================= */

.home-master-hero::before {
  background:
    radial-gradient(42% 28% at 50% 12%, rgba(27, 85, 254, 0.16), rgba(27, 85, 254, 0) 72%),
    radial-gradient(28% 24% at 78% 54%, rgba(52, 86, 164, 0.1), rgba(52, 86, 164, 0) 74%),
    radial-gradient(24% 20% at 18% 42%, rgba(44, 57, 79, 0.14), rgba(44, 57, 79, 0) 74%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.96) 0%, rgba(12, 16, 22, 0.88) 40%, rgba(11, 14, 20, 0.76) 100%);
}

.home-master-hero::after {
  background:
    linear-gradient(180deg, rgba(122, 151, 215, 0.04) 0%, rgba(122, 151, 215, 0) 22%),
    radial-gradient(110% 80% at 50% 58%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.36) 100%);
}

.home-cinematic-hero::before {
  background:
    radial-gradient(42% 38% at 50% 52%, rgba(63, 98, 181, 0.14), rgba(63, 98, 181, 0.04) 46%, rgba(63, 98, 181, 0) 76%),
    radial-gradient(24% 26% at 12% 28%, rgba(29, 48, 86, 0.16), rgba(29, 48, 86, 0) 74%),
    radial-gradient(22% 24% at 90% 22%, rgba(55, 89, 165, 0.14), rgba(55, 89, 165, 0) 74%);
}

.mist-a {
  background: radial-gradient(circle, rgba(44, 63, 104, 0.18), rgba(44, 63, 104, 0) 74%);
}

.mist-b {
  background: radial-gradient(circle, rgba(52, 86, 164, 0.16), rgba(52, 86, 164, 0) 72%);
}

.mist-c {
  background: radial-gradient(circle, rgba(32, 49, 82, 0.18), rgba(32, 49, 82, 0) 74%);
}

.home-architecture-flow {
  border-color: rgba(52, 66, 90, 0.96);
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 85, 254, 0.08), rgba(27, 85, 254, 0) 26%),
    linear-gradient(180deg, rgba(28, 36, 48, 0.98), rgba(19, 25, 34, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 30px rgba(9, 14, 20, 0.28),
    inset 18px 0 28px rgba(255, 255, 255, 0.015),
    inset -18px 0 28px rgba(71, 103, 170, 0.04),
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 38px 96px rgba(0, 0, 0, 0.28);
}

.home-architecture-flow::before {
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -10px 18px rgba(8, 12, 19, 0.18);
}

.home-architecture-flow::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 98, 183, 0.14), rgba(61, 98, 183, 0) 34%),
    radial-gradient(circle at 16% 16%, rgba(89, 123, 198, 0.12), rgba(89, 123, 198, 0) 26%),
    radial-gradient(circle at 84% 18%, rgba(71, 103, 170, 0.1), rgba(71, 103, 170, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(27, 85, 254, 0.04));
}

.architecture-loop-guide {
  stroke: rgba(116, 135, 172, 0.48);
}

.architecture-connector {
  stroke: rgba(119, 136, 171, 0.72);
}

.architecture-node {
  border-color: rgba(78, 94, 122, 0.96);
  background: linear-gradient(180deg, rgba(222, 229, 240, 0.97), rgba(205, 215, 229, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.architecture-node::before {
  border-color: rgba(255, 255, 255, 0.26);
}

.architecture-node-label {
  color: #223149;
}

.architecture-hub {
  border-color: rgba(102, 133, 199, 0.82);
  background:
    radial-gradient(circle at 50% 22%, rgba(242, 246, 255, 0.98), rgba(217, 227, 245, 0.96) 48%, rgba(184, 201, 230, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -14px 24px rgba(115, 142, 194, 0.16),
    0 24px 68px rgba(9, 14, 20, 0.24);
}

.architecture-hub::before {
  border-color: rgba(255, 255, 255, 0.34);
}

/* =========================================
   FINAL MICRO POLISH
   Exact selector fixes / end-of-file overrides
========================================= */

body.story-page .faq-panel.reveal-item {
  max-width: 960px;
  padding: 16px 24px;
  border: 1px solid rgba(43, 52, 66, 0.96);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(27, 85, 254, 0.08), rgba(27, 85, 254, 0) 22%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(13, 17, 24, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 22px 58px rgba(0, 0, 0, 0.28);
}

body.story-page .faq-panel.reveal-item > details.faq-item {
  margin: 0;
  padding: 18px 18px;
  border: 0;
  border-bottom: 1px solid rgba(52, 61, 76, 0.92);
  border-radius: 18px;
  background: transparent;
}

body.story-page .faq-panel.reveal-item > details.faq-item:last-child {
  border-bottom: 0;
}

body.story-page .faq-panel.reveal-item > details.faq-item > summary {
  color: #f4f7fb;
}

body.story-page .faq-panel.reveal-item > details.faq-item > summary::after {
  color: #b9cbff;
}

body.story-page .faq-panel.reveal-item > details.faq-item > p {
  color: #b9c4d3;
}

body.story-page .faq-panel.reveal-item > details.faq-item[open] {
  background: linear-gradient(180deg, rgba(27, 85, 254, 0.05), rgba(27, 85, 254, 0.02));
}

body.story-page .faq-panel.reveal-item > details.faq-item[open] > summary {
  color: #ffffff;
}

body.story-page .hero-shell.hero-shell-story,
body.story-page .hero-shell.hero-shell-process {
  padding-top: 140px;
  padding-bottom: 44px;
}

body.story-page .hero-shell.hero-shell-story .panorama-hero .hero-copy,
body.story-page .hero-shell.hero-shell-process .panorama-hero .hero-copy {
  padding-top: 12px;
}

body.story-page .hero-shell.hero-shell-story .panorama-hero .system-canvas-full,
body.story-page .hero-shell.hero-shell-process .panorama-hero .system-canvas-full {
  margin-top: 36px;
}

body.story-page .process-panel.reveal-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 992px) {
  body.story-page .hero-shell.hero-shell-story,
  body.story-page .hero-shell.hero-shell-process {
    padding-top: 122px;
  }
}

@media (max-width: 768px) {
  body.story-page .faq-panel.reveal-item {
    padding: 14px 16px;
  }

  body.story-page .faq-panel.reveal-item > details.faq-item {
    padding: 16px 12px;
  }

  body.story-page .hero-shell.hero-shell-story,
  body.story-page .hero-shell.hero-shell-process {
    padding-top: 110px;
    padding-bottom: 32px;
  }
}

body.story-page main #faq-list .faq-panel.reveal-item {
  background:
    radial-gradient(circle at 88% 10%, rgba(27, 85, 254, 0.08), rgba(27, 85, 254, 0) 22%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.98), rgba(13, 17, 24, 0.96)) !important;
  border: 1px solid rgba(43, 52, 66, 0.96) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 22px 58px rgba(0, 0, 0, 0.28) !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(52, 61, 76, 0.92) !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item:last-child {
  border-bottom: 0 !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item > summary {
  color: #f4f7fb !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item > summary::after {
  color: #b9cbff !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item > p {
  color: #b9c4d3 !important;
}

body.story-page main #faq-list .faq-panel.reveal-item > details.faq-item[open] {
  background: linear-gradient(180deg, rgba(27, 85, 254, 0.05), rgba(27, 85, 254, 0.02)) !important;
}

@media (min-width: 769px) {
  .architecture-node-echo,
  .architecture-hub-echo {
    display: block;
  }
}

.journey-stage {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.journey-band.compact .journey-stage {
  height: 220px;
  margin-top: 0 !important;
}

.journey-band.process-band .journey-stage {
  height: 196px;
  margin-top: 0 !important;
}

.signal-item {
  align-items: center;
}

.signal-item > div {
  display: flex;
  min-height: 34px;
  flex-direction: column;
  justify-content: center;
}

.signal-index,
.lane-card li::before {
  padding: 0;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.signal-index {
  font-family: "Inter", sans-serif;
}

/* =========================================
   FINAL TYPOGRAPHY POLISH
   Font system + readable hierarchy only
========================================= */

body.home-page,
body.story-page,
body.home-page button,
body.story-page button,
body.home-page input,
body.story-page input,
body.home-page textarea,
body.story-page textarea,
body.home-page select,
body.story-page select {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

body.home-page .brand-text,
body.story-page .brand-text,
body.home-page .nav-links a,
body.story-page .nav-links a,
body.home-page .btn,
body.story-page .btn,
body.home-page .eyebrow,
body.story-page .eyebrow,
body.home-page .hero-note,
body.story-page .hero-note,
body.story-page .faq-item summary,
body.home-page .scene-label,
body.story-page .scene-label,
body.story-page .journey-kicker,
body.story-page .card-tag {
  font-family: "Inter", sans-serif;
}

.hero-copy h1,
.section-head h2,
.section-copy h2,
.site-cta h2,
.page-summary h2,
.faq-panel h2,
.rail-section-head h2,
.trust-ledger-main h2,
.value-card h3,
.lane-card h3,
.story-band-panel h3,
.signal-panel h3,
.journey-stage h3,
.journey-stage strong,
.scene-title,
.footer-links h4,
.strip-item strong,
.editorial-point strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.home-page .brand-text,
body.story-page .brand-text {
  font-weight: 700;
  letter-spacing: -0.035em;
}

body.home-page .nav-links a,
body.story-page .nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-actions .btn,
.section-actions .btn,
.site-cta .btn,
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-copy p,
.section-head p,
.section-copy p,
.page-summary p,
.faq-panel p,
.site-cta p,
.rail-section-copy p,
.trust-ledger-main p,
.value-card p,
.lane-card p,
.story-band-panel p,
.signal-panel p,
.journey-stage p,
.strip-item span,
.footer-brand p,
.footer-note,
.footer-bottom p,
.story-page .faq-item p,
.home-hero-intro p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.hero-copy p,
.home-hero-intro p,
.page-summary p {
  max-width: 44rem;
}

.hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.story-page .panorama-hero .hero-copy h1 {
  max-width: 13.4ch;
}

.home-hero-intro h1 {
  max-width: min(100%, 15.2ch);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-hero-intro p {
  max-width: 41rem;
  font-size: 18px;
}

.story-page .panorama-hero .hero-copy p,
.hero-copy p {
  font-size: 17px;
}

.hero-copy .eyebrow,
.section-head .eyebrow,
.section-copy .eyebrow,
.site-cta .eyebrow,
.journey-kicker,
.card-tag,
.scene-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-note,
.footer-note,
.footer-bottom p {
  font-size: 14px;
}

@media (max-width: 992px) {
  .home-hero-intro h1 {
    max-width: min(100%, 14.2ch);
    font-size: clamp(44px, 7vw, 64px);
  }

  .hero-copy h1 {
    font-size: clamp(40px, 6vw, 58px);
  }
}

@media (max-width: 768px) {
  .home-hero-intro h1 {
    max-width: min(100%, 13.2ch);
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.05;
  }

  .story-page .panorama-hero .hero-copy h1,
  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(34px, 8vw, 46px);
    line-height: 1.06;
  }

  .home-hero-intro p,
  .hero-copy p,
  .story-page .panorama-hero .hero-copy p {
    font-size: 16px;
    line-height: 1.68;
  }
}

body.home-page .home-hero-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.home-page .home-hero-intro .eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .home-hero-intro h1,
body.home-page .home-hero-intro p,
body.home-page .home-hero-intro .hero-note {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.home-page .home-hero-intro .hero-actions {
  justify-content: center;
}

body.home-page .home-architecture-flow {
  padding-bottom: 48px;
}

body.home-page .home-master-hero {
  padding-bottom: 34px;
}

body.home-page .home-cinematic-hero {
  min-height: 1240px;
}

body.home-page .home-hero-copy-wrap {
  padding-top: 188px !important;
  padding-bottom: 18px;
}

body.home-page .home-hero-intro {
  padding-top: 26px;
  max-width: 900px;
}

body.home-page .home-hero-intro h1 {
  margin-top: 24px;
  margin-bottom: 34px;
  max-width: min(100%, 14.4ch);
  font-size: clamp(42px, 5vw, 64px) !important;
  line-height: 1.08 !important;
}

body.home-page .home-hero-intro p {
  max-width: 38rem;
}

body.home-page .home-hero-intro .hero-actions {
  margin-top: 44px;
}

body.home-page .home-positioning-wrap {
  margin-top: 92px;
  padding-bottom: 8px;
}

body.home-page .hero-value-strip {
  max-width: 46rem;
  padding-top: 28px;
}

body.home-page .hero-value-strip strong {
  max-width: 38rem;
  font-size: clamp(22px, 2.4vw, 28px);
}

body.home-page .hero-value-strip span {
  max-width: 28rem;
  margin-top: 10px;
  font-size: 15px;
}

body.home-page .home-hero-architecture-wrap {
  margin-top: 118px;
  padding-bottom: 28px;
}

@media (max-width: 1024px) {
  body.home-page .home-architecture-flow {
    padding-bottom: 44px;
  }

  body.home-page .home-cinematic-hero {
    min-height: 1170px;
  }

  body.home-page .home-hero-copy-wrap {
    padding-top: 166px !important;
  }

  body.home-page .home-hero-intro h1 {
    font-size: clamp(38px, 5.8vw, 56px) !important;
    margin-bottom: 30px;
    line-height: 1.08 !important;
  }

  body.home-page .home-hero-intro .hero-actions {
    margin-top: 38px;
  }

  body.home-page .home-positioning-wrap {
    margin-top: 72px;
  }

  body.home-page .home-hero-architecture-wrap {
    margin-top: 96px;
  }
}

@media (max-width: 768px) {
  body.home-page .home-cinematic-hero {
    min-height: auto;
  }

  body.home-page .home-hero-copy-wrap {
    padding-top: 144px !important;
    padding-bottom: 10px;
  }

  body.home-page .home-hero-intro h1 {
    font-size: clamp(34px, 8vw, 42px) !important;
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.1 !important;
  }

  body.home-page .home-hero-intro .hero-actions {
    margin-top: 32px;
  }

  body.home-page .home-positioning-wrap {
    margin-top: 52px;
  }

  body.home-page .hero-value-strip {
    padding-top: 22px;
  }

  body.home-page .home-hero-architecture-wrap {
    margin-top: 72px;
    padding-bottom: 18px;
  }
}

body.story-page .hero-shell-process .system-canvas-scroll {
  padding-left: 18px;
  padding-right: 18px;
}

body.story-page .process-flow-track {
  height: 340px;
}

body.story-page .process-flow-track .flow-scene {
  min-height: 0;
  width: 166px;
  padding: 16px 16px 14px;
  border-radius: 22px;
}

body.story-page .process-flow-track .flow-scene.slim {
  width: 146px;
}

body.story-page .process-flow-track .flow-scene.wide {
  width: 184px;
}

body.story-page .process-flow-track .scene-graphic {
  width: 74px;
  height: 52px;
  margin-bottom: 14px;
}

body.story-page .process-flow-track .scene-graphic svg {
  width: 52px;
  height: 38px;
}

body.story-page .process-flow-track .scene-label {
  font-size: 10px;
  letter-spacing: 0.1em;
}

body.story-page .process-flow-track .scene-title {
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.journey-band.compact .stage-submit {
  margin-top: 44px !important;
}

.journey-band.compact .stage-intro {
  margin-top: 6px !important;
}

.journey-band.compact .stage-review {
  margin-top: 104px !important;
}

.journey-band.compact .stage-choice,
.journey-band.compact .journey-stage.terminal {
  margin-top: 44px !important;
}

/* =========================================
   HOMEPAGE OPENING ALIGNMENT
   Match the calmer first-screen hero feel
========================================= */

@media (min-width: 1025px) {
  body.home-page .home-cinematic-hero {
    min-height: 1320px;
    padding-bottom: 112px;
  }

  body.home-page .home-hero-copy-wrap {
    padding-top: 154px !important;
    padding-bottom: 24px;
  }

  body.home-page .home-hero-intro {
    max-width: 980px;
    padding-top: 12px;
  }

  body.home-page .home-hero-intro h1 {
    max-width: min(100%, 15.2ch);
    font-size: clamp(50px, 5.7vw, 76px) !important;
    line-height: 1.03 !important;
    margin-top: 22px;
    margin-bottom: 28px;
  }

  body.home-page .home-hero-intro p {
    max-width: 41rem;
  }

  body.home-page .home-hero-intro .hero-actions {
    margin-top: 34px;
  }

  body.home-page .home-positioning-wrap {
    margin-top: 86px;
    padding-bottom: 12px;
  }

  body.home-page .hero-value-strip {
    max-width: 48rem;
    padding-top: 26px;
  }

  body.home-page .hero-value-strip strong {
    max-width: 40rem;
    font-size: clamp(24px, 2.2vw, 30px);
  }

  body.home-page .hero-value-strip span {
    max-width: 28rem;
    margin-top: 10px;
    font-size: 15px;
  }

  body.home-page .home-hero-architecture-wrap {
    margin-top: 152px;
    padding-bottom: 34px;
  }
}

/* =========================================
   HOMEPAGE SECTION SPACING
   Clear hero / value / flow separation
========================================= */

body.home-page .home-hero-copy-wrap {
  padding-bottom: 88px;
}

body.home-page .home-hero-intro h1 {
  margin-bottom: 42px;
}

body.home-page .home-hero-intro p {
  max-width: 39rem;
}

body.home-page .home-hero-intro .hero-actions {
  margin-top: 52px;
}

body.home-page .home-positioning-wrap {
  margin-top: 0;
  padding-top: 28px;
  padding-bottom: 64px;
}

body.home-page .hero-value-strip {
  padding-top: 30px;
}

body.home-page .home-hero-architecture-wrap {
  margin-top: 88px;
}

@media (max-width: 1024px) {
  body.home-page .home-hero-copy-wrap {
    padding-bottom: 72px;
  }

  body.home-page .home-hero-intro h1 {
    margin-bottom: 36px;
  }

  body.home-page .home-hero-intro .hero-actions {
    margin-top: 44px;
  }

  body.home-page .home-positioning-wrap {
    padding-top: 22px;
    padding-bottom: 52px;
  }

  body.home-page .home-hero-architecture-wrap {
    margin-top: 72px;
  }
}

@media (max-width: 768px) {
  body.home-page .home-hero-copy-wrap {
    padding-bottom: 56px;
  }

  body.home-page .home-hero-intro h1 {
    margin-bottom: 30px;
  }

  body.home-page .home-hero-intro .hero-actions {
    margin-top: 36px;
  }

  body.home-page .home-positioning-wrap {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  body.home-page .hero-value-strip {
    padding-top: 24px;
  }

  body.home-page .home-hero-architecture-wrap {
    margin-top: 56px;
  }
}
