@font-face {
  font-family: "Lora";
  src: url("assets/lora-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/lora-italic-variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --void: #160b1e;
  --bone: #f7f4f0;
  --purple: #654d8f;
  --lavender: #cfc6de;
  --lavender-soft: #e9e3ee;
  --ink-soft: #4f4753;
  --line-dark: rgba(207, 198, 222, 0.25);
  --line-light: rgba(22, 11, 30, 0.15);
  --content: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--void);
  background: var(--bone);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 5px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
blockquote {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(3.6rem, 8vw, 8.25rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.75rem, 5.5vw, 5.6rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

em {
  color: var(--lavender);
  font-weight: 400;
}

.section-bone em,
.section-lavender em {
  color: var(--purple);
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--void);
  background: var(--bone);
  border-radius: 999px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-notice {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem var(--gutter);
  color: var(--void);
  background: var(--lavender);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-notice span + span::before {
  content: "·";
  margin-right: 1rem;
}

.site-header {
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  color: var(--bone);
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: clamp(12.5rem, 21vw, 18.5rem);
}

.brand img,
.footer-brand img {
  width: 100%;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.75rem);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.primary-navigation a {
  text-decoration: none;
}

.primary-navigation a:not(.nav-call) {
  position: relative;
}

.primary-navigation a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--lavender);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
}

.section-dark {
  color: var(--bone);
  background: var(--void);
}

.section-bone {
  color: var(--void);
  background: var(--bone);
}

.section-lavender {
  color: var(--void);
  background: var(--lavender-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-content: space-between;
  padding: clamp(10rem, 16vw, 14rem) var(--gutter) 2.2rem;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: min(52vw, 760px);
  aspect-ratio: 0.75;
  border: 1px solid var(--line-dark);
  border-radius: 50% 50% 18% 50%;
  content: "";
  transform: rotate(17deg);
}

.hero-content,
.hero-foot {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content));
  margin-inline: auto;
}

.eyebrow {
  color: var(--lavender);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-copy {
  max-width: 49rem;
  margin-bottom: 2.4rem;
  color: rgba(247, 244, 240, 0.77);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px 999px 999px 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--bone);
  background: var(--purple);
}

.button-primary:hover {
  color: var(--void);
  background: var(--lavender);
}

.button-light {
  color: var(--void);
  background: var(--bone);
}

.button-light:hover {
  background: var(--lavender);
}

.button-outline {
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line-dark);
}

.button-outline:hover {
  color: var(--void);
  background: var(--lavender);
}

.text-link {
  color: var(--lavender);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-underline-offset: 0.4rem;
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  color: rgba(247, 244, 240, 0.56);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot p {
  margin-bottom: 0;
}

.orbit-one,
.orbit-two {
  position: absolute;
  border: 1px solid rgba(207, 198, 222, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 16%;
  right: -11rem;
  width: 33rem;
  height: 33rem;
}

.orbit-two {
  right: 17%;
  bottom: 15%;
  width: 8rem;
  height: 8rem;
}

.belief,
.founder,
.journey,
.doctrine,
.contact {
  padding: var(--section-space) var(--gutter);
}

.belief,
.founder,
.journey {
  border-bottom: 1px solid var(--line-light);
}

.section-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--purple);
}

.belief-grid,
.founder-grid,
.journey-heading,
.journey-steps,
.contact-inner,
.doctrine-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.belief-grid h2 {
  max-width: 12ch;
}

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

.belief-copy .lead {
  color: var(--void);
  font-size: 1.1rem;
}

.belief-copy p:not(.lead) {
  color: var(--ink-soft);
}

.quiet-note {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: var(--purple) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.doctrine-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.doctrine-card h2 {
  max-width: 9ch;
}

.doctrine-card > p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(247, 244, 240, 0.7);
}

.doctrine-note {
  max-width: 34rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--lavender) !important;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  font-style: italic;
}

.doctrine-principles {
  border-top: 1px solid var(--line-dark);
}

.principle {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.4rem 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.principle > span {
  color: var(--lavender);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.principle h3,
.principle p {
  grid-column: 2;
}

.principle h3 {
  margin-bottom: 0.55rem;
  color: var(--bone);
}

.principle p {
  margin-bottom: 0;
  color: rgba(247, 244, 240, 0.58);
  font-size: 0.86rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: center;
}

.founder-media {
  margin: 0;
}

.founder-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 45% 45% 45% 1.5rem;
}

.founder-media figcaption {
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-media figcaption span {
  color: var(--purple);
}

.founder-story {
  color: var(--ink-soft);
}

.founder-credentials {
  margin: -0.2rem 0 1.6rem;
  color: var(--void);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.6;
  text-transform: uppercase;
}

.founder-credentials span {
  margin-inline: 0.55rem;
  color: var(--purple);
}

.founder-story h2 {
  max-width: 10ch;
}

.founder-standard {
  position: relative;
  margin-top: 2.5rem;
  padding: 2.25rem 0 0 1.5rem;
  border-top: 1px solid var(--line-light);
  border-left: 0;
  color: var(--void);
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
}

.founder-standard::before {
  position: absolute;
  top: 1.5rem;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--purple);
  content: "";
}

.journey-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 3rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.journey-heading .section-eyebrow {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  letter-spacing: 0.18em;
}

.journey-heading h2 {
  max-width: 12ch;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.journey-step {
  position: relative;
  min-width: 0;
  padding: 1.75rem clamp(1rem, 1.6vw, 1.5rem);
  border: 1px solid rgba(22, 11, 30, 0.18);
  border-radius: 2.6rem 2.6rem 2.6rem 0.9rem;
}

.journey-step::before {
  display: none;
}

.step-number {
  display: block;
  margin-bottom: 2rem;
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.journey-step h3 {
  margin-bottom: 0.8rem;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 70rem);
  aspect-ratio: 2 / 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact h2 {
  margin-inline: auto;
}

.contact-inner > p:not(.eyebrow):not(.availability):not(.contact-note) {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(247, 244, 240, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: rgba(247, 244, 240, 0.58);
  font-size: 0.68rem;
}

.availability {
  margin: 1.5rem 0 0;
  color: rgba(247, 244, 240, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.25fr;
  gap: 3rem;
  padding: 4rem var(--gutter);
  color: var(--bone);
  background: var(--void);
  border-top: 1px solid var(--line-dark);
  font-size: 0.74rem;
}

.footer-brand img {
  width: 13rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--lavender);
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.footer-contact,
.footer-legal {
  color: rgba(247, 244, 240, 0.62);
}

.footer-contact a {
  color: var(--bone);
  text-underline-offset: 0.25rem;
}

.email-warning {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--lavender);
  font-size: 0.68rem;
}

.footer-legal details {
  margin-bottom: 1.5rem;
}

.footer-legal summary {
  color: var(--bone);
  cursor: pointer;
}

.footer-legal details p {
  margin-top: 1rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-header {
    top: 3.7rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-content: center;
    gap: 0.45rem;
    padding: 0;
    color: var(--bone);
    background: transparent;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem var(--gutter) 4rem;
    color: var(--bone);
    background: var(--void);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: -0.03em;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation .nav-call {
    margin-top: 1rem;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .belief-grid,
  .doctrine-inner,
  .founder-grid,
  .journey-heading {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-step,
  .journey-step:first-child,
  .journey-step:last-child {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 1.6rem;
    border: 1px solid rgba(22, 11, 30, 0.18);
  }

  .journey-step::before {
    display: none;
  }

  .step-number {
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-notice {
    display: block;
    padding-block: 0.5rem;
    text-align: center;
    line-height: 1.45;
  }

  .site-notice span {
    display: block;
  }

  .site-notice span + span::before {
    display: none;
  }

  .site-header {
    top: 4.4rem;
  }

  .hero {
    min-height: 850px;
    padding-top: 11rem;
  }

  .hero-foot {
    display: block;
  }

  .hero-foot p + p {
    margin-top: 0.5rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .belief-grid,
  .doctrine-inner,
  .founder-grid {
    gap: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Experience layer: subtle motion, clearer wayfinding, and conversion support */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 70px rgba(22, 11, 30, 0.1);
}

body {
  overflow-x: clip;
}

.site-header {
  position: fixed;
  transition: top 400ms var(--ease-out), padding 400ms var(--ease-out), background-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  top: 0;
  padding-block: 0.7rem;
  background: rgba(22, 11, 30, 0.86);
  box-shadow: 0 12px 40px rgba(5, 2, 8, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  transition: width 400ms var(--ease-out);
}

.site-header.is-scrolled .brand {
  width: clamp(10.5rem, 18vw, 14rem);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lavender);
  transform: scaleX(0);
  transform-origin: left;
}

.primary-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere::before {
  position: absolute;
  top: 10%;
  right: -7%;
  width: min(54vw, 52rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 77, 143, 0.34) 0, rgba(101, 77, 143, 0.1) 36%, transparent 69%);
  content: "";
  filter: blur(8px);
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0);
  transition: transform 800ms var(--ease-out);
}

.motion-path {
  position: absolute;
  display: block;
  border: 1px solid rgba(207, 198, 222, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.motion-path-one {
  top: 15%;
  right: -13%;
  width: min(58vw, 56rem);
  aspect-ratio: 1 / 1.3;
  animation: breathe 9s ease-in-out infinite;
}

.motion-path-two {
  top: 24%;
  right: -5%;
  width: min(42vw, 40rem);
  aspect-ratio: 1 / 1.3;
  border-color: rgba(207, 198, 222, 0.12);
  animation: breathe 9s 1.2s ease-in-out infinite reverse;
}

.motion-core {
  position: absolute;
  top: 44%;
  right: 17%;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 0 0 rgba(207, 198, 222, 0.32);
  animation: pulse 3s ease-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: rotate(-18deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.025); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(207, 198, 222, 0.32); }
  70%, 100% { box-shadow: 0 0 0 2.5rem rgba(207, 198, 222, 0); }
}

.hero-content h1,
.hero-copy {
  text-wrap: balance;
}

.button {
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 10px 28px rgba(7, 3, 10, 0.2);
}

.button-quiet {
  color: var(--bone);
  background: rgba(247, 244, 240, 0.06);
  border: 1px solid var(--line-dark);
}

.button-quiet:hover {
  color: var(--void);
  background: var(--lavender);
}

.hero-email,
.contact-email {
  display: inline-block;
  margin-top: 1.25rem;
  color: rgba(247, 244, 240, 0.58);
  font-size: 0.74rem;
  text-underline-offset: 0.35rem;
  transition: color 180ms ease;
}

.hero-email:hover,
.contact-email:hover {
  color: var(--lavender);
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 244, 240, 0.54);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 2.8rem;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 244, 240, 0.2);
}

.scroll-cue span::after {
  position: absolute;
  inset: 0;
  background: var(--lavender);
  content: "";
  animation: travel 2.2s var(--ease-out) infinite;
}

@keyframes travel {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.confidence-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gutter);
  color: var(--void);
  background: var(--bone);
  border-bottom: 1px solid var(--line-light);
}

.confidence-bar p {
  margin: 0;
  padding: 1.25rem clamp(0.75rem, 2vw, 2rem);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  text-align: center;
}

.confidence-bar p + p {
  border-left: 1px solid var(--line-light);
}

.confidence-bar span {
  margin-right: 0.65rem;
  color: var(--purple);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.conversion-bridge {
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
  margin: calc(var(--section-space) * -0.38) auto calc(var(--section-space) * 0.65);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line-light);
  border-radius: 3.5rem 3.5rem 3.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.conversion-bridge h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.conversion-bridge-copy p {
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
}

.principle {
  transition: padding 350ms var(--ease-out), background-color 350ms ease;
}

.principle:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(207, 198, 222, 0.05);
}

.founder-media img {
  filter: saturate(0.85) contrast(1.03);
  transition: border-radius 800ms var(--ease-out), transform 800ms var(--ease-out), filter 800ms ease;
}

.founder-media:hover img {
  border-radius: 2rem 45% 45% 45%;
  filter: saturate(1) contrast(1);
  transform: scale(1.015);
}

.journey-step {
  background: rgba(247, 244, 240, 0.32);
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease, transform 350ms var(--ease-out), box-shadow 350ms ease;
}

.journey-step:hover,
.journey-step.is-current {
  color: var(--bone);
  background: var(--void);
  border-color: var(--void);
  box-shadow: 0 20px 48px rgba(22, 11, 30, 0.14);
  transform: translateY(-0.65rem);
}

.journey-step:hover p,
.journey-step.is-current p {
  color: rgba(247, 244, 240, 0.68);
}

.journey-step:hover .step-number,
.journey-step.is-current .step-number {
  color: var(--lavender);
}

.journey-step p {
  transition: color 350ms ease;
}

.mobile-action-bar {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
    transition-delay: calc(var(--reveal-delay, 0) * 100ms);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header.is-scrolled {
    top: 0;
  }

  .conversion-bridge {
    grid-template-columns: 1fr;
    margin-top: calc(var(--section-space) * -0.25);
    padding: 2rem;
    border-radius: 2.2rem 2.2rem 2.2rem 0.8rem;
  }

  .journey-step:hover,
  .journey-step.is-current {
    transform: none;
  }

  .scroll-cue {
    display: none;
  }

  .confidence-bar {
    grid-template-columns: 1fr;
  }

  .confidence-bar p {
    text-align: left;
  }

  .confidence-bar p + p {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-atmosphere::before {
    top: 25%;
    right: -60%;
    width: 150vw;
  }

  .motion-path-one {
    top: 34%;
    right: -75%;
    width: 150vw;
  }

  .motion-path-two,
  .motion-core {
    display: none;
  }

  body {
    padding-bottom: 4.4rem;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 99;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    padding: 0.35rem;
    background: rgba(22, 11, 30, 0.94);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    box-shadow: 0 14px 45px rgba(22, 11, 30, 0.28);
    backdrop-filter: blur(18px);
    transition: opacity 250ms ease, transform 350ms var(--ease-out);
  }

  .mobile-action-bar.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(150%);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    color: var(--void);
    background: var(--lavender);
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-path-one,
  .motion-path-two,
  .motion-core,
  .scroll-cue span::after {
    animation: none;
  }
}

/* Final restraint overrides */
.hero-atmosphere::before {
  opacity: 0.72;
  transform: none;
  transition: none;
}

.motion-path-one,
.motion-path-two,
.scroll-cue span::after {
  animation: none;
}

.motion-path-one { transform: rotate(-18deg); }
.motion-path-two { transform: rotate(-14deg); }
.motion-core { display: none; }

.conversion-bridge {
  margin-top: calc(var(--section-space) * -0.2);
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  border-width: 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.principle:hover {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.founder-media:hover img {
  border-radius: 45% 45% 45% 1.5rem;
  filter: saturate(0.85) contrast(1.03);
  transform: none;
}

.journey-step:hover,
.journey-step.is-current {
  color: var(--void);
  background: rgba(247, 244, 240, 0.62);
  border-color: rgba(22, 11, 30, 0.28);
  box-shadow: none;
  transform: none;
}

.journey-step:hover p,
.journey-step.is-current p { color: var(--ink-soft); }

.journey-step:hover .step-number,
.journey-step.is-current .step-number { color: var(--purple); }

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    transform: translateY(0.75rem);
    transition-duration: 600ms;
  }

  .js .reveal.is-visible { transform: none; }
}

@media (max-width: 900px) {
  .conversion-bridge {
    margin-top: calc(var(--section-space) * -0.15);
    padding-inline: 0;
    border-radius: 0;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    top: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .scroll-progress {
    display: none;
  }

  body.menu-open .primary-navigation {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(150%);
  }
}

/* Mobile hero: keep the first screen focused on the message and one next step. */
@media (max-width: 600px) {
  .hero {
    min-height: 46rem;
    padding-top: 9.4rem;
    padding-bottom: 2rem;
  }

  .hero::after,
  .hero-atmosphere,
  .hero-orbit {
    display: none;
  }

  .hero .eyebrow {
    margin-bottom: 1.7rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero-content h1 {
    margin-bottom: 1.7rem;
    font-size: clamp(3.05rem, 14vw, 3.8rem);
    line-height: 1.03;
  }

  .hero-copy {
    max-width: 33rem;
    margin-bottom: 2.15rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: block;
  }

  .hero-actions .button-primary {
    min-height: 3.35rem;
  }

  .hero-actions .button-quiet {
    display: none;
  }

  .hero-foot {
    padding-top: 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero-foot p + p {
    display: none;
  }
}
