/* ══════════════════════════════════════════════════════════════════════════
   Tax Strategy 365 — SHARED master stylesheet (website + organic funnel).
   Single source of truth. Edit HERE only, then rebuild BOTH projects:
     website/         python3 gen-site.py && python3 build-ghl.py
     organic-funnel/  python3 sync-css.py && python3 build-ghl.py
   Both projects' ghl/styles.css come out byte-identical. Re-paste into GHL to deploy.
   ══════════════════════════════════════════════════════════════════════════ */
:root {
      --cf-primary: #6800FC; --cf-primary-hover: #7D28FF; --cf-ink: #121212;
      --cf-white: #f4f4f6; --cf-text: #17171d; --cf-text-light: #5c5c66;
      --cf-light-bg: #f5f5f5; --cf-border: #e4e4e8; --cf-accent: #b794ff;
      --primary: var(--cf-primary); --primary-hover: var(--cf-primary-hover); --ink: var(--cf-ink);
      --white: var(--cf-white); --text: var(--cf-text); --text-light: var(--cf-text-light);
      --light-bg: var(--cf-light-bg); --border: var(--cf-border); --green: #22C55E; --red: #DC2626; --yellow: var(--cf-accent);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', -apple-system, sans-serif; color: var(--text); line-height: normal; -webkit-font-smoothing: antialiased; background: var(--light-bg); overflow-x: hidden; }
    /* GHL paints its own row background layer (.bgCover) — force it to the page light so every section matches */
    .bgCover { background-color: var(--light-bg) !important; }
    /* GHL's theme overrides heading weight/font — force ours so headings stay bold */
    h1, h2, h3 { font-family: 'Poppins', -apple-system, sans-serif !important; font-weight: 700 !important; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; }
    .container { max-width: 1000px; margin: 0 auto; padding: 0 1.25rem; }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--primary); color: var(--white); font-family: 'Poppins', -apple-system, sans-serif; font-weight: 700; font-size: 1.2rem; padding: 1rem 2.1rem; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background 0.15s, transform 0.15s; box-shadow: 0 14px 32px -16px rgba(104,0,252,0.75); }
    .btn svg { width: 18px; height: 18px; }
    .btn:hover { background: var(--primary-hover); transform: translateY(-2px); }
    .txt-link { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.4rem; }
    .txt-link:hover { text-decoration: underline; }
    .sec-cta { text-align: center; margin-top: clamp(1.75rem, 3vw, 2.5rem); }

    /* Scroll-in reveal — JS adds .reveal only when motion is allowed; without JS / reduced-motion, content stays visible */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

    /* ═══ Sticky site nav (GHL Universal header) — CSS-only mobile menu ═══ */
    .nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.92); -webkit-backdrop-filter: saturate(160%) blur(10px); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--border); }
    .nav-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
    .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0.65rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .nav-logo { display: inline-flex; flex: 0 0 auto; }
    .nav-logo img { height: 30px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
    .nav-links a { font-family: 'Poppins', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text); text-decoration: none; transition: color 0.15s; white-space: nowrap; }
    .nav-links a:hover, .nav-links a.active { color: var(--primary); }
    .nav-actions { display: flex; align-items: center; gap: 0.9rem; flex: 0 0 auto; }
    .nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.93rem; padding: 0.6rem 1.2rem; border-radius: 8px; text-decoration: none; transition: background 0.15s, transform 0.15s; white-space: nowrap; }
    .nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }
    .nav-toggle-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .nav-toggle-label span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
    @media (max-width: 900px) {
      .nav-toggle-label { display: inline-flex; }
      .nav-cta { display: none; }
      .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: 0 16px 30px -20px rgba(0,0,0,0.35); }
      .nav-links a { display: block; padding: 0.95rem 0; border-bottom: 1px solid var(--border); }
      .nav-links li:last-child a { border-bottom: none; }
      .nav-toggle:checked ~ .nav-inner .nav-links { max-height: 460px; }
      .nav-toggle:checked ~ .nav-inner .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle:checked ~ .nav-inner .nav-toggle-label span:nth-child(2) { opacity: 0; }
      .nav-toggle:checked ~ .nav-inner .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }

    /* ═══ Home hero — mirrors the apply page (dark card, copy + VSL, trust strip) ═══ */
    .hero-wrap { background: var(--light-bg); padding: clamp(1rem,2vw,1.5rem) clamp(0.9rem,1.5vw,1.25rem) clamp(1.75rem,3vw,2.5rem); }
    .hero-card { position: relative; background: var(--ink); border-radius: 18px; padding: clamp(2rem,4vw,3.5rem) clamp(1.5rem,3vw,3.25rem); overflow: hidden; }
    .hero-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(ellipse 80% 70% at 72% 28%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 72% 28%, black 0%, transparent 100%); }
    .hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(2rem,3.5vw,3.5rem); align-items: center; max-width: 1180px; margin: 0 auto; }
    .hero-copy { text-align: left; }
    .hero-copy .icp-callout { display: inline-block; font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); }
    .hero-copy h1 { font-size: clamp(1.9rem,3.1vw,3rem); font-weight: 900 !important; line-height: 1.12; letter-spacing: -0.01em; margin: 0.9rem 0 0; color: var(--white); }
    .hero-copy h1 .highlight { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20240%2022'%20preserveAspectRatio='none'%3E%3Cpath%20d='M5%2011C50%205%2095%2016%20130%2010%20170%204%20205%2014%20235%209%20239%209%20238%2015%20233%2016%20195%2021%20150%2012%20110%2017%2070%2021%2030%2019%207%2018%202%2017%202%2012%205%2011Z'%20fill='%237d28ff'/%3E%3C/svg%3E"); background-position: 0 100%; background-size: 100% 0.44em; background-repeat: no-repeat; padding-bottom: 0.18em; }  /* Option 2 brush-stroke underline — brand yellow (#b794ff) is baked into the SVG */
    .hero-copy .sub { font-size: clamp(1.02rem,1.4vw,1.18rem); line-height: 1.6; color: rgba(245,245,245,0.62); max-width: 520px; margin: 1.15rem 0 0; }
    .hero-copy .cta-block { margin: 1.75rem 0 0; }
    .hero-media .video-shell { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: var(--ink); box-shadow: 0 18px 44px -22px rgba(0,0,0,0.6); }
    .hero-media .video-shell wistia-player { display: block; width: 100%; }
    .cta-mobile { display: none; }
    .hero-card .logo-carousel { padding: 0; margin-top: clamp(2rem,3.5vw,2.75rem); border-top: 1px solid rgba(255,255,255,0.1); padding-top: clamp(1.5rem,2.5vw,2rem); }
    .hero-card .logo-track-wrap::before, .hero-card .logo-track-wrap::after { width: 56px; }
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-media { margin-top: 1.5rem; }
      .hero-copy .cta-block { display: none; }
      .cta-mobile { display: block; margin-top: 1.4rem; }
      .hero-card .btn { display: flex; width: 100%; justify-content: center; }
      .hero-card .logo-carousel { margin-top: 1rem; padding-top: 1rem; }
    }
    @media (max-width: 600px) {
      .hero-wrap { background: var(--ink); padding: 0 0 0.7rem; width: 100vw; margin-left: calc(50% - 50vw); }
      .hero-card { border-radius: 0; box-shadow: none; padding: 1.25rem 1.25rem 1.4rem; }
      .hero-copy .icp-callout { font-size: 0.9rem; letter-spacing: 0.1em; }
      .hero-copy h1 { font-size: 1.6rem; line-height: 1.08; margin-top: 0.6rem; }
      .hero-copy .sub { font-size: 0.95rem; line-height: 1.45; margin-top: 0.6rem; }
      .hero-media { margin-top: 0.95rem; }
      .cta-mobile { margin-top: 0.95rem; }
    }

    /* Logo Carousel (infinite marquee) */
    .logo-carousel { width: 100%; min-width: 0; }
    .logo-track-wrap { position: relative; overflow: hidden; width: 100%; }
    .logo-carousel .carousel-label { text-align: center; font-size: 1rem; font-weight: 600; color: rgba(245,245,245,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
    .logo-track-wrap::before, .logo-track-wrap::after { content: ""; position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2; pointer-events: none; }
    .logo-track-wrap::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
    .logo-track-wrap::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
    .logo-track { display: flex; gap: 3rem; animation: logoScroll 25s linear infinite; width: max-content; align-items: center; }
    .logo-track:hover { animation-play-state: paused; }
    @keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-12.5%); } }
    .logo-item { flex-shrink: 0; height: 44px; padding: 0.5rem 0; display: flex; align-items: center; }
    .logo-item img { height: 100%; width: auto; display: block; }

    /* ═══ Interior page hero (About / Services / Results / Resources / Contact) ═══ */
    .page-hero { position: relative; background: var(--ink); color: var(--white); padding: clamp(3rem,7vw,5rem) 0 clamp(3.25rem,7vw,5.25rem); overflow: hidden; }
    .page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 0%, transparent 100%); }
    .page-hero .container { position: relative; text-align: center; max-width: 1000px; }
    .page-hero .eyebrow { display: inline-block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); }
    .page-hero h1 { font-size: clamp(1.85rem,3.3vw,2.5rem); font-weight: 900 !important; line-height: 1.12; letter-spacing: -0.01em; color: var(--white); margin: 0.85rem 0 0; }
    .page-hero .sub { font-size: clamp(1.02rem,1.4vw,1.18rem); line-height: 1.6; color: rgba(245,245,245,0.62); max-width: 740px; margin: 1rem auto 0; }

    /* Generic section + heading helpers */
    .sec { padding: clamp(2.75rem,5.5vw,4.5rem) 0; background: var(--light-bg); }
    .sec.alt { background: var(--light-bg); }
    .sec-head { text-align: center; max-width: 700px; margin: 0 auto clamp(1.75rem,3vw,2.75rem); }
    .sec-head .eyebrow { display: inline-block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.55rem; }
    .sec-head h2 { font-size: clamp(1.6rem,3.2vw,2.1rem); line-height: 1.16; color: var(--text); }
    .sec-head p { margin-top: 0.85rem; color: var(--text-light); font-size: 1.05rem; line-height: 1.65; }

    /* How It Works / Portfolio Lifecycle (3 phases) */
    .how-it-works { padding: clamp(2.75rem,5.5vw,4.5rem) 0; background: var(--light-bg); }
    .how-it-works h2 { text-align: center; font-size: clamp(1.6rem,3.2vw,2rem); margin-bottom: 0.75rem; color: var(--text); }
    .how-it-works .hiw-sub { text-align: center; color: var(--text-light); font-size: 1.02rem; max-width: 640px; margin: 0 auto 3rem; line-height: 1.7; }
    .hiw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 850px; margin: 0 auto; position: relative; }
    .hiw-grid::before { content: ""; position: absolute; top: 32px; left: calc(33.33% - 1rem); right: calc(33.33% - 1rem); height: 2px; background: linear-gradient(to right, var(--primary), #b794ff, var(--primary)); opacity: 0.5; }
    .hiw-card { text-align: center; padding: 0 1rem; position: relative; }
    .hiw-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(104,0,252,0.1); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
    .hiw-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text); }
    .hiw-card p { font-size: 1.05rem; color: var(--text-light); line-height: 1.65; }

    /* Fit (yes / no) */
    .fit-section { background: var(--light-bg); padding: clamp(2.75rem,5.5vw,4rem) 0; }
    .fit-section h2 { text-align: center; font-size: clamp(1.6rem,3.2vw,2rem); margin-bottom: 2rem; }
    .fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 750px; margin: 0 auto; }
    .fit-col { border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
    .fit-col .fit-header { padding: 1rem 1.5rem; font-size: 1.3rem; font-weight: 700; }
    .fit-col.yes .fit-header { background: var(--green); color: #fff; }
    .fit-col.no .fit-header { background: var(--red); color: #fff; }
    .fit-col .fit-body { padding: 1.25rem 1.5rem 1.5rem; }
    .fit-col.yes .fit-body { background: #F4FEF7; }
    .fit-col.no .fit-body { background: #FEF5F4; }
    .fit-col ul { list-style: none; }
    .fit-col ul li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.55rem 0; font-size: 1.05rem; line-height: 1.5; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .fit-col ul li:last-child { border-bottom: none; }
    .fit-col ul li .icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.7rem; font-weight: 800; }
    .fit-col.yes .icon { background: var(--green); color: #fff; }
    .fit-col.no .icon { background: var(--red); color: #fff; }

    /* Testimonial videos (YouTube facades) */
    .testimonials { background: var(--light-bg); padding: clamp(2.75rem,5.5vw,4rem) 0; }
    .testimonials h2 { text-align: center; font-size: clamp(1.5rem,3vw,1.85rem); margin: 0 auto 2.5rem; max-width: 600px; color: var(--text); }
    .video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; max-width: 750px; margin: 0 auto; }
    .video-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
    .video-card .vid-thumb { aspect-ratio: 16/9; background: var(--ink); position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    .video-card .vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .video-card .vid-thumb .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
    .video-card .vid-thumb .play svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); opacity: 0.9; }
    .video-card .vid-thumb iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: none; }
    .video-card .vid-info { padding: 1rem 1.1rem 1.1rem; }
    .video-card .vid-title { font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.6rem; }
    .video-card .vid-quote { font-size: 0.98rem; color: var(--text-light); line-height: 1.6; font-style: italic; margin-bottom: 0.6rem; }
    .video-card .vid-name { font-size: 0.98rem; font-weight: 700; color: var(--text); }
    .video-card .vid-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 1px; margin-top: 0.3rem; }

    /* Results — alternating testimonial rows (video + quote) */
    .tvid-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(2.5rem,5vw,4rem); }
    .tvid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3.5vw,3rem); align-items: center; }
    .tvid.flip .tvid-media { order: 2; }
    .tvid-media .vid-thumb { position: relative; aspect-ratio: 16/9; background: var(--ink); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: 0 18px 44px -24px rgba(0,0,0,0.5); }
    .tvid-media .vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .tvid-media .vid-thumb .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
    .tvid-media .vid-thumb .play svg { width: 64px; height: 64px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); opacity: 0.92; }
    .tvid-media .vid-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
    .tvid-body h3 { font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--text); margin-bottom: 0.25rem; }
    .tvid-body .occ { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.9rem; }
    .tvid-body blockquote { margin: 0; padding: 0; border: 0; font-size: clamp(1.05rem,1.6vw,1.22rem); line-height: 1.6; color: var(--text); font-style: italic; }
    .tvid-body .stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 1px; margin-top: 0.9rem; }
    @media (max-width: 760px) { .tvid { grid-template-columns: 1fr; gap: 1.1rem; } .tvid.flip .tvid-media { order: 0; } }

    /* Founder band (Home — navy) */
    .founder { background: var(--ink); color: #fff; }
    .founder .container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; max-width: 1000px; }
    .founder .f-photo { width: 100%; aspect-ratio: 1/1; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); object-fit: cover; object-position: center 30%; display: block; background: linear-gradient(160deg,#1c1c1c,#121212); }
    .founder h2 { color: #fff; font-size: clamp(1.6rem,3.2vw,2.1rem); margin-bottom: 0.3rem; }
    .founder .role { color: var(--yellow); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
    .founder p { color: rgba(245,245,245,0.72); font-size: 1.05rem; line-height: 1.75; margin-bottom: 0.9rem; }

    /* FAQ (navy accordion) */
    .faq-section { padding: clamp(2.75rem,5.5vw,4rem) 0; background: var(--ink); }
    .faq-section h2 { text-align: center; font-size: clamp(1.6rem,3.2vw,2rem); margin-bottom: 2rem; color: var(--white); }
    .faq-list { max-width: 680px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid rgba(245,245,245,0.1); }
    .faq-item:first-child { border-top: 1px solid rgba(245,245,245,0.1); }
    .faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0.5rem; background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 1.12rem; font-weight: 600; color: var(--white); text-align: left; line-height: 1.4; }
    .faq-toggle .chevron { font-size: 1.2rem; color: rgba(245,245,245,0.4); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
    .faq-item.open .chevron { transform: rotate(180deg); }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-body-inner { padding: 0 0.5rem 1.25rem; font-size: 1.05rem; line-height: 1.7; color: rgba(245,245,245,0.55); }

    /* Closing CTA band (navy) */
    .closing-cta { background: var(--ink); color: var(--white); text-align: center; padding: clamp(2.75rem,5vw,3.5rem) 0; }
    .closing-cta h2 { font-size: clamp(1.5rem,3vw,1.85rem); margin: 0 auto 0.75rem; max-width: 660px; color: #fff; }
    .closing-cta p { font-size: 1.1rem; color: rgba(245,245,245,0.6); max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.7; }
    .closing-cta .btn { box-shadow: 0 14px 32px -14px rgba(104,0,252,0.75); }

    /* About — Ryan's story (2-col) */
    .story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem,4vw,3.25rem); align-items: center; max-width: 1000px; margin: 0 auto; }
    .story-photo { width: 100%; aspect-ratio: 4/5; border-radius: 16px; border: 1px solid var(--border); object-fit: cover; display: block; background: linear-gradient(160deg,#1c1c1c,#121212); }
    .story-copy h2 { font-size: clamp(1.6rem,3.2vw,2.1rem); color: var(--text); margin-bottom: 0.35rem; }
    .story-copy .role { color: var(--primary); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
    .story-copy p { color: var(--text-light); font-size: 1.05rem; line-height: 1.75; margin-bottom: 0.9rem; }

    /* About — team grid */
    .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.4vw,1.75rem); max-width: 900px; margin: 0 auto; }
    .team-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem 1.5rem; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
    .team-avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.1rem; background: linear-gradient(160deg, var(--primary), #121212); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.85rem; font-weight: 700; }
    .team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .team-card h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.2rem; }
    .team-card .title { color: var(--primary); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.7rem; }
    .team-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

    /* Services — strategy cards */
    .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.2vw,1.5rem); max-width: 1000px; margin: 0 auto; }
    .svc-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem 1.5rem; box-shadow: 0 2px 14px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
    .svc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(104,0,252,0.1); border: 1px solid rgba(104,0,252,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .svc-icon svg { width: 24px; height: 24px; }
    .svc-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 0.45rem; }
    .svc-card p { color: var(--text-light); font-size: 0.97rem; line-height: 1.6; }
    .svc-link { margin-top: auto; padding-top: 1.1rem; align-self: flex-start; color: var(--primary); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
    .svc-link:hover { text-decoration: underline; }

    /* Results — stat panel */
    .stat-panel { display: grid; grid-template-columns: repeat(3,1fr); background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 26px 60px -36px rgba(10,27,51,0.4); overflow: hidden; max-width: 940px; margin: 0 auto; }
    .stat-cell { padding: clamp(1.85rem,3.4vw,2.75rem) clamp(1.1rem,2.2vw,1.9rem); text-align: center; }
    .stat-cell + .stat-cell { border-left: 1px solid var(--border); }
    .stat-ico { width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 13px; background: rgba(104,0,252,0.1); display: flex; align-items: center; justify-content: center; }
    .stat-ico svg { width: 24px; height: 24px; }
    .stat-ico-google { background: #fff; border: 1px solid var(--border); }
    .stat-num { font-size: clamp(2.1rem,4.4vw,3rem); font-weight: 900; line-height: 1.04; letter-spacing: -0.02em; color: var(--primary); }
    @supports ((-webkit-background-clip: text) or (background-clip: text)) {
      .stat-num { background: linear-gradient(180deg,#9a5cff,var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    }
    .stat-stars { font-size: 1.15rem; letter-spacing: 2px; line-height: 1.2; color: #FBBC05; margin-top: 0.35rem; }
    .stat-lbl { margin-top: 0.75rem; color: var(--text-light); font-size: 0.96rem; line-height: 1.5; }
    .stat-lbl strong { color: var(--text); font-weight: 700; }
    .stat-lbl a { color: var(--primary); text-decoration: none; font-weight: 600; white-space: nowrap; }
    .stat-lbl a:hover { text-decoration: underline; }
    @media (max-width: 760px) {
      .stat-panel { grid-template-columns: 1fr; max-width: 400px; }
      .stat-cell + .stat-cell { border-left: 0; border-top: 1px solid var(--border); }
    }
    .stats-note { text-align: center; color: var(--text-light); font-size: 0.85rem; max-width: 640px; margin: 1.5rem auto 0; line-height: 1.5; }
    .reviews-embed { max-width: 1000px; margin: 0 auto; }
    .reviews-placeholder { border: 2px dashed var(--border); border-radius: 16px; padding: clamp(2rem,5vw,3.5rem); text-align: center; background: #fff; color: var(--text-light); }
    .reviews-placeholder strong { display: block; color: var(--text); font-size: 1.05rem; margin-bottom: 0.4rem; }
    .reviews-placeholder span { font-size: 0.9rem; }

    /* Wins gallery + lightbox */
    .wins-section { background: var(--light-bg); padding: clamp(2.75rem,5.5vw,4rem) 0; }
    .wins-section h2 { text-align: center; font-size: clamp(1.5rem,3vw,1.85rem); margin-bottom: 2rem; }
    .wins-grid { columns: 2; column-gap: 1rem; max-width: 800px; margin: 0 auto; }
    .wins-grid img { margin-bottom: 1rem; break-inside: avoid; cursor: pointer; border-radius: 8px; border: 1px solid var(--border); width: 100%; }
    .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; padding: 1rem; cursor: pointer; }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; }

    /* Resources — podcast + follow */
    .podcast-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem,3.5vw,2.75rem); align-items: center; max-width: 1000px; margin: 0 auto; }
    .podcast-copy h2 { font-size: clamp(1.6rem,3.2vw,2.1rem); color: var(--text); margin-bottom: 0.6rem; }
    .podcast-copy p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
    .podcast-embed iframe { width: 100%; border: 0; border-radius: 14px; display: block; }
    .podcast-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .podcast-links a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.92rem; background: #fff; transition: border-color 0.15s, transform 0.15s, color 0.15s; }
    .podcast-links a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
    .podcast-links svg { width: 18px; height: 18px; flex: 0 0 auto; }
    .res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 860px; margin: 0 auto; }
    .res-card { display: flex; align-items: center; gap: 0.85rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.05rem 1.2rem; text-decoration: none; color: var(--text); font-weight: 600; transition: border-color 0.15s, transform 0.15s; }
    .res-card:hover { border-color: var(--primary); transform: translateY(-2px); }
    .res-card svg { width: 22px; height: 22px; color: var(--primary); flex: 0 0 auto; }
    .res-card small { display: block; color: var(--text-light); font-weight: 500; font-size: 0.8rem; }

    /* Contact */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3.5vw,3rem); max-width: 1000px; margin: 0 auto; align-items: start; }
    .contact-item { margin-bottom: 1.4rem; }
    .contact-item h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.35rem; }
    .contact-item a, .contact-item p { color: var(--text); font-size: 1.05rem; line-height: 1.6; text-decoration: none; font-style: normal; }
    .contact-item a:hover { color: var(--primary); }
    .contact-socials { display: flex; gap: 0.55rem; }
    .contact-socials a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border); border-radius: 8px; transition: color 0.15s, background 0.15s, border-color 0.15s; }
    .contact-socials a:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
    .contact-socials svg { width: 18px; height: 18px; }
    .contact-card { background: var(--ink); color: #fff; border-radius: 16px; padding: 1.85rem; }
    .contact-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; text-transform: none; letter-spacing: 0; }
    .contact-card ul { list-style: none; }
    .contact-card li { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.5rem 0; color: rgba(245,245,245,0.82); font-size: 0.98rem; line-height: 1.5; }
    .contact-card li svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

    /* Application (Typeform) */
    .apply-section { background: var(--light-bg); padding: clamp(2.75rem,5.5vw,4rem) 0; scroll-margin-top: 84px; }
    .apply-section h2 { text-align: center; font-size: clamp(1.6rem,3.2vw,2rem); margin-bottom: 0.5rem; }
    .apply-section .apply-sub { text-align: center; color: var(--text-light); margin: 0 auto 2rem; font-size: 1.1rem; max-width: 600px; }
    .typeform-embed { max-width: none; margin: 0 auto; }   /* deconstrained — fills the content container */

    /* Universal site footer (light) */
    .footer { background: var(--light-bg); border-top: 1px solid var(--border); color: var(--text-light); font-family: 'Poppins', sans-serif; padding: clamp(2.5rem,5vw,3.5rem) 0 1.75rem; text-align: left; }
    .footer .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.75rem 3rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }
    .footer .footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; max-width: 360px; }
    .footer .footer-logo { height: 26px; width: auto; }
    .footer .footer-addr { font-style: normal; font-size: 0.88rem; line-height: 1.65; color: var(--text-light); }
    .footer .footer-addr a { color: var(--primary); text-decoration: none; }
    .footer .footer-addr a:hover { text-decoration: underline; }
    .footer .footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin: 0 0 0.85rem; }
    .footer .footer-nav { display: flex; flex-direction: column; gap: 0.65rem; }
    .footer .footer-nav a { color: var(--text-light); text-decoration: none; font-size: 0.92rem; font-weight: 500; }
    .footer .footer-nav a:hover { color: var(--primary); }
    .footer .footer-social { display: flex; gap: 0.55rem; align-items: center; flex-wrap: wrap; }
    .footer .footer-social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border); border-radius: 8px; transition: color 0.15s, background 0.15s, border-color 0.15s; }
    .footer .footer-social a:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
    .footer .footer-social svg { width: 18px; height: 18px; }
    .footer .footer-bottom { max-width: 1000px; margin: clamp(2rem,4vw,2.75rem) auto 0; padding: 1.5rem 1.5rem 0; border-top: 1px solid var(--border); }
    .footer .footer-disclaimer { font-size: 0.74rem; line-height: 1.65; color: #9396a2; margin: 0; }

    /* ═══ Responsive (tablet ≤860, small-tablet ≤760, phone ≤600; nav hamburger ≤900) ═══ */
    @media (max-width: 860px) {
      .svc-grid, .res-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 760px) {
      .founder .container { grid-template-columns: 1fr; }
      .founder .f-photo { max-width: 340px; margin: 0 auto; }
      .story-grid { grid-template-columns: 1fr; }
      .story-photo { max-width: 360px; margin: 0 auto; }
      .team-grid { grid-template-columns: 1fr; max-width: 380px; }
      .podcast-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .btn { width: 100%; justify-content: center; }
      .nav-cta { width: auto; }
      .video-grid { grid-template-columns: 1fr; max-width: none; }
      .fit-grid { grid-template-columns: 1fr; }
      .svc-grid { grid-template-columns: 1fr; }
      .res-grid { grid-template-columns: 1fr; max-width: 440px; }
      .page-hero { padding-top: 2.4rem; padding-bottom: 2.8rem; }
      .hiw-grid { grid-template-columns: 1fr; max-width: none; gap: 0; padding-left: 2rem; }
      .hiw-grid::before { top: 32px; bottom: 32px; left: 1.05rem; width: 2px; height: auto; background: linear-gradient(to bottom, var(--primary), #b794ff, var(--primary)); opacity: 0.3; }
      .hiw-card { text-align: left; padding: 1rem 1rem 1rem 1.5rem; background: #fff; border-radius: 12px; border-left: 3px solid var(--primary); margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
      .hiw-card:last-child { margin-bottom: 0; }
      .hiw-icon { width: 44px; height: 44px; margin: 0 0 0.75rem 0; }
      .hiw-card h3 { font-size: 1.15rem; }
      .how-it-works .hiw-sub { text-align: left; }
      .how-it-works h2, .testimonials h2 { text-align: left; }
      /* tap targets */
      .footer .footer-nav a { padding: 0.5rem 0; }
      .footer .footer-social a, .contact-socials a { width: 44px; height: 44px; }
      .txt-link, .svc-link { padding: 0.35rem 0; }
      /* wins gallery: single full-width column on phone (readable; tap any to enlarge) */
      .wins-grid { columns: 1; max-width: 460px; }
    }
    @media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } html { scroll-behavior: auto; } }

/* ════════ FUNNEL-ONLY COMPONENTS (apply / book / confirmation / legal / 404) ════════ */
/* Funnel header logo bar — full logo lockup, matches the VSL funnel (version A).
   Markup: <header class="topbar"><div class="brand-logo" role="img" aria-label="…"></div></header>
   Website pages use .nav instead; this styles the funnel/VSL header only.
   Desktop: light bar + color logo. Mobile: dark bar + white logo.
   Logo URLs are inlined (not CSS vars) so GHL can't clobber them. */
    /* Top logo bar */
    .topbar { background: var(--light-bg); padding: 26px 24px 8px; text-align: center; }
    .topbar .brand-logo { width: min(460px, 86vw); aspect-ratio: 2476 / 149; margin: 0 auto;
      background: url("/site-assets/690bca11095b9c6b7ddd62ec.png") center / contain no-repeat; }
@media (max-width: 600px) {
  .topbar { background: var(--ink); padding: 10px 20px 8px; }
  .topbar .brand-logo { width: min(340px, 76vw);
    background-image: url("/site-assets/690bcb6fffc100742a47c691.png"); }
}
    .logo-item .logo-slot { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--text-light); background: #eee; border: 1px solid var(--border); border-radius: 6px; padding: 0.4rem 1.25rem; white-space: nowrap; }
    .vid-thumb-placeholder { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; color: rgba(245,245,245,0.4); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; }

    /* Book-a-call page (book.html) */
    .book-page { background: var(--light-bg); padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2.5rem) clamp(2.5rem, 6vw, 4rem); text-align: center; }
    .book-page .book-eyebrow { display: inline-block; font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 0.6rem; }
    .book-page h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.12; letter-spacing: -0.01em; color: var(--text); margin: 0 0 0.85rem; }
    .book-page .book-sub { font-family: 'Poppins', sans-serif; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-light); max-width: 580px; margin: 0 auto clamp(1.75rem, 3vw, 2.5rem); line-height: 1.6; }
    .calendly-inline-widget { min-width: 320px; background: var(--light-bg); border-radius: 12px; overflow: hidden; }

    /* 404 page (404.html) */
    .notfound { background: var(--light-bg); min-height: 62vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(3rem, 8vw, 6rem) 1.25rem; }
    .notfound .code { font-family: 'Poppins', sans-serif; font-size: clamp(4.5rem, 15vw, 8.5rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
    .notfound .code span { color: var(--primary); }
    .notfound h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--text); margin: 1rem 0 0.5rem; }
    .notfound p { font-family: 'Poppins', sans-serif; font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-light); max-width: 460px; margin: 0 auto 1.75rem; line-height: 1.6; }

    /* Legal pages (privacy.html, terms.html) */
    .legal { max-width: 800px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 2.75rem) 1.5rem clamp(3rem, 6vw, 4.5rem); }
    .legal h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 0.6rem; color: var(--text); }
    .legal .meta { color: var(--text-light); font-size: 0.92rem; line-height: 1.5; margin: 0 0 1.9rem; }
    .legal h2 { font-size: 1.32rem; letter-spacing: -0.01em; margin: 2.1rem 0 0.6rem; color: var(--text); }
    .legal h3 { font-size: 1.04rem; margin: 1.25rem 0 0.4rem; color: var(--text); }
    .legal p { margin: 0 0 0.9rem; line-height: 1.72; color: var(--text); }
    .legal ul { margin: 0 0 1rem; padding-left: 1.4rem; }
    .legal li { margin: 0 0 0.55rem; line-height: 1.6; }
    .legal a { color: var(--primary); text-decoration: none; font-weight: 500; }
    .legal a:hover { text-decoration: underline; }
    .legal strong { font-weight: 600; }
    @media (max-width: 600px) {
      .book-page { padding: 1.5rem 0.75rem 2.5rem; }
      .book-page h1 { font-size: 1.7rem; }
    }

    /* ═══ Call confirmation page (confirmation.html) — mirrors the Sell Up structure ═══ */
    /* Hero: navy card, centered — badge + headline + confirmation video + reminder banner */
    .confirm-wrap { background: var(--light-bg); padding: 0.5rem clamp(0.9rem, 1.5vw, 1.25rem) clamp(2rem, 3.5vw, 3rem); }
    .confirm-card { position: relative; background: var(--ink); border-radius: 18px; padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3.25rem); overflow: hidden; }
    .confirm-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(ellipse 80% 70% at 50% 18%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 18%, black 0%, transparent 100%); }
    .confirm-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
    .confirm-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.32); padding: 0.45rem 0.95rem; border-radius: 999px; }
    .confirm-inner h1 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 900 !important; line-height: 1.12; letter-spacing: -0.01em; color: var(--white); margin: 1.1rem 0 0; }
    .confirm-inner h1 .highlight { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20240%2022'%20preserveAspectRatio='none'%3E%3Cpath%20d='M5%2011C50%205%2095%2016%20130%2010%20170%204%20205%2014%20235%209%20239%209%20238%2015%20233%2016%20195%2021%20150%2012%20110%2017%2070%2021%2030%2019%207%2018%202%2017%202%2012%205%2011Z'%20fill='%237d28ff'/%3E%3C/svg%3E"); background-position: 0 100%; background-size: 100% 0.44em; background-repeat: no-repeat; padding-bottom: 0.18em; }  /* Option 2 brush-stroke underline — brand yellow (#b794ff) is baked into the SVG */
    .confirm-inner .sub { font-family: 'Poppins', sans-serif; font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: rgba(245,245,245,0.62); max-width: 600px; margin: 1rem auto 0; }
    .confirm-cue { display: block; margin: 0.9rem auto 0; color: var(--yellow); font-weight: 700; font-family: 'Poppins', sans-serif; }
    .confirm-video { max-width: 720px; margin: clamp(1.5rem, 3vw, 2rem) auto 0; }
    .confirm-video .video-shell { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: #1c1c1c; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
    .confirm-video .video-shell iframe, .confirm-video .video-shell wistia-player { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
    .confirm-reminder { display: flex; align-items: center; justify-content: center; gap: 0.75rem 1.25rem; flex-wrap: wrap; background: var(--primary); color: #fff; padding: 1rem 1.4rem; border-radius: 12px; margin: clamp(1.4rem, 3vw, 1.85rem) auto 0; max-width: 720px; text-align: center; }
    .confirm-reminder p { font-weight: 500; font-size: 1rem; line-height: 1.45; margin: 0; }
    .confirm-reminder strong { font-weight: 700; }

    /* "Make the most of your call" — 3 jump-to-section nav cards (light) */
    .roadmap { background: var(--light-bg); padding: clamp(2.5rem, 6vw, 4rem) 0; }
    .roadmap-head { text-align: center; max-width: 640px; margin: 0 auto clamp(1.5rem, 3vw, 2.25rem); }
    .roadmap-head h2 { font-size: clamp(1.3rem, 2.9vw, 1.8rem); line-height: 1.18; color: var(--text); }
    .roadmap-list { display: flex; flex-direction: column; gap: 1rem; max-width: 760px; margin: 0 auto; }
    .roadmap-card { display: flex; align-items: center; gap: 1.1rem; background: #fff; border: 1px solid rgba(10,27,51,0.1); border-radius: 14px; padding: 1.2rem 1.4rem; text-decoration: none; box-shadow: 0 10px 30px -24px rgba(0,0,0,0.4); transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
    .roadmap-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 18px 42px -26px rgba(0,0,0,0.45); }
    .roadmap-num { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; }
    .roadmap-body { flex: 1 1 auto; min-width: 0; }
    .roadmap-card h3 { font-size: 1.12rem; color: var(--text); margin: 0 0 0.2rem; }
    .roadmap-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; margin: 0; }
    .roadmap-arrow { flex: 0 0 auto; font-size: 1.7rem; line-height: 1; color: var(--primary); transition: transform 0.18s ease; }
    .roadmap-card:hover .roadmap-arrow { transform: translateX(3px); }
    /* step 1 "Confirm your call" — calendar mockup inside the card (not a link) */
    .roadmap-card--confirm { cursor: default; }
    .roadmap-card--confirm:hover { transform: none; border-color: rgba(10,27,51,0.1); box-shadow: 0 10px 30px -24px rgba(0,0,0,0.4); }
    .confirm-cal { flex: 0 0 auto; width: 172px; background: #eef1f6; border-radius: 10px; padding: 0.7rem; }
    .cal-mock { font-size: 0.6rem; color: var(--text-light); }
    .cal-bar { display: flex; align-items: center; margin-bottom: 0.45rem; }
    .cal-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c2c7d0; margin-right: 4px; }
    .cal-bar i.r { background: #ff5f57; } .cal-bar i.y { background: #febc2e; } .cal-bar i.g { background: #28c840; }
    .cal-bar span { margin-left: 5px; font-weight: 500; }
    .cal-title { color: var(--text); font-weight: 700; font-size: 0.72rem; line-height: 1.2; margin: 0 0 0.45rem; }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
    .cal-grid span { padding: 2px 0; border-radius: 4px; font-size: 0.55rem; color: var(--text-light); }
    .cal-grid .dow { color: #9aa1ad; font-size: 0.48rem; }
    .cal-grid .hl { background: var(--primary); color: #fff; font-weight: 700; }
    .cal-event { margin-top: 0.45rem; background: rgba(104,0,252,0.14); border: 1px solid var(--primary); border-radius: 6px; padding: 5px 8px; color: var(--text); font-weight: 600; font-size: 0.58rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    @media (max-width: 600px) {
      .roadmap-card--confirm { flex-wrap: wrap; }
      .confirm-cal { width: 100%; order: 3; margin-top: 0.5rem; }
    }

    /* "Get your questions answered" — FAQ videos (navy band; click-to-play posters) */
    .faqv { background: var(--ink); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
    .faqv-head { text-align: center; max-width: 600px; margin: 0 auto clamp(1.5rem, 3.4vw, 2.5rem); }
    .faqv-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); line-height: 1.14; color: var(--white); margin: 0 0 0.5rem; }
    .faqv-head p { color: rgba(245,245,245,0.6); font-size: clamp(1rem, 1.4vw, 1.12rem); margin: 0; line-height: 1.6; }
    .faqv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.4rem); max-width: 820px; margin: 0 auto; }
    .faqv-card { display: flex; flex-direction: column; background: #1c1c1c; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; text-align: left; cursor: pointer; padding: 0; font-family: inherit; transition: border-color 0.18s ease, transform 0.18s ease; }
    .faqv-card:hover { border-color: var(--primary); transform: translateY(-2px); }
    .faqv-thumb { position: relative; aspect-ratio: 16/9; background: #1c1c1c; overflow: hidden; flex: 0 0 auto; }
    .faqv-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .faqv-thumb wistia-player, .faqv-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
    .faqv-thumb .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; pointer-events: none; }
    .faqv-thumb .play svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45)); }
    .faqv-q { color: var(--white); font-size: 1rem; font-weight: 600; line-height: 1.35; margin: 0; padding: 0.85rem 1rem; }

    /* "Learn more about our systems" — training video grid (navy band) */
    .systems { background: var(--ink); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
    .systems-head { text-align: center; max-width: 660px; margin: 0 auto clamp(1.5rem, 3.4vw, 2.5rem); }
    .systems-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); line-height: 1.14; color: var(--white); margin: 0 0 0.5rem; }
    .systems-head p { color: rgba(245,245,245,0.6); font-size: clamp(1rem, 1.4vw, 1.12rem); margin: 0; line-height: 1.6; }
    .channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); max-width: 880px; margin: 0 auto; }
    .channel-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; background: #1c1c1c; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: clamp(1.6rem, 3vw, 2.25rem) 1.25rem; text-decoration: none; transition: border-color 0.18s ease, transform 0.18s ease; }
    .channel-card:hover { border-color: var(--primary); transform: translateY(-3px); }
    .channel-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
    .channel-icon svg { width: 28px; height: 28px; }
    .channel-icon.yt { background: #FF0000; color: #fff; }
    .channel-icon.spotify { background: #1DB954; color: #fff; }
    .channel-icon.apple { background: #8E44CC; color: #fff; }
    .channel-card h3 { color: var(--white); font-size: 1.08rem; font-weight: 700; line-height: 1.3; margin: 0; }
    .channel-card p { color: rgba(245,245,245,0.6); font-size: 0.92rem; line-height: 1.45; margin: 0; }

    /* confirmation hero — pure-CSS reveal (no JS), respects reduced motion */
    .cf-reveal { opacity: 0; transform: translateY(20px); animation: cf-up 0.85s cubic-bezier(.16,1,.3,1) forwards; animation-delay: var(--d, 0s); }
    @keyframes cf-up { to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) { .cf-reveal { opacity: 1 !important; transform: none !important; animation: none !important; } }

    /* confirmation responsive */
    @media (max-width: 760px) { .channel-grid { grid-template-columns: 1fr; max-width: 420px; } }
    @media (max-width: 600px) {
      .confirm-wrap { background: var(--ink); padding: 0 0 1.25rem; width: 100vw; margin-left: calc(50% - 50vw); }
      .confirm-card { border-radius: 0; padding: 1.5rem 1.25rem 1.75rem; }
      .confirm-inner h1 { font-size: 1.6rem; line-height: 1.08; }
      .confirm-inner .sub { font-size: 0.95rem; line-height: 1.45; }
      .confirm-reminder p { font-size: 0.92rem; }
      .faqv-grid { grid-template-columns: 1fr; gap: 0.85rem; }
      .faqv-card { flex-direction: row; align-items: center; }
      .faqv-card .faqv-thumb { flex: 0 0 44%; }
      .faqv-card .faqv-q { padding: 0.7rem 0.9rem; font-size: 0.93rem; }
      .faqv-card.is-playing { flex-direction: column; align-items: stretch; }
      .faqv-card.is-playing .faqv-thumb { flex-basis: auto; }
      .yt-grid { grid-template-columns: 1fr; }
    }

/* ══════════════════════════════════════════════════════════════════════════
   SYAF — NEW COMPONENTS (brand-site additions on top of the cloned base)
   ══════════════════════════════════════════════════════════════════════════ */

    /* Home centered lead hero (no video v1) + trust chips */
    .hero-card .hero-solo { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
    .hero-solo .icp-callout { display: inline-block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); }
    .hero-solo h1 { font-size: clamp(2rem, 4.2vw, 3.35rem); font-weight: 900 !important; line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin: 1rem 0 0; }
    .hero-solo h1 .hl { color: #c9a6ff; }
    .hero-solo .sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: rgba(244,244,246,0.66); max-width: 640px; margin: 1.2rem auto 0; }
    .hero-solo .cta-block { margin: 1.9rem 0 0; }
    .hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.4rem; margin: 1.9rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(244,244,246,0.12); max-width: 760px; }
    .hero-trust .chip { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; color: rgba(244,244,246,0.85); }
    .hero-trust .chip b { color: var(--white); font-weight: 800; }
    .hero-trust .chip svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 auto; }

    /* Circular-trap loop (dark signature graphic) */
    .trap { background: var(--ink); color: var(--white); padding: clamp(2.75rem,5.5vw,4.5rem) 0; }
    .trap h2 { text-align: center; color: #fff; font-size: clamp(1.6rem,3.2vw,2.1rem); max-width: 760px; margin: 0 auto 0.6rem; }
    .trap .trap-intro { text-align: center; color: rgba(244,244,246,0.6); max-width: 640px; margin: 0 auto clamp(2rem,4vw,2.75rem); font-size: 1.05rem; line-height: 1.65; }
    .trap-loop { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem; max-width: 980px; margin: 0 auto; }
    .trap-node { flex: 1 1 165px; max-width: 215px; align-self: stretch; background: #1c1c1c; border: 1px solid rgba(244,244,246,0.12); border-radius: 14px; padding: 1.1rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
    .trap-node .tn-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(104,0,252,0.16); border: 1px solid rgba(104,0,252,0.4); display: flex; align-items: center; justify-content: center; }
    .trap-node .tn-ico svg { width: 20px; height: 20px; color: #b794ff; }
    .trap-node p { font-size: 0.92rem; line-height: 1.4; color: rgba(244,244,246,0.85); margin: 0; }
    .trap-arrow { display: flex; align-items: center; color: var(--primary); flex: 0 0 auto; }
    .trap-arrow svg { width: 24px; height: 24px; }
    .trap-loopback { text-align: center; margin: clamp(1.4rem,3vw,1.85rem) auto 0; }
    .trap-loopback span { display: inline-flex; align-items: center; gap: 0.5rem; color: #b794ff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .trap-loopback svg { width: 18px; height: 18px; }
    .trap-line { text-align: center; font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 700; color: #fff; max-width: 740px; margin: clamp(1.5rem,3vw,2rem) auto 0; line-height: 1.4; }
    .trap-line .hl { color: #c9a6ff; }
    @media (max-width: 760px) {
      .trap-loop { flex-direction: column; align-items: stretch; max-width: 340px; }
      .trap-node { max-width: none; }
      .trap-arrow { justify-content: center; transform: rotate(90deg); }
    }

    /* Volume vs. Value comparison */
    .vv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,1.75rem); max-width: 900px; margin: 0 auto; align-items: stretch; }
    .vv-col { border-radius: 16px; padding: clamp(1.5rem,3vw,2rem); border: 1px solid var(--border); background: #fff; display: flex; flex-direction: column; }
    .vv-col .vv-tag { align-self: flex-start; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 0.9rem; }
    .vv-col.volume { background: #faf8fb; }
    .vv-col.volume .vv-tag { background: #ececf0; color: #5c5c66; }
    .vv-col.value { border-color: var(--primary); box-shadow: 0 24px 60px -34px rgba(104,0,252,0.55); }
    .vv-col.value .vv-tag { background: rgba(104,0,252,0.12); color: var(--primary); }
    .vv-col h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.2rem; }
    .vv-col .vv-econ { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; font-weight: 600; }
    .vv-col ul { list-style: none; margin-top: auto; }
    .vv-col li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.55rem 0; font-size: 1rem; line-height: 1.5; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text); }
    .vv-col li:last-child { border-bottom: none; }
    .vv-col li svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; }
    .vv-col.volume li svg { color: #b0b0ba; }
    .vv-col.value li svg { color: var(--primary); }
    .vv-foot { text-align: center; font-size: clamp(1.1rem,1.9vw,1.4rem); font-weight: 700; color: var(--text); max-width: 720px; margin: clamp(1.75rem,3vw,2.5rem) auto 0; line-height: 1.4; }
    .vv-foot .hl { color: var(--primary); }
    @media (max-width: 760px) { .vv-grid { grid-template-columns: 1fr; max-width: 440px; } }

    /* 3-pillar interlock (Services) */
    .lock-row { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 0.6rem; max-width: 940px; margin: 0 auto; }
    .lock-card { flex: 1 1 200px; max-width: 270px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 1.25rem; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
    .lock-card .lc-ico { width: 52px; height: 52px; border-radius: 13px; background: rgba(104,0,252,0.1); border: 1px solid rgba(104,0,252,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem; }
    .lock-card .lc-ico svg { width: 26px; height: 26px; color: var(--primary); }
    .lock-card h3 { font-size: 1.12rem; color: var(--text); margin-bottom: 0.15rem; }
    .lock-card .lc-who { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.55rem; }
    .lock-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.55; }
    .lock-plus { display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: var(--primary); flex: 0 0 auto; }
    .lock-result { max-width: 780px; margin: clamp(1.75rem,3.5vw,2.5rem) auto 0; text-align: center; background: var(--ink); color: #fff; border-radius: 16px; padding: clamp(1.5rem,3vw,2rem); }
    .lock-result p { font-size: clamp(1.1rem,1.9vw,1.35rem); line-height: 1.45; font-weight: 600; margin: 0; }
    .lock-result .hl { color: #c9a6ff; }
    @media (max-width: 760px) { .lock-row { flex-direction: column; align-items: stretch; max-width: 380px; } .lock-card { max-width: none; } .lock-plus { transform: rotate(90deg); } }

    /* Breakout-order numbered sequence (Services) */
    .order-flow { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 0.6rem; max-width: 940px; margin: 0 auto; }
    .order-step { flex: 1 1 220px; max-width: 290px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem 1.4rem; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
    .order-step .os-num { width: 42px; height: 42px; border-radius: 11px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 0.9rem; }
    .order-step h3 { font-size: 1.12rem; color: var(--text); margin-bottom: 0.3rem; }
    .order-step p { font-size: 0.95rem; color: var(--text-light); line-height: 1.55; }
    .order-arrow { display: flex; align-items: center; color: var(--primary); flex: 0 0 auto; }
    .order-arrow svg { width: 24px; height: 24px; }
    .order-warn { display: flex; gap: 0.7rem; align-items: flex-start; max-width: 780px; margin: clamp(1.75rem,3vw,2.25rem) auto 0; background: #faf8fb; border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: 12px; padding: 1.1rem 1.3rem; color: var(--text); font-size: 1rem; line-height: 1.55; }
    .order-warn svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--primary); margin-top: 2px; }
    @media (max-width: 760px) { .order-flow { flex-direction: column; align-items: stretch; max-width: 380px; } .order-step { max-width: none; } .order-arrow { transform: rotate(90deg); } }

    /* "What you get" deliverables (Services — price gated) */
    .deliv-card { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(1.75rem,3.5vw,2.75rem); box-shadow: 0 26px 60px -38px rgba(18,18,18,0.4); }
    .deliv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.75rem; }
    .deliv-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .deliv-item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--primary); margin-top: 2px; }
    .deliv-item h4 { font-size: 1.02rem; color: var(--text); margin: 0 0 0.15rem; font-weight: 700; }
    .deliv-item p { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; margin: 0; }
    .deliv-note { display: flex; gap: 0.6rem; align-items: center; justify-content: center; margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--border); color: var(--text-light); font-size: 0.98rem; text-align: center; }
    .deliv-note svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; }
    @media (max-width: 600px) { .deliv-grid { grid-template-columns: 1fr; } }

    /* Deep case studies (Results — video-ready) */
    .case-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(1.25rem,3vw,2rem); }
    .case-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.25rem,3vw,2.5rem); align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(1.5rem,3vw,2.25rem); box-shadow: 0 18px 48px -32px rgba(18,18,18,0.35); }
    .case-card.flip .case-media { order: 2; }
    .case-media { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(150deg,#2a0a52,#121212); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08); }
    .case-media .cm-metric { font-size: clamp(2rem,4vw,3rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; color: #fff; }
    .case-media .cm-sub { font-size: 0.9rem; color: rgba(244,244,246,0.72); margin-top: 0.5rem; line-height: 1.4; }
    .case-media .cm-tag { position: absolute; top: 0.8rem; left: 0.8rem; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(244,244,246,0.65); border: 1px solid rgba(244,244,246,0.25); border-radius: 999px; padding: 0.25rem 0.6rem; }
    .case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .case-body .case-name { font-size: 1.3rem; color: var(--text); margin-bottom: 0.1rem; }
    .case-body .case-role { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.9rem; }
    .case-body .case-story { color: var(--text-light); font-size: 1.02rem; line-height: 1.65; margin-bottom: 0.9rem; }
    .case-body blockquote { margin: 0; border-left: 3px solid var(--primary); padding-left: 1rem; font-style: italic; color: var(--text); font-size: 1.05rem; line-height: 1.55; }
    @media (max-width: 760px) { .case-card { grid-template-columns: 1fr; gap: 1.1rem; } .case-card.flip .case-media { order: 0; } }

    /* Services — system rows (founder-anchored, alternating) */
    .sys-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.25rem,3.5vw,3rem); align-items: center; max-width: 1000px; margin: 0 auto; }
    .sys-row + .sys-row { margin-top: clamp(2rem,4vw,3.25rem); }
    .sys-row.flip .sys-media { order: 2; }
    .sys-media { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; }
    .sys-avatar { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(160deg,var(--primary),#121212); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; font-weight: 800; overflow: hidden; border: 1px solid var(--border); }
    .sys-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .sys-media .sys-pillar { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }
    .sys-media .sys-founder { font-weight: 700; color: var(--text); }
    .sys-body .sys-step { color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
    .sys-body h3 { font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--text); margin-bottom: 0.5rem; }
    .sys-body p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.6rem; }
    .sys-body .sys-proof { font-size: 0.95rem; color: var(--text); background: #faf8fb; border: 1px solid var(--border); border-radius: 10px; padding: 0.7rem 0.9rem; }
    .sys-body .sys-proof b { color: var(--primary); }
    @media (max-width: 760px) { .sys-row { grid-template-columns: 1fr; gap: 1.1rem; text-align: center; } .sys-row.flip .sys-media { order: 0; } }

    /* About — team card proof chip, thesis manifesto, values */
    .team-card .proof { display: inline-block; margin-top: 0.6rem; font-size: 0.82rem; font-weight: 700; color: var(--primary); background: rgba(104,0,252,0.08); border-radius: 999px; padding: 0.3rem 0.75rem; }
    .thesis { background: var(--ink); color: #fff; text-align: center; }
    .thesis .container { max-width: 820px; }
    .thesis .eyebrow { display: inline-block; color: var(--yellow); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .thesis h2 { color: #fff; font-size: clamp(1.6rem,3.2vw,2.2rem); margin: 0.6rem 0 0; line-height: 1.25; }
    .thesis h2 .hl { color: #c9a6ff; }
    .thesis p { color: rgba(244,244,246,0.72); font-size: 1.1rem; line-height: 1.7; margin-top: 1rem; }
    .val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.4vw,1.75rem); max-width: 920px; margin: 0 auto; }
    .val-card { text-align: center; padding: 0 0.5rem; }
    .val-ico { width: 56px; height: 56px; border-radius: 14px; background: rgba(104,0,252,0.1); border: 1px solid rgba(104,0,252,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
    .val-ico svg { width: 26px; height: 26px; color: var(--primary); }
    .val-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 0.4rem; }
    .val-card p { color: var(--text-light); font-size: 0.98rem; line-height: 1.6; }
    @media (max-width: 760px) { .val-grid { grid-template-columns: 1fr; max-width: 400px; } }

    /* 404 two-button row (uses cloned .notfound/.code) */
    .notfound .nf-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; justify-content: center; }
    .notfound .nf-cta .btn.ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); box-shadow: none; }
    .notfound .nf-cta .btn.ghost:hover { background: rgba(104,0,252,0.08); }

    /* Mobile sticky "Book a Call" bar (universal) */
    .mobile-book-bar { display: none; }
    @media (max-width: 760px) {
      .mobile-book-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(18,18,18,0.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-top: 1px solid rgba(244,244,246,0.12); }
      .mobile-book-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--primary); color: #fff; font-weight: 700; font-size: 1rem; padding: 0.9rem 1rem; border-radius: 10px; text-decoration: none; }
      .mobile-book-bar a svg { width: 16px; height: 16px; }
    }

    /* SYAF wide wordmark — scale by max-height AND max-width so the long lockup never overflows (esp. mobile nav) */
    .nav-logo img { height: auto; width: auto; max-height: 22px; max-width: 58vw; }
    .footer .footer-logo { height: auto; width: auto; max-height: 22px; max-width: 240px; }
    @media (max-width: 600px) { .nav-logo img { max-height: 19px; } }

    /* Home hero VSL (Wistia) */
    .hero-solo .hero-video { max-width: 680px; margin: 1.8rem auto 0; border-radius: 14px; overflow: hidden; border: 1px solid rgba(244,244,246,0.12); background: #1c1c1c; box-shadow: 0 24px 60px -30px rgba(0,0,0,0.7); }
    .hero-solo .hero-video wistia-player { display: block; width: 100%; }
    wistia-player[media-id='mo43k3jcaj']:not(:defined) { background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/mo43k3jcaj/swatch'); display: block; filter: blur(5px); padding-top: 56.25%; }

    /* 2-column hero (TS365-style): headline accent in the copy column + full-width trust strip */
    .hero-copy h1 .hl { color: #c9a6ff; }
    .hero-card .hero-trust { max-width: none; }

    /* Volume-vs-value: "$1M revenue" footer stat on each card (same goal, very different path) */
    .vv-col .vv-goal { margin-top: 1.15rem; padding-top: 0.95rem; border-top: 1px solid rgba(0,0,0,0.08); display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
    .vv-col .vv-goal .g-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }
    .vv-col .vv-goal .g-val { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; }
    .vv-col.volume .vv-goal .g-val { color: var(--text); }
    .vv-col.value .vv-goal .g-val { color: var(--primary); }

    /* Hero logo trust strip — matches the SYAF VSL page (static wrap on desktop, masked marquee on mobile) */
    .hero-card .logo-strip { max-width: 1100px; margin: clamp(1.6rem,3vw,2.25rem) auto 0; padding-top: clamp(1.4rem,2.5vw,1.85rem); border-top: 1px solid rgba(244,244,246,0.12); }
    .logo-strip .logos { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: clamp(14px,2.2vw,40px); }
    .logo-strip img { max-height: 26px; height: auto; width: auto; max-width: 100%; object-fit: contain; flex: 0 1 auto; min-width: 0; opacity: 0.72; transition: opacity 0.2s ease; }
    .logo-strip img:hover { opacity: 1; }
    .logo-strip .logos .clone { display: none; }
    @keyframes logo-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (max-width: 600px) {
      .hero-card .logo-strip { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent 0,#000 14%,#000 86%,transparent 100%); mask-image: linear-gradient(90deg,transparent 0,#000 14%,#000 86%,transparent 100%); }
      .logo-strip .logos { flex-wrap: nowrap; justify-content: flex-start; width: max-content; gap: 0; animation: logo-marquee 22s linear infinite; }
      .logo-strip .logos img { margin: 0 18px; flex: 0 0 auto; }
      .logo-strip .logos .clone { display: block; }
    }
    @media (prefers-reduced-motion: reduce) { .logo-strip .logos { animation: none !important; } }

    /* size the arrow in text links (sec-cta) so it doesn't balloon to the default SVG size */
    .txt-link svg { width: 15px; height: 15px; flex: 0 0 auto; }

    /* "Your Advisors" — oceangross-style: dark section, grayscale portraits, bio-on-hover */
    .advisors { background: var(--ink); }
    .advisors .sec-head .eyebrow { color: var(--yellow); }
    .advisors .sec-head h2 { color: #fff; }
    .advisors .sec-head p { color: rgba(244,244,246,0.62); }
    .advisor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.25rem,2.5vw,2rem); max-width: 1000px; margin: 0 auto; }
    .advisor-photo { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; background: #1c1c1c; border: 1px solid rgba(244,244,246,0.1); }
    .advisor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: grayscale(1); transition: transform 0.4s ease; }
    .advisor-card:hover .advisor-photo img { transform: scale(1.04); }
    .advisor-quote { position: absolute; inset: 0; padding: clamp(1.1rem,2vw,1.6rem); display: flex; align-items: flex-start; opacity: 0; transition: opacity 0.35s ease; background: linear-gradient(180deg, rgba(16,16,18,0.93), rgba(16,16,18,0.82)); }
    .advisor-quote p { color: #fff; font-size: clamp(0.95rem,1.3vw,1.08rem); line-height: 1.5; font-weight: 500; margin: 0; }
    .advisor-card:hover .advisor-quote { opacity: 1; }
    .advisor-name { margin-top: 1rem; font-size: 1.15rem; font-weight: 700; color: #fff; }
    .advisor-title { color: rgba(244,244,246,0.55); font-size: 0.95rem; margin-top: 0.15rem; }
    .advisors .sec-cta .txt-link { color: #c9a6ff; }
    @media (max-width: 760px) { .advisor-grid { grid-template-columns: 1fr; max-width: 340px; } }

    /* "How we help you scale" — 3 expandable cards (hover lift + click to expand) */
    .scale-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.4vw,1.75rem); max-width: 1000px; margin: 0 auto; align-items: start; }
    .scale-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem 1.6rem; box-shadow: 0 2px 16px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
    .scale-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 18px 40px -24px rgba(104,0,252,0.4); }
    .scale-card .sc-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(104,0,252,0.1); border: 1px solid rgba(104,0,252,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .scale-card .sc-icon svg { width: 28px; height: 28px; color: var(--primary); }
    .scale-card h3 { font-size: 1.25rem; color: var(--text); margin-bottom: 0.4rem; }
    .scale-card .sc-short { color: var(--text-light); font-size: 1rem; line-height: 1.6; }
    .scale-card .sc-more { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
    .scale-card .sc-more-inner { padding-top: 0.85rem; }
    .scale-card .sc-more p { color: var(--text-light); font-size: 0.96rem; line-height: 1.65; margin: 0; }
    .scale-card .sc-toggle { margin-top: 1rem; align-self: flex-start; background: none; border: none; cursor: pointer; font-family: inherit; color: var(--primary); font-weight: 700; font-size: 0.92rem; padding: 0; display: inline-flex; align-items: center; gap: 0.4rem; }
    .scale-card .sc-chev { transition: transform 0.2s ease; font-size: 0.9rem; }
    .scale-card.open .sc-chev { transform: rotate(180deg); }
    @media (max-width: 860px) { .scale-grid { grid-template-columns: 1fr; max-width: 440px; } }

    /* advisors: photos in COLOR by default, desaturate to B&W on hover; overlay fades to reveal the photo */
    .advisor-photo img { filter: grayscale(0); transition: filter 0.4s ease, transform 0.4s ease; }
    .advisor-card:hover .advisor-photo img { filter: grayscale(1); transform: scale(1.04); }
    .advisor-quote { background: linear-gradient(180deg, rgba(16,16,18,0.94) 0%, rgba(16,16,18,0.9) 46%, rgba(16,16,18,0.38) 100%); }

    /* "How we help you scale" — interactive showcase (tabs + dark featured panel) */
    .showcase { max-width: 1000px; margin: 0 auto; }
    .showcase .sc-radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
    .sc-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
    .sc-tab { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; cursor: pointer; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
    .sc-tab:hover { transform: translateY(-2px); border-color: var(--primary); }
    .sc-tab-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(104,0,252,0.1); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
    .sc-tab-ico svg { width: 22px; height: 22px; color: var(--primary); }
    .sc-tab-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
    .sc-tab-txt b { color: var(--text); font-size: 1.02rem; }
    .sc-tab-txt small { color: var(--text-light); font-size: 0.82rem; }
    #hs-mkt:checked ~ .sc-tabs label[for="hs-mkt"], #hs-off:checked ~ .sc-tabs label[for="hs-off"], #hs-ful:checked ~ .sc-tabs label[for="hs-ful"] { border-color: var(--primary); background: rgba(104,0,252,0.05); box-shadow: 0 12px 30px -18px rgba(104,0,252,0.55); }
    .sc-stage { position: relative; background: var(--ink); color: #fff; border-radius: 18px; padding: clamp(1.75rem,4vw,3rem); overflow: hidden; }
    .sc-stage::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(ellipse 70% 80% at 85% 20%, #000, transparent 75%); mask-image: radial-gradient(ellipse 70% 80% at 85% 20%, #000, transparent 75%); }
    .sc-slide { display: none; position: relative; }
    #hs-mkt:checked ~ .sc-stage #p-mkt, #hs-off:checked ~ .sc-stage #p-off, #hs-ful:checked ~ .sc-stage #p-ful { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.25rem,3vw,2.5rem); align-items: center; }
    .sc-num { font-size: clamp(3.5rem,8vw,6rem); font-weight: 900; line-height: 1; color: rgba(201,166,255,0.28); letter-spacing: -0.03em; }
    .sc-body h3 { font-size: clamp(1.4rem,2.6vw,1.9rem); color: #fff; margin-bottom: 0.6rem; }
    .sc-body p { color: rgba(244,244,246,0.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; }
    .sc-tag { display: inline-block; font-size: 0.85rem; font-weight: 700; color: #c9a6ff; background: rgba(104,0,252,0.18); border: 1px solid rgba(104,0,252,0.4); border-radius: 999px; padding: 0.4rem 0.9rem; }
    @media (max-width: 760px) {
      .sc-tabs { grid-template-columns: 1fr; }
      #hs-mkt:checked ~ .sc-stage #p-mkt, #hs-off:checked ~ .sc-stage #p-off, #hs-ful:checked ~ .sc-stage #p-ful { grid-template-columns: 1fr; gap: 0.4rem; }
      .sc-num { font-size: 2.8rem; }
    }

    /* Reviews — GV-style: static center quote, client wins drifting around it */
    .wins-wall { position: relative; background: var(--ink); overflow: hidden; min-height: 560px; display: flex; align-items: center; }
    .wins-cols { position: absolute; inset: -60px 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 0 1rem; opacity: 0.55; }
    .wins-col { overflow: hidden; }
    .wins-track { display: flex; flex-direction: column; gap: 1rem; will-change: transform; animation: wins-up 34s linear infinite; }
    .wins-col.down .wins-track { animation-name: wins-down; }
    @keyframes wins-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
    @keyframes wins-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
    .win-tile { background: #1c1c1c; border: 1px solid rgba(244,244,246,0.1); border-radius: 12px; padding: 0.9rem 1rem; }
    .win-tile .wt-num { font-size: 1.35rem; font-weight: 800; color: #c9a6ff; line-height: 1.1; }
    .win-tile .wt-txt { font-size: 0.82rem; color: rgba(244,244,246,0.65); line-height: 1.4; margin-top: 0.25rem; }
    .wins-wall::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 65% 78% at 50% 50%, rgba(18,18,18,0.97) 38%, rgba(18,18,18,0.55) 100%); pointer-events: none; }
    .wins-center { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(3.5rem,8vw,6rem) 1.5rem; }
    .wins-eyebrow { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #c9a6ff; }
    .wins-stars { color: #00b67a; font-size: 1.5rem; letter-spacing: 4px; margin-top: 0.6rem; }
    .wins-center blockquote { margin: 1.1rem 0 0; font-size: clamp(1.5rem,3.4vw,2.5rem); font-weight: 800; line-height: 1.28; color: #fff; letter-spacing: -0.015em; }
    .wins-author { margin-top: 1.3rem; color: rgba(244,244,246,0.6); font-size: 0.95rem; font-weight: 600; }
    .wins-link { display: inline-flex; margin-top: 1.25rem; color: #c9a6ff; }
    @media (prefers-reduced-motion: reduce) { .wins-track { animation: none !important; } }
    @media (max-width: 760px) { .wins-cols { grid-template-columns: repeat(2,1fr); inset: -40px 0; } }

    /* "Is this you?" — unified split fit card (brand purple, not green/red) */
    .fitcard { display: grid; grid-template-columns: 1fr 1fr; max-width: 920px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 26px 60px -38px rgba(18,18,18,0.4); }
    .fitcard-col { padding: clamp(1.5rem,3vw,2.25rem); }
    .fitcard-col.is-yes { background: linear-gradient(180deg, rgba(104,0,252,0.06), rgba(104,0,252,0.01)); }
    .fitcard-col.is-no { border-left: 1px solid var(--border); }
    .fitcard-head { display: flex; align-items: center; gap: 0.65rem; font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 1.1rem; }
    .fitcard-badge { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
    .fitcard-badge svg { width: 18px; height: 18px; }
    .fitcard-badge.yes { background: var(--primary); color: #fff; }
    .fitcard-badge.no { background: #ececf0; color: #80808c; }
    .fitcard-col ul { list-style: none; }
    .fitcard-col li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.7rem 0; font-size: 1rem; line-height: 1.5; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .fitcard-col li:last-child { border-bottom: none; }
    .fitcard-col .fc-ico { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
    .fitcard-col .fc-ico svg { width: 13px; height: 13px; }
    .is-yes li { color: var(--text); }
    .is-yes .fc-ico { background: rgba(104,0,252,0.12); color: var(--primary); }
    .is-no li { color: var(--text-light); }
    .is-no .fc-ico { background: #f0f0f3; color: #9a9aa4; }
    @media (max-width: 760px) { .fitcard { grid-template-columns: 1fr; } .fitcard-col.is-no { border-left: none; border-top: 1px solid var(--border); } }

    /* wins-wall: "Our partners love SYAF" headline + real Skool screenshots */
    .wins-headline { font-size: clamp(2rem,4.6vw,3.2rem); font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.06; }
    .wins-center blockquote { font-size: clamp(1.2rem,2.4vw,1.7rem); font-weight: 700; color: rgba(244,244,246,0.9); margin-top: 1rem; }
    .wins-stars { margin-top: 1rem; }
    .win-shot { width: 100%; display: block; border-radius: 12px; border: 1px solid rgba(244,244,246,0.12); }
    .wins-cols { opacity: 0.5; }

    /* PROOF — branded purple stat band (replaces the generic TS365 stat-panel) */
    .proofband { position: relative; overflow: hidden; background: linear-gradient(135deg, #4d00bf 0%, #6800fc 55%, #7d28ff 100%); color: #fff; padding: clamp(2.75rem,6vw,4.5rem) 0; }
    .proofband::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 0%, rgba(255,255,255,0.16), transparent 55%); }
    .proofband .container { position: relative; }
    .proofband h2 { text-align: center; color: #fff; font-size: clamp(1.6rem,3.2vw,2.1rem); margin: 0 auto clamp(1.75rem,3.5vw,2.75rem); }
    .proofband-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.5rem); max-width: 960px; margin: 0 auto; }
    .pb-stat { position: relative; text-align: center; padding: 0 1rem; }
    .pb-stat + .pb-stat::before { content: ""; position: absolute; left: 0; top: 8%; bottom: 8%; width: 1px; background: rgba(255,255,255,0.22); }
    .pb-num { font-size: clamp(2.6rem,6vw,4rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: #fff; }
    .pb-lbl { margin-top: 0.85rem; color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.5; }
    .proofband .sec-cta .txt-link { color: #fff; }
    @media (max-width: 760px) { .proofband-stats { grid-template-columns: 1fr; gap: 2rem; } .pb-stat + .pb-stat::before { display: none; } }

    /* wins-wall — feather toward edges: screenshots clear at L/R, fade out toward the center */
    .wins-cols { opacity: 0.7; -webkit-mask-image: linear-gradient(to right, #000 0%, #000 16%, transparent 43%, transparent 57%, #000 84%, #000 100%); mask-image: linear-gradient(to right, #000 0%, #000 16%, transparent 43%, transparent 57%, #000 84%, #000 100%); }
    .wins-wall::after { background: radial-gradient(ellipse 58% 75% at 50% 50%, rgba(18,18,18,0.92) 34%, rgba(18,18,18,0) 92%); }

    /* advisor cards — social links in the hover bio overlay */
    .advisor-quote { flex-direction: column; justify-content: space-between; }
    .advisor-socials { display: flex; gap: 0.55rem; padding-top: 1rem; }
    .advisor-socials a { width: 36px; height: 36px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); transition: background .15s ease, border-color .15s ease; }
    .advisor-socials a:hover { background: var(--primary); border-color: var(--primary); }
    .advisor-socials svg { width: 17px; height: 17px; }

    /* section headlines — larger & tighter, with a purple-accented key word + gradient underline */
    .sec-head h2, .how-it-works h2, .apply-section h2 { font-size: clamp(1.85rem, 3.9vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
    h2 .k { color: var(--primary); position: relative; white-space: nowrap; }
    h2 .k::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.04em; height: 0.1em; border-radius: 4px; background: linear-gradient(90deg, var(--primary), #b794ff); }

    /* opt-in left-aligned section headers */
    .sec-head.left { text-align: left; max-width: 820px; margin-left: 0; margin-right: auto; }

    /* Option 4 — "//" accent flourish leading left-aligned headlines; drop the key-word underline */
    h2 .k::after { display: none; }
    h2 .mark { color: var(--primary); font-weight: 900; margin-right: 0.12em; }
    .advisors .sec-head h2 .mark { color: #c9a6ff; }

    /* About — opportunity 2-path grid (reuses .lock-card) */
    .opp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,1.75rem); max-width: 880px; margin: 0 auto; }
    .opp-grid .lock-card { max-width: none; text-align: left; }
    .opp-grid .lock-card .lc-ico { margin: 0 0 0.9rem; }
    @media (max-width: 700px) { .opp-grid { grid-template-columns: 1fr; max-width: 440px; } }

    /* About — founder feature rows (editorial alternating profiles) */
    .team-features { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(2.5rem,5vw,4.5rem); }
    .fdr { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
    .fdr.flip .fdr-media { order: 2; }
    .fdr-media { position: relative; }
    .fdr-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; border-radius: 18px; border: 1px solid var(--border); display: block; box-shadow: 0 24px 60px -34px rgba(18,18,18,0.45); }
    .fdr-num { position: absolute; top: -0.35em; left: -0.12em; font-size: clamp(4rem,9vw,7rem); font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(104,0,252,0.3); letter-spacing: -0.04em; pointer-events: none; }
    .fdr.flip .fdr-num { left: auto; right: -0.12em; }
    .fdr-pillar { display: inline-block; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(104,0,252,0.09); border-radius: 999px; padding: 0.35rem 0.85rem; margin-bottom: 0.9rem; }
    .fdr-body h3 { font-size: clamp(1.6rem,3.2vw,2.2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
    .fdr-co { color: var(--text-light); font-weight: 600; margin: 0.25rem 0 1rem; }
    .fdr-body p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.1rem; }
    .fdr-proof { display: inline-block; font-size: 0.9rem; font-weight: 700; color: var(--primary); background: rgba(104,0,252,0.08); border: 1px solid rgba(104,0,252,0.2); border-radius: 10px; padding: 0.5rem 0.9rem; margin-bottom: 1.2rem; }
    .fdr-socials { display: flex; gap: 0.5rem; }
    .fdr-socials a { width: 38px; height: 38px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border); transition: color .15s ease, background .15s ease, border-color .15s ease; }
    .fdr-socials a:hover { color: #fff; background: var(--primary); border-color: var(--primary); }
    .fdr-socials svg { width: 18px; height: 18px; }
    @media (max-width: 760px) { .fdr { grid-template-columns: 1fr; gap: 1.25rem; } .fdr.flip .fdr-media { order: 0; } .fdr-num { font-size: 3.5rem; } }

    /* founder features — keep the photo column the same width on flipped rows (mirror the ratio) */
    .fdr.flip { grid-template-columns: 1.18fr 0.82fr; }
    @media (max-width: 760px) { .fdr.flip { grid-template-columns: 1fr; } }

    /* ── Services redesign: engagement-ladder tiers + DFY trio + "best for" ── */
    .tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2.4vw,1.6rem); max-width: 1060px; margin: 0 auto; }
    .tri-grid .lock-card { max-width: none; text-align: left; display: flex; flex-direction: column; }
    .tri-grid .lock-card .lc-ico { margin: 0 0 0.95rem; }
    .tri-grid .lock-card p { flex: 1 1 auto; margin: 0; }
    a.lock-card { text-decoration: none; color: inherit; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
    a.lock-card:hover { transform: translateY(-4px); border-color: rgba(104,0,252,0.45); box-shadow: 0 20px 44px -26px rgba(104,0,252,0.55); }
    .lc-go { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); font-weight: 600; font-size: 0.9rem; }
    .lc-go svg { width: 15px; height: 15px; flex: 0 0 auto; }
    .best-for { max-width: 900px; margin: 1.5rem auto 0; padding: 0.9rem 1.15rem; background: rgba(104,0,252,0.06); border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0; color: var(--text); font-size: 0.98rem; line-height: 1.55; }
    .best-for b { color: var(--primary); font-weight: 700; }
    @media (max-width: 820px) { .tri-grid { grid-template-columns: 1fr; max-width: 440px; } }

    /* ═══ Services editorial redesign: hero · image slots · ladder · spreads · DFY ═══ */
    .media-frame { position: relative; width: 100%; border-radius: 18px; overflow: hidden; }
    .media-frame.r-43 { aspect-ratio: 4 / 3; }
    .media-frame.r-32 { aspect-ratio: 3 / 2; }
    .media-frame.r-11 { aspect-ratio: 1 / 1; }
    .media-frame.r-169 { aspect-ratio: 16 / 9; }
    .media-frame.r-portrait { aspect-ratio: 4 / 5; }
    .media-frame > img, .media-frame > .ph { position: absolute; inset: 0; width: 100%; height: 100%; }
    .media-frame > img { object-fit: cover; display: block; }
    .ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.65rem; padding: 1.5rem; text-align: center; background: linear-gradient(135deg, rgba(104,0,252,0.12), rgba(125,40,255,0.04)); border: 1.5px dashed rgba(104,0,252,0.35); }
    .ph::before { content: 'IMAGE'; position: absolute; top: 11px; left: 11px; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em; color: var(--primary); background: rgba(104,0,252,0.13); padding: 3px 8px; border-radius: 6px; }
    .ph-ic svg { width: 40px; height: 40px; color: var(--primary); opacity: 0.75; }
    .ph-lbl { font-size: 0.82rem; font-weight: 600; color: var(--text-light); max-width: 260px; line-height: 1.45; }
    .band-dark .ph { background: linear-gradient(135deg, rgba(201,166,255,0.16), rgba(201,166,255,0.03)); border-color: rgba(201,166,255,0.4); }
    .band-dark .ph::before { color: #c9a6ff; background: rgba(201,166,255,0.16); }
    .band-dark .ph-ic svg { color: #c9a6ff; }
    .band-dark .ph-lbl { color: rgba(255,255,255,0.66); }

    .svc-hero { background: radial-gradient(1100px 460px at 88% -25%, rgba(104,0,252,0.34), transparent 62%), var(--ink); color: #f4f4f6; padding: clamp(3rem,7vw,5.5rem) 0; }
    .svc-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.75rem,4vw,3.25rem); align-items: center; }
    .svc-hero .eyebrow { color: #c9a6ff; }
    .svc-hero h1 { font-size: clamp(2.1rem,5vw,3.35rem); font-weight: 800; line-height: 1.08; margin: 0.45rem 0 0.95rem; color: #fff; }
    .svc-hero h1 .hl { color: #c9a6ff; }
    .svc-hero .sub { color: rgba(255,255,255,0.78); font-size: clamp(1rem,1.4vw,1.12rem); line-height: 1.6; max-width: 36ch; }
    .svc-hero-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.6rem; }
    .svc-hero-pills a { font-size: 0.85rem; font-weight: 600; color: #fff; text-decoration: none; padding: 0.5rem 1.05rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; transition: background .2s, border-color .2s; }
    .svc-hero-pills a:hover { background: var(--primary); border-color: var(--primary); }

    .ladder { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,3vw,2rem); max-width: 1000px; margin: 0 auto; }
    .ladder::before { content: ''; position: absolute; top: 34px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, rgba(104,0,252,0.2), var(--primary), rgba(104,0,252,0.2)); z-index: 0; }
    .ladder-node { position: relative; z-index: 1; text-align: center; text-decoration: none; color: inherit; }
    .ladder-dot { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1rem; background: #fff; border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); box-shadow: 0 10px 26px -12px rgba(104,0,252,0.55); transition: transform .25s, background .25s, color .25s; }
    .ladder-dot svg { width: 28px; height: 28px; }
    .ladder-node:hover .ladder-dot { transform: translateY(-5px); background: var(--primary); color: #fff; }
    .ladder-who { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); }
    .ladder-node h3 { font-size: 1.12rem; margin: 0.3rem 0 0.35rem; color: var(--text); }
    .ladder-node p { font-size: 0.92rem; color: var(--text-light); margin: 0; line-height: 1.5; }

    .spread { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(1.75rem,4vw,3.25rem); align-items: center; max-width: 1120px; margin: 0 auto; }
    .spread-body { min-width: 0; }
    .spread-media { min-width: 0; }
    .spread.flip .spread-body { order: 2; }
    .spread.flip .spread-media { order: 1; }
    .spread-num { font-size: clamp(2.4rem,6vw,3.8rem); font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(104,0,252,0.32); margin-bottom: 0.5rem; }
    .spread-tab { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); background: rgba(104,0,252,0.08); padding: 0.42rem 0.85rem; border-radius: 999px; margin-bottom: 0.85rem; }
    .spread-tab svg { width: 14px; height: 14px; }
    .spread-body h2 { font-size: clamp(1.7rem,3.6vw,2.45rem); font-weight: 800; line-height: 1.12; margin: 0 0 0.7rem; color: var(--text); }
    .spread-body .lead { color: var(--text-light); font-size: clamp(1rem,1.3vw,1.08rem); line-height: 1.65; margin: 0 0 1.1rem; }
    .spread-cta { display: flex; align-items: center; gap: 1.3rem; margin-top: 1.25rem; flex-wrap: wrap; }
    .spread-cta.center { justify-content: center; margin-top: 1.75rem; }
    .spread-note { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--text-light); }
    .spread-note svg { width: 16px; height: 16px; color: var(--primary); flex: 0 0 auto; }

    .band-dark { background: radial-gradient(1200px 520px at 82% -12%, rgba(104,0,252,0.26), transparent 60%), var(--ink); color: #f4f4f6; }
    .on-dark .spread-num { -webkit-text-stroke-color: rgba(201,166,255,0.5); }
    .on-dark .spread-tab { background: rgba(201,166,255,0.14); color: #c9a6ff; }
    .on-dark .spread-body h2 { color: #fff; }
    .on-dark .spread-body h2 .k { color: #c9a6ff; }
    .on-dark .spread-body .lead { color: rgba(255,255,255,0.8); }
    .on-dark .best-for { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); border-left-color: #c9a6ff; }
    .on-dark .best-for b { color: #c9a6ff; }
    .on-dark .txt-link { color: #c9a6ff; }
    .on-dark .spread-note { color: rgba(255,255,255,0.6); }
    .on-dark .spread-note svg { color: #c9a6ff; }
    .vip-builds { display: flex; flex-direction: column; gap: 0.55rem; margin: 1.6rem 0 1.2rem; }
    .vip-builds .vb { position: relative; padding-left: 1.15rem; font-size: 0.96rem; line-height: 1.5; color: rgba(255,255,255,0.82); }
    .vip-builds .vb::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: #c9a6ff; }
    .vip-builds .vb span { color: #fff; font-weight: 700; }

    .svc-list-wrap { max-width: 1120px; margin: clamp(1.75rem,3vw,2.5rem) auto 0; }
    .svc-list-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.4rem; }
    .svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
    .svc-list .li { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
    .svc-list .li svg { width: 20px; height: 20px; color: var(--primary); flex: 0 0 auto; margin-top: 2px; }
    .svc-list h4 { font-size: 0.98rem; margin: 0 0 0.12rem; font-weight: 700; color: var(--text); }
    .svc-list p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.45; }

    .dfy-stack { display: flex; flex-direction: column; gap: 1rem; max-width: 940px; margin: 0 auto; }
    .dfy-panel { display: grid; grid-template-columns: 132px 1fr; gap: 1.4rem; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 1.2rem 1.4rem; box-shadow: 0 4px 22px -12px rgba(18,18,18,0.18); }
    .dfy-who { color: var(--primary); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; }
    .dfy-panel h3 { font-size: 1.18rem; margin: 0.12rem 0 0.35rem; color: var(--text); }
    .dfy-panel p { font-size: 0.94rem; color: var(--text-light); margin: 0; line-height: 1.55; }

    .proofband .stats-note { color: rgba(255,255,255,0.72); margin-top: 1.2rem; }

    @media (max-width: 880px) {
      .svc-hero-grid { grid-template-columns: 1fr; }
      .svc-hero .sub { max-width: none; }
      .spread { grid-template-columns: 1fr; gap: 1.5rem; }
      .spread .spread-media, .spread.flip .spread-media { order: 1; }
      .spread .spread-body, .spread.flip .spread-body { order: 2; }
    }
    @media (max-width: 760px) {
      .ladder { grid-template-columns: 1fr; max-width: 340px; gap: 1.5rem; }
      .ladder::before { display: none; }
    }
    @media (max-width: 640px) {
      .svc-list { grid-template-columns: 1fr; }
      .dfy-panel { grid-template-columns: 1fr; }
    }

    /* DFY logo tiles: contain (never crop) the brand marks on a clean chip */
    .dfy-media .media-frame:has(img) { background: #fff; border: 1px solid var(--border); }
    .dfy-media .media-frame > img { object-fit: contain; padding: 12px; }

    /* ═══ Results: video testimonial rows (reuse .spread for the alternating 2-col) ═══ */
    .vstack { max-width: 1120px; margin: 0 auto; }
    .vrow + .vrow { margin-top: clamp(2.75rem, 5.5vw, 5rem); }
    .video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 26px 60px -34px rgba(18,18,18,0.55); }
    .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .vquote { position: relative; font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.45; color: var(--text); }
    .vquote::before { content: '\201C'; display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 3.2rem; line-height: 0.8; color: var(--primary); margin-bottom: 0.2rem; }
    .vname { margin-top: 1.1rem; font-size: 1.15rem; font-weight: 800; color: var(--text); }
    .vrole { margin-top: 0.12rem; font-size: 0.95rem; font-weight: 600; color: var(--primary); }

    /* Results: wins masonry grid + click-to-zoom lightbox */
    .wins-masonry { column-count: 3; column-gap: 1rem; max-width: 1000px; margin: 0 auto; }
    .wins-masonry .wshot { width: 100%; margin: 0 0 1rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 4px 18px -10px rgba(18,18,18,0.25); display: block; cursor: zoom-in; break-inside: avoid; transition: transform .2s, box-shadow .2s; }
    .wins-masonry .wshot:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -14px rgba(104,0,252,0.45); }
    @media (max-width: 820px) { .wins-masonry { column-count: 2; } }
    @media (max-width: 520px) { .wins-masonry { column-count: 1; max-width: 360px; } }
    .lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(8,6,18,0.9); padding: 4vmin; cursor: zoom-out; }
    .lightbox.open { display: flex; }
    .lightbox-img { max-width: 92vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,0.6); }
    .lightbox-close { position: absolute; top: 16px; right: 24px; width: 44px; height: 44px; background: rgba(255,255,255,0.12); border: 0; border-radius: 50%; color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }
    .lightbox-close:hover { background: rgba(255,255,255,0.22); }

    /* ═══ Trustpilot-style custom review carousel (Results) ═══ */
    .tp-head { text-align: center; margin-bottom: 1.9rem; }
    .tp-head .tp-stars { justify-content: center; margin-bottom: 0.75rem; }
    .tp-sub { color: var(--text-light); font-size: 0.98rem; }
    .tp-sub strong { color: var(--text); }
    .tp-pilot { display: inline-flex; align-items: center; gap: 5px; font-weight: 800; color: #191919; }
    .tp-pilot-star { width: 18px; height: 18px; background: #00b67a; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; }
    .tp-pilot-star::before { content: '★'; color: #fff; font-size: 11px; line-height: 1; }
    .tp-stars { display: inline-flex; gap: 3px; }
    .tp-stars span { width: 24px; height: 24px; background: #00b67a; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }
    .tp-stars span::before { content: '★'; color: #fff; font-size: 14px; line-height: 1; }
    .tp-carousel { position: relative; max-width: 1140px; margin: 0 auto; }
    .tp-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 0.5rem 4px 1.25rem; scrollbar-width: none; -ms-overflow-style: none; }
    .tp-track::-webkit-scrollbar { display: none; }
    .tp-card { flex: 0 0 clamp(280px, 32%, 358px); scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; box-shadow: 0 6px 24px -16px rgba(18,18,18,0.3); display: flex; flex-direction: column; }
    .tp-card .tp-stars { margin-bottom: 0.9rem; }
    .tp-card .tp-stars span { width: 20px; height: 20px; }
    .tp-card .tp-stars span::before { font-size: 12px; }
    .tp-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 0.5rem; }
    .tp-text { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; margin: 0 0 1.3rem; flex: 1 1 auto; }
    .tp-meta { display: flex; align-items: center; gap: 0.6rem; }
    .tp-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
    .tp-author { font-weight: 700; color: var(--text); font-size: 0.92rem; }
    .tp-date { color: var(--text-light); font-size: 0.8rem; margin-left: auto; }
    .tp-nav { position: absolute; top: 44%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.35); cursor: pointer; font-size: 1.7rem; line-height: 1; color: var(--text); z-index: 3; display: flex; align-items: center; justify-content: center; padding-bottom: 3px; }
    .tp-prev { left: -12px; } .tp-next { right: -12px; }
    .tp-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
    @media (max-width: 760px) { .tp-card { flex-basis: 84%; } .tp-nav { display: none; } }

    /* ════════════════════════════════════════════════════════════════
       MOBILE OPTIMIZATION SWEEP — scoped to mobile; desktop output unchanged
       ════════════════════════════════════════════════════════════════ */

    /* P0 — Home "Your Advisors": the hover bio overlay is unreachable on touch,
       so on mobile show the photo in full + bio + socials as static content. */
    @media (max-width: 760px) {
      .advisor-grid { max-width: none; gap: 2rem; }
      .advisor-photo { aspect-ratio: auto; overflow: visible; background: none; border: 0; border-radius: 0; }
      .advisor-photo img { position: static; width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 16px; border: 1px solid rgba(244,244,246,0.1); filter: grayscale(0); transform: none; }
      .advisor-card:hover .advisor-photo img { filter: grayscale(0); transform: none; }
      .advisor-quote { position: static; inset: auto; display: block; opacity: 1; background: none; padding: 0.95rem 0 0; }
      .advisor-card:hover .advisor-quote { opacity: 1; }
      .advisor-quote p { color: rgba(244,244,246,0.84); font-size: 1.02rem; line-height: 1.55; }
      .advisor-socials { padding-top: 0.9rem; }
      .advisor-socials a { width: 42px; height: 42px; }
      .advisor-socials svg { width: 19px; height: 19px; }
    }

    /* P1 — bump the video-testimonial quote on phones for a more confident read */
    @media (max-width: 600px) { .vquote { font-size: 1.3rem; } }

    /* P2 — wins masonry: hold 2 columns down to 480px (more proof on screen), then 1 */
    @media (max-width: 520px) { .wins-masonry { column-count: 2; max-width: none; } }
    @media (max-width: 480px) { .wins-masonry { column-count: 1; max-width: 360px; } }

    /* P2 — Trustpilot carousel: swipe-dots indicator (arrows are hidden on mobile) */
    .tp-dots { display: none; }
    @media (max-width: 760px) {
      .tp-dots { display: flex; justify-content: center; gap: 6px; margin-top: 0.7rem; }
      .tp-dots button { width: 24px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }
      .tp-dots button::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: rgba(104,0,252,0.28); transition: background .2s ease, transform .2s ease; }
      .tp-dots button.on::before { background: var(--primary); transform: scale(1.45); }
    }

    /* Advisors (mobile): name + title ABOVE the photo, bio + socials below it (per Peter) */
    @media (max-width: 760px) {
      .advisor-card { display: flex; flex-direction: column; }
      .advisor-name { order: 1; margin-top: 0; }
      .advisor-title { order: 2; margin-top: 0.12rem; margin-bottom: 0.95rem; }
      .advisor-photo { order: 3; }
    }

    /* Reviews wins-wall (mobile): the drifting screenshots behind the quote read as
       clutter on a narrow screen — hide them; show a clean, focused testimonial block. */
    @media (max-width: 760px) {
      .wins-wall { min-height: auto; }
      .wins-cols { display: none; }
      .wins-center { padding: clamp(3.25rem,12vw,5rem) 1.4rem; }
    }

    /* Trustpilot cards (mobile): cap height with line-clamp; "Read full review" opens a modal */
    .tp-more { display: none; }
    @media (max-width: 760px) {
      .tp-text { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
      .tp-card.is-clamped .tp-text { margin-bottom: 0.55rem; }
      .tp-card.is-clamped .tp-more { display: inline-flex; align-self: flex-start; margin: 0 0 1.1rem; padding: 0.2rem 0; background: none; border: 0; color: var(--primary); font-weight: 700; font-size: 0.92rem; font-family: inherit; cursor: pointer; }
    }
    .tp-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; background: rgba(8,6,18,0.9); padding: 5vmin 1.25rem; }
    .tp-modal.open { display: flex; }
    .tp-modal-card { position: relative; background: #fff; border-radius: 18px; max-width: 540px; width: 100%; max-height: 84vh; overflow-y: auto; padding: 2.4rem 1.6rem 1.75rem; box-shadow: 0 30px 90px rgba(0,0,0,0.5); }
    .tp-modal-close { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; border: 0; background: #f0f0f3; border-radius: 50%; color: var(--text); font-size: 1.9rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
    .tp-modal-close:hover { background: var(--primary); color: #fff; }
    .tp-modal .tp-stars { margin-bottom: 0.9rem; }
    .tp-modal-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 0.6rem; }
    .tp-modal-text { font-size: 1rem; color: var(--text-light); line-height: 1.62; margin: 0 0 1.2rem; }
    .tp-modal .tp-meta { display: flex; align-items: center; gap: 0.6rem; }
    .tp-modal .tp-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
    .tp-modal .tp-author { font-weight: 700; color: var(--text); font-size: 0.92rem; }
    .tp-modal .tp-date { color: var(--text-light); font-size: 0.8rem; margin-left: auto; }

    /* About founder rows: on mobile, name + title appear ABOVE the photo (desktop unchanged) */
    .fdr-head-m { display: none; }
    @media (max-width: 760px) {
      .fdr, .fdr.flip { display: flex; flex-direction: column; }
      .fdr-head-m { display: block; order: 1; }
      .fdr-media { order: 2; }
      .fdr-body { order: 3; }
      .fdr-body > .fdr-pillar, .fdr-body > h3, .fdr-body > .fdr-co { display: none; }
      .fdr-head-m h3 { font-size: clamp(1.6rem,6vw,2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
      .fdr-head-m .fdr-co { color: var(--text-light); font-weight: 600; margin: 0.25rem 0 0; }
      .fdr-head-m .fdr-pillar { margin-bottom: 0.7rem; }
    }

    /* tp card titles: cap at 2 lines on mobile so long titles don't inflate card height */
    @media (max-width: 760px) { .tp-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } }

    /* fix: flipped founder row (Ryan) — force photo below the name/title header on mobile too
       (overrides the desktop-flip `.fdr.flip .fdr-media{order:0}` which has higher specificity) */
    @media (max-width: 760px) { .fdr.flip .fdr-media { order: 2; } }
