    :root {
      /* White / navy / gold palette from the book cover */
      --navy: #03183A;
      --navy-deep: #021126;
      --navy-panel: #F5F8FC;
      --navy-panel-2: #EEF3F9;
      --gold: #B87800;
      --gold-light: #D49A1B;
      --gold-dark: #8F5C00;
      --cream: #FAF6F0;

      --bg: #FFFFFF;
      --panel: #F7F9FC;
      --panel-2: #EEF3F9;
      --text: #111111;
      --muted: #5F6670;
      --line: rgba(3,24,58,.12);

      /* Existing class compatibility */
      --red: var(--navy);
      --red-dark: #0B2B57;

      --max: 1180px;
      --radius: 24px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
    body {
      margin: 0;
      max-width: 100%;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 15% 5%, rgba(3,24,58,.05), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
      color: var(--text);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .nav {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 2px;
      font-weight: 800;
      letter-spacing: -.04em;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
    }

    .brand span { color: var(--navy); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: .95rem;
      color: #4A515B;
    }

    .nav-links a:hover { color: #111111; }

    .nav-cta {
      padding: 10px 16px;
      border: 1px solid rgba(184,120,0,.55);
      border-radius: 999px;
      color: var(--navy) !important;
      background: rgba(3,24,58,.04);
    }

    .hero {
      padding: 72px 0 40px;
      min-height: calc(100vh - 74px);
      display: grid;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: clamp(44px, 7vw, 90px);
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #3B414A;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 22px;
      white-space: nowrap;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
      display: inline-block;
    }

    h1 {
      margin: 0;
      font-size: 72px;
      line-height: .91;
      letter-spacing: -.065em;
      font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    h1 .red { color: var(--navy); }

    .hero-kicker {
      margin: 26px 0 0;
      max-width: 690px;
      color: #4A515B;
      font-size: clamp(1.12rem, 2.2vw, 1.45rem);
      line-height: 1.55;
    }

    .hero-kicker strong { color: #111111; }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 750;
      transition: .2s ease;
      border: 1px solid var(--line);
    }

    .btn-primary {
      background: var(--navy);
      border-color: white;
      color: white;
    }

    .btn-primary:hover {
      background: #0B2B57;
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: rgba(3,24,58,.03);
      color: #111111;
    }

    .btn-secondary:hover {
      background: rgba(3,24,58,.07);
      transform: translateY(-1px);
    }

    .event-line {
      margin-top: 34px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: #6A717A;
      font-size: .92rem;
    }

    .event-line strong { color: #111111; font-weight: 700; }

    .portrait-shell {
      position: relative;
      max-width: 560px;
      justify-self: end;
    }

    .portrait-shell::before {
      content: none;
    }

    .portrait-card {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.12);
      background: #F3F5F7;
      box-shadow: 0 40px 100px rgba(0,0,0,.45);
    }

    .portrait-card img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 18%;
    }

    /* Hero book mockup */
    .portrait-card.book-card {
      background: transparent;
      border: 0;
      outline: 0;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
    }

    .portrait-card.book-card img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
    }

    /* Author photo in About section */
    .about-author-image {
      display: block;
      width: min(100%, 320px);
      height: auto;
      margin-top: 28px;
      border-radius: 20px;
      border: 1px solid var(--line);
      box-shadow: 0 18px 45px rgba(3,24,58,.12);
    }

    .section {
      padding: 110px 0;
      border-top: 1px solid var(--line);
    }

    .section-kicker {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .78rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .tedx-date-kicker {
      color: #e62b1e;
    }

    h2 {
      margin: 0;
      font-size: 62px;
      line-height: .99;
      letter-spacing: -.05em;
      max-width: 900px;
      width: 100%;
      overflow-wrap: anywhere;
      word-break: normal;
    }

    .lead {
      max-width: 860px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.3rem);
    }

    .statement {
      margin-top: 58px;
      padding: clamp(28px, 5vw, 54px);
      border: 1px solid rgba(3,24,58,.16);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(184,120,0,.08), transparent 50%),
        #FFFFFF;
    }

    .statement p {
      margin: 0;
      font-size:48px;
      line-height: 1.1;
      letter-spacing: -.04em;
      max-width: 1000px;
    }

    .statement strong { color: var(--gold-dark); }

    .about-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 70px;
      align-items: start;
    }

    .about-title {
      position: sticky;
      top: 110px;
    }

    .bio {
      color: #3C424A;
      font-size: 1.06rem;
    }

    .bio p:first-child { margin-top: 0; }
    .bio p { margin: 0 0 22px; }
    .bio a {
      text-decoration: underline;
      text-decoration-color: rgba(184,120,0,.90);
      text-underline-offset: 4px;
    }

    .event-card {
      margin-top: 52px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--panel);
    }

    .event-copy {
      padding: clamp(30px, 5vw, 56px);
    }

    .event-copy h3 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.03;
      letter-spacing: -.04em;
      margin: 0 0 20px;
    }

    .event-copy p {
      color: #565D66;
      margin: 0 0 18px;
    }

    .event-details {
      padding: clamp(30px, 5vw, 56px);
      background:
        linear-gradient(180deg, rgba(3,24,58,.05), transparent 55%),
        #F8FAFD;
      border-left: 1px solid var(--line);
    }

    .detail {
      padding: 0 0 24px;
      margin: 0 0 24px;
      border-bottom: 1px solid var(--line);
    }

    .detail:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
    .detail-label {
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .72rem;
      font-weight: 800;
      color: #7A818A;
      margin-bottom: 5px;
    }

    .detail-value {
      font-size: 1.1rem;
      color: #111111;
      font-weight: 700;
    }

    .principles {
      margin-top: 54px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .principle {
      min-height: 230px;
      padding: 28px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: var(--panel);
    }

    .principle-num {
      color: var(--gold);
      font-weight: 850;
      font-size: .85rem;
      letter-spacing: .12em;
      margin-bottom: 46px;
    }

    .principle h3 {
      margin: 0 0 10px;
      font-size: 1.45rem;
      letter-spacing: -.025em;
    }

    .principle p {
      margin: 0;
      color: #6A717A;
      font-size: .98rem;
    }

    .final-cta {
      padding: 120px 0;
      text-align: center;
      border-top: 1px solid var(--line);
      background: radial-gradient(circle at 50% 40%, rgba(184,120,0,.10), transparent 32rem);
    }

    .final-cta h2 {
      margin-left: auto;
      margin-right: auto;
      max-width: 900px;
    }

    .final-cta p {
      max-width: 720px;
      margin: 24px auto 0;
      color: #5F6670;
      font-size: 1.12rem;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 0;
      color: #7A818A;
      font-size: .86rem;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    

/* Social links — on-brand navy with gold interaction accents */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3,24,58,.18);
  outline: none;
}

.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Keep all platforms visually consistent with the Opportunity Backwards brand */
.social-link.facebook,
.social-link.youtube,
.social-link.instagram {
  background: var(--navy);
}

.social-link.facebook:hover,
.social-link.facebook:focus-visible,
.social-link.youtube:hover,
.social-link.youtube:focus-visible,
.social-link.instagram:hover,
.social-link.instagram:focus-visible {
  background: var(--gold);
}

.social-section-label {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
      .eyebrow {
        white-space: normal;
      }

      .hero {
        padding-top: 48px;
        min-height: auto;
      }
      .hero-grid,
      .about-grid,
      .event-card {
        grid-template-columns: 1fr;
      }
      .portrait-shell {
        justify-self: stretch;
        width: 100%;
        max-width: 680px;
        margin: 16px auto 0;
      }
      .portrait-card:not(.book-card) img {
        aspect-ratio: 4/5;
      }

      /* Keep the hero book fully visible on tablets and mobile */
      .portrait-card.book-card {
        width: 100%;
        height: auto;
        overflow: visible;
      }

      .portrait-card.book-card img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
      }
      .about-title { position: static; }
      .event-details {
        border-left: 0;
        border-top: 1px solid var(--line);
      }
      .principles {
        grid-template-columns: 1fr;
      }
      .section { padding: 80px 0; }
      #tedx, #tedx .wrap, #tedx .event-card, #tedx .event-copy, #tedx .event-details {
        min-width: 0;
        max-width: 100%;
      }
    }

    @media (max-width: 560px) {
      .wrap { width: min(calc(100% - 26px), var(--max)); }
      .nav { min-height: 66px; }
      .brand { font-size: 1rem; }
      .hero { padding: 40px 0 34px; }
      h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
      h2 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
        line-height: .98;
        letter-spacing: -.045em;
        max-width: 100%;
        overflow-wrap: anywhere;
      }
      .hero-actions { display: grid; }
      .btn { width: 100%; }
      .event-line { display: grid; gap: 7px; }
      .statement p { font-size: 1.75rem; }
    }
  


/* Mobile-safe hero book rendering — keep the complete book image visible */
.hero-grid > * {
  min-width: 0;
}

.hero-book-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 900px) {
  .portrait-shell {
    width: 100%;
    max-width: 560px;
    margin: 24px auto 0;
    overflow: visible !important;
  }

  .portrait-card.book-card {
    width: 100%;
    height: auto !important;
    min-height: 0;
    max-height: none !important;
    overflow: visible !important;
  }

  .portrait-card.book-card .hero-book-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 560px) {
  .portrait-shell {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .portrait-card.book-card .hero-book-image {
    width: 100%;
    height: auto !important;
  }
}


/* Klaviyo embedded form mobile-safe container */
.klaviyo-form-TMXduj {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 1px;
  overflow: visible !important;
}

@media (max-width: 900px) {
  .early-access-section,
  .early-access-section .wrap,
  .early-access-section .klaviyo-form-TMXduj {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
  }
}
