      * { box-sizing: border-box; margin: 0; padding: 0; }
      :root { --ink: #e8ebf5; --mut: #8b90a6; --line: #262a3d; --acc: #77c4da; --orange: #f6a32b; --pink: #e94779; --purple: #6a5acd; }
      html, body { height: 100%; }
      /* Solid dark base on the root so mobile overscroll/rubber-band shows dark, not
         the browser's default white (which looked cheap on mobile). */
      html { background: #0e0f16; }
      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        background: radial-gradient(1200px 700px at 50% -10%, #1a1d2e 0%, #0e0f16 60%);
        background-color: #0e0f16;
        color: var(--ink);
        min-height: 100vh;
        display: flex; flex-direction: column; align-items: center;
        padding: 40px 20px 80px;
        text-align: center;
      }
      .wrap { max-width: 720px; width: 100%; position: relative; z-index: 1; padding: 32px 0; }
      section { position: relative; z-index: 1; width: 100%; max-width: 960px; margin: 0 auto; }

      /* ---------- 3D reveal (drops in from above/front in Z, then settles) ---------- */
      .reveal { opacity: 0; transform: perspective(1100px) translate3d(0,-48px,140px) rotateX(9deg); transition: opacity .7s ease, transform .9s cubic-bezier(.32,1.4,.5,1); will-change: transform, opacity; }
      .reveal.in { opacity: 1; transform: perspective(1100px) translate3d(0,0,0) rotateX(0deg); }
      /* load cascade for the hero, top to bottom */
      .wrap > .reveal:nth-child(2) { transition-delay: .05s; }
      .wrap > .reveal:nth-child(3) { transition-delay: .1s; }
      .wrap > .reveal:nth-child(4) { transition-delay: .15s; }
      .wrap > .reveal:nth-child(5) { transition-delay: .2s; }
      .wrap > .reveal:nth-child(6) { transition-delay: .25s; }
      .wrap > .reveal:nth-child(7) { transition-delay: .3s; }
      /* stagger the feature tiles as the grid scrolls in */
      .features .feat:nth-child(2) { transition-delay: .08s; }
      .features .feat:nth-child(3) { transition-delay: .16s; }
      .features .feat:nth-child(4) { transition-delay: .24s; }

      /* ---------- living background ---------- */
      .home-bg { position: fixed; inset: -60px; overflow: hidden; pointer-events: none; z-index: 0; animation: panpane 90s ease-in-out infinite alternate; }
      @keyframes panpane { from { transform: translate(-30px, 20px); } to { transform: translate(30px, -20px); } }
      .rail { position: absolute; height: 2px; border-radius: 2px; opacity: 0; will-change: transform, opacity; }
      @keyframes travel { 0% { transform: rotate(-33deg) translateX(-48vw); opacity: 0; } 16% { opacity: 0.13; } 84% { opacity: 0.13; } 100% { transform: rotate(-33deg) translateX(48vw); opacity: 0; } }
      .rail.r1 { top: 20%; left: 10%; width: 120px; background: #77c4da; animation: travel 34s linear infinite; }
      .rail.r2 { top: 33%; left: 62%; width: 60px;  background: #f6a32b; animation: travel 46s linear infinite; animation-delay: -14s; }
      .rail.r3 { top: 47%; left: 32%; width: 170px; background: #e8ebf5; animation: travel 40s linear infinite; animation-delay: -22s; }
      .rail.r4 { top: 58%; left: 80%; width: 90px;  background: #e94779; animation: travel 52s linear infinite; animation-delay: -8s; }
      .rail.r5 { top: 71%; left: 46%; width: 140px; background: #6a5acd; animation: travel 38s linear infinite; animation-delay: -30s; }
      .rail.r6 { top: 84%; left: 74%; width: 50px;  background: #77c4da; animation: travel 44s linear infinite; animation-delay: -18s; }
      .rail.r7 { top: 12%; left: 24%; width: 100px; background: #e8ebf5; animation: travel 58s linear infinite; animation-delay: -40s; }
      .star { position: absolute; height: 2px; width: 150px; border-radius: 2px; background: linear-gradient(90deg, transparent, rgba(232,235,245,0.95)); opacity: 0; filter: drop-shadow(0 0 5px rgba(200,220,255,0.55)); will-change: transform, opacity; }
      @keyframes dart { 0% { transform: rotate(-33deg) translateX(-62vw); opacity: 0; } 1.5% { opacity: 0.9; } 9% { opacity: 0.9; } 11% { transform: rotate(-33deg) translateX(62vw); opacity: 0; } 100% { transform: rotate(-33deg) translateX(62vw); opacity: 0; } }
      .star.s1 { top: 28%; left: 18%; animation: dart 13s ease-in infinite; animation-delay: -4s; }
      .star.s2 { top: 58%; left: 52%; width: 110px; animation: dart 19s ease-in infinite; animation-delay: -11s; }
      .star.s3 { top: 14%; left: 62%; width: 180px; background: linear-gradient(90deg, transparent, rgba(119,196,218,0.9)); animation: dart 23s ease-in infinite; animation-delay: -17s; }
      .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.30; mix-blend-mode: screen; will-change: transform; }
      .blob.b1 { width: 460px; height: 460px; background: radial-gradient(circle at 30% 30%, #77c4da, transparent 70%); top: -120px; left: -80px; animation: drift1 22s ease-in-out infinite; }
      .blob.b2 { width: 520px; height: 520px; background: radial-gradient(circle at 40% 40%, #f6a32b, transparent 70%); bottom: -160px; right: -100px; animation: drift2 27s ease-in-out infinite; }
      .blob.b3 { width: 380px; height: 380px; background: radial-gradient(circle at 50% 50%, #e94779, transparent 70%); top: 40%; left: 55%; animation: drift3 19s ease-in-out infinite; opacity: 0.36; }
      @keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(80px,60px) scale(1.15); } 66% { transform: translate(-40px,30px) scale(0.95); } }
      @keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,-70px) scale(1.2); } }
      @keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 40% { transform: translate(60px,-50px) scale(1.1); } 75% { transform: translate(-70px,40px) scale(0.9); } }

      /* ---------- wordmark ---------- */
      .wordmark {
        font-size: clamp(46px, 11vw, 104px);
        font-weight: 900; letter-spacing: 0.14em; line-height: 1; margin-bottom: 4px;
        background: linear-gradient(100deg, #e8ebf5 0%, #77c4da 30%, #f6a32b 55%, #e94779 75%, #e8ebf5 100%);
        background-size: 250% auto; -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 7s linear infinite;
      }
      .wordmark .ai { -webkit-text-fill-color: #fff; color: #fff; text-shadow: 0 0 26px rgba(233,71,121,0.85), 0 0 10px rgba(246,163,43,0.7), 0 0 4px rgba(255,255,255,0.6); animation: aipulse 3.2s ease-in-out infinite; }
      @keyframes shimmer { to { background-position: 250% center; } }
      @keyframes aipulse { 0%,100% { text-shadow: 0 0 26px rgba(233,71,121,.85), 0 0 10px rgba(246,163,43,.7), 0 0 4px rgba(255,255,255,.6); } 50% { text-shadow: 0 0 38px rgba(233,71,121,1), 0 0 16px rgba(246,163,43,.9), 0 0 6px rgba(255,255,255,.85); } }
      .tag { color: var(--mut); letter-spacing: 0.2em; text-transform: uppercase; font-size: 12.5px; line-height: 1.7; margin: 26px auto 20px; max-width: 520px; }
      .lede { color: var(--mut); font-size: 16px; line-height: 1.75; max-width: 620px; margin: 0 auto 34px; }
      .lede strong { color: var(--ink); font-weight: 650; }

      /* ---------- buttons ---------- */
      .dl { display: inline-block; margin-top: 6px; padding: 16px 30px; font-size: 17px; font-weight: 800; color: #08111c; text-decoration: none; background: linear-gradient(180deg, #9fe0f0, #77c4da); border-radius: 14px; box-shadow: 0 10px 30px rgba(119,196,218,0.25); transition: transform .15s, box-shadow .15s; }
      .dl:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(119,196,218,0.35); }
      .dl.dl2 { background: rgba(255,255,255,0.06); color: var(--ink); box-shadow: none; border: 1px solid var(--line); }
      .dl.dl2:hover { border-color: var(--acc); }
      .sub { color: var(--mut); font-size: 13px; margin-top: 12px; }

      /* ---------- hero demo: words -> video ---------- */
      .demo { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; max-width: 760px; margin: 46px auto 8px; text-align: left; }
      .demo-chat { display: flex; flex-direction: column; gap: 10px; }
      .bubble { border-radius: 14px; padding: 11px 14px; font-size: 14px; line-height: 1.5; border: 1px solid var(--line); background: rgba(23,26,43,0.72); }
      /* 36s loop: ~5s chat lead-in, then the full 30s phone video plays 5s→35s */
      .bubble.user { align-self: flex-end; max-width: 92%; border-top-right-radius: 4px; opacity: 0; animation: b-user 36s ease-in-out infinite; }
      .bubble.agent { align-self: flex-start; color: var(--acc); display: flex; align-items: center; gap: 8px; border-top-left-radius: 4px; opacity: 0; animation: b-agent 36s ease-in-out infinite; }
      .bubble.done { align-self: flex-start; color: #34d399; border: 1px solid rgba(52,211,153,.4); background: rgba(52,211,153,.12); display: flex; align-items: center; gap: 7px; font-weight: 650; border-top-left-radius: 4px; opacity: 0; animation: b-done 36s ease-in-out infinite; }
      .spin { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(119,196,218,.3); border-top-color: var(--acc); display: inline-block; animation: spin .7s linear infinite; }
      @keyframes spin { to { transform: rotate(360deg); } }
      @keyframes b-user { 0%,4% { opacity: 0; transform: translateY(8px); } 6%,95% { opacity: 1; transform: none; } 100% { opacity: 0; } }
      /* the "working" bubble hands off to the green "Done" bubble at ~31s (86%) */
      @keyframes b-agent { 0%,9% { opacity: 0; transform: translateY(8px); } 11%,84% { opacity: 1; transform: none; } 87%,100% { opacity: 0; } }
      @keyframes b-done { 0%,85% { opacity: 0; transform: translateY(8px); } 88%,97% { opacity: 1; transform: none; } 100% { opacity: 0; } }

      /* the phone appears AFTER the chat (you ask -> it's building -> the video shows up) */
      .phone { position: relative; perspective: 900px; width: 222px; height: 395px; border-radius: 28px; padding: 7px; background: linear-gradient(160deg, #2a2f45, #171a2b); box-shadow: 0 20px 50px rgba(0,0,0,.5); flex: 0 0 auto; opacity: 0; animation: phoneIn 36s ease-in-out infinite; }
      @keyframes phoneIn { 0%,11% { opacity: 0; transform: translateY(28px) scale(.97); } 14%,97% { opacity: 1; transform: none; } 100% { opacity: 0; } }
      .screen { position: relative; width: 100%; height: 100%; border-radius: 22px; overflow: hidden; background: #05070d; }
      .vid-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #35507a 0%, #6a5acd 45%, #e94779 100%); }
      /* footage plays, BLURRED while "building", then sharpens as the phone lands */
      .vid-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: vblur 36s ease-in-out infinite; }
      @keyframes vblur { 0%,13% { filter: blur(13px) brightness(.5); } 17%,96% { filter: blur(0) brightness(1); } 100% { filter: blur(13px) brightness(.5); } }
      /* CapCut-style text that FLIES in step by step */
      /* text overlays live OUTSIDE the clipped screen, above the phone (z:6), so they can
         fly in from beyond the phone and land on it in 3D */
      .cc { position: absolute; left: 0; right: 0; padding: 0 18px; z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; opacity: 0; transform-style: preserve-3d; animation-duration: 36s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-fill-mode: both; }
      .cc span { display: inline-block; }
      .cc .l1, .cc .lbl { color: #fff; font-weight: 800; font-size: 19px; line-height: 1.12; text-shadow: 0 2px 7px rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.95); letter-spacing: -.01em; }
      .box-red { background: #ec2b56; color: #fff; font-weight: 800; font-size: 18px; padding: 3px 9px; border-radius: 7px; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
      .box-blue { background: #2f7bf6; color: #fff; font-weight: 800; font-size: 13px; line-height: 1.25; padding: 4px 9px; border-radius: 7px; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
      .item .num { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; text-shadow: 0 4px 12px rgba(0,0,0,.9); margin-bottom: 2px; }
      .item .nuance { color: #f1f3fa; font-weight: 700; font-size: 12px; text-shadow: 0 1px 5px rgba(0,0,0,.95); }
      /* the countdown reveals, staggered in time; each flies in from a different side */
      /* Video plays cycle 5s→35s. Captions sit in the LOWER third (off the face) and
         are paced to the footage: first at 5s (video 0s), last at 31s (video 26s). */
      .hook   { top: 55%; animation-name: popL; animation-delay: 5s; }
      .i5     { top: 58%; animation-name: popR; animation-delay: 9.33s; }
      .i4     { top: 58%; animation-name: popL; animation-delay: 13.67s; }
      .i3     { top: 58%; animation-name: popB; animation-delay: 18s; }
      .i2     { top: 58%; animation-name: popR; animation-delay: 22.33s; }
      .i1     { top: 58%; animation-name: popL; animation-delay: 26.67s; }
      .closer { top: 63%; animation-name: popB; animation-delay: 31s; }
      /* Each starts BIG and OUTSIDE the phone, flies in over the frame in 3D, overshoots,
         then settles and HOLDS so it's readable. Direction alternates (left / right / below). */
      @keyframes popL {
        0% { opacity: 0; transform: translate(-58px,-140px) scale(1.85) rotateX(20deg) rotateZ(-7deg); }
        2% { opacity: 1; }
        4% { opacity: 1; transform: translate(0,5px) scale(.96) rotateX(0) rotateZ(0); }
        5.5%,11% { opacity: 1; transform: translate(0,0) scale(1); }
        13%,100% { opacity: 0; transform: translate(0,-9px) scale(.93); }
      }
      @keyframes popR {
        0% { opacity: 0; transform: translate(58px,-150px) scale(1.85) rotateX(20deg) rotateZ(7deg); }
        2% { opacity: 1; }
        4% { opacity: 1; transform: translate(0,5px) scale(.96) rotateX(0) rotateZ(0); }
        5.5%,11% { opacity: 1; transform: translate(0,0) scale(1); }
        13%,100% { opacity: 0; transform: translate(0,-9px) scale(.93); }
      }
      @keyframes popB {
        0% { opacity: 0; transform: translate(0,150px) scale(1.95) rotateX(-22deg); }
        2% { opacity: 1; }
        4% { opacity: 1; transform: translate(0,-5px) scale(.97) rotateX(0); }
        5.5%,11% { opacity: 1; transform: translate(0,0) scale(1); }
        13%,100% { opacity: 0; transform: translate(0,-11px) scale(.92); }
      }

      /* ---------- manifesto band ---------- */
      .band { margin-top: 70px; padding: 34px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(23,26,43,0.4); }
      .band h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; line-height: 1.3; }
      .band h2 .hl { background: linear-gradient(100deg, var(--acc), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
      .band p { color: var(--mut); font-size: 15.5px; line-height: 1.7; max-width: 640px; margin: 14px auto 0; }

      /* ---------- built by a creator ---------- */
      .creator { margin-top: 26px; }
      .creator-inner { display: flex; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; background: linear-gradient(120deg, rgba(119,196,218,0.09), rgba(233,71,121,0.06)); text-align: left; }
      .creator .badge { flex: 0 0 auto; font-weight: 900; font-size: 20px; color: #08111c; background: linear-gradient(180deg, #9fe0f0, #77c4da); border-radius: 14px; padding: 12px 16px; text-align: center; line-height: 1.1; box-shadow: 0 8px 22px rgba(119,196,218,0.3); }
      .creator .badge small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin-top: 3px; }
      .creator p { color: var(--mut); font-size: 15px; line-height: 1.68; margin: 0; }
      .creator p b { color: var(--ink); font-weight: 650; }
      .creator p .handle { color: var(--acc); font-weight: 600; }
      @media (max-width: 560px) { .creator-inner { flex-direction: column; text-align: center; } }

      /* ---------- Muse: the named agent ---------- */
      .muse { margin-top: 70px; display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center; border: 1px solid var(--line); border-radius: 20px; padding: 32px; background: linear-gradient(120deg, rgba(233,71,121,0.09), rgba(119,196,218,0.06) 55%, rgba(246,163,43,0.06)); text-align: left; }
      .muse-orb-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
      .muse-orb { width: 132px; height: 132px; border-radius: 58% 42% 47% 53% / 55% 48% 52% 45%; position: relative; overflow: hidden; background: #10121e; animation: museMorph 8s ease-in-out infinite, museBreathe 3.6s ease-in-out infinite; }
      .muse-orb::before { content: ""; position: absolute; inset: -25%; background: radial-gradient(circle at 34% 28%, #ffc2d4 0%, #e94779 42%, rgba(150,26,74,0) 72%), radial-gradient(circle at 70% 74%, #ffd79a 0%, #f6a32b 38%, rgba(180,90,10,0) 70%), radial-gradient(circle at 50% 50%, #7a5cff 0%, #3a2a8c 55%, #141a33 100%); animation: museDrift 11s ease-in-out infinite; }
      .muse-orb::after { content: ""; position: absolute; inset: -30%; mix-blend-mode: screen; background: radial-gradient(circle at 68% 30%, rgba(119,196,218,.85) 0%, rgba(119,196,218,0) 58%), radial-gradient(circle at 26% 76%, rgba(246,163,43,.75) 0%, rgba(246,163,43,0) 55%); animation: museDrift2 14s ease-in-out infinite; }
      .muse-orb-label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--mut); font-weight: 700; }
      .muse-copy h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; line-height: 1.25; }
      .muse-copy h2 .hl { background: linear-gradient(100deg, var(--pink), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
      .muse-copy .kicker { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); font-weight: 700; margin-bottom: 8px; }
      .muse-copy > p { color: var(--mut); font-size: 15.5px; line-height: 1.7; margin: 12px 0 0; max-width: 620px; }
      .muse-copy > p b { color: var(--ink); font-weight: 650; }
      .muse-steps { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
      .muse-step { flex: 1; min-width: 148px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: rgba(12,15,25,0.5); }
      .muse-step .n { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--acc); }
      .muse-step b { display: block; font-size: 14px; margin: 5px 0 3px; color: var(--ink); font-weight: 700; }
      .muse-step span { font-size: 12.5px; color: var(--mut); line-height: 1.5; }
      @keyframes museMorph { 0%,100%{border-radius:58% 42% 47% 53% / 55% 48% 52% 45%;} 25%{border-radius:45% 55% 62% 38% / 48% 62% 38% 52%;} 50%{border-radius:52% 48% 40% 60% / 60% 42% 58% 40%;} 75%{border-radius:60% 40% 55% 45% / 42% 58% 44% 56%;} }
      @keyframes museBreathe { 0%,100%{box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 6px 24px rgba(0,0,0,.5), 0 0 30px 4px rgba(233,71,121,.45);} 50%{box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 6px 28px rgba(0,0,0,.55), 0 0 48px 10px rgba(246,163,43,.55);} }
      @keyframes museDrift { 0%,100%{transform:translate(-4%,-3%) scale(1.05) rotate(0);} 33%{transform:translate(5%,4%) scale(1.18) rotate(120deg);} 66%{transform:translate(-3%,6%) scale(1.1) rotate(240deg);} }
      @keyframes museDrift2 { 0%,100%{transform:translate(4%,5%) scale(1.12) rotate(0);} 50%{transform:translate(-6%,-4%) scale(1.28) rotate(-180deg);} }
      @media (max-width: 640px) { .muse { grid-template-columns: 1fr; text-align: center; justify-items: center; } .muse-copy { text-align: center; } .muse-steps { text-align: left; } }
      @media (prefers-reduced-motion: reduce) { .muse-orb, .muse-orb::before, .muse-orb::after { animation: none; } }

      /* ---------- feature grid ---------- */
      .features { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .feat { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: rgba(23,26,43,0.5); text-align: left; overflow: hidden; }
      .feat .stage { height: 132px; border-radius: 12px; background: #0c0f19; border: 1px solid var(--line); position: relative; overflow: hidden; margin-bottom: 14px; }
      .feat h3 { font-size: 16px; font-weight: 750; margin-bottom: 5px; }
      .feat p { color: var(--mut); font-size: 13.5px; line-height: 1.6; }
      .feat .kicker { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin-bottom: 8px; }

      /* agentic demo: beats growing on a timeline */
      .tl { position: absolute; inset: 0; padding: 16px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
      .tl .line { height: 9px; border-radius: 5px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
      .tl .fill { position: absolute; inset: 0; width: 0; border-radius: 5px; background: linear-gradient(90deg, var(--acc), var(--purple)); animation: fill 4.5s ease-in-out infinite; }
      .tl .l2 .fill { background: linear-gradient(90deg, var(--orange), var(--pink)); animation-delay: .5s; }
      .tl .l3 .fill { background: linear-gradient(90deg, var(--pink), var(--purple)); animation-delay: 1s; }
      @keyframes fill { 0% { width: 0; } 40% { width: var(--w, 80%); } 88% { width: var(--w, 80%); } 100% { width: 0; } }

      /* footage demo: clips, one gets picked */
      .clips { position: absolute; inset: 0; padding: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
      .clip { border-radius: 7px; background: linear-gradient(135deg, #2b3350, #1a2033); border: 1px solid var(--line); }
      .clip.c1 { background: linear-gradient(135deg, #35507a, #6a5acd); } .clip.c2 { background: linear-gradient(135deg, #7a4a35, #e94779); }
      .clip.c3 { background: linear-gradient(135deg, #2f6a55, #77c4da); } .clip.c4 { background: linear-gradient(135deg, #4a3f7a, #6a5acd); }
      .clip.pick { animation: pick 4s ease-in-out infinite; }
      @keyframes pick { 0%,30% { transform: scale(1); box-shadow: none; } 45%,75% { transform: scale(1.06); box-shadow: 0 0 0 2px var(--acc), 0 8px 18px rgba(0,0,0,.4); } 90%,100% { transform: scale(1); box-shadow: none; } }

      /* cutout demo: subject lifts off its background onto b-roll */
      .cut-stage { position: absolute; inset: 0; }
      .cut-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #2f6a55, #35507a); }
      .cut-sub-real { position: absolute; left: 50%; bottom: 0; height: 206px; transform: translateX(-50%); object-fit: contain; object-position: bottom; z-index: 3; animation: lift 4s ease-in-out infinite; }
      .feat-cut .stage { overflow: visible; }       /* beat '.feat .stage {overflow:hidden}' so the cut-out rises OUT of the box */
      .feat-cut { padding-top: 76px; }              /* headroom so the head pops well over the box top */
      .feat-cut .cut-bg { border-radius: 11px; overflow: hidden; }
      .feat-cut .cut-tag { z-index: 4; }
      @keyframes lift { 0%,100% { transform: translateX(-50%) translateY(6px); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); } 50% { transform: translateX(-50%) translateY(-6px); filter: drop-shadow(0 12px 16px rgba(0,0,0,.6)); } }
      .cut-tag { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 800; color: #08111c; background: var(--acc); padding: 2px 7px; border-radius: 20px; }

      /* brand demo: palette + a chip snapping through brand colours */
      .brand-stage { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
      .swatches { display: flex; gap: 8px; }
      .sw { width: 26px; height: 26px; border-radius: 7px; }
      .chip { font-weight: 800; font-size: 13px; padding: 5px 12px; border-radius: 8px; color: #fff; animation: brandcycle 5s steps(1) infinite; }
      @keyframes brandcycle { 0% { background: var(--acc); color:#08111c; } 25% { background: var(--pink); } 50% { background: var(--orange); color:#08111c; } 75% { background: var(--purple); } 100% { background: var(--acc); color:#08111c; } }

      /* capability pills (incl. on-device transcription) */
      .pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 780px; margin: 0 auto; }
      .pills span { font-size: 13px; color: var(--ink); border: 1px solid var(--line); background: rgba(23,26,43,0.5); border-radius: 20px; padding: 7px 13px; }
      .pills span b { color: var(--acc); }

      /* ---------- posts / carousel showcase ---------- */
      .posts { margin-top: 70px; text-align: center; }
      .posts .kick { display: inline-block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--pink); font-weight: 800; margin-bottom: 10px; }
      .posts h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; line-height: 1.3; }
      .posts h2 .hl { background: linear-gradient(100deg, var(--pink), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
      .posts > p { color: var(--mut); font-size: 15.5px; line-height: 1.7; max-width: 620px; margin: 14px auto 0; }
      .crow { max-width: 960px; margin: 6px auto 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .carousel { display: flex; gap: 16px; width: max-content; margin: 0 auto; padding: 22px 8px 24px; }
      .slide { flex: 0 0 auto; width: 168px; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--line); box-shadow: 0 16px 34px rgba(0,0,0,.55); display: grid; place-items: center; padding: 16px; background: #0b0d16; animation: cardSweep 8s ease-in-out infinite; }
      /* a "focus" sweeps left→right across the slides — like swiping through the carousel */
      .slide:nth-child(1) { animation-delay: 0s; } .slide:nth-child(2) { animation-delay: 2s; } .slide:nth-child(3) { animation-delay: 4s; } .slide:nth-child(4) { animation-delay: 6s; }
      @keyframes cardSweep {
        0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 16px 34px rgba(0,0,0,.55); }
        6%  { transform: translateY(-14px) scale(1.07); box-shadow: 0 24px 46px rgba(233,71,121,.3); }
        16% { transform: translateY(0) scale(1); box-shadow: 0 16px 34px rgba(0,0,0,.55); }
      }
      .slide .num { position: absolute; top: 6px; left: 9px; font-size: 10px; font-weight: 800; color: rgba(255,255,255,.7); z-index: 2; }
      .slide .badge { position: absolute; bottom: 6px; right: 7px; width: 16px; height: 16px; border-radius: 4px; background: rgba(6,8,16,.66); display: grid; place-items: center; font-size: 9px; color: #fff; z-index: 2; }
      .slide.grad { background: linear-gradient(160deg, #234e79, #77c4da); }
      .slide.blur::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, #16324f 0%, #0b0d16 100%); filter: blur(1px); }
      .scol { display: flex; flex-direction: column; gap: 11px; align-items: center; position: relative; z-index: 1; }
      .st { font-weight: 800; color: #fff; line-height: 1.16; text-shadow: 0 2px 6px rgba(0,0,0,.6); }
      .st.big { font-size: 15px; } .st.mid { font-size: 12.5px; } .st.sm { font-size: 10.5px; opacity: .95; }
      .st.boxw { background: #fff; color: #111318; border-radius: 8px; padding: 5px 8px; text-shadow: none; box-shadow: 0 4px 10px rgba(0,0,0,.35); }
      .st.boxr { background: #ec2b56; color: #fff; border-radius: 8px; padding: 5px 8px; text-shadow: none; box-shadow: 0 4px 10px rgba(0,0,0,.35); }
      .st.boxb { background: #3f7bd6; color: #fff; border-radius: 8px; padding: 5px 8px; text-shadow: none; }
      .pcap { max-width: 520px; margin: 6px auto 0; color: var(--mut); font-size: 13px; line-height: 1.6; text-align: left; border: 1px solid var(--line); background: rgba(23,26,43,.5); border-radius: 12px; padding: 11px 14px; }
      .pcap b { color: var(--ink); }
      /* team collaboration */
      .team-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 720px; margin: 24px auto 0; }
      .team-node { flex: 1; min-width: 200px; max-width: 280px; border: 1px solid var(--line); border-radius: 14px; background: rgba(23,26,43,.5); padding: 16px; text-align: left; }
      .team-head { font-weight: 800; font-size: 14px; margin-bottom: 12px; }
      .team-tl { display: flex; flex-direction: column; gap: 7px; }
      .team-tl span { height: 10px; border-radius: 5px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
      .team-tl span::after { content: ""; position: absolute; inset: 0; border-radius: 5px; }
      .team-tl span:nth-child(1)::after { width: 80%; background: linear-gradient(90deg, var(--acc), var(--purple)); }
      .team-tl span:nth-child(2)::after { width: 55%; background: linear-gradient(90deg, var(--orange), var(--pink)); }
      .team-tl span:nth-child(3)::after { width: 68%; background: linear-gradient(90deg, var(--pink), var(--purple)); }
      .team-foot { font-size: 11px; color: var(--mut); margin-top: 12px; }
      .team-sync { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--acc); font-size: 26px; line-height: 1; }
      .team-sync small { font-size: 10px; color: var(--mut); text-transform: uppercase; letter-spacing: .08em; }
      @media (max-width: 560px) { .team-sync { transform: rotate(90deg); } }
      /* review comments */
      .rev-wrap { display: flex; gap: 16px; align-items: flex-start; justify-content: center; flex-wrap: wrap; max-width: 720px; margin: 26px auto 0; }
      .rev-frame { position: relative; flex: 1; min-width: 240px; max-width: 320px; aspect-ratio: 16 / 10; border-radius: 14px; border: 1px solid var(--line); background: linear-gradient(135deg, #16324f, #0b0d16); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
      .rev-pin { position: absolute; left: 60%; top: 46%; }
      .rev-dot { width: 26px; height: 26px; border-radius: 50% 50% 50% 3px; background: var(--acc); color: #08111c; font-weight: 800; font-size: 12px; display: grid; place-items: center; border: 2px solid #0b0d16; box-shadow: 0 3px 10px rgba(0,0,0,.5); }
      .rev-bubble { position: absolute; bottom: 132%; left: 50%; transform: translateX(-50%); width: 156px; background: rgba(15,17,26,.97); border: 1px solid var(--acc); border-radius: 10px; padding: 8px 10px; font-size: 12px; line-height: 1.4; text-align: left; box-shadow: 0 8px 22px rgba(0,0,0,.5); }
      .rev-bubble .who { display: flex; align-items: center; gap: 6px; color: var(--mut); font-size: 10.5px; margin-bottom: 4px; }
      .rev-list { flex: 1; min-width: 220px; max-width: 320px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
      .rev-item { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(23,26,43,.5); padding: 9px 11px; }
      .rev-item.done { opacity: .58; }
      .rev-av { width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; }
      .rev-tc { font-size: 11px; font-weight: 800; color: var(--acc); font-variant-numeric: tabular-nums; }
      .rev-tx { font-size: 12.5px; color: var(--ink); flex: 1; }
      .rev-item.done .rev-tx { text-decoration: line-through; }
      .rev-ck { color: #34d399; font-weight: 800; }
      /* content calendar board */
      .calwrap { max-width: 940px; margin: 22px auto 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .calboard { display: flex; gap: 12px; width: max-content; margin: 0 auto; padding: 8px 8px 12px; }
      .calcol { flex: 0 0 auto; width: 158px; background: rgba(23,26,43,.5); border: 1px solid var(--line); border-radius: 13px; padding: 9px; text-align: left; }
      .calcol .ch { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--mut); margin-bottom: 9px; }
      .calcol .ch .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
      .calcard { background: #0b0d16; border: 1px solid var(--line); border-radius: 10px; padding: 7px; margin-bottom: 8px; box-shadow: 0 6px 16px rgba(0,0,0,.4); }
      .calcard:last-child { margin-bottom: 0; }
      .calcard .thumb { height: 34px; border-radius: 6px; background: linear-gradient(135deg, #16324f, #0b0d16); margin-bottom: 6px; display: grid; place-items: center; font-size: 13px; }
      .calcard .ct { font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.25; }
      .calcard .cm { font-size: 9.5px; color: var(--mut); margin-top: 4px; display: flex; gap: 6px; align-items: center; }
      .calcard .cm .sh { color: var(--acc); font-weight: 800; }
      .calcard .cm .fb { color: var(--pink); font-weight: 800; }
      /* see it in action */
      .watch { margin-top: 46px; text-align: center; }
      .watch h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
      .watch video { width: 100%; max-width: 840px; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.45); display: block; margin: 0 auto; background: #05070d; }
      /* refreshingly minimal / no upsell */
      .minimal { margin-top: 34px; }
      .minimal h3 { text-align: center; font-size: 20px; font-weight: 800; margin-bottom: 16px; }
      .mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .mgrid > div { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: rgba(23,26,43,0.5); font-size: 14px; line-height: 1.6; color: var(--mut); text-align: left; }
      .mgrid > div b { color: var(--ink); font-weight: 750; display: block; margin-bottom: 4px; }
      @media (max-width: 620px) { .mgrid { grid-template-columns: 1fr; } }

      /* ---------- setup note / positioning ---------- */
      .note { margin-top: 30px; border-left: 3px solid var(--acc); background: rgba(119,196,218,0.06); border-radius: 12px; padding: 22px 24px; text-align: left; }
      .note h3 { font-size: 18px; font-weight: 750; margin-bottom: 8px; }
      .note p { color: var(--mut); font-size: 15px; line-height: 1.7; }
      .note p b { color: var(--ink); font-weight: 650; }
      .vs { margin-top: 22px; text-align: center; }
      .vs p { font-size: clamp(17px, 3.2vw, 22px); font-weight: 700; line-height: 1.5; max-width: 640px; margin: 0 auto; }
      .vs p .dim { color: var(--mut); font-weight: 500; }

      /* ---------- pricing ---------- */
      .pricing { margin-top: 70px; text-align: center; }
      .pricing .kick { display: inline-block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--acc); font-weight: 800; margin-bottom: 10px; }
      .pricing h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; line-height: 1.3; }
      .pricing h2 .hl { background: linear-gradient(100deg, var(--acc), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
      .pricing > p { color: var(--mut); font-size: 15.5px; line-height: 1.7; max-width: 620px; margin: 14px auto 0; }
      .tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 30px auto 0; text-align: left; }
      .tier { border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; background: rgba(23,26,43,0.5); display: flex; flex-direction: column; position: relative; }
      .tier.pop { border-color: rgba(119,196,218,0.55); background: linear-gradient(160deg, rgba(119,196,218,0.10), rgba(23,26,43,0.5)); }
      .tier .badge-pop { position: absolute; top: -11px; left: 20px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: linear-gradient(180deg, #9fe0f0, #77c4da); color: #08131a; border-radius: 20px; padding: 3px 10px; }
      .tier .tname { font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--acc); }
      .tier .price { display: flex; align-items: baseline; gap: 5px; margin: 8px 0 1px; }
      .tier .price .amt { font-size: 34px; font-weight: 900; letter-spacing: -.02em; }
      .tier .price .per { color: var(--mut); font-size: 13px; }
      .tier .yr { color: var(--mut); font-size: 12.5px; min-height: 17px; }
      .tier .credits { font-size: 12.5px; font-weight: 800; color: var(--acc); margin-top: 8px; }
      .tier .who { color: var(--mut); font-size: 13px; line-height: 1.55; margin: 9px 0 0; }
      .tier .sep { height: 1px; background: var(--line); margin: 14px 0; }
      .tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
      .tier li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--ink); line-height: 1.45; }
      .tier li::before { content: ""; flex: 0 0 auto; width: 15px; height: 15px; margin-top: 1px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--acc); background: rgba(119,196,218,0.2); }
      .pricing .note-line { color: var(--mut); font-size: 13px; line-height: 1.6; margin: 22px auto 0; max-width: 640px; }
      @media (max-width: 720px) { .tiers { grid-template-columns: 1fr; max-width: 360px; } }

      /* ---------- faq ---------- */
      .faq { margin-top: 60px; text-align: left; max-width: 720px; }
      .faq h2 { text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 20px; }
      .faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px; background: rgba(23,26,43,0.5); }
      .faq summary { cursor: pointer; font-weight: 650; font-size: 15px; padding: 13px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
      .faq summary::-webkit-details-marker { display: none; }
      .faq summary::after { content: "+"; color: var(--acc); font-size: 20px; font-weight: 400; }
      .faq details[open] summary::after { content: "−"; }
      .faq details p { color: var(--mut); font-size: 14px; line-height: 1.7; padding: 0 0 15px; }

      /* ---------- install / community ---------- */
      .card { margin-top: 44px; text-align: left; border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; background: rgba(23,26,43,0.5); max-width: 620px; margin-left: auto; margin-right: auto; }
      .card h2 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--mut); margin-bottom: 12px; }
      .card ol { margin: 0 0 0 18px; color: var(--ink); font-size: 14px; line-height: 1.7; }
      .card code { background: rgba(255,255,255,.06); padding: 1px 6px; border-radius: 5px; font-size: 13px; }
      .tip { display: inline-block; margin-top: 30px; padding: 9px 18px; font-size: 13px; font-weight: 700; text-decoration: none; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,0.04); transition: border-color .15s, background .15s; }
      .tip:hover { border-color: var(--acc); background: rgba(119,196,218,0.08); }
      .foot { color: var(--mut); font-size: 12px; margin-top: 20px; }
      a.q { color: var(--acc); text-decoration: none; }
      .cta2 { margin-top: 54px; }

      @media (prefers-reduced-motion: reduce) {
        * { animation: none !important; }
        .bubble, .vid-bg, .vid-real, .tl .fill { opacity: 1 !important; }
        .vid-real { filter: none !important; }
        .cc.hook { opacity: 1 !important; } .cc.item, .cc.closer { opacity: 0 !important; } .phone { opacity: 1 !important; }
        .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
        .tl .fill { width: 78% !important; }
        .rail, .star { opacity: 0.1; }
      }
      @media (max-width: 720px) {
        .demo { grid-template-columns: 1fr; justify-items: center; text-align: center; }
        .demo-chat { width: 100%; max-width: 340px; }
        .features { grid-template-columns: 1fr; }
      }
      @media (max-width: 560px) {
        body { padding: 22px 16px 60px; }
        .wordmark { font-size: clamp(42px, 15vw, 62px); letter-spacing: 0.1em; }
        .tag { font-size: 11px; letter-spacing: 0.14em; }
        .lede { font-size: 14.5px; }
        .dl { width: 100%; padding: 15px 20px; font-size: 16px; margin-top: 0; }
        .dl-row { flex-direction: column; }
        .card { padding: 18px 18px; }
      }

      /* ============ multi-page additions ============ */
      /* sticky top nav */
      .nav { position: sticky; top: 10px; z-index: 30; width: 100%; max-width: 960px; margin: 0 auto 6px; display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: rgba(14,15,22,0.74); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 14px; }
      .nav-logo { font-weight: 900; letter-spacing: 0.11em; font-size: 19px; text-decoration: none; color: var(--ink); }
      .nav-logo .ai { color: #fff; }
      .nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
      .nav-links a { color: var(--mut); text-decoration: none; font-size: 14px; font-weight: 650; padding: 8px 12px; border-radius: 9px; transition: color .15s, background .15s; }
      .nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(255,255,255,0.05); }
      .nav-dl { color: #08111c; background: linear-gradient(180deg, #9fe0f0, #77c4da); font-weight: 800; font-size: 14px; text-decoration: none; padding: 9px 15px; border-radius: 10px; white-space: nowrap; transition: transform .15s; }
      .nav-dl:hover { transform: translateY(-1px); }
      @media (max-width: 560px) { .nav { flex-wrap: wrap; gap: 8px; padding: 9px 12px; } .nav-links { gap: 0; margin-left: auto; } .nav-links a { padding: 7px 8px; font-size: 13px; } .nav-dl { font-size: 13px; padding: 8px 12px; } }

      /* page header (features / pricing) */
      .page-head { text-align: center; margin-top: 40px; }
      .page-head .kick { display: inline-block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--acc); font-weight: 800; margin-bottom: 10px; }
      .page-head h1 { font-size: clamp(30px, 5.4vw, 48px); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; }
      .page-head h1 .hl { background: linear-gradient(100deg, var(--acc), var(--pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
      .page-head > p { color: var(--mut); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 16px auto 0; }

      /* clear features grid */
      .group-title { text-align: center; font-size: clamp(19px,3.2vw,26px); font-weight: 850; margin: 58px 0 0; }
      .group-sub { text-align: center; color: var(--mut); max-width: 600px; margin: 9px auto 0; font-size: 14.5px; line-height: 1.6; }
      .fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; text-align: left; }
      .fcard { border: 1px solid var(--line); border-radius: 15px; padding: 20px; background: rgba(23,26,43,0.5); }
      .fcard .ic { font-size: 24px; }
      .fcard h3 { font-size: 15.5px; font-weight: 800; margin-top: 10px; }
      .fcard p { color: var(--mut); font-size: 13.6px; line-height: 1.6; margin-top: 6px; }
      .fcard .soon { display: inline-block; margin-top: 9px; font-size: 10px; font-weight: 800; letter-spacing: .05em; color: var(--purple); border: 1px solid rgba(106,90,205,.45); border-radius: 999px; padding: 2px 8px; }
      @media (max-width: 860px) { .fgrid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 540px) { .fgrid { grid-template-columns: 1fr; } }
      .seeall { display: inline-block; margin-top: 22px; color: var(--acc); font-weight: 750; text-decoration: none; font-size: 15px; }
      .seeall:hover { text-decoration: underline; }

      /* roadmap */
      .roadmap { max-width: 820px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
      .rlane { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: rgba(23,26,43,0.5); }
      .rlane .dot { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; background: rgba(12,15,25,0.6); border: 1px solid var(--line); }
      .rlane h4 { font-size: 15.5px; font-weight: 850; }
      .rlane p { color: var(--mut); font-size: 13.8px; margin-top: 3px; line-height: 1.55; }
      .rlane .tag { margin-left: auto; flex: 0 0 auto; font-size: 10px; font-weight: 800; letter-spacing: .05em; border-radius: 999px; padding: 3px 9px; white-space: nowrap; align-self: center; }
      .rlane .tag.next { color: var(--orange); border: 1px solid rgba(246,163,43,.45); }
      .rlane .tag.prog { color: var(--acc); border: 1px solid rgba(119,196,218,.45); }
      .rlane .tag.plan { color: var(--purple); border: 1px solid rgba(106,90,205,.45); }

      /* shared footer */
      .site-foot { border-top: 1px solid var(--line); margin: 70px auto 0; max-width: 720px; padding-top: 40px; text-align: center; }

      /* wide content column for inner pages (matches section width) */
      .page { max-width: 960px; margin: 0 auto; width: 100%; }
