/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:        #2c1c62;
  --navy-mid:    #1f1448;
  --gold:        #ba9823;
  --gold-bright: #d4ae37;
  --violet:      #6B5CDB;
  --violet-dim:  rgba(107,92,219,0.15);
  --cream:       #F5F2EA;
  --cream-dark:  #EDE8DC;
  --warm-grey:   #6B645A;
  --rule:        #D8D3C8;
  --rule-dark:   rgba(245,242,234,0.1);

  --serif: 'Cormorant Infant', Georgia, 'Times New Roman', serif;
  --sans:  'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:    1100px;
  --text:   680px;
  --narrow: 560px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.22s; }
.reveal[data-delay="3"] { transition-delay: 0.34s; }
.reveal[data-delay="4"] { transition-delay: 0.46s; }
.reveal[data-delay="5"] { transition-delay: 0.58s; }
.reveal[data-delay="6"] { transition-delay: 0.70s; }

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.masthead.is-scrolled {
  background: var(--cream);
  border-bottom-color: var(--rule);
  padding: 14px 56px;
}

.masthead__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.masthead__lion-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--navy);
  -webkit-mask: url('/lion-mark.svg') no-repeat center / contain;
          mask: url('/lion-mark.svg') no-repeat center / contain;
}
.masthead__name {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.masthead__meta {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}

/* ============================================================
   ACT 1 - HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 5fr 4fr;
  min-height: 100svh;
}

/* - left column: editorial text - */
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 56px;
  padding-top: 64px;
  max-width: none;
}

.hero__issue {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: block;
}

.hero__name {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 44px;
}
.hero__name em {

  font-weight: 300;
}

.hero__credentials {
  margin-bottom: 44px;
  padding: 20px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.hero__credential {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--warm-grey);
  line-height: 2.0;
}
.hero__credential .cred-title {
  color: var(--navy);
  font-weight: 600;
}
.hero__credential .cred-sep {
  color: var(--gold);
  margin: 0 0.4em;
}
.hero__credential .cred-org {
  color: var(--warm-grey);
  font-weight: 400;
}

.hero__tagline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 400;

  line-height: 1.6;
  color: var(--navy);
  max-width: 500px;
}

/* - right column: portrait - */
.hero__portrait {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Placeholder state when no image */
.hero__portrait-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream-dark);
}
.hero__portrait-placeholder svg {
  opacity: 0.2;
}
.hero__portrait-placeholder span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ============================================================
   ACT 2 - DIAGNOSTIC
   ============================================================ */
.diagnostic__mobile-carousel,
.diagnostic__mobile-dots { display: none; }

.diagnostic {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top left, #3a2578 0%, #2c1c62 45%, #1f1448 100%);
  color: var(--cream);
  padding: 140px 0;
}
.diagnostic__watermark {
  position: absolute;
  top: 50%;
  right: -14%;
  transform: translateY(-50%);
  width: 78vw;
  max-width: 980px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  background-color: var(--cream);
  opacity: 0.055;
  -webkit-mask: url('/lion-mark.svg') no-repeat center / contain;
          mask: url('/lion-mark.svg') no-repeat center / contain;
}
.diagnostic > .wrap { position: relative; z-index: 1; }

.diagnostic__header {
  margin-bottom: 72px;
  display: flex;
  align-items: baseline;
  gap: 32px;
  border-bottom: 1px solid var(--rule-dark);
  padding-bottom: 40px;
}
.diagnostic__label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.diagnostic__headline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* Primary stats row */
.diagnostic__primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-dark);
}

.stat-cell {
  padding: 52px 48px 48px;
  border-right: 1px solid var(--rule-dark);
}
.stat-cell:last-child { border-right: none; }

.stat-cell__number {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--cream);
  display: block;
  margin-bottom: 18px;
}
.stat-cell__number--xl  { font-size: clamp(5rem, 9vw, 10rem); }
.stat-cell__number--lg  { font-size: clamp(4rem, 7vw, 8rem); }
.stat-cell__number--md  { font-size: clamp(3rem, 5vw, 5.5rem); }

.stat-cell__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.45);
}

/* Secondary stats row */
.diagnostic__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule-dark);
}

.text-cell {
  padding: 52px 48px;
  border-right: 1px solid var(--rule-dark);
}
.text-cell:last-child { border-right: none; }

.text-cell__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.text-cell__value {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--cream);
}

/* Pull stats row */
.diagnostic__pull {
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pull-cell {
  padding: 52px 48px;
  border-right: 1px solid var(--rule-dark);
}
.pull-cell:last-child { border-right: none; }

.pull-cell__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.pull-cell__value {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 400;

  line-height: 1.5;
  color: var(--cream);
}

/* ============================================================
   ACT 3 - ORIGIN STORY
   ============================================================ */
.origin {
  padding: 160px 0;
}

.origin__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 96px;
}
.origin__act-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  padding-top: 8px;
}
.origin__headline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.origin__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.origin__editorial {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--warm-grey);
}
.origin__editorial p + p {
  margin-top: 1.6em;
}
.origin__editorial strong {
  color: var(--navy);
  font-weight: 500;
}

.origin__quotes {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pull-quote {
  position: relative;
}
.pull-quote::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 400;

  line-height: 1.55;
  color: var(--navy);
}
/* hanging open-quote */
.pull-quote blockquote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: 1.4em;
  line-height: 0;
  margin-left: -0.5em;
  color: var(--gold);
}
.pull-quote blockquote::after {
  content: '\201D';
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: 1.4em;
  line-height: 0;
  color: var(--gold);
}

/* ============================================================
   ACT 4 - ACCESS MAP
   ============================================================ */
.access {
  padding: 160px 0;
}

.access__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 96px;
}
.access__act-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  padding-top: 8px;
}
.access__head-content {}
.access__headline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}
.access__intro {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm-grey);
  max-width: 540px;
}

.access__list {
  list-style: none;
  max-width: 860px;
  margin-left: auto;
}
.access__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.access__item:last-child {
  border-bottom: 1px solid var(--rule);
}
.access__num {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 2px;
  user-select: none;
}
.access__text {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
}

/* ============================================================
   ACT 5 - CONVERSION
   ============================================================ */
.conversion {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom right, #3a2578 0%, #2c1c62 45%, #1f1448 100%);
  padding: 160px 0;
}
.conversion__watermark {
  position: absolute;
  top: 50%;
  left: -16%;
  transform: translateY(-50%);
  width: 70vw;
  max-width: 880px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  background-color: var(--cream);
  opacity: 0.045;
  -webkit-mask: url('/lion-mark.svg') no-repeat center / contain;
          mask: url('/lion-mark.svg') no-repeat center / contain;
}
.conversion > .wrap { position: relative; z-index: 1; }

/* Gold highlighter - magazine-style marker behind key phrases */
.highlight {
  background-image: linear-gradient(180deg, transparent 62%, rgba(186, 152, 35, 0.38) 62%);
  padding: 0 0.08em;
}

.conversion .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.conversion__left {}
.conversion__act-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 44px;
  display: block;
}
.conversion__headline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.conversion__body {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(247,244,236,0.55);
  max-width: 440px;
}

.conversion__right {}
.conversion__refusal {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 400;

  line-height: 1.6;
  color: var(--cream);
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(247,244,236,0.12);
}
.conversion__refusal p + p {
  margin-top: 1.1em;
}
.conversion__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.btn-apply {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: var(--gold);
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-apply:hover { background: var(--gold-bright); }
.btn-apply:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.conversion__footnote {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.28);
}

/* ============================================================
   PAGE FOOTER
   ============================================================ */
.page-footer {
  background: var(--navy);
  border-top: 1px solid rgba(247,244,236,0.08);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-footer__copy {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(247,244,236,0.25);
}
.page-footer__nav {
  display: flex;
  gap: 32px;
}
.page-footer__nav a {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247,244,236,0.35);
  transition: color 0.2s;
}
.page-footer__nav a:hover {
  color: rgba(247,244,236,0.7);
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 960px) {
  .wrap { padding: 0 36px; }
  .masthead { padding: 18px 36px; }
  .masthead.is-scrolled { padding: 12px 36px; }

  .hero { grid-template-columns: 1fr; }
  .hero__portrait { order: -1; height: 65vw; min-height: 360px; }
  .hero__portrait-placeholder { min-height: 360px; }
  .hero__text { padding: 64px 0 80px; }

  .diagnostic__primary { grid-template-columns: repeat(2, 1fr); }
  .diagnostic__secondary { grid-template-columns: 1fr; }
  .text-cell { border-right: none; border-top: 1px solid var(--rule-dark); }
  .text-cell:first-child { border-top: 1px solid var(--rule-dark); }
  .diagnostic__pull { grid-template-columns: 1fr; }
  .pull-cell { border-right: none; border-top: 1px solid var(--rule-dark); }

  .origin__header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 64px; }
  .origin__body { grid-template-columns: 1fr; gap: 56px; }

  .access__header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 64px; }
  .access__list { margin-left: 0; }

  .conversion .wrap { grid-template-columns: 1fr; gap: 48px; }

  .page-footer { padding: 36px; }
}

/* ============================================================
   MOBILE CAROUSEL - Act 2 stats
   ============================================================ */
@media (max-width: 768px) {
  /* ── Hide desktop grid on mobile, show mobile carousel ── */
  .diagnostic__track { display: none !important; }
  .diagnostic__dots { display: none; } /* replaced by mobile dots below */

  /* ── Hero mobile layout ── */
  .hero__portrait { height: 58vh; min-height: 0; }
  .hero__portrait img { object-position: center top; }
  .hero__text { padding: 24px 24px 48px !important; }

  /* ── Act 2 header: stack + center on mobile ── */
  .diagnostic__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding-bottom: 72px;
    margin-bottom: 40px;
    border-bottom-width: 0;
    position: relative;
  }
  .diagnostic__label { white-space: normal; }
  .diagnostic__headline { text-align: center; }
  .diagnostic__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--rule-dark);
  }

  /* ── Mobile carousel container ── */
  .diagnostic__mobile-carousel {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 6vw;
    gap: 0;
  }
  .diagnostic__mobile-carousel::-webkit-scrollbar { display: none; }

  /* ── Individual slide ── */
  .diag-slide {
    flex: 0 0 88vw !important;
    height: auto !important;
    scroll-snap-align: center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 32px 32px 40px !important;
    box-sizing: border-box;
    text-align: center;
    border: none;
  }

  /* ── Big numeral - hero of the slide ── */
  .diag-slide__num {
    font-family: 'Cormorant Infant', Georgia, serif;
    font-size: clamp(96px, 30vw, 140px);
    font-weight: 400;
    line-height: 0.9;
    color: #F5F2EA;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 16px;
  }

  /* ── Label beneath numeral ── */
  .diag-slide__label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 242, 234, 0.45);
    display: block;
    text-align: center;
  }

  /* ── Text slide variant (markets list) ── */
  .diag-slide--text {
    justify-content: flex-start !important;
    gap: 16px;
  }
  .diag-slide__label--kicker {
    color: #C9A227;
    margin-bottom: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }
  .diag-slide__markets {
    font-family: 'Cormorant Infant', Georgia, serif;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.8;
    color: #F5F2EA;
    text-align: center;
  }

  /* ── Pagination dots ── */
  .diagnostic__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 12px 0 0;
    margin: 0;
  }
  .diagnostic__mobile-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #C9A227;
    opacity: 0.3;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  .diagnostic__mobile-dot.is-active {
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .wrap { padding: 0 24px; }
  .masthead { padding: 16px 24px; }
  .masthead.is-scrolled { padding: 12px 24px; }

  .hero__portrait { height: 58vh; min-height: 0; }
  .hero__text { padding: 24px 24px 48px !important; }
  .hero__name { letter-spacing: -0.015em; }

  .diagnostic { padding: 64px 0 48px; }

  /* General mobile spacing pass */
  .wrap { padding: 0 20px; }

  .origin { padding: 72px 0; }
  .origin__header { margin-bottom: 40px; }
  .origin__body { gap: 36px; }
  .origin__headline { font-size: clamp(2rem, 8vw, 2.6rem); }

  /* Act 4 mobile */
  .access { padding: 72px 0; }
  .access__list { margin-left: 0; }
  .access__headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  .access__header { margin-bottom: 40px; }

  .access__item {
    grid-template-columns: 38px 1fr;
    gap: 0 14px;
    padding: 20px 0;
  }

  /* Act 5 mobile */
  .conversion { padding: 72px 0; overflow-x: hidden; }
  .conversion .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }
  .conversion__headline {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .conversion__body {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 0.875rem;
  }
  .conversion__refusal {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .conversion__footnote {
    font-size: 0.55rem;
  }

  .page-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
  }
}

/* ============================================================
   PAPER GRAIN TEXTURE - subtle noise overlay
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   ICON BADGE - dealion.net style: rounded square + white icon
   Used in credentials and stat highlights
   ============================================================ */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-badge--cream {
  background: rgba(247,244,236,0.1);
  border: 1px solid rgba(247,244,236,0.15);
}
.icon-badge--cream svg {
  stroke: var(--cream);
}

/* Credential row with icon */
.hero__credential-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.hero__credential-row .hero__credential {
  line-height: 1.3;
}

/* ============================================================
   BRIDGE - LinkedIn link (matches Vladimir / Schema B section)
   ============================================================ */
.linkedin-bridge {
  padding: 24px 0 72px;
  background: var(--cream);
}
.linkedin-bridge .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}
.linkedin-bridge__teaser {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  white-space: nowrap;
}
.linkedin-bridge__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 18px 8px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.linkedin-bridge__link:hover {
  color: var(--gold);
  border-color: var(--gold-bright);
  gap: 18px;
}
.linkedin-bridge__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.linkedin-bridge__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .linkedin-bridge .wrap { padding: 0 36px; }
  .linkedin-bridge__teaser { white-space: normal; max-width: 480px; }
}
