/*!
 * Socient site stylesheet
 * AI-native digital agency for social enterprises and nonprofits.
 *
 * FOUR TIERS. Surfaces carry the colour; type is always Nordic Noir.
 *   T1 ground  Lighthouse            #F3F4F4   0.903
 *   T2 pale    Orchid Hue  #E5E999   Homeopathic Lavender #E5E0EC   0.77 / 0.76
 *   T3 mid     Lavender Pillow #C5B9D3   Kiss a Frog #BEC187        0.513 / 0.508
 *   T4 dark    Nordic Noir           #003344   0.028
 * Within T2 and T3 the pairs are 1.01:1 apart — only hue separates them, so no
 * two same-tier surfaces ever touch. Nordic Noir is the ONLY dark, which means
 * it can be type, every dark band, and the accent on light without collisions.
 */

:root,
[data-theme="light"] {
  /* ---- Palette ---- */
  --lighthouse: #f3f4f4;
  --homeo: #e5e0ec;
  --pillow: #c5b9d3;
  --orchid: #e5e999;
  --frog: #bec187;
  --noir: #003344;

  /* ---- Derived: four values the palette does not carry ---- */
  --noir-deep: #00212d;   /* footer, and soft type on the mid bands */
  --noir-soft: #3d5a66;   /* soft body text, 6.68:1 on Lighthouse */
  --card-white: #fbfbfc;  /* card surface */
  --orchid-deep: #c3c776; /* CTA shadow */

  /* ---- Legacy aliases (whole site reads through these) ---- */
  --cream: var(--lighthouse);
  --cream-warm: var(--homeo);
  --forest: var(--noir);
  --forest-deep: var(--noir-deep);
  --moss: var(--noir-soft);
  --amber: var(--noir);
  --amber-bright: var(--noir-deep);
  --gold: var(--orchid);
  --ink: var(--noir);
  --paper: var(--card-white);
  --rust: var(--orchid-deep);

  /* Semantic */
  --page-bg: var(--lighthouse);
  --page-bg-warm: var(--homeo);
  --page-text: var(--noir);
  --page-text-soft: var(--noir-soft);
  --card-bg: var(--card-white);
  --card-border: rgba(0, 51, 68, 0.14);
  --card-divider: rgba(0, 51, 68, 0.18);
  --card-shadow: 0 24px 60px -22px rgba(0, 51, 68, 0.22);
  --nav-bg: rgba(243, 244, 244, 0.86);
  --nav-border: rgba(0, 51, 68, 0.13);

  --inv-bg: var(--noir);
  --inv-bg-deep: var(--noir-deep);
  --inv-text: var(--lighthouse);
  --inv-card-bg: rgba(243, 244, 244, 0.07);
  --inv-card-border: rgba(243, 244, 244, 0.18);

  --btn-dark-bg: var(--noir);
  --btn-dark-text: var(--lighthouse);

  --serif: 'Fraunces', Georgia, serif;
  --display: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;
}

[data-theme="dark"] {
  --page-bg: #041014;
  --page-bg-warm: #0a1a20;
  --page-text: var(--lighthouse);
  --page-text-soft: #8fa3ab;
  --card-bg: #0b1a21;
  --card-border: rgba(243, 244, 244, 0.13);
  --card-divider: rgba(243, 244, 244, 0.16);
  --card-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  --nav-bg: rgba(4, 16, 20, 0.88);
  --nav-border: rgba(243, 244, 244, 0.13);

  --inv-bg: var(--noir);
  --inv-bg-deep: #00212d;
  --inv-text: var(--lighthouse);
  --inv-card-bg: rgba(243, 244, 244, 0.07);
  --inv-card-border: rgba(243, 244, 244, 0.16);

  --btn-dark-bg: var(--orchid);
  --btn-dark-text: var(--noir);

  --moss: #8fa3ab;
  --amber: var(--orchid);
  --amber-bright: #eef1b8;
  --gold: var(--orchid);
  --cream: var(--lighthouse);
}

/* ---------------------------------------------------------------------------
   On a Nordic Noir surface the Noir accent would vanish. Dark bands switch
   the accent to Orchid Hue (10.56:1).
   --------------------------------------------------------------------------- */
.marquee,
.shift,
.why,
.testimonial-strip,
.orbytt,
.how-it-works,
.post-cta,
footer,
.inv-surface,
/* the startup-offer band renders Noir and has no light-surfaced children, so
   it can take the blanket lift; the hero cannot — it contains a white form
   card, and lifting there washed out the card's own text */
.mt-startup .band {
  --amber: var(--orchid);
  --amber-bright: #eef1b8;
  --moss: var(--pillow);
  --page-text-soft: var(--pillow);
}

/* On the T3 mid bands, the soft-grey text drops to 3.6:1 — use deep Noir. */
.problem-result,
.how {
  --page-text: var(--noir);
  --page-text-soft: var(--noir-deep);
}

/* Smooth transitions */
html, body, nav, section, footer, .modal, .service-card, .step, .why-card, .obj-item,
.founder-card, .talent-card, .nav-cta, .btn, .form-input, .form-textarea,
.credential-tag, .founder-link, .step-number, .marquee, .problem-result,
.testimonial-strip, .modal-close, .obj-toggle, .theme-toggle {
  transition: background-color 0.35s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  color: var(--page-text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ========== NAV ========== */
/* Scoped to the site header. A bare `nav` selector also caught the footer
   navigation, which inherited the sticky bar's translucent background. */
nav:not(.footer-nav) {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-row {
  display: flex;
  align-items: center;
  max-width: 1216px;
  margin: 0 auto;
}

.nav-row-top {
  justify-content: space-between;
  padding: 16px 0 14px;
  gap: 16px;
}

.nav-row-bottom {
  padding: 12px 0 14px;
  border-top: 1px solid var(--nav-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-row-bottom::-webkit-scrollbar {
  display: none;
}

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

.logo {
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  color: var(--page-text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-mark::before {
  /* Left dot: small, ring with a light centre (the organisation) */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--page-bg);
  border: 2px solid var(--page-text);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 2;
}

.logo-mark::after {
  /* Right dot: larger, amber (the "told") */
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--amber);
  border-radius: 50%;
  z-index: 2;
}

.logo-mark .connector {
  /* Tapered connecting line */
  position: absolute;
  left: 12px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  z-index: 1;
}

.logo-text { line-height: 1; }

/* Bottom row nav links: caps, letter-spaced, underline-on-hover */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  width: 100%;
}

.nav-links a {
  color: var(--page-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links .ext-arrow {
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-links a:hover .ext-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* Theme toggle button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--page-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  background: var(--card-bg);
  border-color: var(--page-text);
  color: var(--amber);
  transform: rotate(-12deg);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.theme-toggle svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Show moon in light mode, sun in dark mode */
[data-theme="light"] .theme-toggle .icon-sun,
[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

.nav-cta {
  background: var(--btn-dark-bg);
  color: var(--btn-dark-text) !important;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.3s ease !important;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--cream) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero {
  padding: 60px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--moss);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--page-text);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
  position: relative;
  display: inline-block;
  font-size: clamp(32px, 8vw, 48px);
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -2%;
  width: 104%;
  height: 0.12em;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--page-text);
  opacity: 0.78;
  margin: 0 auto 44px;
  max-width: 720px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--amber);
  color: var(--paper);
  box-shadow: 0 4px 0 var(--rust), 0 12px 24px -8px rgba(195, 199, 118, 0.55);
}

.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--rust), 0 18px 32px -8px rgba(195, 199, 118, 0.65);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--rust), 0 6px 12px -4px rgba(195, 199, 118, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--page-text);
  border: 1.5px solid var(--page-text);
}

.btn-secondary:hover {
  background: var(--page-text);
  color: var(--page-bg);
}

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-supporting {
  margin-top: 44px;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--moss);
}

/* Decorative hero ornaments */
.hero::before {
  content: '✦';
  position: absolute;
  top: 120px;
  left: 8%;
  font-family: var(--display);
  color: var(--amber);
  opacity: 0.3;
  font-size: 60px;
  transform: rotate(-15deg);
}

.hero::after {
  content: '✦';
  position: absolute;
  bottom: 180px;
  right: 10%;
  font-family: var(--display);
  color: var(--gold);
  opacity: 0.4;
  font-size: 44px;
  transform: rotate(20deg);
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--inv-bg);
  color: var(--inv-text);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--inv-bg-deep);
  border-bottom: 1px solid var(--inv-bg-deep);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION ========== */
section { padding: 130px 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
}

.section-label::before { content: '✦'; font-size: 14px; }

.section-headline {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--page-text);
  font-weight: 400;
  max-width: 880px;
}

.section-headline em { font-style: italic; color: var(--amber); }

/* ========== PROBLEM ========== */
.problem { background: var(--page-bg-warm); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 60px;
  align-items: start;
}

.problem-lead {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
  color: var(--page-text);
  padding-left: 28px;
}

.problem-list { list-style: none; }

.problem-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--card-divider);
  font-size: 17px;
  color: var(--page-text);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-list li:last-child { border-bottom: none; }

.problem-list .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber);
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.problem-result {
  margin-top: 60px;
  padding: 36px;
  background: var(--inv-bg);
  color: var(--inv-text);
  border-radius: 24px;
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  grid-column: 1 / -1;
  text-align: center;
}

.problem-result em {
  color: var(--amber);
  font-style: normal;
  font-weight: 400;
}

/* ========== SHIFT ========== */
.shift {
  background: var(--inv-bg);
  color: var(--inv-text);
  overflow: hidden;
  position: relative;
}

.shift::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 51, 68, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.shift .section-label { color: var(--amber); }
.shift .section-headline { color: var(--cream); }
.shift .section-headline em { color: var(--amber); }

.shift-content {
  margin-top: 64px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.shift-text p {
  font-size: 21px;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0.85;
}

.shift-text p strong {
  color: var(--cream);
  font-weight: 600;
  opacity: 1;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
}

.shift-list {
  list-style: none;
  margin-top: 36px;
  margin-bottom: 40px;
}

.shift-list li {
  padding: 22px 0;
  font-size: 19px;
  border-bottom: 1px solid rgba(243, 244, 244, 0.16);
  display: flex;
  align-items: center;
  gap: 20px;
}

.shift-list .arrow-icon {
  color: var(--amber);
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.shift-conclusion {
  margin-top: 48px;
  font-family: var(--display);
  font-size: 40px;
  font-style: italic;
  color: var(--amber);
  line-height: 1.1;
}

/* ========== SERVICES ========== */
.services { background: var(--page-bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 80px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
  border: 1px solid var(--card-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--amber);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 4px;
  background: var(--amber);
  transition: width 0.5s ease;
}

.service-card:hover::before { width: 100%; }

.service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--amber);
  line-height: 0.9;
}

.service-title-block h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.05;
  color: var(--page-text);
  margin-bottom: 14px;
  font-weight: 400;
}

.service-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--amber);
  margin-bottom: 24px;
}

.service-description {
  font-size: 16px;
  color: var(--page-text);
  opacity: 0.78;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features { list-style: none; }

.service-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--page-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-features li::before {
  content: '→';
  color: var(--amber);
  font-weight: 500;
  flex-shrink: 0;
}

.service-outcome {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--card-divider);
  font-size: 14px;
  color: var(--moss);
  font-weight: 500;
}

.service-outcome strong {
  color: var(--page-text);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
}

/* ========== HOW ========== */
.how {
  background: var(--page-bg-warm);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
  text-align: center;
}

.step:hover { transform: translateY(-6px); }

.step-number {
  width: 64px;
  height: 64px;
  background: var(--forest);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  margin: 0 auto 28px;
  border: 4px solid var(--cream-warm);
}

.step h4 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--page-text);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.15;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--page-text);
  opacity: 0.75;
}

/* ========== OUTCOMES ========== */
.outcomes { background: var(--page-bg); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--card-divider);
}

.outcome-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--card-divider);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.outcome-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--card-divider); }
.outcome-item:nth-child(even) { padding-left: 40px; }

.outcome-mark {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber);
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.outcome-item p {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--page-text);
}

/* ========== WHY ========== */
.why {
  background: var(--inv-bg);
  color: var(--inv-text);
}

.why .section-label { color: var(--amber); }
.why .section-headline { color: var(--cream); }
.why .section-headline em { color: var(--amber); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.why-card {
  padding: 32px 28px;
  background: rgba(243, 244, 244, 0.07);
  border: 1px solid rgba(243, 244, 244, 0.16);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(0, 51, 68, 0.08);
  border-color: var(--amber);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 48px;
  height: 48px;
  background: var(--amber);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--page-text);
}

.why-card h4 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.why-card p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.55;
}

.why-conclusion {
  margin-top: 80px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--cream);
}

.why-conclusion em {
  color: var(--amber);
  font-style: normal;
  font-weight: 400;
}

/* ========== OBJECTIONS ========== */
.objections { background: var(--page-bg-warm); }

.obj-grid {
  margin-top: 70px;
  display: grid;
  gap: 16px;
}

.obj-item {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
}

.obj-item:hover {
  border-color: var(--amber);
  transform: translateX(6px);
}

.obj-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.obj-question h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--page-text);
  font-weight: 400;
}

.obj-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--page-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.obj-item:hover .obj-toggle,
.obj-item.active .obj-toggle {
  background: var(--amber);
  color: var(--paper);
  transform: rotate(45deg);
}

.obj-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--page-text);
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.6;
}

.obj-item.active .obj-answer {
  max-height: 200px;
  margin-top: 18px;
}

/* ========== ABOUT ========== */
.about { background: var(--page-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  margin-top: 80px;
  align-items: center;
}

.founder-card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 48px 40px;
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream-warm);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.founder-initials {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  color: var(--amber);
}

.founder-card h3 {
  font-family: var(--display);
  font-size: 32px;
  color: var(--page-text);
  margin-bottom: 6px;
  line-height: 1.1;
  font-weight: 400;
}

.founder-role {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--amber);
  margin-bottom: 28px;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--card-divider);
  border-bottom: 1px solid var(--card-divider);
}

.stat-block {
  text-align: center;
}

.stat-block .stat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--page-text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-block .stat-label {
  font-size: 11px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.founder-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.founder-link {
  padding: 8px 16px;
  background: var(--cream-warm);
  border-radius: 100px;
  font-size: 13px;
  color: var(--page-text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.founder-link:hover {
  background: var(--amber);
  color: var(--paper);
}

.about-content h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--page-text);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-content h2 em { font-style: italic; color: var(--amber); }

.about-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--page-text);
  opacity: 0.85;
  margin-bottom: 22px;
}

.about-content p strong {
  color: var(--page-text);
  font-weight: 600;
  opacity: 1;
}

.credentials {
  margin-top: 32px;
  padding: 28px;
  background: var(--cream-warm);
  border-radius: 20px;
}

.credentials-label {
  font-size: 12px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 600;
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-tag {
  padding: 6px 14px;
  background: var(--paper);
  border-radius: 100px;
  font-size: 13px;
  color: var(--page-text);
  border: 1px solid var(--card-border);
}

.testimonial-strip {
  margin-top: 60px;
  padding: 40px;
  background: var(--inv-bg);
  color: var(--inv-text);
  border-radius: 24px;
  text-align: center;
  position: relative;
}

.testimonial-strip::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 80px;
  color: var(--amber);
  background: var(--page-bg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
}

.testimonial-strip blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-attr {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
}

/* ========== ORBYTT ========== */
.orbytt {
  background: linear-gradient(135deg, var(--inv-bg-deep) 0%, var(--inv-bg) 100%);
  color: var(--inv-text);
  position: relative;
  overflow: hidden;
}

.orbytt::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 51, 68, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.orbytt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.orbytt .section-label { color: var(--amber); }

.orbytt h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 400;
}

.orbytt h2 em { color: var(--amber); font-style: italic; }

.orbytt p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.82;
  margin-bottom: 32px;
}

.orbytt-features {
  list-style: none;
  margin-bottom: 36px;
}

.orbytt-features li {
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(243, 244, 244, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
}

.orbytt-features .check {
  width: 24px;
  height: 24px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700;
}

.talent-card-stack {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.talent-card {
  position: absolute;
  background: var(--paper);
  color: var(--forest);
  border-radius: 20px;
  padding: 24px;
  width: 240px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.talent-card:hover { transform: translateY(-8px) rotate(0deg) !important; }

.talent-1 { top: 0; left: 0; transform: rotate(-5deg); }
.talent-2 { top: 30%; right: 0; transform: rotate(4deg); background: var(--amber); color: var(--paper); }
.talent-3 { bottom: 0; left: 20%; transform: rotate(-2deg); background: var(--gold); color: var(--forest-deep); }

.talent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--amber);
  font-size: 20px;
  margin-bottom: 14px;
}

.talent-2 .talent-avatar { background: var(--paper); color: var(--amber); }
.talent-3 .talent-avatar { background: var(--forest); color: var(--gold); }

.talent-role {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.2;
}

.talent-2 .talent-role { color: var(--paper); }

.talent-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

/* ========== LEAD MAGNET ========== */
.lead-magnet {
  padding: 100px 0;
  background: var(--gold);
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-magnet h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.05;
  color: var(--forest-deep);
  margin-bottom: 20px;
  font-weight: 400;
}

.lead-magnet p {
  font-size: 18px;
  color: var(--forest-deep);
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 540px;
}

.magnet-visual {
  position: relative;
  height: 280px;
}

.playbook-cover {
  position: absolute;
  width: 200px;
  aspect-ratio: 3/4;
  background: var(--forest);
  border-radius: 8px;
  padding: 24px;
  color: var(--cream);
  box-shadow: 0 30px 60px -20px rgba(0, 33, 45, 0.5);
  transform: rotate(-6deg);
  right: 80px;
  top: 0;
  transition: transform 0.4s ease;
}

.playbook-cover:hover { transform: rotate(0deg) scale(1.05); }

.playbook-cover .cover-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.playbook-cover .cover-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 24px;
}

.playbook-cover .cover-title em { color: var(--amber); font-style: italic; }

.playbook-cover .cover-art {
  width: 60px;
  height: 60px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: auto;
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.playbook-cover .cover-art::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--forest);
  border-radius: 50%;
  top: 15px;
  left: 15px;
}

.playbook-cover-2 {
  position: absolute;
  width: 180px;
  aspect-ratio: 3/4;
  background: var(--paper);
  border-radius: 8px;
  transform: rotate(8deg);
  right: 0;
  top: 30px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--page-bg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--page-text);
  margin-bottom: 32px;
  font-weight: 400;
}

.final-cta h2 em { font-style: italic; color: var(--amber); }

.final-cta p {
  font-size: 20px;
  color: var(--page-text);
  opacity: 0.78;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-supporting {
  margin-top: 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--moss);
}

.final-cta::before {
  content: '✦';
  position: absolute;
  top: 80px;
  left: 12%;
  font-family: var(--display);
  color: var(--amber);
  opacity: 0.25;
  font-size: 80px;
  transform: rotate(-15deg);
}

.final-cta::after {
  content: '✦';
  position: absolute;
  bottom: 100px;
  right: 14%;
  font-family: var(--display);
  color: var(--gold);
  opacity: 0.3;
  font-size: 60px;
  transform: rotate(20deg);
}

/* ========== FOOTER ========== */
footer {
  background: var(--inv-bg-deep);
  color: var(--inv-text);
  padding: 76px 0 30px;
  text-align: left;
}

.footer-brand {
  margin-bottom: 60px;
}

.footer-brand .logo {
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--cream);
}

.footer-brand p {
  font-size: 16px;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(243, 244, 244, 0.16);
  font-size: 13px;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 33, 45, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--card-bg);
  border-radius: 28px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 33, 45, 0.5);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 28px 28px 0 0;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* color: var(--page-text); */
  transition: all 0.2s ease;
  z-index: 1;
}

.modal-close:hover {
  background: var(--amber);
  color: var(--paper);
  transform: rotate(90deg);
}

.modal-eyebrow {
  font-size: 12px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 12px;
}

.modal h3 {
  font-family: var(--display);
  font-size: 36px;
  color: var(--page-text);
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.modal h3 em { font-style: italic; color: var(--amber); }

.modal-sub {
  font-size: 15px;
  color: var(--page-text);
  opacity: 0.75;
  margin-bottom: 32px;
  line-height: 1.55;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--page-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--card-divider);
  border-radius: 12px;
  background: var(--page-bg);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--page-text);
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(0, 51, 68, 0.14);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--amber);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 0 var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--rust);
}

.form-submit:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--rust);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(190, 193, 135, 0.30);
  color: var(--moss);
  border: 1px solid rgba(190, 193, 135, 0.55);
}

.form-status.error {
  display: block;
  background: rgba(195, 199, 118, 0.16);
  color: var(--rust);
  border: 1px solid rgba(195, 199, 118, 0.35);
}

[data-theme="dark"] .form-status.error {
  background: rgba(255, 120, 100, 0.14);
  color: #fce8e4;
  border: 1px solid rgba(255, 170, 150, 0.35);
}

.form-fineprint {
  margin-top: 20px;
  font-size: 12px;
  color: var(--moss);
  text-align: center;
  opacity: 0.8;
}

/* Success strip after native Web3Forms POST + redirect */
.form-sent-banner {
  position: sticky;
  top: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.form-sent-banner-text {
  flex: 1;
  min-width: 0;
}

.form-sent-banner-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(243, 244, 244, 0.16);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-sent-banner-close:hover {
  background: rgba(243, 244, 244, 0.24);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.delay-1 { animation-delay: 0.15s; }
.reveal.delay-2 { animation-delay: 0.3s; }
.reveal.delay-3 { animation-delay: 0.45s; }
.reveal.delay-4 { animation-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .orbytt-grid, .lead-magnet-inner, .problem-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .service-card { grid-template-columns: 1fr; gap: 24px; padding: 40px; }
  .service-num { font-size: 48px; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }

  /* Two-row nav: links scroll horizontally on mobile */
  .nav-inner { padding: 0 20px; }
  .nav-row-top { padding: 14px 0 12px; gap: 12px; }
  .nav-row-bottom { padding: 10px 0 12px; }
  .logo { font-size: 22px; gap: 12px; }
  .logo-text { font-size: 21px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.12em; }
  .nav-links .nav-home { display: none; } /* logo already links home; frees room so "Just starting?" isn't cut off */
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  .theme-toggle { width: 36px; height: 36px; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .outcome-item:nth-child(even) { padding-left: 0; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 12px; }

  .marquee-track { font-size: 22px; gap: 40px; }

  .modal { padding: 36px 28px; }
  .modal h3 { font-size: 28px; }

  .founder-stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Shared component refinements
   Rules below were previously inline <style> blocks inside index.html and
   partnership.html. They are gathered here so partials and pages stay clean.
   ========================================================================== */

/* Active nav link (set by components.js via aria-current) */
.nav-links a[aria-current="page"] { color: var(--amber); }

/* Footer Orbytt link */
.footer-orbytt-link { color: var(--orchid); text-decoration: underline; text-underline-offset: 3px; }
.footer-orbytt-link:hover { color: var(--lighthouse); }

/* ---------- Why section: SVG icon block ---------- */
/* Override letter-style .icon block so the SVG fits cleanly and inherits the theme color */
.why-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--rust, #b3552a);
}
[data-theme="dark"] .why-card .icon { color: var(--amber, #e6a849); }
.why-card .icon svg { width: 100%; height: 100%; display: block; }

/* ---------- Objections: +/- toggle ----------
   This block used to force the glyph to Noir with !important, which won the
   cascade over the expanded state and put Noir on a Noir background — the
   toggle vanished the moment an item was opened. The colour now travels with
   the background instead. */
.obj-item .obj-toggle {
  color: var(--page-text);
  opacity: 1;
}

/* ---------- Orbytt section: stack talent cards on mobile ---------- */
@media (max-width: 768px) {
  .orbytt .orbytt-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .orbytt .talent-card-stack {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 1rem;
    padding: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .orbytt .talent-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

/* ---------- About section: credential and founder-link pills ---------- */
/* Light mode: dark text on a light cream/translucent pill */
html[data-theme="light"] .about .credentials-list .credential-tag,
html[data-theme="light"] .about .founder-links .founder-link {
  color: #00212d !important;
  background: rgba(0, 33, 45, 0.06) !important;
  border: 1px solid rgba(0, 33, 45, 0.14) !important;
}
html[data-theme="light"] .about .credentials-list .credential-tag:hover,
html[data-theme="light"] .about .founder-links .founder-link:hover {
  background: rgba(0, 33, 45, 0.1) !important;
  color: #00212d !important;
  cursor: default;
}
/* Dark mode: cream text on a translucent dark pill */
html[data-theme="dark"] .about .credentials-list .credential-tag,
html[data-theme="dark"] .about .founder-links .founder-link {
  color: #00212d !important;
  border: 1px solid rgba(244, 236, 223, 0.22) !important;
}
html[data-theme="dark"] .about .credentials-list .credential-tag:hover,
html[data-theme="dark"] .about .founder-links .founder-link:hover {
  cursor: default;
}

/* ---------- Lead magnet: decorative back cover card ---------- */
.lead-magnet .playbook-cover-2 {
  background: linear-gradient(135deg, #f4ecdf 0%, #e9d9b8 100%) !important;
  border: 1px solid rgba(0, 33, 45, 0.12);
  box-shadow: 0 12px 30px rgba(0, 33, 45, 0.18);
  overflow: hidden;
  position: absolute;
}
.lead-magnet .playbook-cover-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 33, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 33, 45, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -1px -1px;
  opacity: 0.85;
}
.lead-magnet .playbook-cover-2::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--rust, #b3552a) 0%, var(--amber, #e6a849) 70%, transparent 72%);
  opacity: 0.55;
  filter: blur(2px);
}
[data-theme="dark"] .lead-magnet .playbook-cover-2 {
  background: linear-gradient(135deg, #1a2e22 0%, #243a2c 100%) !important;
  border-color: rgba(244, 236, 223, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .lead-magnet .playbook-cover-2::before {
  background-image:
    linear-gradient(rgba(244, 236, 223, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 236, 223, 0.07) 1px, transparent 1px);
}
[data-theme="dark"] .lead-magnet .playbook-cover-2::after {
  opacity: 0.65;
}

/* ==========================================================================
   Partnership page
   Most components reuse global tokens; rules below are page-specific.
   ========================================================================== */

/* Partnership hero: smaller than homepage hero, headline-led */
.partnership-hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}
.partnership-hero::before {
  content: '✦';
  position: absolute;
  top: 80px;
  left: 10%;
  font-family: var(--display);
  color: var(--amber);
  opacity: 0.3;
  font-size: 60px;
  transform: rotate(-15deg);
}
.partnership-hero::after {
  content: '✦';
  position: absolute;
  bottom: 60px;
  right: 12%;
  font-family: var(--display);
  color: var(--gold);
  opacity: 0.4;
  font-size: 44px;
  transform: rotate(20deg);
}
.partnership-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--page-text);
  margin: 32px auto 28px;
  font-weight: 400;
  max-width: 920px;
}
.partnership-hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.partnership-hero .lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
  color: var(--page-text);
  opacity: 0.8;
}

/* Two-column intro (philosophy + what this is) */
.philosophy {
  padding: 80px 0 120px;
  background: var(--page-bg-warm);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-col h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  color: var(--page-text);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.philosophy-col h2 em {
  font-style: italic;
  color: var(--amber);
}
.philosophy-col p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--page-text);
  opacity: 0.82;
  margin-bottom: 18px;
}
.philosophy-col p strong {
  color: var(--page-text);
  opacity: 1;
  font-weight: 600;
}
.philosophy-pull {
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--card-bg);
  border-radius: 0 16px 16px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--page-text);
}

/* Fit and anti-fit lists (side by side) */
.fit {
  padding: 130px 0;
  background: var(--page-bg);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
}
.fit-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.fit-card.yes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--amber);
}
.fit-card.no::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rust);
  opacity: 0.4;
}
.fit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  margin-bottom: 24px;
  line-height: 1;
}
.fit-card.yes .fit-icon {
  background: var(--amber);
  color: var(--paper);
}
.fit-card.no .fit-icon {
  background: var(--card-bg);
  border: 2px solid var(--rust);
  color: var(--rust);
  opacity: 0.85;
}
.fit-card h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.1;
  color: var(--page-text);
  margin-bottom: 8px;
  font-weight: 400;
}
.fit-card .fit-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--page-text-soft);
  margin-bottom: 28px;
}
.fit-card.yes .fit-sub {
  color: var(--amber);
}
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fit-list li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--card-divider);
  font-size: 16px;
  line-height: 1.5;
  color: var(--page-text);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fit-list li:last-child {
  border-bottom: none;
}
.fit-list .marker {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}
.fit-card.yes .marker {
  background: rgba(0, 51, 68, 0.14);
  color: var(--amber);
}
.fit-card.no .marker {
  background: transparent;
  color: var(--page-text-soft);
  border: 1.5px solid var(--card-divider);
}

/* How the partnership works */
.how-it-works {
  padding: 130px 0;
  background: var(--inv-bg);
  color: var(--inv-text);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 51, 68, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.how-it-works .section-label {
  color: var(--amber);
}
.how-it-works .section-headline {
  color: var(--inv-text);
}
.how-it-works .section-headline em {
  color: var(--amber);
}
.how-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.how-cadence {
  padding: 36px;
  background: rgba(243, 244, 244, 0.07);
  border: 1px solid rgba(243, 244, 244, 0.16);
  border-radius: 24px;
}
.how-cadence-label {
  font-size: 12px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 600;
}
.how-cadence h4 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}
.how-cadence p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.82;
}
.how-deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
}
.how-deliverables li {
  padding: 22px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(243, 244, 244, 0.16);
  display: flex;
  align-items: center;
  gap: 18px;
}
.how-deliverables li:last-child {
  border-bottom: none;
}
.how-deliverables .arrow-icon {
  color: var(--amber);
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.how-deliverables-label {
  font-size: 13px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 24px;
}
.how-conclusion {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--amber);
  color: var(--inv-bg-deep);
  border-radius: 24px;
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

/* Four outcomes */
.outcomes-section {
  padding: 130px 0;
  background: var(--page-bg);
}
.outcomes-section .section-headline em {
  color: var(--amber);
}
.outcomes-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
}
.outcome-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 24px 60px -20px rgba(0, 51, 68, 0.16);
}
.outcome-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-card h3 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
  color: var(--page-text);
  margin-bottom: 14px;
  font-weight: 400;
}
.outcome-card h3 em {
  font-style: italic;
  color: var(--amber);
}
.outcome-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-text);
  opacity: 0.82;
}

/* Pull-quote testimonial with "you, in X months" device */
.pullquote {
  padding: 110px 0;
  background: var(--page-bg-warm);
  position: relative;
  overflow: hidden;
}
.pullquote-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 240px;
  color: var(--amber);
  opacity: 0.1;
  line-height: 1;
  font-style: italic;
}
.pullquote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  color: var(--page-text);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.pullquote blockquote em {
  color: var(--amber);
  font-style: italic;
}
.pullquote cite {
  font-style: normal;
  font-size: 13px;
  color: var(--page-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.pullquote cite strong {
  color: var(--amber);
  font-weight: 600;
}

/* Pricing + CTA */
.pricing {
  padding: 140px 0;
  background: var(--page-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '✦';
  position: absolute;
  top: 80px;
  left: 14%;
  font-family: var(--display);
  color: var(--amber);
  opacity: 0.25;
  font-size: 70px;
  transform: rotate(-15deg);
}
.pricing::after {
  content: '✦';
  position: absolute;
  bottom: 100px;
  right: 14%;
  font-family: var(--display);
  color: var(--gold);
  opacity: 0.35;
  font-size: 56px;
  transform: rotate(20deg);
}
.pricing-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pricing h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--page-text);
  margin-bottom: 28px;
  font-weight: 400;
}
.pricing h2 em {
  font-style: italic;
  color: var(--amber);
}
.pricing-range {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  margin-bottom: 32px;
}
.pricing-range .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--page-text-soft);
  font-weight: 600;
}
.pricing-range .amount {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--page-text);
}
.pricing-range .amount em {
  color: var(--amber);
  font-style: italic;
}
.pricing p.pricing-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--page-text);
  opacity: 0.78;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-finepoint {
  margin-top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--page-text-soft);
}

/* Partnership responsive */
@media (max-width: 1024px) {
  .philosophy-grid,
  .fit-grid,
  .how-grid-2col,
  .outcomes-grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .philosophy {
    padding: 70px 0 90px;
  }
}

@media (max-width: 640px) {
  .partnership-hero {
    padding: 60px 0 80px;
  }
  .fit-card,
  .outcome-card {
    padding: 32px 28px;
  }
  .how-cadence {
    padding: 28px;
  }
  .how-conclusion {
    font-size: 21px;
    padding: 28px;
  }
}

/* ==========================================================================
   SOCIENT BRAND LAYER

   SECTION RHYTHM — tiers alternate, same-tier surfaces never touch:
     hero        T1 Lighthouse        marquee     T4 Noir
     problem     T2 Homeo Lavender      └ strip   T3 Lavender Pillow
     shift       T4 Noir              services    T1 Lighthouse
     how         T3 Kiss a Frog       outcomes    T1 Lighthouse
     why         T4 Noir              objections  T2 Homeo Lavender
     orbytt      T4 Noir              about       T1 Lighthouse
     lead magnet T2 Orchid Hue        final CTA   T1 Lighthouse
     footer      T4 Noir-deep
   ========================================================================== */

/* ---------- CTA: Orchid Hue fill, Nordic Noir label (10.56:1) ---------- */
.btn-primary {
  background: var(--orchid);
  color: var(--noir);
  font-weight: 600;
  box-shadow: 0 4px 0 var(--orchid-deep), 0 12px 26px -10px rgba(0, 51, 68, 0.28);
}
.btn-primary:hover {
  background: #edf0b0;
  color: var(--noir);
  box-shadow: 0 6px 0 var(--orchid-deep), 0 18px 34px -10px rgba(0, 51, 68, 0.32);
}
.btn-primary:active { box-shadow: 0 1px 0 var(--orchid-deep), 0 6px 14px -6px rgba(0, 51, 68, 0.28); }
.form-submit { background: var(--orchid); color: var(--noir); }
.form-submit:hover { background: #edf0b0; }

.btn-ghost {
  background: transparent;
  color: var(--page-text);
  border: 1.5px solid var(--card-divider);
  padding: 18px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:visited, .btn-ghost:focus { text-decoration: none; }
.btn-ghost:hover { border-color: var(--noir); background: var(--card-bg); transform: translateY(-1px); }
[data-theme="dark"] .btn-ghost:hover { border-color: var(--orchid); color: var(--orchid); }

/* ---------- Logo ---------- */


/* ---------- Bands ---------- */
/* T3 mid surfaces: light, so they take Noir type, never Lighthouse */
.problem-result { background: var(--pillow); color: var(--noir); }
.problem-result em { color: var(--noir-deep); font-style: italic; }
[data-theme="dark"] .problem-result { background: var(--pillow); color: var(--noir); }

.how { background: var(--frog); }
.how .section-label { color: var(--noir-deep); }
.how .step { background: var(--card-white); border-color: rgba(0, 51, 68, 0.14); }
[data-theme="dark"] .how { background: var(--frog); }
[data-theme="dark"] .how .section-headline,
[data-theme="dark"] .how .step h4 { color: var(--noir); }
[data-theme="dark"] .how .step p { color: var(--noir-deep); }

/* T2 pale: the Orchid moment */
.lead-magnet { background: var(--orchid); color: var(--noir); }
.lead-magnet h3, .lead-magnet p { color: var(--noir); }
.lead-magnet .section-label { color: var(--noir-deep); }

.orbytt { background: linear-gradient(135deg, var(--noir-deep) 0%, var(--noir) 100%); }
footer { background: var(--noir-deep); }
.marquee { border-top-color: var(--noir-deep); border-bottom-color: var(--noir-deep); }
.marquee .dot { background: var(--orchid); }

/* ---------- HERO ---------- */
.hero { padding: 76px 0 108px; position: relative; isolation: isolate; }
.hero::before {
  content: '';
  position: absolute;
  inset: -140px -10% auto -10%;
  height: 720px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(50% 44% at 16% 10%, rgba(197, 185, 211, 0.55) 0%, transparent 68%),
    radial-gradient(46% 44% at 86% 4%, rgba(229, 233, 153, 0.45) 0%, transparent 70%);
  filter: blur(4px);
}
[data-theme="dark"] .hero::before {
  background:
    radial-gradient(50% 44% at 16% 10%, rgba(0, 51, 68, 0.95) 0%, transparent 66%),
    radial-gradient(46% 44% at 86% 4%, rgba(229, 233, 153, 0.10) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-copy { text-align: left; max-width: 620px; }

/* Eyebrow: uppercase label between two short rules (carried over from the original) */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: var(--moss);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero .eyebrow::before,
.hero .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  border-radius: 0;
  background: var(--moss);
  box-shadow: none;
}

.hero h1 { font-size: clamp(44px, 5.6vw, 76px); line-height: 1.0; margin-bottom: 24px; }
.hero h1 .mark {
  font-style: italic;
  position: relative;
  display: inline-block;
  color: var(--noir);
}
[data-theme="dark"] .hero h1 .mark { color: var(--orchid); }
.hero h1 .mark::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%; bottom: 0.1em;
  height: 0.30em;
  background: var(--orchid);
  opacity: 0.9;
  border-radius: 6px;
  z-index: -1;
}
[data-theme="dark"] .hero h1 .mark::after { opacity: 0.20; }

.hero-sub { margin: 0 0 18px; max-width: 560px; font-size: 18.5px; }
.hero-sub strong { color: var(--noir); }
[data-theme="dark"] .hero-sub strong { color: var(--orchid); }
.hero-copy .cta-row { justify-content: flex-start; margin-top: 30px; }

.hero-proof {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid var(--card-divider);
}
.hero-proof .proof-item { display: flex; align-items: baseline; gap: 9px; font-size: 13px; color: var(--page-text-soft); }
.hero-proof .proof-num {
  font-family: var(--display); font-size: 27px; font-style: italic;
  color: var(--noir); line-height: 1;
}
[data-theme="dark"] .hero-proof .proof-num { color: var(--orchid); }

/* ---------- Hero visual ---------- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.system-card {
  width: 100%; max-width: 430px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 26px 26px 22px;
  box-shadow: var(--card-shadow);
  position: relative; overflow: hidden;
}
.system-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--noir) 0%, var(--pillow) 50%, var(--orchid) 100%);
}
.system-card .sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.system-card .sc-title { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--page-text); }
.system-card .sc-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--noir-soft);
}
[data-theme="dark"] .system-card .sc-live { color: var(--orchid); }
.system-card .sc-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orchid); border: 1px solid rgba(0,51,68,0.25);
  animation: sc-pulse 2.4s ease-in-out infinite;
}
@keyframes sc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(195, 199, 118, 0.9); }
  50%      { box-shadow: 0 0 0 7px rgba(195, 199, 118, 0); }
}

.sc-node {
  display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 14px;
  padding: 13px 14px; border-radius: 14px;
  background: var(--page-bg); border: 1px solid var(--card-border);
  position: relative;
}
.sc-node + .sc-node { margin-top: 26px; }
.sc-node + .sc-node::before {
  content: '';
  position: absolute; left: 33px; top: -26px; height: 26px; width: 2px;
  background: linear-gradient(180deg, var(--pillow), rgba(197, 185, 211, 0.3));
}
.sc-dot {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic; font-size: 17px;
}
.sc-node.n1 .sc-dot { background: var(--noir);   color: var(--lighthouse); }
.sc-node.n2 .sc-dot { background: var(--pillow); color: var(--noir); }
.sc-node.n3 .sc-dot { background: var(--orchid); color: var(--noir); }
.sc-label { font-size: 14.5px; font-weight: 600; color: var(--page-text); }
.sc-sub   { font-size: 12.5px; color: var(--page-text-soft); margin-top: 2px; }
.sc-metric {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--noir);
  background: rgba(0, 51, 68, 0.09);
  border-radius: 100px; padding: 5px 11px; white-space: nowrap;
}
[data-theme="dark"] .sc-metric { color: var(--orchid); background: rgba(229, 233, 153, 0.14); }

.sc-foot {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px dashed var(--card-divider);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: var(--page-text-soft);
}
.sc-foot strong { color: var(--page-text); font-weight: 600; }
.sc-bar { flex: 1; height: 6px; border-radius: 100px; background: var(--homeo); overflow: hidden; max-width: 120px; }
[data-theme="dark"] .sc-bar { background: rgba(243, 244, 244, 0.12); }
.sc-bar span {
  display: block; height: 100%; width: 72%; border-radius: 100px;
  background: linear-gradient(90deg, var(--noir), var(--pillow), var(--orchid));
}

/* ---------- Section polish ---------- */
.section-label { color: var(--noir); }
[data-theme="dark"] .section-label { color: var(--orchid); }
.why .section-label,
.shift .section-label,
.how-it-works .section-label,
.orbytt .section-label { color: var(--orchid); }

.outcome-mark { color: var(--noir); }
[data-theme="dark"] .outcome-mark { color: var(--orchid); }
.service-card .service-num { color: var(--pillow); }
.step-number { background: var(--noir); color: var(--lighthouse); }
[data-theme="dark"] .step-number { background: var(--orchid); color: var(--noir); }
.orbytt-features .check { color: var(--orchid); }
.credentials { background: var(--homeo); border-left-color: var(--noir); }
[data-theme="dark"] .credentials { background: var(--page-bg-warm); border-left-color: var(--orchid); }

/* Elements on coloured surfaces */
.why-card .icon, [data-theme="dark"] .why-card .icon { color: var(--orchid); }
.playbook-cover { background: var(--noir); }
.playbook-cover .cover-title em { color: var(--orchid); }
.playbook-cover .cover-art { background: var(--orchid); }
.playbook-cover .cover-label { color: var(--pillow); }
.playbook-cover-2 { background: var(--pillow); }
.talent-1 { background: var(--card-white); color: var(--noir); }
.talent-2 { background: var(--orchid) !important; color: var(--noir) !important; }
.talent-2 .talent-avatar { background: var(--noir); color: var(--orchid); }
.talent-2 .talent-role { color: var(--noir); }
.talent-3 { background: var(--pillow) !important; color: var(--noir) !important; }
.talent-3 .talent-avatar { background: var(--noir); color: var(--pillow); }
.talent-3 .talent-role { color: var(--noir); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: none; }
  .hero-visual { justify-content: flex-start; }
  .system-card { max-width: 100%; }
}
@media (max-width: 620px) {
  .hero { padding: 44px 0 72px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero-proof { gap: 16px 22px; }
  .hero-copy .cta-row { flex-direction: column; align-items: stretch; }
  .hero-copy .cta-row .btn, .hero-copy .cta-row .btn-ghost { justify-content: center; }
  .sc-node { grid-template-columns: 36px 1fr; }
  .sc-metric { grid-column: 2; justify-self: start; margin-top: 6px; }
}


/* ==========================================================================
   CTA CONSISTENCY — every call to action is Orchid Hue with a Nordic Noir
   label (10.56:1). That includes the nav Contact button and the lead-magnet
   button, which previously inherited the dark pill.
   ========================================================================== */
.nav-cta,
[data-theme="dark"] .nav-cta {
  background: var(--orchid) !important;
  color: var(--noir) !important;
  font-weight: 600;
}
.nav-cta:hover,
[data-theme="dark"] .nav-cta:hover {
  background: #edf0b0 !important;
  color: var(--noir) !important;
  opacity: 1 !important;
}

/* On a green surface (Orchid Hue or Kiss a Frog) the filled CTA disappears,
   so it becomes an outline pill: no fill, Nordic Noir border and label. */
.lead-magnet .btn-primary,
.how .btn-primary,
.lead-magnet .nav-cta,
.how .nav-cta {
  background: transparent !important;
  color: var(--noir) !important;
  border: 1.5px solid var(--noir) !important;
  box-shadow: none !important;
  transform: none !important;
}
.lead-magnet .btn-primary:hover,
.how .btn-primary:hover {
  background: var(--noir) !important;
  color: var(--orchid) !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

/* The FAQ block follows the Orchid lead-magnet band on several pages. Both are
   tier T2, so leaving it on --page-bg-warm would put two same-tier surfaces
   next to each other. It sits on the ground tier instead, like .services. */
.faq-block { background: var(--page-bg); }

/* ---------- Accordion toggle: resting, hover and expanded ----------
   Resting: quiet chip on the card. Expanded: Orchid fill with a Noir glyph
   (10.56:1), matching the CTA colour language. */
.obj-toggle {
  background: var(--page-bg-warm);
  color: var(--page-text);
  border: 1px solid var(--card-border);
}
[data-theme="dark"] .obj-toggle {
  background: rgba(243, 244, 244, 0.09);
  color: var(--page-text);
  border-color: rgba(243, 244, 244, 0.16);
}
.obj-item:hover .obj-toggle {
  background: var(--pillow);
  color: var(--noir);
  border-color: transparent;
  transform: rotate(45deg);
}
[data-theme="dark"] .obj-item:hover .obj-toggle {
  background: rgba(197, 185, 211, 0.30);
  color: var(--lighthouse);
}
.obj-item.active .obj-toggle,
.obj-item.active:hover .obj-toggle,
[data-theme="dark"] .obj-item.active .obj-toggle,
[data-theme="dark"] .obj-item.active:hover .obj-toggle {
  background: var(--orchid);
  color: var(--noir);
  border-color: transparent;
  transform: rotate(45deg);
}
/* The card border follows too, so an open item reads as open at a glance. */
.obj-item.active { border-color: var(--orchid); }
.obj-item:hover { border-color: var(--pillow); }
[data-theme="dark"] .obj-item:hover { border-color: rgba(197, 185, 211, 0.45); }

/* ---------------------------------------------------------------------------
   Wordmark. Set in the UI sans at bold, mixed case, with the full stop —
   tight tracking, no letterspacing. The S mark survives as the favicon and
   app icon, where a glyph has to work in a tiny square.
   --------------------------------------------------------------------------- */
.logo {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.022em;
  text-transform: none;
  color: var(--page-text);
  gap: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-text { line-height: 1; }
.logo-mark { display: none !important; }
footer .logo { color: var(--lighthouse); }
@media (max-width: 620px) { .logo { font-size: 23px; } }

/* ---------------------------------------------------------------------------
   Subscribe to Insights — shared component (partials/subscribe.html), used on
   /insights and at the foot of every post.

   The band is Orchid Hue, which is a LIGHT surface: it takes Nordic Noir type,
   never Lighthouse. The form sits on a white card so the submit button can be
   a solid Noir fill — an Orchid button on an Orchid band would disappear.
   --------------------------------------------------------------------------- */
.subscribe {
  background: var(--orchid);
  color: var(--noir);
  padding: 84px 0 92px;
}
[data-theme="dark"] .subscribe { background: var(--orchid); color: var(--noir); }
.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.subscribe .section-label,
[data-theme="dark"] .subscribe .section-label { color: var(--noir-deep); }
.subscribe-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--noir);
}
.subscribe-copy h2 em,
[data-theme="dark"] .subscribe-copy h2 em { font-style: italic; color: var(--noir-deep); }
.subscribe-copy p,
[data-theme="dark"] .subscribe-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--noir);
  opacity: 0.82;
  max-width: 460px;
  margin: 0;
}

.subscribe-form-wrap {
  background: var(--card-white);
  border: 1px solid rgba(0, 51, 68, 0.14);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px -26px rgba(0, 51, 68, 0.35);
}
.subscribe-fields { display: grid; gap: 16px; }
.subscribe-form .form-group { display: grid; gap: 7px; }
.subscribe-form label,
[data-theme="dark"] .subscribe-form label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir-soft);
}
.subscribe-form .form-input,
[data-theme="dark"] .subscribe-form .form-input {
  background: #ffffff;
  color: var(--noir);
  border-color: rgba(0, 51, 68, 0.22);
}
.subscribe-form .form-input::placeholder { color: rgba(0, 51, 68, 0.42); }
.subscribe-submit,
.subscribe-form .form-submit,
[data-theme="dark"] .subscribe-form .form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  background: var(--noir);
  color: var(--lighthouse);
}
.subscribe-form .form-submit:hover,
[data-theme="dark"] .subscribe-form .form-submit:hover { background: var(--noir-deep); color: var(--lighthouse); }
.subscribe-form .form-fineprint,
[data-theme="dark"] .subscribe-form .form-fineprint {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--noir-soft);
  margin-top: 14px;
}

/* Confirmation panel — replaces the form in place */
.subscribe-confirmed { text-align: left; outline: none; }
.subscribe-confirmed[hidden] { display: none; }
.sc-check {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--noir); color: var(--orchid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sc-check svg { width: 22px; height: 22px; }
.subscribe-confirmed h3,
[data-theme="dark"] .subscribe-confirmed h3 {
  font-family: var(--display); font-weight: 400; font-size: 30px;
  line-height: 1.1; margin: 0 0 10px; color: var(--noir);
}
.subscribe-confirmed .sc-lead,
[data-theme="dark"] .subscribe-confirmed .sc-lead {
  font-size: 16.5px; line-height: 1.6; color: var(--noir); margin: 0 0 10px;
}
.subscribe-confirmed .sc-name,
.subscribe-confirmed .sc-email { font-weight: 600; }
.subscribe-confirmed .sc-note,
[data-theme="dark"] .subscribe-confirmed .sc-note {
  font-size: 13.5px; line-height: 1.55; color: var(--noir-soft); margin: 0;
}

@media (max-width: 900px) {
  .subscribe { padding: 60px 0 68px; }
  .subscribe-inner { grid-template-columns: 1fr; gap: 32px; }
  .subscribe-form-wrap { padding: 26px 22px; }
}
}

/* The submit inherits the Orchid drop-shadow from .form-submit; on a Noir fill
   that reads as a stray yellow edge. Shadow follows the fill. */
.subscribe-form .form-submit,
[data-theme="dark"] .subscribe-form .form-submit {
  box-shadow: 0 4px 0 var(--noir-deep), 0 12px 26px -12px rgba(0, 51, 68, 0.45);
}
.subscribe-form .form-submit:hover,
[data-theme="dark"] .subscribe-form .form-submit:hover {
  box-shadow: 0 6px 0 var(--noir-deep), 0 18px 32px -12px rgba(0, 51, 68, 0.5);
}

/* ==========================================================================
   DESIGN RULE — cards and panels never carry a coloured left border.

   A stripe down one edge is a decoration standing in for hierarchy: it says
   "this is important" without earning it, and it breaks the box. Emphasis
   comes from the surface, the border as a whole, or type — not from an edge.

   This is a global rule. If a card needs to stand out, change its background
   or its full border, not one side of it.

   It applies to artwork too: the insights card images carried an Orchid bar
   down one edge, which is the same decoration baked into a PNG. Regenerate
   card art without it.
   ========================================================================== */
.credentials,
.post-takeaways,
.takeaway,
.pullquote,
.compare-col,
.compare-col.is-good,
.compare-col.is-bad,
.mt-startup .stat {
  border-left: 0 !important;
}

/* Each of those had the stripe doing a job. Replacements, in order: */

/* Tools & technologies panel — the surface already separates it. */
.credentials { padding-left: 28px; }

/* Key takeaways — a full border plus the surface, no stripe. */
.post-takeaways { border: 1px solid var(--card-border); }

/* Article callout — same treatment. */
.takeaway { border: 1px solid var(--card-border); }

/* Pull quote — the stripe was the only thing marking it, so it becomes a
   hanging quote mark and indent instead. */
.pullquote {
  position: relative;
  padding: 6px 0 6px 34px;
  border: 0;
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.06em;
  font-family: var(--display);
  font-size: 2.6em;
  line-height: 1;
  color: var(--amber);
  opacity: 0.55;
}

/* Compare columns — good/bad now read from a top rule, which does not
   fight the card edge. */
.compare-col { border-top: 3px solid var(--card-divider); }
.compare-col.is-good { border-top-color: var(--ch-good); }
.compare-col.is-bad  { border-top-color: var(--ch-bad); }

/* Startup-offer stat — the number carries it; the rule was noise. */
.mt-startup .stat { padding-left: 0; }

/* Two more that carried the stripe. */
/* Problem lead — the display italic already sets it apart; keep the indent. */
.problem-lead { border: 0; padding-left: 0; }
/* Philosophy pull — surface plus a full border. */
.philosophy-pull { border: 1px solid var(--card-border); }

/* Startup-offer hero: only the headline accent sits on the Noir surface, so it
   is lifted on its own rather than by scoping the whole hero. --amber-bright
   resolves to Noir-deep on light, which was invisible there. */
.mt-startup .hero h1 em { color: var(--orchid) !important; }
[data-theme="dark"] .mt-startup .hero h1 em { color: var(--orchid) !important; }


/* Every filled button on this page hardcoded `color:#fff` over an --amber
   background. That was Noir + white on light, but --amber lifts to Orchid in
   dark mode, leaving white on yellow at 1.86:1. One rule covers them all. */
.mt-startup .cta,
.mt-startup .form-card button,
.mt-startup .footer-cta-btn,
[data-theme="dark"] .mt-startup .cta,
[data-theme="dark"] .mt-startup .form-card button,
[data-theme="dark"] .mt-startup .footer-cta-btn {
  background: var(--orchid) !important;
  color: var(--noir) !important;
  font-weight: 700;
}
.mt-startup .cta:hover,
.mt-startup .form-card button:hover,
.mt-startup .footer-cta-btn:hover,
[data-theme="dark"] .mt-startup .cta:hover,
[data-theme="dark"] .mt-startup .form-card button:hover,
[data-theme="dark"] .mt-startup .footer-cta-btn:hover {
  background: #f0f3b3 !important;
  color: var(--noir) !important;
}

/* ==========================================================================
   FOOTER — brand left, navigation right.
   ========================================================================== */
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: start;
  padding-bottom: 52px;
}
.footer-brand { margin-bottom: 0; }
.footer-brand .logo {
  justify-content: flex-start;
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--lighthouse);
}
.footer-brand p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.72;
  max-width: 420px;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 72px;
  justify-self: end;
}
.footer-nav-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orchid);
  margin: 0 0 16px;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-nav a,
.footer-link-btn {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.3;
  color: var(--inv-text);
  opacity: 0.78;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-nav a:hover,
.footer-link-btn:hover { opacity: 1; color: var(--orchid); }
.footer-nav a:focus-visible,
.footer-link-btn:focus-visible { outline: 2px solid var(--orchid); outline-offset: 3px; border-radius: 2px; }

.footer-bottom { text-align: left; }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-nav { justify-self: start; gap: 56px; }
}
@media (max-width: 480px) {
  .footer-nav { gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Belt and braces: the footer nav must never pick up sticky-bar chrome. */
.footer-nav {
  position: static;
  z-index: auto;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
}
