:root {
      --color-text: #1c1917;
      --color-text-muted: #78716c;
      --color-bg: #fffbeb;
      --color-bg-alt: #fef3c7;
      --color-card-bg: #ffffff;

      --color-accent: #facc15;
      --color-accent-hover: #eab308;
      --color-accent-light: #fef9c3;

      --font-sans: 'Nunito', sans-serif;
      --radius-sm: 10px;
      --radius-md: 20px;
      --radius-pill: 999px;

      --shadow-card: 0 2px 20px rgba(28, 25, 23, 0.05);
      --max: 1100px;
    }

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

    body {
      font-family: var(--font-sans);
      color: var(--color-text);
      background-color: var(--color-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: var(--font-sans); }
    a { text-decoration: none; color: inherit; }

    .container { width: min(var(--max), 90vw); margin: 0 auto; }

    .highlight {
      color: var(--color-accent-hover);
      font-weight: 800;
    }

    .kicker {
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--color-text-muted);
      margin-bottom: 0.5rem;
    }

    /* ===== Buttons ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 2.2rem;
      border-radius: var(--radius-pill);
      border: none;
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
      color: var(--color-text);
      box-shadow: 0 4px 18px rgba(234, 179, 8, 0.25);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(234, 179, 8, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 2.2rem;
      border-radius: var(--radius-pill);
      border: 2px solid var(--color-text);
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
      background: rgba(255, 255, 255, 0.5);
      color: var(--color-text);
      box-shadow: 0 2px 12px rgba(28, 25, 23, 0.06);
    }
    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 6px 20px rgba(28, 25, 23, 0.1);
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem 1rem;
    }

    /* ===== Top Nav (overlays hero) ===== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255, 251, 235, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(28, 25, 23, 0.06);
    }

    .nav-inner {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      user-select: none;
    }

    .brand-name {
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.35rem;
      color: var(--color-text);
      display: inline-flex;
    }
    .brand-name .highlight {
      color: var(--color-accent-hover);
    }
    .brand-name .l {
      display: inline-block;
      transition: transform 0.2s;
    }
    .brand:hover .l {
      animation: wave 0.45s ease both;
    }
    .brand-name .l:nth-child(1)  { animation-delay: 0s; }
    .brand-name .l:nth-child(2)  { animation-delay: 0.03s; }
    .brand-name .l:nth-child(3)  { animation-delay: 0.06s; }
    .brand-name .l:nth-child(4)  { animation-delay: 0.09s; }
    .brand-name .l:nth-child(5)  { animation-delay: 0.12s; }
    .brand-name .l:nth-child(6)  { animation-delay: 0.15s; }
    .brand-name .l:nth-child(7)  { animation-delay: 0.18s; }
    .brand-name .l:nth-child(8)  { animation-delay: 0.21s; }
    .brand-name .l:nth-child(9)  { animation-delay: 0.24s; }
    .brand-name .l:nth-child(10) { animation-delay: 0.27s; }
    .brand-name .l:nth-child(11) { animation-delay: 0.30s; }
    @keyframes wave {
      0%, 100% { transform: translateY(0); }
      40%      { transform: translateY(-30%); }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .nav-links a {
      color: var(--color-text-muted);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.5rem 0.75rem;
      border-radius: var(--radius-pill);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover {
      color: var(--color-text);
      background: rgba(28, 25, 23, 0.04);
    }
    .nav-links a.active {
      color: var(--color-text);
      background: rgba(28, 25, 23, 0.06);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav-actions .btn-primary {
      padding: 0.6rem 1.3rem;
      font-size: 0.76rem;
    }

    .burger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(28, 25, 23, 0.08);
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .burger span {
      width: 18px;
      height: 2px;
      background: var(--color-text);
      display: block;
      position: relative;
      border-radius: var(--radius-pill);
    }
    .burger span::before,
    .burger span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: var(--color-text);
      border-radius: var(--radius-pill);
    }
    .burger span::before { top: -6px; }
    .burger span::after { top: 6px; }

    /* ===== Mobile Drawer ===== */
    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(28, 25, 23, 0.3);
      z-index: 60;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(340px, 88vw);
      height: 100%;
      z-index: 61;
      transform: translateX(105%);
      transition: transform 0.25s ease;
      background: var(--color-bg);
      border-left: 1px solid rgba(28, 25, 23, 0.06);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
    .drawer-close {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(28, 25, 23, 0.08);
      background: transparent;
      cursor: pointer;
      font-weight: 900;
      color: var(--color-text);
      font-size: 1rem;
    }
    .drawer a {
      color: var(--color-text);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      transition: background 0.2s;
    }
    .drawer a:hover { background: rgba(28, 25, 23, 0.04); }
    .drawer-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
    .drawer-open .drawer { transform: translateX(0); }

    /* ===== HERO — Full-bleed image ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      background: var(--color-bg-alt);
    }

    .hero-image {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
    }
    .hero-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(255, 251, 235, 0.15) 0%,
        rgba(255, 251, 235, 0) 30%,
        rgba(255, 251, 235, 0) 50%,
        rgba(255, 251, 235, 0.6) 75%,
        rgba(255, 251, 235, 0.95) 100%
      );
    }

    .hero-bottom {
      position: relative;
      z-index: 2;
      padding: 0 0 3rem;
    }

    .hero-copy {
      max-width: 20rem;
    }
    @media (min-width: 480px) {
      .hero-copy { max-width: 24rem; }
    }

    .hero-bottom h1 {
      font-weight: 800;
      font-size: clamp(2rem, 4.5vw, 2.85rem);
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 0.45rem;
    }

    .hero-subtitle {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    .hero-lead {
      font-size: clamp(1rem, 2.2vw, 1.15rem);
      line-height: 1.55;
      color: var(--color-text);
      font-weight: 600;
      margin-top: 0.65rem;
      margin-bottom: 0;
      max-width: 22rem;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem 1rem;
      margin-top: 1.35rem;
      align-items: center;
    }

    .home-manifesto {
      background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff7d6 50%, var(--color-bg) 100%);
      border-top: 1px solid rgba(234, 179, 8, 0.2);
      border-bottom: 1px solid rgba(234, 179, 8, 0.15);
      padding: clamp(2.5rem, 6vw, 4rem) 0;
      text-align: center;
    }

    .home-manifesto blockquote {
      margin: 0 auto;
      max-width: 38rem;
      font-size: clamp(1.35rem, 3.2vw, 1.85rem);
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: -0.02em;
      color: var(--color-text);
    }

    .home-manifesto cite {
      display: block;
      margin-top: 1rem;
      font-size: 0.8rem;
      font-weight: 800;
      font-style: normal;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent-hover);
    }

    .home-path-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 0.5rem;
    }

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

    .home-path-card {
      display: flex;
      flex-direction: column;
      background: var(--color-card-bg);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.35rem;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(28, 25, 23, 0.06);
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      min-height: 100%;
    }

    .home-path-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(28, 25, 23, 0.08);
    }

    .home-path-card .path-step {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent-hover);
      margin-bottom: 0.35rem;
    }

    .home-path-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      line-height: 1.25;
    }

    .home-path-card p {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      line-height: 1.55;
      flex: 1;
      margin: 0 0 1rem;
    }

    .home-path-card .path-go {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-text);
    }

    .home-conviction {
      text-align: center;
      max-width: 36rem;
      margin: 0 auto;
    }

    .home-conviction p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--color-text-muted);
    }

    .home-learn-intro {
      padding-bottom: 0;
    }

    /* ===== Landing page (home only) ===== */
    .hero--landing .hero-image::after {
      background: linear-gradient(
        to bottom,
        rgba(255, 251, 235, 0.2) 0%,
        rgba(255, 251, 235, 0) 26%,
        rgba(255, 251, 235, 0) 45%,
        rgba(255, 251, 235, 0.5) 62%,
        rgba(255, 251, 235, 0.82) 78%,
        rgba(255, 251, 235, 0.98) 100%
      );
    }

    .hero--landing .hero-bottom {
      padding-bottom: 3.25rem;
    }

    .hero--landing .hero-copy {
      max-width: 28rem;
    }

    .hero--landing .hero-bottom h1 {
      font-size: clamp(3rem, 8vw, 5rem);
      margin-bottom: 0.2rem;
    }

    .hero--landing .hero-subtitle {
      margin-bottom: 0.55rem;
      color: var(--color-text);
      font-weight: 800;
      text-shadow:
        0 0 20px rgba(255, 253, 245, 1),
        0 0 40px rgba(255, 251, 235, 0.95),
        0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .hero--landing .hero-lead {
      max-width: 18rem;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      font-weight: 700;
      color: var(--color-text);
    }

    .hero--landing .hero-cta-row {
      margin-top: 1.1rem;
    }

    .landing-convert {
      padding-top: clamp(3rem, 8vw, 4.5rem);
      padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
    }

    .landing-lead {
      max-width: 26rem;
      margin: 0.75rem auto 0;
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--color-text-muted);
    }

    .landing-subcta {
      margin: 1.35rem 0 0;
      font-size: 0.92rem;
      font-weight: 700;
    }

    .landing-subcta a {
      color: var(--color-accent-hover);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .landing-more {
      padding-top: 0;
      padding-bottom: 2.5rem;
    }

    .landing-more-links {
      text-align: center;
      margin: 0;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--color-text-muted);
    }

    .landing-more-links a {
      color: var(--color-text);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }

    .landing-more-links a:hover {
      color: var(--color-accent-hover);
      border-bottom-color: var(--color-accent-hover);
    }

    .landing-more-links span {
      margin: 0 0.5rem;
      opacity: 0.45;
    }

    /* ===== Readiness pulse (value prop) ===== */
    .readiness-value-section {
      background: var(--color-bg-alt);
    }
    .readiness-value-inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .readiness-value-inner .section-title {
      text-align: center;
      margin-bottom: 1.25rem;
    }
    .readiness-value-inner > .kicker {
      text-align: center;
    }
    .readiness-lead,
    .readiness-value-inner > p {
      color: var(--color-text-muted);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .readiness-lead {
      font-size: 1.1rem;
      color: var(--color-text);
      font-weight: 600;
    }
    .readiness-areas-title {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin: 1.75rem 0 0.75rem;
      text-align: center;
    }
    .readiness-areas {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      display: grid;
      gap: 0.65rem;
    }
    @media (min-width: 560px) {
      .readiness-areas {
        grid-template-columns: 1fr 1fr;
      }
    }
    .readiness-areas li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      padding: 0.75rem 1rem;
      background: var(--color-card-bg);
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-card);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--color-text);
      line-height: 1.45;
    }
    .readiness-areas li::before {
      content: "✦";
      color: var(--color-accent-hover);
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 0.05rem;
    }
    .readiness-value-inner .cta-row {
      justify-content: center;
      margin-top: 1.75rem;
    }

    /* ===== Infographics ===== */
    .section-wide-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .section-wide-inner .section-title {
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .info-svg {
      display: block;
      width: 100%;
      max-width: 400px;
      height: auto;
      margin: 0 auto 1.5rem;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
      margin: 1.5rem 0 1.25rem;
    }
    @media (min-width: 640px) {
      .stat-grid.four { grid-template-columns: repeat(4, 1fr); }
    }
    .stat-card {
      background: var(--color-card-bg);
      border-radius: var(--radius-md);
      padding: 1.15rem 0.75rem;
      text-align: center;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(234, 179, 8, 0.28);
    }
    .stat-card b {
      display: block;
      font-size: clamp(1.35rem, 3.2vw, 1.85rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--color-accent-hover);
      line-height: 1.1;
      margin-bottom: 0.35rem;
    }
    .stat-card span {
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--color-text-muted);
      line-height: 1.35;
    }

    .pillar-grid {
      display: grid;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    @media (min-width: 700px) {
      .pillar-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    }
    .pillar-card {
      background: var(--color-card-bg);
      border-radius: var(--radius-md);
      padding: 1.35rem 1rem;
      text-align: center;
      box-shadow: var(--shadow-card);
      border-top: 4px solid var(--color-accent);
    }
    .pillar-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 0.85rem;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--color-accent-light), var(--color-accent));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(234, 179, 8, 0.35);
    }
    .pillar-icon svg {
      width: 26px;
      height: 26px;
      stroke: #1c1917;
      fill: none;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .pillar-card h3 {
      font-size: 0.95rem;
      font-weight: 800;
      margin: 0 0 0.35rem;
      line-height: 1.3;
    }
    .pillar-card p {
      font-size: 0.84rem;
      color: var(--color-text-muted);
      margin: 0;
      line-height: 1.45;
    }

    .for-compare {
      display: grid;
      gap: 1rem;
      margin: 1.5rem 0 0.5rem;
    }
    @media (min-width: 640px) {
      .for-compare { grid-template-columns: 1fr 1fr; }
    }
    .for-column {
      border-radius: var(--radius-md);
      padding: 1.35rem 1.2rem 1.5rem;
    }
    .for-column.yes {
      background: linear-gradient(165deg, #fffef5 0%, #ffffff 45%);
      border: 2px solid var(--color-accent);
      box-shadow: 0 8px 28px rgba(234, 179, 8, 0.12);
    }
    .for-column.no {
      background: rgba(28, 25, 23, 0.03);
      border: 2px dashed rgba(28, 25, 23, 0.12);
    }
    .for-column h3 {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin: 0 0 1rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .for-column.yes h3 { color: var(--color-accent-hover); }
    .for-column.no h3 { color: var(--color-text-muted); }
    .for-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .for-column li {
      position: relative;
      padding-left: 1.45rem;
      margin-bottom: 0.65rem;
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.45;
    }
    .for-column.yes li { color: var(--color-text); }
    .for-column.yes li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.35rem;
      width: 0.55rem;
      height: 0.3rem;
      border: 2px solid var(--color-accent-hover);
      border-width: 0 0 2px 2px;
      transform: rotate(-45deg);
    }
    .for-column.no li { color: var(--color-text-muted); }
    .for-column.no li::before {
      content: "×";
      position: absolute;
      left: 0;
      top: -0.05rem;
      font-weight: 900;
      font-size: 1.05rem;
      line-height: 1;
      color: rgba(120, 113, 108, 0.55);
    }

    .opportunity-path {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
      gap: 0.25rem;
      margin: 1.75rem auto 0.25rem;
      max-width: 540px;
    }
    .opportunity-step {
      flex: 1 1 100px;
      min-width: 92px;
      text-align: center;
      padding: 0.5rem 0.35rem;
    }
    .opportunity-step .step-disc {
      width: 46px;
      height: 46px;
      line-height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
      font-weight: 900;
      font-size: 1.05rem;
      margin: 0 auto 0.55rem;
      box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
    }
    .opportunity-step strong {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 0.2rem;
    }
    .opportunity-step span {
      font-size: 0.78rem;
      color: var(--color-text-muted);
      line-height: 1.35;
    }
    .opportunity-chev {
      display: none;
      align-self: center;
      color: var(--color-accent-hover);
      font-weight: 900;
      font-size: 1.1rem;
      padding: 0 0.15rem;
      margin-top: -1.25rem;
    }
    @media (min-width: 480px) {
      .opportunity-chev { display: block; }
    }

    /* Readiness pulse block (integrated funnel step) */
    .readiness-pulse-section {
      background: linear-gradient(180deg, #ffffff 0%, #fffef7 55%, #fffbeb 100%);
      border-top: 1px solid rgba(28, 25, 23, 0.07);
      border-bottom: 1px solid rgba(28, 25, 23, 0.07);
    }
    .pulse-mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.65rem;
      margin: 1.5rem 0 1.25rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 400px) {
      .pulse-mini-stats { grid-template-columns: 1fr; max-width: 220px; }
    }
    .pulse-mini-stats .stat-card {
      padding: 0.85rem 0.5rem;
    }
    .pulse-mini-stats .stat-card b {
      font-size: 1.35rem;
    }
    .pulse-flow-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.35rem 0.75rem;
      margin: 0 0 1.25rem;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-muted);
    }
    .pulse-flow-hint span {
      color: var(--color-accent-hover);
    }

    .final-spark {
      display: block;
      margin: 0 auto 1.25rem;
      width: 72px;
      height: 72px;
    }

    /* ===== Section base ===== */
    section { padding: 100px 0; }

    .section-title {
      font-size: clamp(1.7rem, 2.8vw, 2.2rem);
      letter-spacing: -0.02em;
      line-height: 1.25;
      font-weight: 800;
    }

    /* ===== About — text left, image right (like reference) ===== */
    .about-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text .kicker { margin-bottom: 0.75rem; }

    .about-text h2 {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 1.25rem;
    }

    .about-text p {
      color: var(--color-text-muted);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .quote-box {
      margin-top: 1.25rem;
      padding: 1.1rem 1.25rem;
      border-radius: 14px;
      border-left: 4px solid var(--color-accent);
      background: var(--color-accent-light);
      color: var(--color-text);
      font-style: italic;
      font-weight: 600;
      line-height: 1.7;
    }

    .about-image {
      position: relative;
    }
    .about-image img {
      width: 100%;
      border-radius: var(--radius-md);
      display: block;
    }

    /* ===== Second about row — image left, text right (flipped) ===== */
    .about-row.flipped {
      direction: rtl;
    }
    .about-row.flipped > * {
      direction: ltr;
    }

    .about-image-tall {
      position: relative;
    }
    .about-image-tall img {
      width: 100%;
      border-radius: var(--radius-md);
      display: block;
    }

    /* ===== Books — horizontal scroll row ===== */
    .books-row {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: var(--color-accent) transparent;
    }
    .books-row::-webkit-scrollbar { height: 4px; }
    .books-row::-webkit-scrollbar-track { background: transparent; }
    .books-row::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 4px;
    }

    .book-card {
      flex: 0 0 220px;
      scroll-snap-align: start;
      text-align: center;
    }

    .book-cover {
      display: block;
      width: 100%;
      aspect-ratio: 2 / 3;
      border-radius: 12px;
      overflow: hidden;
      background: var(--color-bg-alt);
      box-shadow: 0 8px 30px rgba(28, 25, 23, 0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .book-cover:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(28, 25, 23, 0.18);
    }
    .book-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .book-card h4 {
      font-size: 0.88rem;
      font-weight: 700;
      line-height: 1.35;
      margin-top: 0.85rem;
      color: var(--color-text);
    }

    .book-card .book-role {
      font-size: 0.78rem;
      color: var(--color-text-muted);
      margin-top: 0.2rem;
    }

    .book-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.5rem;
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--color-accent-hover);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: opacity 0.2s;
    }
    .book-link:hover { opacity: 0.7; }
    .book-link svg {
      width: 14px;
      height: 14px;
    }

    /* ===== Resource Cards — horizontal scroll row ===== */
    .scroll-row {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: var(--color-accent) transparent;
    }
    .scroll-row::-webkit-scrollbar { height: 4px; }
    .scroll-row::-webkit-scrollbar-track { background: transparent; }
    .scroll-row::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 4px;
    }

    .card {
      flex: 0 0 280px;
      border-radius: 16px;
      background: var(--color-card-bg);
      box-shadow: var(--shadow-card);
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
      scroll-snap-align: start;
    }
    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(28, 25, 23, 0.08);
    }

    .card-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #1c1917;
    }
    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .card:hover .card-thumb img {
      transform: scale(1.04);
    }

    .play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(28, 25, 23, 0.15);
      transition: background 0.25s ease;
    }
    .card:hover .play-overlay {
      background: rgba(28, 25, 23, 0.35);
    }

    .play-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--color-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(28, 25, 23, 0.25);
      transition: transform 0.2s ease;
    }
    .card:hover .play-btn { transform: scale(1.1); }
    .play-btn svg { width: 16px; height: 16px; transform: translateX(1px); }

    .card-body {
      padding: 0.85rem 1rem 1rem;
    }

    .badge {
      color: var(--color-accent-hover);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 0.25rem;
    }

    .card h4 {
      font-size: 0.88rem;
      line-height: 1.3;
      font-weight: 700;
      color: var(--color-text);
    }
    .card p {
      display: none;
    }

    /* ===== Testimonials ===== */
    .testimonials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .tbox {
      border-radius: var(--radius-md);
      background: var(--color-card-bg);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }
    .tbox::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--color-accent);
    }
    .tbox p {
      color: var(--color-text-muted);
      line-height: 1.8;
      font-size: 1rem;
    }
    .author {
      margin-top: 1rem;
      color: var(--color-text);
      font-weight: 800;
      font-size: 0.9rem;
    }

    /* ===== Social (Instagram / YouTube / Facebook scroll) ===== */
    .social-section {
      padding: 100px 0;
      text-align: center;
    }

    .social-scroll {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0;
      margin-top: 2rem;
      scrollbar-width: thin;
      scrollbar-color: var(--color-accent) transparent;
    }
    .social-scroll::-webkit-scrollbar { height: 6px; }
    .social-scroll::-webkit-scrollbar-track { background: transparent; }
    .social-scroll::-webkit-scrollbar-thumb {
      background: var(--color-accent);
      border-radius: 3px;
    }

    .social-panel {
      flex: 0 0 100%;
      width: 100%;
      min-width: 100%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      padding: 0 1rem;
    }

    .social-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .social-tab {
      padding: 0.5rem 1.25rem;
      border-radius: var(--radius-pill);
      border: 2px solid rgba(28, 25, 23, 0.15);
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.03em;
      color: var(--color-text-muted);
      background: transparent;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .social-tab:hover {
      border-color: var(--color-accent);
      color: var(--color-text);
    }
    .social-tab.active {
      border-color: var(--color-accent);
      background: var(--color-accent-light);
      color: var(--color-text);
    }

    .social-panel-title {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
    }

    .ig-container {
      margin-top: 0;
      min-height: 120px;
    }

    .ig-fallback {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-pill);
      border: 2px solid rgba(28, 25, 23, 0.1);
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--color-text);
      transition: border-color 0.2s, transform 0.2s;
    }
    .ig-fallback:hover {
      border-color: var(--color-accent);
      transform: translateY(-2px);
    }
    .ig-fallback svg {
      width: 18px;
      height: 18px;
    }

    /* ===== Footer ===== */
    footer {
      padding: 60px 0 80px;
      background-color: #1c1917;
      color: #fff;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-brand strong {
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.75rem;
    }

    .fineprint {
      margin-top: 1.25rem;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.82rem;
      line-height: 1.7;
      max-width: 50ch;
    }

    /* ===== Modal ===== */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(28, 25, 23, 0.7);
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    .modal {
      width: min(880px, 94vw);
      border-radius: var(--radius-md);
      background: var(--color-card-bg);
      box-shadow: 0 30px 80px rgba(28, 25, 23, 0.35);
      overflow: hidden;
    }
    .modal-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.1rem;
      border-bottom: 1px solid rgba(28, 25, 23, 0.06);
    }
    .modal-top strong {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--color-text);
    }
    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid rgba(28, 25, 23, 0.08);
      background: transparent;
      cursor: pointer;
      font-weight: 900;
      color: var(--color-text);
      font-size: 0.95rem;
    }
    .modal-video {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: #1c1917;
    }
    .modal-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .modal-open .modal-backdrop { display: flex; }

    /* ===== Reveal ===== */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== Responsive ===== */
    @media (max-width: 980px) {
      .about-row,
      .about-row.flipped {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
      }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: flex; }
      section { padding: 72px 0; }
      .testimonials { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; }
      .hero { min-height: 85vh; }
      .hero-image img { object-position: 35% 15%; }
      .hero-bottom { padding-bottom: 2.5rem; }
      .hero-bottom h1 { font-size: clamp(1.75rem, 6.5vw, 2.1rem); }
      .hero--landing .hero-bottom h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
      .hero--landing .hero-copy { max-width: 18rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { transition: none; transform: none; opacity: 1; }
      .btn-primary, .btn-secondary, .card, .nav-links a { transition: none; }
    }
