:root {
  --cream: #F6F1E7;
  --cream-2: #EFE7D6;
  --paper: #FFFDF8;
  --ink: #161D1A;
  --ink-soft: #2A332E;
  --forest: #2E4A3D;
  --forest-deep: #233B30;
  --bronze: #A97F44;
  --bronze-soft: #B08C5A;
  --muted: #57605A;
  --line: rgba(22, 29, 26, 0.14);
  --line-light: rgba(246, 241, 231, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --page-max: 1200px;
  --header-offset: clamp(6rem, 11vh, 7rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
}
.skip-link:focus { top: 0; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem max(var(--gutter), calc((100vw - var(--page-max)) / 2 + var(--gutter)));
  background: rgba(246, 241, 231, 0.96);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-crown {
  width: 26px;
  height: 20px;
  fill: var(--bronze);
  flex: none;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 1.45rem);
}
.nav-desktop > a:not(.btn) {
  font-size: clamp(0.76rem, 0.9vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
}
.nav-desktop > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--bronze);
  transition: width 0.25s var(--ease-out);
}
.nav-desktop > a:not(.btn):hover::after { width: 100%; }

.nav-desktop > a.nav-link-soon,
.nav-link-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(22, 29, 26, 0.48);
}

.nav-desktop > a.nav-link-soon::after {
  background: rgba(169, 127, 68, 0.5);
}

.soon-lock-icon {
  width: 0.86rem;
  height: 0.86rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 420;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-link-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(22, 29, 26, 0.52);
}
.mobile-link-soon .soon-lock-icon {
  width: 1.4rem;
  height: 1.4rem;
}
.mobile-menu-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  min-height: 3.5rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  max-width: 100%;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  will-change: transform;
}
.btn:hover { background: var(--forest); border-color: var(--forest); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--bronze-soft);
  border-color: var(--bronze-soft);
  color: var(--ink);
}

.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.82rem; }
.btn-block { text-align: center; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bronze);
}
.text-link span { transition: transform 0.2s var(--ease-out); }
.text-link:hover span { transform: translateX(5px); }

/* ---------- type ---------- */

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}
.section-index.light { color: var(--bronze-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--forest);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--bronze-soft); }

/* ---------- hero ---------- */

.hero {
  padding: clamp(7rem, 14vh, 9.5rem) var(--gutter) clamp(3rem, 7vh, 5rem);
}
.hero-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  justify-items: stretch;
  text-align: left;
}
.hero .hero-copy {
  max-width: 43rem;
  justify-self: start;
  text-align: left;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 1.4rem 0 1.6rem;
}
.hl { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hl-in { display: block; }
.hl-italic {
  font-style: italic;
  color: var(--forest);
}

.hero .hero-sub {
  max-width: 30rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.9rem;
}

.hero .hero-cta {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 1.45rem;
}

.hero .hero-trust {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: left;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 460px);
}
.hero-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  top: -2.6rem;
  right: -1.2rem;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}
.badge-ring { position: absolute; inset: 0; animation: spin 26s linear infinite; }
.badge-ring text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  fill: var(--bronze);
  font-family: var(--font-body);
}
.badge-crown { width: 30px; fill: var(--bronze); }

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .badge-ring { animation: none; }
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.05rem 0;
  border-block: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 58s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
}
.marquee-track span {
  display: inline-grid;
  grid-template-columns: max-content 3.8rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 420;
  white-space: nowrap;
}
.marquee-track i {
  display: grid;
  place-items: center;
  font-style: normal;
  color: var(--bronze-soft);
  font-size: 0.8rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- sections ---------- */

.section {
  padding: clamp(3.25rem, 7vh, 5.25rem) var(--gutter);
  max-width: var(--page-max);
  margin: 0 auto;
}
.section-head { margin-bottom: clamp(2.2rem, 5vh, 3.5rem); }

/* proof */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.quote:hover {
  transform: translateY(-5px);
  border-color: var(--bronze-soft);
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: 1.18rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.quote figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.stat {
  padding: 1.6rem 1rem 0.4rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 420;
  line-height: 1;
  color: var(--forest);
}
.stat dt {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* pathways */

.path-list { list-style: none; border-top: 1px solid var(--line); }
.path-row { border-bottom: 1px solid var(--line); }
.path-link {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto 2.2rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.7rem 0.6rem;
  transition: background 0.25s var(--ease-out), padding 0.25s var(--ease-out);
}
.path-link:hover {
  background: var(--paper);
  padding-left: 1.2rem;
  padding-right: 1rem;
}
.path-no {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.06em;
}
.path-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 420;
  line-height: 1.15;
}
.path-desc {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.35rem;
  max-width: 36rem;
}
.path-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.path-arrow {
  font-size: 1.3rem;
  color: var(--bronze);
  transition: transform 0.25s var(--ease-out);
}
.path-link:hover .path-arrow { transform: translateX(6px); }

.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.pill-green {
  background: var(--forest);
  color: var(--cream);
}

/* kara */

.kara-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.kara-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
}
.kara-photo img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.kara-copy p { margin-bottom: 1.1rem; color: var(--ink-soft); max-width: 34rem; }
.kara-copy .section-title { margin-bottom: 1.4rem; }

/* platform */

.platform {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(5rem, 12vh, 8.5rem) var(--gutter);
}
.kinetic {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 420;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 140, 90, 0.28);
  pointer-events: none;
  user-select: none;
}
.platform-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.platform-points {
  list-style: none;
  margin: 2.2rem 0 2.6rem;
  max-width: 34rem;
}
.platform-points li {
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  font-size: 1rem;
  color: rgba(246, 241, 231, 0.88);
}
.platform-points li::before {
  content: "✦";
  position: absolute;
  left: 0.2rem;
  color: var(--bronze-soft);
  font-size: 0.8rem;
}
.platform-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.4rem;
  margin-top: 2.35rem;
}
.platform-note {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.66);
  max-width: 34rem;
}

/* start */

.start-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.start-copy > p {
  max-width: 30rem;
  color: var(--ink-soft);
  margin: 0 0 1.8rem;
}
.start-copy .section-title { margin-bottom: 1.2rem; }

.start-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.55fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.start-cta-panel .start-copy > p {
  max-width: 34rem;
}
.start-cta-panel .hero-cta {
  margin-top: 1.6rem;
}

.hidden-submit-frame {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.start-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 30rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 127, 68, 0.18);
}
.start-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--muted);
}

.start-media img {
  max-width: min(78%, 360px);
  height: auto;
  aspect-ratio: 1350 / 2198;
  margin: 0 auto;
  transform: rotate(-3deg);
  border-radius: 10px;
}
.start-media-compact img {
  max-width: min(86%, 260px);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 9vh, 6.5rem) var(--gutter) 2rem;
}
.footer-line {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
  text-wrap: balance;
}
.footer-line em { font-style: italic; color: var(--bronze-soft); }

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-col h3 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 0.9rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.82);
  padding: 0.28rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-brand .brand-crown { width: 34px; height: 26px; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(246, 241, 231, 0.66); }

.footer-legal {
  padding-top: 1.6rem;
  font-size: 0.74rem;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.5);
  max-width: 56rem;
}

.footer-wordmark {
  overflow: hidden;
  line-height: 0.78;
  padding-top: 1.5rem;
}
.footer-wordmark span {
  display: block;
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(3.4rem, 11.5vw, 10rem);
  white-space: nowrap;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 140, 90, 0.45);
  transform: translateY(18%);
}

/* ---------- funnel pages ---------- */

.f-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.84rem;
  padding: 0.65rem var(--gutter);
}
.f-bar a {
  color: var(--bronze-soft);
  font-weight: 600;
  white-space: nowrap;
}
.f-bar-check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 0.35rem;
}

.f-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.f-header-note {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.f-header-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--bronze);
}
.f-header-dark {
  background: var(--forest-deep);
  border-bottom-color: var(--line-light);
}
.f-header-dark .brand-name { color: var(--cream); }
.f-header-dark .f-header-note { color: rgba(246, 241, 231, 0.6); }

.f-hero { padding: clamp(2.8rem, 7vh, 5rem) var(--gutter) clamp(2.5rem, 6vh, 4rem); }
.site-header + .mobile-menu + main > .f-hero:first-child,
.site-header + main > .f-hero:first-child {
  padding-top: var(--header-offset);
}
.f-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.f-title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  text-wrap: balance;
}
.h2-sm { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.f-hero-media img {
  max-width: min(82%, 380px);
  height: auto;
  margin: 0 auto;
  transform: rotate(-3deg);
  border-radius: 10px;
}

.kara-page-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(183, 127, 70, 0.14), transparent 32rem),
    var(--cream);
}
.kara-profile-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 70px rgba(18, 30, 25, 0.12);
}
.kara-profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}
.kara-profile-card p:not(.section-index) {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.optin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 34rem;
}
.optin-card .btn { grid-column: 1 / -1; justify-self: start; }
.optin-card .form-note { grid-column: 1 / -1; }
.optin-card .bot-field {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}
.optin-card .consent-field {
  align-items: flex-start;
  color: var(--ink-soft);
  display: flex;
  gap: 0.75rem;
  grid-column: 1 / -1;
  line-height: 1.35;
}
.optin-card .consent-field input {
  accent-color: var(--clay-dark);
  flex: 0 0 auto;
  margin-top: 0.18rem;
}
.optin-card .consent-field span {
  font-size: 0.86rem;
  font-weight: 700;
}

.f-section { max-width: 1100px; }
.f-section-tight { padding-top: clamp(3rem, 7vh, 5rem); }
.f-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.f-body { color: var(--ink-soft); max-width: 32rem; margin-bottom: 1.2rem; }

.check-list { list-style: none; margin-top: 1.4rem; max-width: 32rem; }
.check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0.2rem;
  color: var(--bronze);
  font-size: 0.8rem;
}

.mini-steps { list-style: none; }
.mini-steps li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.mini-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.mini-steps span:not(.path-no) {
  font-size: 0.92rem;
  color: var(--muted);
}

.f-kara {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.f-kara-photo {
  width: clamp(110px, 16vw, 170px);
  height: clamp(110px, 16vw, 170px);
  object-fit: cover;
  border-radius: 50%;
  flex: none;
}
.f-kara-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.35;
  margin: 0.5rem 0 0.9rem;
  max-width: 40rem;
}
.f-kara-name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.f-last {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}
.f-last .section-title { margin-bottom: 1.25rem; }
.f-last .btn { margin-top: 2rem; }

.f-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--gutter) 2rem;
}
.f-footer p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

/* bridge (wcc) */

.bridge-body { background: var(--forest-deep); }
.bridge-body main { background: var(--cream); }
.bridge-body .f-bar { background: #1B2D25; }

.bridge-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(4rem, 11vh, 7.5rem) var(--gutter) clamp(4.5rem, 12vh, 8rem);
}
.bridge-kinetic { top: 58%; }
.bridge-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.bridge-title {
  font-size: clamp(3.6rem, 11vw, 7.5rem);
  margin: 1.2rem 0 1.5rem;
}
.hl-gold {
  font-style: italic;
  color: var(--bronze-soft);
}
.bridge-sub {
  color: rgba(246, 241, 231, 0.88);
  max-width: 34rem;
  margin-bottom: 1.55rem;
}
.bridge-trust {
  color: rgba(246, 241, 231, 0.62);
  margin-top: 1.35rem;
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.55);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.second-band {
  background: var(--forest-deep);
  padding: clamp(3.5rem, 9vh, 6rem) var(--gutter);
}
.second-band-inner { max-width: 1100px; margin: 0 auto; }
.second-band-sub {
  color: rgba(246, 241, 231, 0.78);
  margin: 0.9rem 0 2.25rem;
  max-width: 52rem;
}
.second-band-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bronze-soft);
}

/* long-form funnel sections */

.f-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem;
}
.side-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: 1.22rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.side-card-dark {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}
.side-card-dark .side-card-quote { color: var(--cream); }
.hero-points { margin: 0 0 1.8rem; max-width: 28rem; }
.hero-points li { padding-top: 0.65rem; padding-bottom: 0.65rem; font-size: 0.95rem; }

.optin-band {
  background: var(--cream-2);
  padding: clamp(2.5rem, 6vh, 4.5rem) var(--gutter);
}
.optin-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.optin-panel .optin-card {
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.optin-copy { display: flex; flex-direction: column; align-items: flex-start; }
.optin-book {
  max-width: 120px;
  height: auto;
  transform: rotate(-4deg);
  border-radius: 8px;
  margin-top: 1rem;
}

.band-paper {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.story-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 9vh, 6.5rem) var(--gutter);
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.story-band .section-title { color: var(--cream); }
.story-band .section-title em { color: var(--bronze-soft); }
.story-band .f-body { color: rgba(246, 241, 231, 0.85); }
.story-band .check-list li {
  color: rgba(246, 241, 231, 0.85);
  border-bottom-color: var(--line-light);
}
.story-band .check-list li::before { color: var(--bronze-soft); }
.field-wide { grid-column: 1 / -1; }
.form-note-legal { font-size: 0.7rem; opacity: 0.85; }

.duo-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.duo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
}
.duo-card h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.duo-card p { font-size: 0.93rem; color: var(--ink-soft); }
.duo-cards-dark .duo-card {
  background: rgba(246, 241, 231, 0.06);
  border-color: var(--line-light);
}
.duo-cards-dark .duo-card h3 { color: var(--cream); }
.duo-cards-dark .duo-card p { color: rgba(246, 241, 231, 0.78); }

.cta-strip { margin-top: 3rem; text-align: center; }
.cta-strip-left { text-align: left; }

.aurum-final-cta {
  width: 100%;
  max-width: none;
  margin: clamp(2rem, 5vh, 4rem) 0 0;
  padding: clamp(4.5rem, 10vh, 7rem) var(--gutter);
  background: var(--forest-deep);
  color: var(--cream);
}

.aurum-final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.aurum-final-cta .section-index {
  color: var(--bronze-soft);
  margin-bottom: 1rem;
}

.aurum-final-cta h3 {
  max-width: 850px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--cream);
  text-wrap: balance;
}

.aurum-final-cta h3 em {
  color: var(--bronze-soft);
  font-style: italic;
  font-weight: 420;
}

.aurum-final-cta p:not(.section-index) {
  max-width: 690px;
  margin-top: 1.05rem;
  color: rgba(246, 241, 231, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

.aurum-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* House of Prosperity coming soon */

.hop-soon-hero {
  min-height: 100vh;
  padding: calc(var(--header-offset) + clamp(2rem, 6vh, 4rem)) var(--gutter) clamp(4rem, 10vh, 7rem);
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9) 0%, rgba(246, 241, 231, 0.96) 44%, rgba(239, 231, 214, 0.94) 100%);
}

.hop-soon-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(2.2rem, 7vw, 6rem);
  align-items: center;
}

.hop-soon-copy {
  max-width: 680px;
}

.hop-soon-copy h1 {
  margin: 0.6rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.4vw, 7.3rem);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hop-soon-lead {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 420;
  line-height: 1.28;
}

.hop-soon-copy p:not(.eyebrow):not(.hop-soon-lead) {
  max-width: 560px;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.hop-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hop-soon-panel {
  position: relative;
  min-height: clamp(360px, 54vw, 560px);
  border: 1px solid rgba(22, 29, 26, 0.12);
  border-radius: 2px;
  overflow: hidden;
  background: var(--forest-deep);
  box-shadow: 0 28px 70px rgba(35, 59, 48, 0.16);
}

.hop-soon-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 29, 26, 0.04), rgba(22, 29, 26, 0.36)),
    linear-gradient(45deg, rgba(169, 127, 68, 0.16), transparent 48%);
  pointer-events: none;
}

.hop-soon-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
}

.hop-soon-seal {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem;
  background: rgba(246, 241, 231, 0.92);
  border: 1px solid rgba(246, 241, 231, 0.58);
  color: var(--forest-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hop-soon-seal .soon-lock-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--bronze);
}

.mini-steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.mini-steps-row li {
  display: block;
  border-bottom: 0;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 0;
}
.mini-steps-row .path-no { display: block; margin-bottom: 0.6rem; }
.mini-steps-dark li { border-top-color: var(--line-light); }
.mini-steps-dark strong { color: var(--cream); }
.mini-steps-dark span:not(.path-no) { color: rgba(246, 241, 231, 0.72); }
.mini-steps-dark .path-no { color: var(--bronze-soft); }

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}
.fit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.7rem 1.6rem;
}
.fit-card h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.fit-card ul { list-style: none; }
.fit-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fit-card li::before {
  content: "✦";
  position: absolute;
  left: 0.1rem;
  color: var(--bronze);
  font-size: 0.78rem;
}
.fit-card-not li::before { content: "✕"; color: var(--muted); }

.learn-first {
  margin: 0 auto;
  max-width: 62rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--bronze);
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}
.learn-first h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.02rem;
  flex: none;
  max-width: 13rem;
}
.learn-first p { font-size: 0.85rem; color: var(--muted); flex: 1; }

.faq { max-width: 44rem; margin: 1.8rem auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.15rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  color: var(--bronze);
  font-size: 1.3rem;
  transition: transform 0.25s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 40rem; }

.f-body-center { margin-left: auto; margin-right: auto; }
.f-kara-photo-rect {
  width: clamp(240px, 34vw, 400px);
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
}

/* success */

.f-hero-success { text-align: center; }
.f-success-inner { max-width: 46rem; margin: 0 auto; }
.f-hero-success .hero-sub { margin-left: auto; margin-right: auto; }
.f-success-hero .f-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1fr);
}
.vimeo-frame {
  aspect-ratio: 16 / 9;
  background: var(--forest-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
.vimeo-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.success-vimeo-frame {
  max-width: 42rem;
}

.inbox-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(2rem, 5vh, 3rem) 0;
}
.inbox-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.inbox-card:hover {
  transform: translateY(-5px);
  border-color: var(--bronze-soft);
}
.inbox-card h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.2rem;
  margin: 0.7rem 0 0.5rem;
}
.inbox-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.video-ph {
  max-width: 620px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--bronze-soft);
  border-radius: 14px;
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.video-ph-play {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.1rem;
  padding-left: 4px;
}
.video-ph small { font-size: 0.74rem; color: var(--muted); }

/* pathway draft pages */

.pathway-hero .f-hero-grid {
  align-items: stretch;
}

.pathway-visual-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 20px 70px rgba(22, 29, 26, 0.08);
}

.pathway-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pathway-visual-copy {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.aurum-wordmark {
  display: block;
  width: min(164px, 48vw);
  height: auto;
  margin-bottom: 1.05rem;
  color: #0a339d;
}

.pathway-visual-copy h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.18;
  margin: 0.35rem 0 0.75rem;
}

.pathway-visual-copy p:last-child {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pathway-intro {
  max-width: min(920px, 100%);
  margin-inline: auto;
  padding-top: clamp(2.4rem, 5vh, 4rem);
  padding-bottom: clamp(1.6rem, 4vh, 2.6rem);
  text-align: left;
}

.pathway-intro-band {
  border-block: 1px solid var(--line-light);
}

.pathway-intro-band .pathway-intro {
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}

.pathway-intro-band .section-index {
  text-align: left;
}

.pathway-intro p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 52rem;
}

.pathway-intro-band .pathway-intro p {
  color: rgba(246, 241, 231, 0.86);
}

.pathway-intro p + p {
  margin-top: 1.15rem;
}

.opportunity-section {
  text-align: center;
}

.opportunity-head {
  max-width: 760px;
  margin: 0 auto clamp(1.6rem, 4vw, 2.4rem);
}

.opportunity-head p:last-child {
  color: var(--ink-soft);
  margin-top: 0.7rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
  max-width: 980px;
  margin: 0 auto;
}

.opportunity-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(22, 29, 26, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.opportunity-card:hover,
.opportunity-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(167, 121, 74, 0.5);
  box-shadow: 0 24px 68px rgba(22, 29, 26, 0.11);
}

.opportunity-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.opportunity-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 1.55rem);
}

.opportunity-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 560;
  line-height: 1.08;
  margin: 0.35rem 0 0.75rem;
}

.opportunity-card p:not(.section-index) {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.opportunity-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-sections {
  display: grid;
  gap: 1.1rem;
}

.pathway-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.pathway-section-green {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
}

.pathway-section-green .section-index {
  color: var(--bronze-soft);
}

.pathway-section.pathway-section-green h2,
.pathway-section.pathway-section-green p:not(.section-index),
.pathway-section.pathway-section-green li {
  color: rgba(246, 241, 231, 0.92);
}

.pathway-section.pathway-section-green p:not(.section-index) {
  color: rgba(246, 241, 231, 0.78);
}

.pathway-section.pathway-section-green li {
  border-bottom-color: var(--line-light);
  color: rgba(246, 241, 231, 0.86);
}

.pathway-section-green li::before {
  color: var(--bronze-soft);
}

.education-note-section {
  padding-top: clamp(1.5rem, 3vh, 2.25rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

.pathway-section h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.16;
  margin: 0.45rem 0 0.8rem;
}

.pathway-section p:not(.section-index) {
  color: var(--ink-soft);
  max-width: 38rem;
}

.pathway-section ul {
  list-style: none;
  align-self: center;
}

.pathway-section li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pathway-section li:last-child {
  border-bottom: 0;
}

.pathway-section li::before {
  content: "✦";
  position: absolute;
  left: 0.1rem;
  color: var(--bronze);
  font-size: 0.78rem;
}

.aurum-learning-section {
  padding-top: clamp(2.8rem, 7vh, 5rem);
}

.aurum-learning-head {
  max-width: 48rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.aurum-learning-head p:not(.section-index) {
  color: var(--ink-soft);
  max-width: 40rem;
}

.aurum-learning-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.aurum-learning-row {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 3.4vw, 2.15rem) 0;
  border-bottom: 1px solid var(--line);
}

.aurum-learning-no {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  color: var(--bronze);
  line-height: 1;
}

.aurum-learning-main {
  display: grid;
  gap: 0.45rem;
}

.aurum-learning-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 560;
  line-height: 1.17;
  color: var(--ink);
  max-width: 48rem;
}

.aurum-learning-main span:last-child {
  display: block;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 48rem;
}

/* Aurum walkthrough */
.walkthrough-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(169, 127, 68, 0.16), transparent 34%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.walkthrough-hero {
  align-items: center;
  display: flex;
  min-height: calc(100svh - 82px);
  padding: calc(var(--header-offset) + clamp(2rem, 5vw, 4rem)) var(--gutter) clamp(3rem, 6vw, 5.5rem);
}

.walkthrough-shell {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  width: 100%;
}

.walkthrough-shell h1 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.4rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0.6rem auto 1.05rem;
  max-width: 860px;
}

.walkthrough-shell > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 710px;
}

.walkthrough-video {
  box-shadow: 0 32px 90px rgba(22, 29, 26, 0.2);
  margin: clamp(2rem, 4vw, 3.25rem) auto 0;
}

.walkthrough-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.walkthrough-note {
  padding-top: 0;
}

/* Contact page */

.contact-hero {
  padding: calc(var(--header-offset) + clamp(2rem, 6vh, 4rem)) var(--gutter) clamp(3.5rem, 8vh, 6rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(246, 241, 231, 0.96)),
    var(--cream);
}

.contact-hero-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy {
  max-width: 680px;
}

.contact-copy h1 {
  margin: 0.65rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.2vw, 6.2rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-copy h1 em {
  color: var(--bronze);
  font-style: italic;
  font-weight: 420;
}

.contact-copy p:not(.eyebrow) {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.contact-direct {
  display: grid;
  gap: 0;
  max-width: 600px;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  border-top: 1px solid var(--line);
}

.contact-direct a,
.contact-direct div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.4vw, 1.5rem);
  font-weight: 560;
  overflow-wrap: anywhere;
}

.contact-direct a:hover strong {
  color: var(--bronze);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(22, 29, 26, 0.08);
}

.contact-form .section-index,
.contact-form .btn,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form .bot-field {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.contact-form .btn {
  justify-self: start;
}

.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.2s;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 127, 68, 0.18);
}

.contact-routes-section {
  padding: clamp(3.5rem, 8vh, 6rem) var(--gutter);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.contact-routes-head,
.contact-routes {
  width: min(1060px, 100%);
  margin-inline: auto;
}

.contact-routes-head {
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.contact-routes-head h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 520;
  line-height: 1.06;
  text-wrap: balance;
}

.contact-routes {
  border-top: 1px solid var(--line);
}

.contact-route {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 1.85rem) 0;
  border-bottom: 1px solid var(--line);
}

.contact-route > span {
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.contact-route h3 {
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2.7vw, 1.75rem);
  font-weight: 560;
  line-height: 1.18;
}

.contact-route p {
  max-width: 680px;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.contact-social-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3.4rem, 8vh, 5.5rem) max(var(--gutter), calc((100vw - 1120px) / 2 + var(--gutter)));
  background: var(--forest-deep);
  color: var(--cream);
}

.contact-social-band .section-index {
  color: var(--bronze-soft);
}

.contact-social-band h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 520;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
  }
  .hero .hero-copy {
    max-width: 40rem;
    margin-inline: 0;
  }
  .hero .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }
  .hero .hero-cta {
    justify-content: flex-start;
  }
  .hero-media {
    max-width: 420px;
    margin-inline: auto;
  }
  .hero-badge { right: 0.4rem; top: -2.2rem; width: 96px; height: 96px; }
}

@media (max-width: 960px) {
  .kara-grid, .start-grid, .start-cta-panel { grid-template-columns: 1fr; }
  .start-media { order: -1; }
  .start-cta-panel {
    text-align: center;
  }
  .start-cta-panel .start-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .start-cta-panel .hero-cta {
    justify-content: center;
  }
  .start-media-compact img {
    max-width: min(52vw, 220px);
  }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .f-hero-grid, .f-success-hero .f-hero-grid, .f-cols { grid-template-columns: minmax(0, 1fr); }
  .f-hero-media { display: none; }
  .inbox-cards { grid-template-columns: 1fr; }
  .optin-card { grid-template-columns: 1fr; }
  .contact-hero-grid,
  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-social-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .f-kara { flex-direction: column; align-items: flex-start; }
  .optin-panel, .duo-cards, .fit-grid, .mini-steps-row { grid-template-columns: 1fr; }
  .optin-book { display: none; }
  .f-kara-photo-rect { width: 100%; }
  .story-inner { flex-direction: column; align-items: flex-start; }
  .learn-first { flex-direction: column; gap: 0.5rem; }
  .learn-first h3 { max-width: none; }
  .pathway-section { grid-template-columns: 1fr; }
  .hop-soon-inner { grid-template-columns: 1fr; }
  .hop-soon-panel {
    min-height: clamp(280px, 62vw, 440px);
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .quotes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .path-link { grid-template-columns: 2.2rem 1fr 1.6rem; }
  .path-tag { display: none; }
  .hero { padding-top: 6rem; }
  .hero-title { font-size: clamp(2.7rem, 12vw, 3.4rem); }
  .start-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.4rem);
  }

  body {
    overflow-x: hidden;
  }

  .site-header,
  .f-header {
    min-width: 0;
    gap: 0.8rem;
    padding: 0.95rem var(--gutter);
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    min-width: 0;
    font-size: clamp(0.95rem, 4.4vw, 1.05rem);
    white-space: normal;
    line-height: 1.15;
  }

  .f-header-link,
  .f-header-note {
    flex: none;
    max-width: 42vw;
    text-align: right;
    line-height: 1.25;
  }

  .f-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    white-space: normal;
  }

  .f-hero,
  .contact-hero,
  .hero,
  .section,
  .f-section,
  .second-band,
  .story-band,
  .platform {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .f-hero {
    padding-top: clamp(3rem, 10vh, 4.25rem);
  }

  .hero-grid,
  .f-hero-grid,
  .contact-hero-grid,
  .f-success-hero .f-hero-grid,
  .f-cols,
  .optin-panel,
  .kara-grid,
  .start-grid,
  .start-cta-panel,
  .duo-cards,
  .opportunity-grid,
  .fit-grid,
  .mini-steps-row,
  .inbox-cards,
  .footer-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title,
  .f-title {
    font-size: clamp(2.55rem, 13.5vw, 3.45rem);
    line-height: 1.03;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .contact-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.6rem);
    overflow-wrap: anywhere;
  }

  .contact-direct a,
  .contact-direct div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
  }

  .contact-route {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .contact-social-links {
    width: 100%;
    flex-direction: column;
  }

  .bridge-title {
    font-size: clamp(3.25rem, 18vw, 5.25rem);
  }

  .section-title {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hero-sub,
  .f-body,
  .second-band-sub,
  .platform-note,
  .hero-trust {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero .hero-cta,
  .hero-cta,
  .platform-cta,
  .hop-soon-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }

  .btn {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.9rem 1rem;
    white-space: normal;
  }

  .side-card,
  .optin-panel,
  .optin-card,
  .duo-card,
  .opportunity-card,
  .fit-card,
  .inbox-card {
    border-radius: 10px;
    padding: 1.15rem;
    min-width: 0;
  }

  .opportunity-section,
  .opportunity-head {
    text-align: left;
  }

  .opportunity-card-copy {
    padding: 1.15rem;
  }

  .opportunity-card span {
    width: 100%;
    align-self: stretch;
  }

  .path-link {
    grid-template-columns: 1.8rem minmax(0, 1fr) 1.2rem;
    gap: 0.75rem;
    padding: 1.35rem 0;
  }

  .path-name {
    font-size: clamp(1.2rem, 6.5vw, 1.55rem);
  }

  .aurum-learning-row {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
  }

  .aurum-learning-main strong,
  .aurum-learning-main span:last-child {
    max-width: 100%;
  }

  .learn-first {
    padding: 1rem;
  }

  .hop-soon-hero {
    min-height: auto;
    padding-top: calc(var(--header-offset) + 2rem);
  }

  .hop-soon-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hop-soon-lead {
    font-size: clamp(1.22rem, 6vw, 1.52rem);
  }

  .vimeo-frame {
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .hero-title,
  .f-title {
    font-size: clamp(2.25rem, 12vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .f-header-link,
  .f-header-note {
    font-size: 0.76rem;
    max-width: 38vw;
  }

  .side-card,
  .optin-panel,
  .optin-card,
  .duo-card,
  .fit-card,
  .inbox-card {
    padding: 1rem;
  }
}
