/* homepage.css — extracted verbatim from index.html inline <style> block on 2026-07-01.
   Shared/cacheable. Loaded ONLY by index.html, at the exact head position the inline block
   occupied (before Fraunces font link and site-extras.css) to preserve cascade order. */
    :root {
      --bg: #040507;
      --bg-2: #07090d;
      --panel: rgba(255, 255, 255, 0.035);
      --panel-2: rgba(255, 255, 255, 0.055);
      --line: rgba(255, 255, 255, 0.08);
      --line-soft: rgba(255, 255, 255, 0.05);
      --text: #f5f5f2;
      --muted: #b9b8b1;
      --gold: #d8b44a;
      --gold-2: #f1d777;
      --gold-soft: rgba(216, 180, 74, 0.12);
      --shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
      --radius: 24px;
      --container: 1220px;
      --ease: 260ms cubic-bezier(.2,.8,.2,1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 50% 20%, rgba(216, 180, 74, 0.06), transparent 24%),
        linear-gradient(180deg, #020304 0%, #06080b 100%);
      line-height: 1.55;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
    }

    .section {
      position: relative;
      padding: 110px 0;
      z-index: 2;
    }

    .section-tight {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 14px;
    }

    h1, h2, h3, h4 {
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    h1 {
      font-size: clamp(3.2rem, 8vw, 6.7rem);
      font-weight: 900;
    }

    h2 {
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      font-weight: 800;
    }

    h3 {
      font-size: 1.35rem;
      font-weight: 700;
    }

    .lead {
      color: var(--muted);
      font-size: clamp(1rem, 1.25vw, 1.15rem);
      max-width: 760px;
    }

    .muted {
      color: var(--muted);
    }

    .gold {
      color: var(--gold);
    }

    .grid {
      display: grid;
      gap: 24px;
    }

    .card {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
        linear-gradient(90deg, rgba(216, 180, 74, 0.025), transparent 32%, rgba(216, 180, 74, 0.012));
      border: 1px solid var(--line-soft);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      min-height: 56px;
      padding: 0 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid transparent;
      cursor: pointer;
      transition:
        transform var(--ease),
        background var(--ease),
        border-color var(--ease),
        color var(--ease),
        box-shadow var(--ease),
        opacity var(--ease);
      font-weight: 700;
      background: none;
      color: var(--text);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--gold, #d8b44a) linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      box-shadow: 0 14px 40px rgba(216, 180, 74, 0.18);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.16);
      color: var(--text);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.22);
    }

    /* Attention-pulse for priority "click me" CTAs */
    @keyframes aidCtaPulse {
      0%   { box-shadow: 0 14px 40px rgba(216, 180, 74, 0.18), 0 0 0 0 rgba(216, 180, 74, 0.50); }
      70%  { box-shadow: 0 14px 40px rgba(216, 180, 74, 0.18), 0 0 0 16px rgba(216, 180, 74, 0); }
      100% { box-shadow: 0 14px 40px rgba(216, 180, 74, 0.18), 0 0 0 0 rgba(216, 180, 74, 0); }
    }
    .btn-attract {
      border-radius: 999px;
      animation: aidCtaPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    .btn-attract:hover { animation-play-state: paused; }
    @media (prefers-reduced-motion: reduce) {
      .btn-attract { animation: none; }
    }

    /* Opportunity-score color states: more leaks = redder, efficient = green */
    .score-number.score-bad  { color: #f0686b; }
    .score-number.score-mid  { color: #f1c453; }
    .score-number.score-good { color: #46d39a; }

    .arrow-icon {
      width: 14px;
      height: 14px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(-45deg);
      margin-left: 2px;
      display: inline-block;
    }

    /* INTRO VIDEO */
    .intro-overlay {
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: #000;
      display: grid;
      place-items: center;
      opacity: 1;
      visibility: visible;
      transition: opacity 700ms ease, visibility 700ms ease;
    }

    .intro-overlay.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .intro-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #000;
    }

    .intro-fallback {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      transition: opacity 300ms ease;
    }

    .intro-title {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .intro-sub {
      color: #d3d0c5;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    .intro-controls {
      position: absolute;
      inset: auto 24px 24px auto;
      z-index: 3;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* BACKGROUND */
    .site-bg {
      position: fixed;
      inset: 0;
      z-index: -3;
      background:
        radial-gradient(circle at 20% 20%, rgba(216, 180, 74, 0.04), transparent 24%),
        radial-gradient(circle at 80% 25%, rgba(216, 180, 74, 0.03), transparent 20%),
        radial-gradient(circle at 50% 78%, rgba(216, 180, 74, 0.03), transparent 20%),
        linear-gradient(180deg, #020304 0%, #06080b 100%);
    }

    #networkCanvas {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: -2;
      pointer-events: none;
      opacity: 1;
      mix-blend-mode: screen;
      filter: brightness(1.15) contrast(1.1);
    }

    .page-glow {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 20%, rgba(216, 180, 74, 0.08), transparent 22%),
        radial-gradient(circle at 80% 30%, rgba(216, 180, 74, 0.06), transparent 24%),
        radial-gradient(circle at 50% 70%, rgba(216, 180, 74, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(5, 6, 8, 0.76);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
    }

    .brand {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text);
      transition: opacity var(--ease);
    }
    .brand:hover {
      opacity: 0.85;
    }
    .brand-mark-img {
      height: 32px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }
    @media (max-width: 600px) {
      .brand-mark-img { height: 26px; }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-links a,
    .nav-dropdown > button {
      color: #dedcd4;
      font-size: 0.92rem;
      transition: color var(--ease);
    }

    .nav-links a:hover,
    .nav-dropdown > button:hover {
      color: var(--gold-2);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown > button {
      min-height: 42px;
      border: 1px solid rgba(216, 180, 74, 0.22);
      background: rgba(216, 180, 74, 0.07);
      cursor: pointer;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      font-weight: 750;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    }

    .nav-dropdown > button::after {
      content: "Menu";
      min-height: 22px;
      padding: 0 8px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(216, 180, 74, 0.16);
      color: var(--gold-2);
      font-size: 0.62rem;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-dropdown > button::before {
      content: "⌄";
      order: 2;
      color: var(--gold-2);
      font-size: 1rem;
      line-height: 1;
      transform: translateY(-1px);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 245px;
      padding: 10px;
      display: grid;
      gap: 6px;
      background: rgba(8, 9, 12, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity var(--ease), transform var(--ease);
    }

    .dropdown-menu a {
      min-height: 42px;
      display: grid;
      align-content: center;
      padding: 9px 12px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.02);
    }

    .dropdown-menu a span {
      display: block;
      color: rgba(185, 184, 177, 0.72);
      font-size: 0.76rem;
      line-height: 1.35;
      margin-top: 2px;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-dropdown:hover > button,
    .nav-dropdown:focus-within > button {
      border-color: rgba(216, 180, 74, 0.48);
      background: rgba(216, 180, 74, 0.12);
      color: #fff6d6;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.02);
      color: var(--text);
      cursor: pointer;
    }

    .mobile-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: rgba(8, 9, 12, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      padding: 14px;
      display: grid;
      gap: 8px;
      max-height: calc(100vh - 100px);
      max-height: calc(100dvh - 100px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity var(--ease), transform var(--ease);
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a,
    .mobile-menu .btn,
    .mobile-menu-label {
      min-height: 48px;
      justify-content: flex-start;
      padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.025);
    }

    .mobile-menu-label {
      display: flex;
      align-items: center;
      color: var(--gold);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      min-height: 34px;
      background: rgba(216, 180, 74, 0.08);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 60px 0 80px;
      overflow: hidden;
      z-index: 2;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 28%, rgba(0, 0, 0, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(4, 5, 7, 0.34), rgba(4, 5, 7, 0.72));
      pointer-events: none;
      z-index: 1;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, rgba(3, 3, 4, 0.82));
      pointer-events: none;
    }

    .hero-content {
      max-width: 980px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      color: #d9d5c4;
      margin-bottom: 28px;
      font-size: 0.95rem;
    }

    .hero-pill::before {
      content: "✦";
      color: var(--gold);
      font-size: 0.85rem;
    }

    .hero h1 {
      max-width: 14ch;
      margin: 0 auto;
    }

    .hero-copy {
      margin: 26px auto 0;
      max-width: 820px;
      color: var(--muted);
      font-size: clamp(1rem, 1.3vw, 1.18rem);
    }

    .hero-actions {
      justify-content: center;
      margin-top: 32px;
    }

    .hero-socials {
      margin-top: 34px;
      display: flex;
      justify-content: center;
      gap: 18px;
    }

    .hero-socials a {
      width: 18px;
      height: 18px;
      opacity: 0.8;
      transition: opacity var(--ease), transform var(--ease);
    }

    .hero-socials a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    .hero-socials svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: #d8d6cf;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* SECTION HEADERS */
    .section-header {
      text-align: center;
      max-width: 950px;
      margin: 0 auto 54px;
    }

    .section-header .lead {
      margin: 16px auto 0;
    }

    /* ABOUT */
    .about-grid {
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 40px;
    }

    .portrait-frame {
      position: relative;
      min-height: 740px;
      border: 1px solid rgba(216, 180, 74, 0.22);
      padding: 14px;
      background: rgba(255, 255, 255, 0.02);
    }

    .portrait-frame::before,
    .portrait-frame::after {
      content: "";
      position: absolute;
      width: 72px;
      height: 72px;
      border-color: rgba(216, 180, 74, 0.5);
      pointer-events: none;
    }

    .portrait-frame::before {
      top: -14px;
      left: -14px;
      border-top: 2px solid;
      border-left: 2px solid;
    }

    .portrait-frame::after {
      right: -14px;
      bottom: -14px;
      border-right: 2px solid;
      border-bottom: 2px solid;
    }

    .portrait {
      width: 100%;
      height: 100%;
      min-height: 710px;
      object-fit: cover;
      object-position: center top;
      filter: saturate(0.9) contrast(1.02) brightness(0.92);
      background: linear-gradient(180deg, #777, #333);
    }

    .about-copy p {
      color: var(--muted);
      margin-top: 18px;
      font-size: 1.06rem;
    }

    .founder-line {
      margin-top: 10px;
      color: #e8e4d8;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .cert-line {
      margin-top: 28px;
      color: #aba79b;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      font-size: 0.8rem;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .check {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #e7e4dc;
      font-size: 1rem;
    }

    .check i {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold-soft);
      border: 1px solid rgba(216, 180, 74, 0.16);
      color: var(--gold);
      display: grid;
      place-items: center;
      font-style: normal;
      font-size: 0.72rem;
      flex: 0 0 22px;
    }

    .quote {
      margin-top: 26px;
      padding-left: 16px;
      border-left: 2px solid var(--gold);
      color: #cfcabf;
      font-style: italic;
      max-width: 620px;
    }

    /* SERVICES */
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .service-card {
      min-height: 232px;
      padding: 22px 20px;
    }

    .service-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      background: rgba(216, 180, 74, 0.11);
      border: 1px solid rgba(216, 180, 74, 0.12);
      color: var(--gold);
      margin-bottom: 20px;
      font-size: 1.15rem;
      font-weight: 700;
    }

    .service-card h3 {
      font-size: 1.16rem;
      line-height: 1.25;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .service-card p {
      color: var(--muted);
      font-size: 0.98rem;
    }

    /* TOOLS */
    .tools-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      align-items: stretch;
    }

    .tool-card {
      position: relative;
      padding: 36px 32px 28px;
      display: flex;
      flex-direction: column;
      transition:
        transform var(--ease),
        border-color var(--ease),
        box-shadow var(--ease);
    }

    .tool-card:hover {
      transform: translateY(-4px);
      border-color: rgba(216, 180, 74, 0.3);
    }

    .tool-card-featured {
      background:
        radial-gradient(ellipse at top right, rgba(216, 180, 74, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
      border-color: rgba(216, 180, 74, 0.2);
    }

    .tool-tag {
      position: absolute;
      top: 22px;
      right: 26px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 999px;
    }

    .tool-tag-complimentary {
      background: rgba(122, 181, 118, 0.12);
      color: #7ab576;
      border: 1px solid rgba(122, 181, 118, 0.28);
    }

    .tool-tag-premium {
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      box-shadow: 0 4px 16px rgba(216, 180, 74, 0.3);
    }

    .tool-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      background: rgba(216, 180, 74, 0.11);
      border: 1px solid rgba(216, 180, 74, 0.18);
      color: var(--gold);
      margin-bottom: 22px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .tool-card h3 {
      font-size: 1.6rem;
      line-height: 1.15;
      margin-bottom: 10px;
      letter-spacing: -0.025em;
    }

    .tool-tagline {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.55;
      margin-bottom: 24px;
      min-height: 50px;
    }

    .tool-features {
      list-style: none;
      padding: 24px 0 0;
      margin: 0 0 28px;
      display: flex;
      flex-direction: column;
      gap: 11px;
      border-top: 1px solid var(--line);
      flex: 1;
    }

    .tool-features li {
      font-size: 0.92rem;
      line-height: 1.55;
      color: #d3d0c7;
      padding-left: 22px;
      position: relative;
    }

    .tool-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.7;
    }

    .tool-card-featured .tool-features li::before {
      opacity: 1;
      box-shadow: 0 0 8px rgba(216, 180, 74, 0.4);
    }

    .tool-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .tool-actions .btn {
      min-height: 44px;
      padding: 0 18px;
      font-size: 0.86rem;
    }

    .tool-foot {
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--line-soft);
      font-size: 0.78rem;
      color: rgba(185, 184, 177, 0.7);
      font-style: italic;
    }

    .tools-bridge {
      margin-top: 56px;
      text-align: center;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.6;
      font-style: italic;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .bridge-rule {
      flex: 1;
      height: 1px;
      background: var(--line);
      max-width: 80px;
    }

    /* ASSESSMENT TEASER STRIP — between hero and about */
    .assessment-teaser {
      padding: 28px 0;
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      background: linear-gradient(90deg, transparent 0%, rgba(216, 180, 74, 0.04) 50%, transparent 100%);
    }
    .assessment-teaser-link {
      display: flex;
      align-items: center;
      gap: 24px;
      text-decoration: none;
      color: var(--text);
      transition: opacity var(--ease);
    }
    .assessment-teaser-link:hover { opacity: 0.85; }
    .assessment-teaser-link:hover .teaser-arrow { transform: translateX(4px); }

    .teaser-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .teaser-text {
      flex: 1;
      font-family: "Fraunces", Georgia, serif;
      font-weight: 300;
      font-size: 1.05rem;
      line-height: 1.45;
      letter-spacing: -0.005em;
      color: var(--muted);
    }
    .teaser-text em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }
    .teaser-arrow {
      font-size: 1.4rem;
      color: var(--gold);
      transition: transform var(--ease);
      flex-shrink: 0;
    }

    @media (max-width: 720px) {
      .assessment-teaser-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .teaser-eyebrow { font-size: 10px; }
      .teaser-text { font-size: 0.95rem; }
      .teaser-arrow { align-self: flex-end; }
    }

    /* CONVERSION REDESIGN */
    .trust-strip {
      padding: 30px 0;
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      background: linear-gradient(90deg, rgba(255,255,255,0.015), rgba(216,180,74,0.045), rgba(255,255,255,0.015));
      position: relative;
      z-index: 2;
    }
    .trust-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }
    .trust-item {
      min-height: 88px;
      padding: 18px;
      border: 1px solid var(--line-soft);
      background: rgba(255,255,255,0.025);
      display: grid;
      align-content: center;
      gap: 6px;
    }
	    .trust-item strong {
	      color: var(--gold-2);
	      font-size: 0.88rem;
	      letter-spacing: 0.02em;
	    }
	    .book-teaser {
	      padding: 46px 0;
	      border-bottom: 1px solid var(--line-soft);
	      background:
	        radial-gradient(circle at 18% 20%, rgba(216,180,74,0.12), transparent 32%),
	        linear-gradient(135deg, rgba(255,255,255,0.035), rgba(216,180,74,0.055), rgba(255,255,255,0.015));
	      position: relative;
	      z-index: 2;
	    }
	    .book-teaser-grid {
	      display: grid;
	      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	      gap: 34px;
	      align-items: center;
	    }
	    .book-teaser h2 {
	      margin: 10px 0 12px;
	      font-size: clamp(2rem, 4vw, 3.35rem);
	      line-height: 0.98;
	    }
	    .book-teaser p {
	      color: var(--muted);
	      line-height: 1.7;
	      max-width: 760px;
	    }
	    .book-offer-card {
	      border: 1px solid rgba(216,180,74,0.34);
	      background: rgba(7,7,6,0.72);
	      box-shadow: 0 24px 70px rgba(0,0,0,0.38);
	      padding: 24px;
	      min-height: 260px;
	      display: grid;
	      gap: 18px;
	    }
	    .book-cover-mini {
	      border: 1px solid rgba(216,180,74,0.42);
	      background:
	        linear-gradient(160deg, rgba(216,180,74,0.18), rgba(255,255,255,0.04) 40%, rgba(0,0,0,0.5)),
	        url("../images/optimized/project-strategy-sprint.webp") center/cover;
	      min-height: 180px;
	      padding: 22px;
	      display: grid;
	      align-content: end;
	      position: relative;
	      overflow: hidden;
	    }
	    .book-cover-mini::before {
	      content: "";
	      position: absolute;
	      inset: 0;
	      background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.82));
	    }
	    .book-cover-mini > * { position: relative; z-index: 1; }
	    .book-cover-mini strong {
	      font-family: "Fraunces", Georgia, serif;
	      font-size: 1.35rem;
	      line-height: 1.05;
	      color: #fff7d7;
	    }
	    .book-cover-mini span {
	      margin-top: 8px;
	      color: var(--gold-2);
	      font-size: 0.78rem;
	      letter-spacing: 0.16em;
	      text-transform: uppercase;
	    }
	    .book-teaser-actions {
	      display: flex;
	      flex-wrap: wrap;
	      gap: 12px;
	      margin-top: 22px;
	    }
	    .book-teaser-actions .btn {
	      border-radius: 999px;
	      position: relative;
	      overflow: hidden;
	      gap: 10px;
	      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
	    }
	    .book-teaser-actions .btn::after {
	      content: "";
	      width: 7px;
	      height: 7px;
	      border-right: 2px solid currentColor;
	      border-bottom: 2px solid currentColor;
	      transform: rotate(-45deg);
	      transition: transform 180ms ease;
	    }
	    .book-teaser-actions .btn:hover {
	      transform: translateY(-2px);
	      box-shadow: 0 18px 38px rgba(0,0,0,0.28);
	    }
	    .book-teaser-actions .btn:hover::after {
	      transform: translateX(3px) rotate(-45deg);
	    }
	    .book-teaser-actions .btn:active {
	      transform: translateY(0) scale(0.98);
	    }
	    .book-meta-row {
	      display: flex;
	      flex-wrap: wrap;
	      gap: 10px;
	      color: rgba(245,241,230,0.72);
	      font-size: 0.84rem;
	    }
	    .book-meta-row span {
	      border: 1px solid var(--line-soft);
	      background: rgba(255,255,255,0.04);
	      padding: 7px 10px;
	    }
	    @media (max-width: 880px) {
	      .book-teaser-grid { grid-template-columns: 1fr; }
	    }
    .trust-item span {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.45;
    }
    .problem-grid,
    .growth-system-grid,
    .calculator-grid {
      grid-template-columns: 0.9fr 1.1fr;
      align-items: start;
    }
    .leak-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .leak-card,
    .scan-card,
    .industry-card,
    .calc-card {
      padding: 24px;
      border-radius: 14px;
    }
    .leak-card h3,
    .scan-card h3,
    .industry-card h3,
    .calc-card h3 {
      margin-bottom: 10px;
    }
    .leak-card p,
    .scan-card p,
    .industry-card p,
    .calc-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }
    /* Industry cards are links — make that obvious */
    .industry-card {
      text-decoration: none;
      display: block;
      cursor: pointer;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .industry-card:hover,
    .industry-card:focus-visible {
      transform: translateY(-4px);
      border-color: rgba(216, 180, 74, 0.55);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(216, 180, 74, 0.28);
      outline: none;
    }
    .industry-card-go {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      color: var(--gold-2);
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.01em;
    }
    .industry-card-go .arr {
      display: inline-block;
      transition: transform var(--ease);
    }
    .industry-card:hover .industry-card-go .arr { transform: translateX(5px); }
    .scan-panel {
      padding: 32px;
      border: 1px solid rgba(216, 180, 74, 0.24);
      border-radius: 16px;
      background:
        radial-gradient(ellipse at top right, rgba(216, 180, 74, 0.08), transparent 58%),
        rgba(255, 255, 255, 0.035);
    }
    .scan-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 26px 0;
    }
    .scan-question label,
    .calc-field label {
      display: block;
      color: #e8e5da;
      font-size: 0.95rem;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .scan-question {
      position: relative;
    }

    .scan-question::after {
      content: "Select";
      position: absolute;
      right: 42px;
      bottom: 13px;
      min-height: 22px;
      padding: 0 8px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(216, 180, 74, 0.14);
      color: var(--gold-2);
      font-size: 0.62rem;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      pointer-events: none;
    }

    .scan-question::before {
      content: "⌄";
      position: absolute;
      right: 17px;
      bottom: 10px;
      z-index: 1;
      color: var(--gold-2);
      font-size: 1.15rem;
      line-height: 1;
      pointer-events: none;
    }

    .scan-question select,
    .calc-field input {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(216, 180, 74, 0.28);
      background:
        linear-gradient(90deg, rgba(216, 180, 74, 0.08), rgba(0, 0, 0, 0.28)),
        rgba(0, 0, 0, 0.34);
      color: var(--text);
      padding: 0 122px 0 16px;
      border-radius: 8px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 8px 26px rgba(0, 0, 0, 0.18);
    }

    .scan-question select {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      font-weight: 750;
    }

    .scan-question select:hover,
    .scan-question select:focus {
      border-color: rgba(216, 180, 74, 0.62);
      outline: none;
      box-shadow: 0 0 0 4px rgba(216, 180, 74, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .calc-field input {
      padding-right: 16px;
    }
    .scan-result,
    .calc-result {
      margin-top: 22px;
      padding: 22px;
      border: 1px solid rgba(216, 180, 74, 0.2);
      background: rgba(216, 180, 74, 0.08);
      border-radius: 12px;
    }
    .score-line {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 18px;
      margin-bottom: 14px;
    }
    .score-number {
      color: var(--gold-2);
      font-size: 3rem;
      font-weight: 900;
      line-height: 1;
    }
    .score-label {
      color: var(--muted);
      font-size: 0.88rem;
    }
    .scan-result ul,
    .calc-result ul {
      color: #e4e0d6;
      margin-left: 18px;
      line-height: 1.7;
    }
    .services-lane-grid,
    .industry-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .lane-card {
      padding: 30px;
      min-height: 250px;
      border-radius: 14px;
    }
    .lane-card .lane-num,
    .industry-card .industry-tag {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .lane-card ul {
      margin-top: 16px;
      margin-left: 18px;
      color: var(--muted);
      line-height: 1.75;
    }
    .review-system-card {
      padding: 36px;
      border-radius: 16px;
      border-color: rgba(216, 180, 74, 0.28);
    }
    .review-demo {
      padding: 26px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(0,0,0,0.28);
    }
    .review-demo-screen {
      display: grid;
      gap: 14px;
    }
    .demo-qr {
      width: 84px;
      height: 84px;
      display: grid;
      place-items: center;
      color: #15110a;
      font-weight: 900;
      background:
        linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 18px 18px,
        linear-gradient(#111 8px, transparent 8px) 0 0 / 18px 18px,
        var(--gold-2);
      border: 8px solid #efe6bb;
    }
    .demo-path {
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .demo-path span {
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.035);
      border-radius: 8px;
    }
    .industry-selector {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 28px;
    }
    .industry-selector button {
      min-height: 42px;
      padding: 0 15px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.025);
      color: var(--text);
      border-radius: 999px;
      cursor: pointer;
    }
    .industry-selector button.active {
      background: var(--gold);
      color: #17120a;
      border-color: var(--gold);
      font-weight: 800;
    }
    .industry-detail {
      max-width: 920px;
      margin: 0 auto 34px;
      padding: 28px;
      border-radius: 16px;
      border: 1px solid rgba(216, 180, 74, 0.22);
      background: rgba(216, 180, 74, 0.07);
    }
    .industry-detail h3 {
      font-size: 1.7rem;
      margin-bottom: 12px;
    }
    .industry-detail p {
      color: var(--muted);
      margin-bottom: 18px;
    }
    .calculator-fields {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .final-cta {
      text-align: center;
      padding: 78px 0;
    }
    .final-cta h2 {
      max-width: 900px;
      margin: 0 auto 22px;
    }
    .final-cta .lead {
      margin: 0 auto 30px;
    }
    .mobile-sticky-cta {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 1200;
      min-height: 54px;
      border-radius: 999px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    }

    /* FAQ */
    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }
    .faq-item {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      transition: all var(--ease);
    }
    .faq-item[open] {
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(216, 180, 74, 0.25);
    }
    .faq-item summary {
      padding: 22px 28px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      list-style: none;
      transition: color var(--ease);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: var(--gold); }
    .faq-q-text {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 1.08rem;
      line-height: 1.35;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    .faq-toggle {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      position: relative;
    }
    .faq-toggle::before,
    .faq-toggle::after {
      content: '';
      position: absolute;
      background: var(--gold);
      transition: transform var(--ease), opacity var(--ease);
    }
    .faq-toggle::before {
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      transform: translateY(-50%);
    }
    .faq-toggle::after {
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      transform: translateX(-50%);
    }
    .faq-item[open] .faq-toggle::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }
    .faq-a {
      padding: 0 28px 24px 28px;
    }
    .faq-a p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.97rem;
    }
    .faq-a p em {
      font-style: italic;
      color: var(--gold);
    }
    .faq-a p strong {
      color: var(--text);
      font-weight: 500;
    }

    @media (max-width: 600px) {
      .faq-item summary { padding: 18px 22px; gap: 16px; }
      .faq-q-text { font-size: 1rem; }
      .faq-a { padding: 0 22px 20px 22px; }
    }

    /* DEEP DIVES (Media Library) */
    .deep-dives-list {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      gap: 24px;
    }

    .deep-dive-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 36px 38px;
      transition: all var(--ease);
      position: relative;
      overflow: hidden;
    }
    .deep-dive-card.featured {
      background:
        radial-gradient(ellipse at top right, rgba(216, 180, 74, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(216, 180, 74, 0.22);
    }
    .deep-dive-card.featured::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .deep-dive-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .deep-dive-tag {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .deep-dive-meta .sep {
      color: rgba(185, 184, 177, 0.3);
      font-size: 0.7rem;
    }
    .deep-dive-meta .duration {
      font-size: 0.78rem;
      color: var(--muted);
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
    }
    .deep-dive-meta .date {
      font-size: 0.78rem;
      color: rgba(185, 184, 177, 0.7);
    }

    .deep-dive-hook {
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
      font-weight: 300;
      font-size: 1.05rem;
      line-height: 1.4;
      color: var(--gold);
      margin-bottom: 12px;
      letter-spacing: -0.005em;
    }

    .deep-dive-card h3 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 1.85rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .deep-dive-card h3 em { font-style: italic; color: var(--gold); font-weight: 400; }

    .deep-dive-disclosure {
      font-size: 0.78rem;
      font-style: italic;
      color: rgba(185, 184, 177, 0.65);
      margin-bottom: 22px;
    }

    .deep-dive-description {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.97rem;
      margin-bottom: 26px;
    }
    .deep-dive-description p {
      margin-bottom: 14px;
    }
    .deep-dive-description p:last-child { margin-bottom: 0; }

    /* Audio player wrapper — matches brand palette */
    .deep-dive-player {
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(216, 180, 74, 0.15);
      border-radius: 8px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .deep-dive-player audio {
      flex: 1;
      width: 100%;
      height: 36px;
      outline: none;
    }
    /* Custom audio player styling for webkit (Safari/Chrome) */
    .deep-dive-player audio::-webkit-media-controls-panel {
      background-color: rgba(216, 180, 74, 0.05);
    }
    .deep-dive-player audio::-webkit-media-controls-play-button,
    .deep-dive-player audio::-webkit-media-controls-mute-button {
      filter: invert(0.85) sepia(1) saturate(2) hue-rotate(5deg);
    }
    .deep-dive-player audio::-webkit-media-controls-current-time-display,
    .deep-dive-player audio::-webkit-media-controls-time-remaining-display {
      color: var(--text);
    }

    .player-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      flex-shrink: 0;
    }

    .deep-dive-empty-soon {
      text-align: center;
      padding: 40px 20px;
      color: rgba(185, 184, 177, 0.5);
      font-style: italic;
      font-family: "Fraunces", Georgia, serif;
    }

    @media (max-width: 700px) {
      .deep-dive-card { padding: 28px 24px; }
      .deep-dive-card h3 { font-size: 1.5rem; }
      .deep-dive-hook { font-size: 0.98rem; }
      .deep-dive-player { flex-direction: column; align-items: stretch; padding: 14px; }
      .player-label { display: none; }
    }

    /* Show notes (collapsible chapter list) */
    .deep-dive-notes {
      margin-top: 22px;
      border-top: 1px solid var(--line-soft);
      padding-top: 22px;
    }
    .deep-dive-notes summary {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      list-style: none;
      transition: color var(--ease);
    }
    .deep-dive-notes summary::-webkit-details-marker { display: none; }
    .deep-dive-notes summary:hover .notes-label { color: var(--gold-2); }

    .notes-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      transition: color var(--ease);
    }
    .notes-meta {
      flex: 1;
      font-size: 0.78rem;
      color: rgba(185, 184, 177, 0.55);
      font-style: italic;
      font-family: "Fraunces", Georgia, serif;
    }
    .notes-toggle {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      position: relative;
    }
    .notes-toggle::before,
    .notes-toggle::after {
      content: '';
      position: absolute;
      background: var(--gold);
      transition: transform var(--ease), opacity var(--ease);
    }
    .notes-toggle::before {
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      transform: translateY(-50%);
    }
    .notes-toggle::after {
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      transform: translateX(-50%);
    }
    .deep-dive-notes[open] .notes-toggle::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }

    .show-notes-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0 0;
      counter-reset: chapter;
    }
    .show-notes-list li {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      counter-increment: chapter;
    }
    .show-notes-list li:last-child {
      border-bottom: none;
    }
    .show-notes-time {
      flex-shrink: 0;
      width: 56px;
      background: transparent;
      border: none;
      padding: 4px 8px;
      margin: -4px -8px;
      border-radius: 4px;
      cursor: pointer;
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
      font-size: 0.92rem;
      color: var(--gold);
      text-align: left;
      transition: all var(--ease);
    }
    .show-notes-time:hover {
      background: rgba(216, 180, 74, 0.1);
      color: var(--gold-2);
    }
    .show-notes-time:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }
    .show-notes-label {
      flex: 1;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    @media (max-width: 600px) {
      .deep-dive-notes summary { gap: 10px; flex-wrap: wrap; }
      .notes-meta { font-size: 0.7rem; flex-basis: 100%; order: 3; }
      .show-notes-list li { gap: 12px; padding: 12px 0; }
      .show-notes-time { width: 50px; font-size: 0.85rem; }
      .show-notes-label { font-size: 0.88rem; }
    }

    /* WORKSHOPS */
    .workshop-hero-image {
      position: relative;
      margin: 0 auto 64px;
      max-width: 1100px;
      aspect-ratio: 21 / 9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      border: 1px solid var(--line);
    }
    .workshop-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.85) contrast(1.05);
    }
    .workshop-hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(4, 5, 7, 0.7) 100%);
      pointer-events: none;
    }
    .workshop-hero-overlay {
      position: absolute;
      bottom: 32px;
      left: 32px;
      right: 32px;
      z-index: 2;
      color: var(--text);
      font-family: "Fraunces", Georgia, serif;
      font-size: 18px;
      font-style: italic;
      font-weight: 300;
      line-height: 1.4;
      max-width: 700px;
    }
    .workshop-hero-overlay .gold { color: var(--gold-2); }

    .featured-workshop {
      max-width: 1100px;
      margin: 0 auto 80px;
      background:
        radial-gradient(ellipse at top right, rgba(216, 180, 74, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(216, 180, 74, 0.25);
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }
    .featured-workshop::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      box-shadow: 0 0 20px rgba(216, 180, 74, 0.4);
    }
    .featured-workshop-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      min-height: 480px;
    }
    .featured-workshop-image {
      position: relative;
      overflow: hidden;
      background: #0a0a0a;
      min-height: 320px;
    }
    .featured-workshop-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .featured-workshop-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(4, 5, 7, 0.4) 100%);
    }
    .featured-workshop-content {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .featured-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .featured-tag::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }
    .featured-workshop h3 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 32px;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .featured-workshop h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
    .featured-workshop p.lead-sm {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .featured-workshop p.lead-sm strong { color: var(--text); font-weight: 500; }

    .bonus-callout {
      background: rgba(216, 180, 74, 0.06);
      border: 1px solid rgba(216, 180, 74, 0.25);
      border-left: 3px solid var(--gold);
      padding: 20px 22px;
      border-radius: 6px;
      margin-bottom: 28px;
    }
    .bonus-callout-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .bonus-callout-text {
      font-family: "Fraunces", Georgia, serif;
      font-size: 1rem;
      line-height: 1.5;
      color: var(--text);
      font-weight: 400;
    }
    .bonus-callout-text strong { color: var(--gold-2); font-weight: 500; }
    .bonus-callout-fine {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 8px;
      font-style: italic;
    }

    .featured-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      margin-bottom: 28px;
    }
    .featured-meta-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .featured-meta-item .label {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(185, 184, 177, 0.6);
      font-weight: 600;
    }
    .featured-meta-item .value {
      color: var(--text);
      font-weight: 500;
      font-size: 0.82rem;
    }

    .categories-intro {
      max-width: 760px;
      margin: 0 auto 48px;
      text-align: center;
    }
    .categories-intro h3 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 300;
      font-size: clamp(28px, 3.5vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .categories-intro h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
    .categories-intro p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto 48px;
    }
    .category-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 28px 24px;
      transition: all var(--ease);
      position: relative;
      overflow: hidden;
    }
    .category-card:hover {
      border-color: rgba(216, 180, 74, 0.3);
      transform: translateY(-3px);
      background: var(--panel-2);
    }
    .category-card .num {
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
      font-weight: 300;
      font-size: 0.88rem;
      color: var(--gold);
      margin-bottom: 14px;
      letter-spacing: 0.05em;
    }
    .category-card h4 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 500;
      font-size: 1.25rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
      color: var(--text);
    }
    .category-card p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .category-card .outcome {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--line-soft);
      font-size: 0.78rem;
      color: rgba(216, 180, 74, 0.85);
      font-style: italic;
      line-height: 1.55;
    }
    .category-card .outcome strong { font-style: normal; color: var(--gold); font-weight: 600; }

    .any-subject-card {
      max-width: 1100px;
      margin: 0 auto 80px;
      background: linear-gradient(135deg, rgba(216, 180, 74, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid var(--line);
      border-left: 3px solid var(--gold);
      border-radius: 12px;
      padding: 32px 36px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 28px;
      align-items: center;
    }
    .any-subject-mark {
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
      font-size: 56px;
      color: var(--gold);
      line-height: 1;
      opacity: 0.6;
    }
    .any-subject-text h4 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 1.4rem;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .any-subject-text h4 em { font-style: italic; color: var(--gold); }
    .any-subject-text p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .any-subject-text p strong { color: var(--text); font-weight: 500; }

    .logistics-bar {
      max-width: 1100px;
      margin: 0 auto 80px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 36px 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 28px;
    }
    .logistics-item {
      text-align: left;
    }
    .logistics-item .label {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .logistics-item .value {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 1.06rem;
      line-height: 1.35;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .logistics-item .detail {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 6px;
      line-height: 1.55;
    }

    .ai-assessment {
      max-width: 880px;
      margin: 80px auto 0;
      background:
        radial-gradient(ellipse at top, rgba(216, 180, 74, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(216, 180, 74, 0.2);
      border-radius: 16px;
      padding: 48px 52px;
      text-align: center;
      position: relative;
    }
    .ai-assessment::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 1px;
      background: var(--gold);
    }
    .ai-assessment-tag {
      display: inline-block;
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .ai-assessment h3 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 300;
      font-size: clamp(28px, 3.6vw, 38px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .ai-assessment h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
    .ai-assessment p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .ai-assessment p strong { color: var(--text); font-weight: 500; }
    .ai-assessment-price {
      display: flex;
      justify-content: center;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .ai-assessment-price .currency {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 300;
      font-size: 1.4rem;
      color: var(--muted);
    }
    .ai-assessment-price .amount {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 300;
      font-size: 3.5rem;
      line-height: 1;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .ai-assessment-price .duration {
      font-size: 0.82rem;
      color: var(--muted);
      font-style: italic;
      font-family: "Fraunces", Georgia, serif;
      margin-left: 4px;
    }

    /* CHALLENGES */
    .challenge-grid {
      grid-template-columns: 0.92fr 1.08fr;
      gap: 40px;
      align-items: start;
    }

    .challenge-list {
      display: grid;
      gap: 10px;
      margin-top: 28px;
    }

    .challenge-item {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 56px;
      padding: 0 18px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #d3d0c7;
      text-align: left;
      cursor: pointer;
      transition: border-color var(--ease), background var(--ease), color var(--ease);
    }

    .challenge-item:hover,
    .challenge-item.active {
      border-color: rgba(216, 180, 74, 0.48);
      background: linear-gradient(90deg, rgba(216, 180, 74, 0.08), rgba(255, 255, 255, 0.02));
      color: #fff8de;
    }

    .challenge-icon {
      width: 18px;
      height: 18px;
      display: inline-grid;
      place-items: center;
      color: #989690;
      font-size: 0.95rem;
      flex: 0 0 18px;
    }

    .solution-card {
      padding: 42px 40px;
      min-height: 440px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .floating-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      background: var(--gold);
      color: #111;
      font-weight: 800;
      font-size: 1.2rem;
      box-shadow: 0 10px 24px rgba(216, 180, 74, 0.18);
    }

    .solution-label {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.8rem;
      margin-bottom: 16px;
    }

    .solution-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.05em;
      margin-bottom: 18px;
    }

    .solution-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.12);
      margin: 6px 0 22px;
    }

    .solution-text {
      color: #d9d6cd;
      font-size: 1.16rem;
      max-width: 34ch;
    }

    .solution-dots {
      display: flex;
      gap: 8px;
      margin-top: 24px;
      align-items: center;
    }

    .solution-dots span {
      width: 12px;
      height: 4px;
      background: rgba(255, 255, 255, 0.18);
    }

    .solution-dots span.active {
      width: 26px;
      background: var(--gold);
    }

    /* CREDENTIALS */
    .cred-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 32px;
    }

    .cred-card {
      min-height: 220px;
      padding: 30px 26px;
      text-align: center;
    }

    .cred-card .service-icon {
      margin: 0 auto 20px;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      background: rgba(216, 180, 74, 0.08);
    }

    .cred-card p {
      color: var(--muted);
      margin-top: 10px;
    }

    .stat-strip {
      margin-top: 22px;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat-box {
      min-height: 108px;
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .stat-box strong {
      display: block;
      font-size: 3rem;
      line-height: 1;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .stat-box span {
      color: var(--muted);
      font-size: 0.96rem;
    }

    /* EXPERTISE */
    .expertise-grid {
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 50px;
    }

    .expertise-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
      max-width: 520px;
    }

    .expertise-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #ddd8cd;
      font-size: 1.08rem;
    }

    .expertise-item .mini-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      background: rgba(216, 180, 74, 0.08);
      border: 1px solid rgba(216, 180, 74, 0.12);
      color: var(--gold);
      font-size: 1rem;
      flex: 0 0 40px;
    }

    .expertise-quote {
      margin-top: 26px;
      max-width: 560px;
      padding-left: 14px;
      border-left: 2px solid var(--gold);
      color: #c8c4b8;
      font-style: italic;
    }

    .expertise-panel {
      padding: 36px 34px;
      min-height: 320px;
      display: grid;
      gap: 26px;
      align-content: center;
    }

    .benefit {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 14px;
      align-items: start;
    }

    .benefit-icon {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(216, 180, 74, 0.12);
      color: var(--gold);
      font-size: 0.8rem;
      border: 1px solid rgba(216, 180, 74, 0.12);
      margin-top: 2px;
    }

    .benefit strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
    }

    .benefit span {
      color: var(--muted);
    }

    /* RESULTS */
    .results-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .result-card {
      min-height: 210px;
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .result-card strong {
      display: block;
      font-size: clamp(3rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 0.95;
      color: var(--gold);
      margin-bottom: 12px;
      letter-spacing: -0.04em;
    }

    .result-card span {
      color: var(--muted);
      max-width: 18ch;
      margin: 0 auto;
    }

    .projects {
      margin-top: 64px;
    }

    .projects h3 {
      text-align: center;
      margin-bottom: 26px;
      font-size: 2rem;
    }

    .project-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .project-card {
      position: relative;
      min-height: 270px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: #0b1018;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.52) saturate(0.9) contrast(1.08);
      transform: scale(1.02);
      transition: transform 500ms ease;
    }

    .project-card:hover img {
      transform: scale(1.08);
    }

    a.project-card { text-decoration: none; color: inherit; display: block; }
    a.project-card:hover { border-color: rgba(216, 180, 74, 0.5); }
    .project-go {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      color: var(--gold-2);
      font-weight: 800;
      font-size: 0.9rem;
    }
    .project-go .arr { display: inline-block; transition: transform var(--ease); }
    a.project-card:hover .project-go .arr { transform: translateX(5px); }

    .project-overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 18px 18px 16px;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
    }

    .project-overlay h4 {
      font-size: 1.6rem;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

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

    .tag {
      font-size: 0.82rem;
      color: #d7d2c6;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 4px 8px;
    }

    /* CONTACT */
    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .contact-cta-card {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .contact-cta-card.primary {
      background:
        radial-gradient(ellipse at top, rgba(216, 180, 74, 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(216, 180, 74, 0.25);
    }

    .contact-cta-card.primary::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      box-shadow: 0 0 20px rgba(216, 180, 74, 0.4);
    }

    .cta-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .contact-cta-card h3 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
    }

    .cta-desc {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .cta-desc strong {
      color: var(--text);
      font-weight: 500;
    }

    .cta-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      display: grid;
      gap: 10px;
    }

    .cta-bullets li {
      position: relative;
      padding-left: 22px;
      color: var(--text);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .cta-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .cta-btn {
      align-self: flex-start;
      margin-top: auto;
    }

    .cta-fine {
      font-size: 0.78rem;
      color: rgba(185, 184, 177, 0.65);
      margin-top: 18px;
      font-style: italic;
      line-height: 1.55;
    }

    .field label .optional {
      font-weight: 400;
      color: rgba(185, 184, 177, 0.6);
      font-size: 0.82rem;
    }

    form {
      display: grid;
      gap: 16px;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    label {
      color: #e6e1d2;
      font-size: 0.94rem;
      font-weight: 600;
    }

    input,
    textarea {
      width: 100%;
      min-height: 50px;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.02);
      color: var(--text);
      outline: none;
      transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
      font-family: inherit;
      font-size: 0.95rem;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: #8f8c84;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(216, 180, 74, 0.5);
      background: rgba(255, 255, 255, 0.035);
      box-shadow: 0 0 0 4px rgba(216, 180, 74, 0.08);
    }

    .form-note {
      color: var(--muted);
      font-size: 0.92rem;
      min-height: 1.4em;
      margin-top: 16px;
      padding: 12px 16px;
      border-radius: 6px;
      transition: all 200ms ease;
      display: block;
      width: 100%;
    }

    .form-note:empty {
      padding: 0;
      min-height: 0;
      margin-top: 0;
    }

    .form-note.success {
      color: #fff;
      background: rgba(216, 180, 74, 0.15);
      border: 1px solid rgba(216, 180, 74, 0.5);
    }

    .form-note.error {
      color: #efb0a8;
      background: rgba(239, 176, 168, 0.1);
      border: 1px solid rgba(239, 176, 168, 0.3);
    }

    footer {
      padding: 36px 0 50px;
      color: var(--muted);
      position: relative;
      z-index: 2;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 22px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

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

    /* RESPONSIVE */
    @media (max-width: 1150px) {
      .services-grid,
      .results-grid,
      .cred-grid,
      .stat-strip,
      .trust-grid,
      .project-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid,
      .challenge-grid,
      .expertise-grid,
      .problem-grid,
      .growth-system-grid,
      .calculator-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .portrait-frame {
        min-height: 640px;
      }

      .portrait {
        min-height: 610px;
      }
    }

    @media (max-width: 980px) {
      .nav-links,
      .nav-actions > .btn {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }
    }

    @media (max-width: 820px) {

      .services-grid,
      .results-grid,
      .cred-grid,
      .stat-strip,
      .project-grid,
      .tools-grid,
      .services-lane-grid,
      .industry-grid,
      .scan-grid,
      .calculator-fields,
      .leak-list,
      .row {
        grid-template-columns: 1fr;
      }

      .tools-bridge {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        padding: 0 16px;
      }

      .bridge-rule {
        display: none;
      }

      .featured-workshop-grid { grid-template-columns: 1fr; }
      .featured-workshop-image { min-height: 240px; }
      .featured-workshop-content { padding: 32px 28px; }
      .any-subject-card { grid-template-columns: 1fr; gap: 16px; padding: 28px; text-align: center; }
      .any-subject-mark { margin: 0 auto; }
      .ai-assessment { padding: 36px 28px; }
      .workshop-hero-image { aspect-ratio: 16 / 10; }
      .workshop-hero-overlay { font-size: 15px; bottom: 20px; left: 20px; right: 20px; }

      .hero {
        min-height: auto;
        padding-top: 90px;
      }

      .hero h1 {
        max-width: 100%;
      }

      .section {
        padding: 84px 0;
      }

      .portrait-frame {
        min-height: 500px;
      }

      .portrait {
        min-height: 470px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .solution-card {
        min-height: 360px;
        padding: 36px 24px;
      }

      .intro-controls {
        right: 16px;
        bottom: 16px;
        left: 16px;
        inset: auto 16px 16px 16px;
      }

      .intro-controls .btn {
        flex: 1 1 auto;
      }

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

      #networkCanvas {
        opacity: 0.58;
      }

      .scan-panel,
      .review-system-card {
        padding: 24px;
      }

      .mobile-sticky-cta {
        display: inline-flex;
      }

      body {
        padding-bottom: 78px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }

      #networkCanvas {
        opacity: 0.24;
      }
    }

/* "See a live sample" badge link (dashboards feature list) — was inline onmouseover/onmouseout */
.live-sample-badge {
  display: inline-block;
  background: rgba(216, 180, 74, 0.12);
  border: 1px solid rgba(216, 180, 74, 0.45);
  color: #d8b44a;
  font-weight: 600;
  font-size: 0.78em;
  letter-spacing: 0.02em;
  padding: 1px 9px;
  border-radius: 999px;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.15s ease;
}
.live-sample-badge:hover {
  background: rgba(216, 180, 74, 0.22);
}

/* Quiet text-link styled button (demoted 3rd CTA in a button row — e.g. scan panel's score preview) */
.btn-row .text-link-btn {
  background: none;
  border: none;
  color: var(--gold, #d8b44a);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 4px;
  align-self: center;
  min-height: auto;
}
.btn-row .text-link-btn:hover {
  color: var(--gold2, #f1d777);
}
