:root {
  --bg: #0a0a0a;
  --surface: #171717;
  --glass: rgba(23, 23, 23, 0.55);
  --border: #262626;
  --text: #e5e5e5;
  --muted: #a3a3a3;
  --gold: #C5A96A;
  --gold-glow: rgba(193, 182, 139, 0.16);
  --gold-border: rgba(193, 182, 139, 0.6);
  /* Single source of truth for all gold text gradients.
     Change here → updates every gold accent heading, label, and span on the 110 page. */
  --gold-text-gradient: linear-gradient(
    135deg,
    #A8853A  0%,
    #C5A96A 25%,
    #DFC98A 42%,
    #E8D4A0 50%,
    #DFC98A 58%,
    #C5A96A 75%,
    #A8853A 100%
  );
  --metal: #a6adb7;
  --nav-bg: #171717;
  --track-bg: #262626;
  --pill-bg: #171717;
  --pill-border: #262626;
  --noise-opacity: 0.03;
  --radius-card: 22px;
  --radius-input: 15px;
  --radius-pill: 999px;
  --content-width: min(1200px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.topbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.topbar-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.topbar {
  width: min(980px, 92vw);
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.86rem;
  padding: 0.42rem 0.58rem 0.42rem 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-width: 0;
}

.brand-block {
  display: grid;
  gap: 0.08rem;
}

.brand-mark {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Service page logo — square logomark, must not force a fixed height+width pair */
.logo-110 img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-sub {
  margin: 0;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.topbar nav {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.8rem;
}

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.topbar nav a:hover {
  color: var(--text);
}

.btn {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.5rem 0.78rem;
  transition: all 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn.primary {
  border-color: rgba(193, 182, 139, 0.9);
  background: transparent;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: rgba(193, 182, 139, 0.1);
  box-shadow:
    0 0 0 1px rgba(193, 182, 139, 0.35),
    0 12px 40px rgba(193, 182, 139, 0.08);
  outline: none;
}

main {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.narrative {
  position: relative;
  margin-top: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.story-stage {
  position: sticky;
  top: 70px;
  height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

/* Left column: all copy stacked vertically */
.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1vw, 0.85rem);
}

.phase-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  width: 100%;
}

.phase-chip {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.66rem;
  color: var(--metal);
  display: none;
}

#phaseTitle {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0.008em;
  max-width: min(640px, 90vw); /* constrained to left column */
  white-space: normal;         /* responsive — wraps on mobile */
  text-align: left;
  /* Plain color — no background-clip on parent; nested .gold spans
     apply their own background-clip:text gradient without conflict */
  color: #EEEEEE;
}

/* Generic gold span — covers ALL .gold usage on the 110 page:
   phase title, offerings headline, section h2/h3, outcome cards, etc.
   Matches the standard sitewide gold gradient (same as homepage em tags).
   More-specific selectors below add text-shadow for heading depth. */
.gold {
  display: inline-block;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}

#phaseTitle .gold {
  /* Inherits .gold gradient; override text-shadow for heading depth */
  text-shadow:
    0  1px 0 rgba(255,245,190,0.12),
    0 -1px 1px rgba(0,0,0,0.28);
}

#phaseDesc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
  min-height: 3.6em;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  text-align: left;
}

.progress {
  margin-top: 0.46rem;
  width: min(320px, 96%);
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--track-bg);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(193, 182, 139, 0.36), #C5A96A 68%, rgba(193, 182, 139, 0.3));
}

.progress-note {
  margin: 0.05rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
  width: min(320px, 96%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.story-microline {
  margin: 0.02rem 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
  opacity: 0.8;
}

/* ── Next phase button ── */
.next-phase-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(193, 182, 139, 0.55);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, opacity 0.2s ease;
}
.next-phase-btn:hover {
  border-color: rgba(193, 182, 139, 0.85);
  color: #F8F4DC;
}
.next-phase-btn[hidden],
.next-phase-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#replayStory {
  opacity: 0;
  pointer-events: none;
  color: var(--metal);
  text-decoration: none;
  transition: opacity 200ms ease, color 160ms ease;
}

#replayStory.is-visible {
  opacity: 0.9;
  pointer-events: auto;
}

#replayStory:hover {
  color: var(--text);
}

.cube-panel {
  position: relative;
  width: 100%;
  height: clamp(340px, 58vh, 540px);
  overflow: hidden;
}

#cubeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.label-stack {
  position: absolute;
  display: grid;
  gap: 0.55rem;
  z-index: 3;
  pointer-events: none;
  width: min(185px, 42%);
}

.label-stack.left {
  left: 0.95rem;
  top: 17%;
  justify-items: start;
}

.label-stack.right {
  right: 0.95rem;
  top: 22%;
  justify-items: end;
}

.label {
  opacity: 0;
  transform: translateX(0);
  border-radius: var(--radius-pill);
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.43rem 0.66rem;
}

.scroll-track {
  height: 720vh;
  pointer-events: none;
}

.section {
  padding: clamp(3.8rem, 8vw, 6.8rem) 0;
  border-bottom: 1px solid var(--border);
}

.section-top {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-tag {
  margin: 0;
  padding: 0.26rem 0.62rem;
  width: fit-content;
  border-radius: var(--radius-pill);
  border: none;
  color: var(--bg);
  background: linear-gradient(90deg, var(--gold) 0%, rgba(197,169,106,0.75) 100%);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

.section h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.35rem, 3vw, 2.24rem);
  line-height: 1.16;
  max-width: 18ch;
  letter-spacing: -0.01em;
}

.section h3 .gold {
  /* Gradient inherited from .gold; text-shadow adds heading depth */
  text-shadow:
    0  1px 0 rgba(255,245,190,0.12),
    0 -1px 1px rgba(0,0,0,0.28);
}

.section p.lead {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
  font-size: 1.05rem;
}

.checklist {
  margin: 1rem 0 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  max-width: 78ch;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.45;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #D4B87A;
  font-weight: 700;
}

.checklist.big-check li {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0 1.6rem;
  opacity: 0.9;
}

.offerings-head {
  margin-top: 2.1rem;
}

.services-grid.offerings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
  transition: border-color 160ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: rgba(82, 82, 82, 0.8);
  transform: translateY(-2px);
}

.card.flagship {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(193, 182, 139, 0.06), rgba(23, 23, 23, 1));
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.card h4 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.card p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
  flex-grow: 1;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--metal);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}

.card-list li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1rem;
}

.card-list li::before {
  content: "•";
  color: #D4B87A;
  position: absolute;
  left: 0;
}

/* FOUNDER SECTION */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-bio p {
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1rem;
}

.founder-bio em {
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "IBM Plex Mono", monospace;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow:
    0  1px 0 rgba(255,245,190,0.12),
    0 -1px 1px rgba(0,0,0,0.28);
}

.founder-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.pillar strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow:
    0  1px 0 rgba(255,245,190,0.12),
    0 -1px 1px rgba(0,0,0,0.28);
}

.pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--metal);
  line-height: 1.4;
}

.founder-visual {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Photo wrapper — holds card + flanking stacks */
.founder-photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.founder-photo-card {
  position: relative;
  flex-shrink: 0;
}

.founder-photo-frame {
  width: 300px;
  height: 340px;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.founder-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(197, 169, 106, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.founder-photo-frame::after {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 56px;
  background: rgba(197, 169, 106, 0.15);
  filter: blur(28px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-photo-caption {
  position: absolute;
  bottom: -16px;
  right: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(197, 169, 106, 0.75) 100%);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.founder-photo-caption-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--bg);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Flanking skill stacks */
.founder-skill-stack {
  position: absolute;
  top: 12%;
  display: grid;
  gap: 0.5rem;
  z-index: 3;
}

.founder-skill-stack.left {
  left: 0;
  justify-items: start;
}

.founder-skill-stack.right {
  right: 0;
  justify-items: end;
}

.founder-skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 500;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: border-color 200ms, color 200ms;
}

.founder-skill-tag:hover {
  border-color: var(--gold-border);
  color: var(--text);
}

/* Mobile fallback tags row */
.founder-skill-tags {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 320px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.step {
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 0.95rem;
  background: rgba(23, 23, 23, 0.9);
  transition: border-left-color 160ms ease, border-color 160ms ease;
}

.step:hover {
  border-color: rgba(82, 82, 82, 0.8);
  border-left-color: var(--gold);
}

.step strong {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--metal);
  margin-bottom: 0.26rem;
}

.step h5 {
  margin: 0;
  font-size: 1rem;
}

.step p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.section-cta {
  padding-bottom: clamp(4.2rem, 9vw, 7rem);
  border-bottom: 0;
}

.cta-wrap.single-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.cta-copy.center-text {
  text-align: center;
  align-items: center;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 640px;
}

.cta-copy.center-text .section-tag {
  margin: 0 auto;
}

.cta-copy.center-text h3 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.cta-copy.center-text p {
  max-width: 52ch;
  margin: 0.75rem auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.formaloo-container {
  width: 100%;
  max-width: 600px;
  min-height: 500px;
  background: transparent;
}

.footer {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-mark {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #C0C0C0  0%,
    #D8D8D8 25%,
    #EEEEEE 42%,
    #F8F8F8 50%,
    #EEEEEE 58%,
    #D8D8D8 75%,
    #C0C0C0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0  1px 0 rgba(255,255,255,0.09),
    0 -1px 1px rgba(0,0,0,0.28);
  transition: opacity 0.2s ease;
}
.footer-mark:hover {
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-nav button {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s ease;
}

.footer-nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.footer-nav a:hover,
.footer-nav button:hover { color: var(--text); }

.footer-copy {
  font-size: 0.73rem;
  color: var(--muted);
  opacity: 0.55;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .services-grid.offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-pillars {
    grid-template-columns: 1fr;
  }
  
  .founder-visual {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  /* Mobile photo pill layout */
  .founder-photo-frame { width: 240px; height: 268px; }
  .founder-photo-caption { right: -12px; bottom: -12px; padding: 7px 13px; }
  .founder-photo-caption-text { font-size: 9px; }
  .founder-skill-stack { display: none; }
  .founder-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
  }

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

@media (max-width: 900px) {
  .story-stage {
    top: 60px;
    height: calc(100vh - 72px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 44vh) auto;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.5rem 0;
  }

  .story-copy {
    order: 2;
  }

  .cube-panel {
    order: 1;
    height: 100%;
    min-height: 280px;
  }

  #phaseTitle {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    text-align: left;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 44px;
    border-radius: 12px;
    width: min(330px, 92vw);
  }

  .topbar nav {
    display: none;
  }

  .brand-sub {
    display: none;
  }

  .btn {
    padding: 0.36rem 0.58rem;
    font-size: 0.66rem;
  }

  .story-stage {
    top: 54px;
    height: calc(100vh - 64px);
    grid-template-rows: minmax(250px, 40vh) auto;
    gap: 0.4rem;
  }

  .label {
    font-size: 0.61rem;
    padding: 0.38rem 0.52rem;
  }

  .progress-note {
    width: min(340px, 100%);
  }

  .services-grid.offerings-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .scroll-track {
    height: 670vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}
/* ============================================================
   3PRO SECTIONS — Problem, Offerings, Method, Contact Form
   Added: no external dependencies, pure CSS
   ============================================================ */

/* --- Shared section layout --- */
.section-problem,
.section-offerings,
.section-method {
  position: relative;
  padding: 6rem 0;
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Gradient text utilities --- */
.text-metallic {
  background: linear-gradient(
    180deg,
    #EEEEEE  0%,
    #F8F8F8 35%,
    #EEEEEE 65%,
    #D4D4D4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text);
  text-shadow:
    0  1px 0 rgba(255,255,255,0.09),
    0 -1px 1px rgba(0,0,0,0.28);
  background-clip: text;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.text-gold-shine {
  background: linear-gradient(to right, #C5A96A, #E8E0C5, #C5A96A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 4s linear infinite;
}

@keyframes gold-shine {
  to { background-position: 200% center; }
}

/* --- Fade-in-up animation --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- Problem section --- */
.section-problem {
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}


.problem-lead {
  font-size: 1.08rem;
  color: #a3a3a3;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #a3a3a3;
  font-size: 0.97rem;
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #C5A96A;
  stroke: #C5A96A;
}

/* --- Offerings section --- */
.section-offerings {
  background: rgba(10, 10, 10, 0.5);
}

.offerings-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.offerings-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
}

/* Cinzel variant used for "Clarity as a Service." headline */
.offerings-cinzel {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.015em;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* --- Spotlight card --- */
.spotlight-card {
  position: relative;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  z-index: 1;
  transition: border-color 0.3s;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}
.spotlight-card:hover::before { opacity: 1; }

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.35),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s;
}
.spotlight-card:hover::after { opacity: 1; }

.spotlight-card--wide {
  grid-column: 1 / -1;
}

.card-wide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.card-wide-inner > div:first-child {
  max-width: 42rem;
}

.spotlight-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(193, 182, 139, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: #C5A96A;
}

.spotlight-card .card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: #C5A96A;
}

.spotlight-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  background: linear-gradient(
    180deg,
    #EEEEEE  0%,
    #F8F8F8 40%,
    #E0E0E0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0  1px 0 rgba(255,255,255,0.09),
    0 -1px 1px rgba(0,0,0,0.28);
}

.spotlight-card p {
  font-size: 0.9rem;
  color: #a3a3a3;
  line-height: 1.65;
  margin: 0;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C5A96A;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.card-cta:hover { color: #fff; }
.card-cta svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}
/* Inline CTA variant — sits below bullet list inside a non-wide card */
.card-cta--inline {
  margin-top: 1.1rem;
}

/* --- Method section --- */
.section-method {
  border-top: 1px solid var(--border);
}

.method-header {
  text-align: center;
  margin-bottom: 3rem;
}

.method-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0.4rem 0 0;
}

.method-sub {
  color: #a3a3a3;
  margin: 0.75rem 0 0;
  font-size: 0.97rem;
}

.method-step {
  position: relative;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: border-left-color 0.2s, border-color 0.3s;
  z-index: 1;
}

.method-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}
.method-step:hover::before { opacity: 1; }

.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.35),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s;
}
.method-step:hover::after { opacity: 1; }

.step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  transition: color 0.2s;
  font-family: "IBM Plex Mono", monospace;
}

.method-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}

.method-step p {
  font-size: 0.88rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin: 0;
}

/* --- Contact form (no inline styles needed) --- */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

#contact-form {
  display: grid;
  gap: 1.25rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

.field-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
}

.field-group input,
.field-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: #e5e5e5;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #444;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(193, 182, 139, 0.5);
  box-shadow: 0 0 20px rgba(193, 182, 139, 0.08);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

#cf-message {
  flex: 1;
  font-size: 12px;
  color: #666;
  margin: 0;
}

.cf-msg-success { color: #C5A96A !important; }
.cf-msg-pending { color: #888 !important; }

/* Submit button — styled to match the homepage "Enter OneOneZero" pill button */
#cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(193, 182, 139, 0.85);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
#cf-submit:hover:not(:disabled) {
  background: rgba(193, 182, 139, 0.1);
  border-color: rgba(193, 182, 139, 1);
  transform: translateY(-1px);
}
#cf-submit:disabled,
#cf-submit.btn-loading {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.contact-direct {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 13px;
  color: #444;
}
.contact-direct a {
  color: #C5A96A;
  text-decoration: none;
}
.contact-direct a:hover { text-decoration: underline; }

/* --- Responsive: 3Pro sections --- */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .problem-heading { text-align: center; }
  .text-metallic { text-align: center; }
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-card--wide {
    grid-column: 1 / -1;
  }
  .card-wide-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-problem,
  .section-offerings,
  .section-method {
    padding: 3.5rem 0;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADDITIONS: Hero qualifier, Outcomes strip, Service bullets,
              Budget radio group
   ============================================================ */

/* Hero qualifier — sits between phase description and progress bar */
.hero-qualifier {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
  border-left: 2px solid rgba(193, 182, 139, 0.35);
  padding-left: 0.75rem;
}

.hero-qualifier strong {
  color: var(--text);
}

/* Outcomes strip */
.section-outcomes {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-card {
  background: var(--surface);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.outcome-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.outcome-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.outcome-text strong,
.outcome-text .gold {
  font-weight: 600;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

/* Service bullets */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-bullets li {
  font-size: 0.8rem;
  color: #666;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.service-bullets li::before {
  content: "·";
  color: #D4B87A;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-bullets--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

/* Budget radio options */
.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.budget-option {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-option span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #888;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}

.budget-option input[type="radio"]:checked + span {
  border-color: rgba(193, 182, 139, 0.6);
  background: rgba(193, 182, 139, 0.1);
  color: #C5A96A;
}

.budget-option:hover span {
  border-color: rgba(255, 255, 255, 0.2);
  color: #bbb;
}

/* ============================================================
   Independent Practice pill (hero area)
   ============================================================ */
.indie-practice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.72rem 0.28rem 0.56rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(193, 182, 139, 0.35);
  background: rgba(193, 182, 139, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  width: fit-content;
}

.indie-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(193, 182, 139, 0.6);
}

/* ============================================================
   Thank-you state (post form submission)
   ============================================================ */
.cf-thankyou {
  padding: 2.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.cf-thankyou-msg {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cf-thankyou-connect {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.cf-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cf-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(193, 182, 139, 0.3);
  background: rgba(193, 182, 139, 0.06);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cf-social-link:hover {
  background: rgba(193, 182, 139, 0.13);
  border-color: rgba(193, 182, 139, 0.6);
  color: #fff;
}

.cf-social-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* SuiteDash form embed wrapper */
.suitedash-form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.suitedash-form-wrap iframe {
  width: 100% !important;
  border: none;
  background: transparent;
}

/* ============================================================
   110 ELEVATION UPDATES: FAQ, Archetypes, and Method Grid
   ============================================================ */

/* --- FAQ Section --- */
.section-faq {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0;
  background: linear-gradient(to bottom right, #ffffff 30%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(193, 182, 139, 0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  transition: transform 0.3s ease, stroke 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.faq-item.active {
  border-color: var(--gold-border);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
  transition: max-height 0.5s ease-in-out, padding 0.5s;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}

.faq-answer p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Word-chunk spans for phase title stagger animation */
.wc {
  display: inline-block;
  opacity: 0; /* initial state — animateTitleWords() brings these to 1 */
}

/* --- Archetype Tags / Gold Pills — shared treatment --- */
.archetype-tag {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(193, 182, 139, 0.08);
  border: 1px solid rgba(193, 182, 139, 0.40);
  padding: 0.22rem 0.58rem;
  border-radius: var(--radius-pill);
  margin-left: 0.55rem;
  vertical-align: text-bottom;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.archetype-tag:hover {
  border-color: rgba(193, 182, 139, 0.65);
  background: rgba(193, 182, 139, 0.13);
}

/* --- Method Visual Enhancement --- */
@media (min-width: 900px) {
  .method-grid {
    position: relative;
    z-index: 10;
  }
  .method-grid::before {
    content: '';
    position: absolute;
    top: 50px; /* Aligns horizontally roughly through the middle of the boxes or right below "Step 0X" */
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197,169,106,0.4) 20%, rgba(197,169,106,0.4) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(197,169,106,0.2);
    z-index: -1;
  }
  .method-step {
    position: relative;
    background: var(--surface); /* Overlaps the line cleanly */
  }
}

/* ═══════════════════════════════════════════════════════
   EXPERTISE STRIP
═══════════════════════════════════════════════════════ */
.expertise-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.expertise-inner {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.expertise-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.expertise-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

.expertise-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.expertise-pill {
  font-size: 0.72rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 14px;
  border: 1px solid rgba(193, 182, 139, 0.40);
  border-radius: var(--radius-pill);
  background: rgba(193, 182, 139, 0.08);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.expertise-pill:hover {
  border-color: rgba(193, 182, 139, 0.65);
  background: rgba(193, 182, 139, 0.13);
}

/* ═══════════════════════════════════════════════════════
   OUTCOMES SECTION HEADER
═══════════════════════════════════════════════════════ */
.outcomes-header {
  width: var(--content-width);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.outcomes-header-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   FOUNDER QUOTE
═══════════════════════════════════════════════════════ */
.founder-quote {
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-left: 2px solid var(--gold-border);
  background: rgba(193, 182, 139, 0.04);
  border-radius: 0 8px 8px 0;
}

.founder-quote p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   HOW ALI SHOWS UP SECTION
═══════════════════════════════════════════════════════ */
.section-how-ali {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.how-ali-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.how-ali-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color 300ms;
  z-index: 1;
}

.how-ali-card:hover {
  border-color: rgba(193, 182, 139, 0.3);
}

.how-ali-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}
.how-ali-card:hover::before { opacity: 1; }

.how-ali-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(193, 182, 139, 0.35),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s;
}
.how-ali-card:hover::after { opacity: 1; }

.how-ali-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold);
}

.how-ali-card-icon svg {
  width: 18px;
  height: 18px;
}

.how-ali-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.how-ali-card > p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 960px) {
  .how-ali-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-ali-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FIT SECTION
═══════════════════════════════════════════════════════ */
.section-fit {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 2.5rem;
}

.fit-col {
  background: var(--surface);
  padding: 2.5rem;
}

.fit-col-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.fit-col-label svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.fit-col h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fit-list li {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.fit-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.fit-note {
  margin-top: 1.2rem;
  font-size: 0.76rem;
  color: #404040;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   WHAT YOU'LL SAY SECTION
═══════════════════════════════════════════════════════ */
.section-say {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-say .section-inner {
  text-align: center;
}

.say-subhead {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.say-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 2.5rem;
  text-align: left;
}

.say-card {
  background: var(--surface);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.say-card-quote-icon {
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 0.8rem;
  width: 24px;
  height: 24px;
}

.say-card p {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1.1rem;
  flex: 1;
}

.say-card-attr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

@media (max-width: 760px) {
  .say-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .say-grid { grid-template-columns: 1fr; }
}

/* ── Subscribe band ────────────────────────────────────── */
.section-subscribe {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.subscribe-coming-soon {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(90deg, var(--gold) 0%, rgba(197,169,106,0.80) 100%);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: 8px;
}
.subscribe-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}
.subscribe-lead {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.subscribe-action { flex-shrink: 0; }
.subscribe-form {
  display: flex;
  gap: 8px;
}
.subscribe-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 10px 18px;
  width: 230px;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input:focus { border-color: var(--gold-border); }
.subscribe-input::placeholder { color: var(--muted); }
.subscribe-btn {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(197,169,106,0.85) 100%);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.subscribe-btn:hover { opacity: 0.88; }
.subscribe-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 8px 0 0;
  min-height: 1em;
}
@media (max-width: 760px) {
  .subscribe-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .subscribe-form { width: 100%; }
  .subscribe-input { flex: 1; width: auto; }
}
@media (max-width: 480px) {
  .subscribe-form { flex-direction: column; }
  .subscribe-btn { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   METALLIC TREATMENT — 110 PAGE
   Applied sitewide to match alimukadam.com homepage treatment.
   Gold text: var(--gold-text-gradient) — defined in :root, single source of truth
   Silver heading: #C0C0C0 → #F8F8F8 at 135deg
   Silver body: #C4C4C4 → #EFEFEF at 135deg
════════════════════════════════════════════════════════════════════════════ */

/* Silver body text — main paragraphs */
#phaseDesc,
.section p.lead,
.problem-lead,
.spotlight-card p,
.founder-bio p,
.outcome-text,
.step p {
  background: linear-gradient(
    180deg,
    #DADADA  0%,
    #EFEFEF 45%,
    #D8D8D8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--muted);
  text-shadow:
    0  1px 0 rgba(255,255,255,0.05),
    0 -1px 1px rgba(0,0,0,0.22);
}

/* Accent gold — outcome-label (IBM Plex Mono label row) */
.outcome-label {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow:
    0  1px 0 rgba(255,245,190,0.12),
    0 -1px 1px rgba(0,0,0,0.28);
}
