    :root {
      --bg: oklch(99.2% 0.004 255); --surface: oklch(96.5% 0.008 255);
      --border: oklch(90% 0.012 255); --ink: oklch(13% 0.025 255);
      --ink-muted: oklch(46% 0.016 255); --accent: oklch(52% 0.22 255);
      --accent-mid: oklch(58% 0.22 255); --accent-bg: oklch(94.5% 0.05 255);
      --green: oklch(55% 0.18 145); --green-bg: oklch(94% 0.06 145);
      --display: 'Bricolage Grotesque', sans-serif; --body: 'DM Sans', sans-serif;
      --nav-h: 60px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; cursor: pointer; }

    /* Accessibility: skip link + visible keyboard focus (mirrors the homepage) */
    .skip-link {
      position: absolute; left: 16px; top: -48px; z-index: 200;
      background: var(--ink); color: var(--bg);
      padding: 10px 18px; border-radius: 0 0 8px 8px;
      font-size: 14px; font-weight: 600;
      transition: top .15s;
    }
    .skip-link:focus { top: 0; }
    :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
    .form-error { margin-top: 10px; font-size: 13px; font-weight: 500; color: oklch(55% 0.19 25); line-height: 1.5; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

    /* Nav */
    nav { position: sticky; top: 0; z-index: 100; height: var(--nav-h); background: color-mix(in oklch, var(--bg) 88%, transparent); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1080px; margin: 0 auto; padding: 0 32px; }
    .logo { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; cursor: pointer; }
    /* Brand mark images — flat lockup (no shadow) in both nav and footer; footer is larger */
    .logo-img { height: 28px; width: auto; display: block; }
    .footer-logo-img { height: 40px; width: auto; display: block; }
    .nav-back { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-muted); transition: color .15s; }
    .nav-back:hover { color: var(--ink); }
    .nav-back svg { width: 16px; height: 16px; }
    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; font-size: 14px; font-weight: 500; color: var(--ink-muted); }
    .nav-links a:hover { color: var(--ink); }

    /* Products hover dropdown — markup duplicated in every page's nav, keep in sync */
    .nav-item-drop { position: relative; }
    .nav-item-drop > a::after { content: '▾'; font-size: 9px; margin-left: 5px; opacity: .55; }
    .nav-drop { position: absolute; top: calc(100% + 10px); left: 50%; min-width: 280px; padding: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 14px 44px oklch(0% 0 0 / .13); opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px); transition: opacity .15s, transform .15s, visibility .15s; z-index: 110; }
    .nav-drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
    .nav-item-drop:hover .nav-drop, .nav-item-drop:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .nav-drop a { display: block; padding: 9px 12px; border-radius: 8px; }
    .nav-drop a:hover { background: var(--surface); }
    .nav-drop strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
    .nav-drop span { display: block; font-size: 12px; color: var(--ink-muted); margin-top: 2px; font-weight: 400; }
    .nav-drop-foot { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
    .nav-drop-foot a { font-size: 12.5px; color: var(--accent); font-weight: 600; }
    .nav-cta { font-size: 14px; padding: 9px 20px; }

    /* Mobile navigation (hamburger + dropdown panel) — mirrors the homepage */
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 4px; color: var(--ink); }
    .nav-toggle svg { width: 22px; height: 22px; display: block; }
    .nav-toggle .icon-close { display: none; }
    .nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
    .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
    .mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99; background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: 0 16px 40px oklch(0% 0 0 / .08); padding: 8px 20px 20px; }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; }
    .mobile-menu a { display: block; padding: 14px 4px; font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); }
    .mobile-menu li:last-child a { border-bottom: none; }
    @media (max-width: 600px) { .nav-links { display: none; } .nav-toggle { display: block; } }

    /* Layout */
    .wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
    .page { padding: 56px 0 96px; }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--body); font-size: 15px; font-weight: 600; padding: 12px 24px; border-radius: 9px; cursor: pointer; border: none; transition: all .15s; }
    .btn-primary { background: var(--ink); color: var(--bg); }
    .btn-primary:hover { opacity: .85; }
    .btn-accent { background: var(--accent); color: #fff; }
    .btn-accent:hover { background: var(--accent-mid); }
    .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
    .btn-outline:hover { border-color: var(--ink-muted); }
    .btn-green { background: var(--green); color: #fff; }
    .btn-green:hover { opacity: .88; }
    .btn-full { width: 100%; justify-content: center; }
    .btn-lg { font-size: 16px; padding: 14px 28px; border-radius: 10px; }

    /* Breadcrumb */
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-muted); margin-bottom: 40px; }
    .breadcrumb a { color: var(--ink-muted); cursor: pointer; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb svg { width: 14px; height: 14px; }

    /* Badges */
    .tier-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
    .badge-free { background: var(--green-bg); color: var(--green); }
    .badge-paid { background: var(--accent-bg); color: var(--accent); }
    .badge-beta { background: var(--ink); color: #fff; }
    .badge-soon { background: var(--surface); color: var(--ink-muted); }

    /* Product layout */
    .product-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
    .product-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
    .product-title { font-family: var(--display); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.07; text-wrap: balance; }
    .product-subtitle { font-size: 16px; color: var(--ink-muted); margin-top: 14px; line-height: 1.65; text-wrap: pretty; max-width: 520px; }

    /* Purchase card */
    .purchase-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 28px; background: var(--bg); box-shadow: 0 2px 20px oklch(0% 0 0 / .05); }
    .price-amount { font-family: var(--display); font-size: 40px; font-weight: 800; letter-spacing: -.03em; }
    .price-note { font-size: 13px; color: var(--ink-muted); }
    .price-sub { font-size: 13px; color: var(--ink-muted); margin: 6px 0 24px; }
    .divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
    .purchase-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .purchase-perk { display: flex; align-items: center; gap: 10px; font-size: 13px; }
    .perk-check { width: 16px; height: 16px; flex-shrink: 0; }
    .perk-check .cc { fill: var(--accent-bg); }
    .perk-check .ck { stroke: var(--accent); stroke-width: 1.5; fill: none; }

    /* Email form */
    .email-form { display: flex; flex-direction: column; gap: 10px; }
    .email-input { width: 100%; padding: 12px 16px; border-radius: 9px; border: 1.5px solid var(--border); font-family: var(--body); font-size: 14px; color: var(--ink); background: var(--surface); outline: none; transition: border-color .15s; }
    .email-input:focus { border-color: var(--accent); background: var(--bg); }
    .email-input::placeholder { color: var(--ink-muted); }
    .email-note { font-size: 12px; color: var(--ink-muted); text-align: center; }
    .success-box { display: none; text-align: center; padding: 20px; background: var(--green-bg); border-radius: 10px; border: 1px solid oklch(55% 0.18 145 / .25); }
    .success-box.show { display: block; }
    .success-title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--green); margin-top: 8px; }
    .success-sub { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

    /* Free-download block — the #try-free landing target for every "Try it Free" CTA */
    .free-dl { background: var(--green-bg); border: 1.5px solid oklch(55% 0.18 145 / .3); border-radius: 12px; padding: 18px 16px 16px; scroll-margin-top: calc(var(--nav-h) + 24px); }
    .free-dl-title { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
    .free-dl-sub { font-size: 13px; color: var(--ink-muted); line-height: 1.55; margin: 4px 0 14px; }
    .free-dl .tier-badge { background: var(--bg); }
    .free-dl .email-input { background: var(--bg); }
    .free-dl .email-input:focus { border-color: var(--green); }
    .free-dl .success-box { background: var(--bg); }
    .free-dl:target { animation: free-dl-flash 1.8s ease-out 1; }
    @keyframes free-dl-flash { 0%, 40% { box-shadow: 0 0 0 4px oklch(55% 0.18 145 / .35); } 100% { box-shadow: 0 0 0 4px oklch(55% 0.18 145 / 0); } }

    /* Guarantee */
    .guarantee { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); margin-top: 14px; }
    .guarantee svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
    .guarantee strong { font-size: 13px; font-weight: 600; display: block; }
    .guarantee span { font-size: 12px; color: var(--ink-muted); }

    /* Trust row */
    .trust-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 12px; color: var(--ink-muted); }
    .trust-row svg { width: 13px; height: 13px; }

    /* Includes */
    .includes { margin-top: 36px; }
    .includes-title { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 18px; }
    .includes-list { display: flex; flex-direction: column; gap: 14px; }
    .includes-item { display: flex; align-items: flex-start; gap: 14px; }
    .inc-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .inc-icon svg { width: 15px; height: 15px; color: var(--accent); }
    .inc-text strong { font-size: 14px; font-weight: 600; display: block; }
    .inc-text span { font-size: 13px; color: var(--ink-muted); }

    /* CSS Swatches */
    .swatch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
    .swatch-grid.cols3 { grid-template-columns: repeat(3,1fr); }
    .swatch { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
    .swatch-bar { height: 30px; display: flex; align-items: center; padding: 0 12px; }
    .swatch-bar span { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .swatch-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
    .sw-row { display: flex; gap: 5px; }
    .sw-pill { height: 18px; border-radius: 4px; flex: 1; }
    .sw-bar { height: 5px; border-radius: 2px; margin-top: 3px; }

    /* Panel preview */
    .panel { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); margin-top: 36px; }
    .panel-top { background: var(--ink); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; }
    .panel-top-label { color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .65; }
    .panel-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(65% 0.2 145); }
    .panel-body { padding: 18px; display: flex; flex-direction: column; gap: 13px; }
    .panel-label { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }
    .panel-row { display: flex; gap: 8px; }
    .panel-btn { flex: 1; border-radius: 7px; padding: 10px 6px; background: var(--bg); border: 1px solid var(--border); font-size: 10px; font-weight: 600; color: var(--ink-muted); text-align: center; letter-spacing: .04em; text-transform: uppercase; }
    .panel-btn.on { background: var(--accent-bg); border-color: var(--accent); color: var(--accent); }
    .panel-btn.dk { background: var(--ink); border-color: var(--ink); color: #fff; }
    .panel-slider { height: 4px; border-radius: 2px; background: var(--border); position: relative; margin-top: 7px; }
    .panel-fill { height: 100%; border-radius: 2px; background: var(--accent); }
    .panel-thumb { position: absolute; top: -4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg); box-shadow: 0 1px 4px rgba(0,0,0,.15); transform: translateX(-50%); }

    /* Interactive Figma demo poster (below the panel mockups): a preview
       image of the actual design that opens the prototype full screen in a
       new tab. Figma's embed player letterboxes badly, so we deliberately
       do NOT iframe it — don't switch this back to an embed. */
    .demo-embed { display: block; position: relative; margin-top: 14px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--ink); aspect-ratio: 1080 / 700; }
    .demo-embed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .demo-embed-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 8px; color: #fff; padding: 20px 20px 18px; text-align: center; background: linear-gradient(to top, oklch(13% 0.025 255 / .82), oklch(13% 0.025 255 / .3) 42%, oklch(13% 0.025 255 / 0) 68%); }
    .demo-embed:hover .demo-play { transform: scale(1.1); }
    .demo-play { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .15s; box-shadow: 0 4px 16px oklch(0% 0 0 / .3); }
    .demo-play svg { width: 16px; height: 16px; margin-left: 2px; }
    .demo-embed-title { font-size: 15px; font-weight: 600; text-shadow: 0 1px 6px oklch(0% 0 0 / .5); }
    .demo-embed-sub { font-size: 12px; opacity: .8; text-shadow: 0 1px 6px oklch(0% 0 0 / .5); }

    /* Value-prop stat band (Basic product page) */
    .stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
    .stat { padding: 16px 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
    .stat-num { font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); white-space: nowrap; }
    .stat-label { font-size: 12.5px; color: var(--ink-muted); line-height: 1.45; margin-top: 5px; }

    /* Feature grid (pro) */
    .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
    .feat-card { padding: 18px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
    .feat-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
    .feat-icon svg { width: 16px; height: 16px; color: var(--accent); }
    .feat-card h3 { font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 5px; }
    .feat-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

    /* Value stack */
    .value-stack { background: var(--surface); border-radius: 12px; padding: 18px; margin: 20px 0; border: 1px solid var(--border); }
    .vs-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
    .vs-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
    .vs-row:last-child { border-bottom: none; }
    .vs-val { font-weight: 600; color: var(--accent); }

    /* Footer */
    footer { padding: 36px 0; border-top: 1px solid var(--border); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 13px; color: var(--ink-muted); cursor: pointer; }
    .footer-links a:hover { color: var(--ink); }
    .footer-copy { font-size: 12px; color: var(--ink-muted); }

    /* Pages */
    .pg { display: none; }
    .pg.active { display: block; }

    /* Store index */
    .store-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
    .store-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 22px; display: flex; flex-direction: column; background: var(--bg); transition: border-color .15s, box-shadow .15s; cursor: pointer; }
    .store-card:hover { border-color: var(--accent); box-shadow: 0 4px 24px oklch(52% .22 255 / .08); }
    .store-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
    .store-card-name { font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
    .store-card-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; flex: 1; margin-bottom: 20px; }
    .store-card.featured .store-card-desc { color: oklch(68% 0.01 255); }
    .store-card-price { font-family: var(--display); font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
    .store-card .btn { width: 100%; justify-content: center; }

    .coming-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: oklch(75% 0.01 255); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
    .coming-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(65% 0.18 55); }

    .beta-banner { background: var(--ink); color: #fff; padding: 10px 0; text-align: center; font-size: 13px; font-weight: 500; }
    .beta-banner strong { color: oklch(72% 0.18 145); }

    /* ── Store families + responsive (added) ── */
    .store-family { margin-bottom: 16px; }
    .store-family.spaced { margin-top: 52px; }
    .store-family .label { display:block; }
    .store-family h2 { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.025em; margin-top: 8px; }
    .store-family p { font-size: 14px; color: var(--ink-muted); margin-top: 6px; max-width: 620px; line-height: 1.6; }
    .store-grid.s3 { grid-template-columns: repeat(3, 1fr); }
    .store-grid.s2 { grid-template-columns: repeat(2, 1fr); }
    @media (max-width: 920px) {
      .store-grid, .store-grid.s3, .store-grid.s2 { grid-template-columns: repeat(2, 1fr); }
      .product-grid { grid-template-columns: 1fr; gap: 36px; }
      .product-sticky { position: static; }
    }
    @media (max-width: 600px) {
      .wrap { padding: 0 20px; }
      .nav-inner { padding: 0 20px; }
      .store-grid, .store-grid.s3, .store-grid.s2 { grid-template-columns: 1fr; }
      .feat-grid { grid-template-columns: 1fr; }
      .stat-band { grid-template-columns: 1fr; }
      .swatch-grid, .swatch-grid.cols3 { grid-template-columns: 1fr 1fr; }
      .page { padding: 40px 0 64px; }
    }    /* ── Redesign: UCI Kit feature cards ── */
    .kit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .kit-card { position: relative; border: 1.5px solid var(--border); border-radius: 16px; padding: 30px 30px 28px; background: var(--bg); display: flex; flex-direction: column; overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s; }
    .kit-card:hover { border-color: var(--accent); box-shadow: 0 8px 30px oklch(52% .22 255 / .12); transform: translateY(-2px); }
    .kit-card.featured:hover { box-shadow: 0 12px 40px oklch(52% .22 255 / .3); }
    /* Whole card is clickable via an invisible cover link; the real CTA sits above it */
    .kit-card .card-cover { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
    .kit-card .btn { position: relative; z-index: 2; }
    .kit-shot { position: relative; margin: -30px -30px 22px; height: 196px; background: var(--surface); border-bottom: 1.5px solid var(--border); }
    .kit-card.featured .kit-shot { border-bottom-color: oklch(100% 0 0 / .12); }
    .kit-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .kit-shot-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background-color: oklch(96.5% 0.008 255); background-image: repeating-linear-gradient(45deg, oklch(0% 0 0 / .04) 0 10px, transparent 10px 20px); }
    .kit-shot-ph span { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: .03em; color: var(--ink-muted); background: var(--bg); padding: 5px 11px; border-radius: 6px; border: 1px solid var(--border); }
    .kit-card.featured { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 4px 30px oklch(13% 0.025 255 / .18); }
    .kit-card-name { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.025em; margin-top: 14px; }
    .kit-card-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.55; margin-top: 8px; }
    .kit-card.featured .kit-card-desc { color: oklch(72% 0.01 255); }
    .kit-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 18px 0 4px; font-family: var(--display); }
    .kit-price-was { font-size: 17px; font-weight: 600; text-decoration: line-through; opacity: .5; }
    .kit-price-now { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
    .kit-price-soon { font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: var(--ink-muted); opacity: .6; }
    .kit-fine { font-size: 12px; opacity: .72; margin-bottom: 14px; }
    .kit-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 6px 0 22px; flex: 1; }
    .kit-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; }
    .kit-feats .perk-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
    .kit-card.featured .perk-check .cc { fill: oklch(100% 0 0 / .16); }
    .kit-card.featured .perk-check .ck { stroke: #fff; }
    .kit-card .btn { width: 100%; justify-content: center; margin-top: auto; }
    .kit-card .btn:hover { opacity: .9; }

    /* ── Redesign: browse toolbar ── */
    .browse-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
    .search-box { position: relative; flex: 1; min-width: 200px; max-width: 320px; }
    .search-box svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--ink-muted); pointer-events: none; }
    .search-input { width: 100%; padding: 10px 14px 10px 36px; border-radius: 9px; border: 1.5px solid var(--border); background: var(--surface); font-family: var(--body); font-size: 14px; color: var(--ink); outline: none; transition: border-color .15s, background .15s; }
    .search-input:focus { border-color: var(--accent); background: var(--bg); }
    .search-input::placeholder { color: var(--ink-muted); }
    .chips { display: flex; gap: 8px; flex-wrap: wrap; }
    .chip { font-family: var(--body); font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--bg); color: var(--ink-muted); cursor: pointer; transition: all .15s; }
    .chip:hover { border-color: var(--ink-muted); color: var(--ink); }
    .chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
    .chip-count { opacity: .5; margin-left: 5px; font-weight: 500; }
    .chip.active .chip-count { opacity: .65; }

    /* ── Redesign: pack cards ── */
    .packs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 14px; }
    .pack-card { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--bg); display: flex; flex-direction: column; cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
    .pack-card:hover { border-color: var(--accent); box-shadow: 0 6px 26px oklch(52% .22 255 / .10); transform: translateY(-2px); }
    .pack-preview { height: 130px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: var(--surface); border-bottom: 1.5px solid var(--border); }
    .pack-mini { width: 62px; border-radius: 7px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.14); }
    .pack-info { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; }
    .pack-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
    .pack-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; background: var(--surface); color: var(--ink-muted); }
    .pack-tag.free { background: var(--green-bg); color: var(--green); }
    .pack-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
    .pack-name { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
    .pack-price { font-family: var(--display); font-size: 16px; font-weight: 700; white-space: nowrap; }
    .pack-desc { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; margin: 7px 0 0; flex: 1; }
    .pack-cta { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); }
    .pack-more { border: 1.5px dashed var(--border); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; gap: 6px; min-height: 130px; color: var(--ink-muted); }
    .pack-more svg { opacity: .6; }
    .pack-more strong { font-family: var(--display); font-size: 15px; color: var(--ink); }
    .pack-more span { font-size: 12px; max-width: 160px; line-height: 1.45; }
    .show-more-wrap { text-align: center; margin-top: 26px; }
    .show-more-wrap .btn { padding: 11px 28px; }
    .browse-empty { grid-column: 1 / -1; text-align: center; padding: 52px 20px; color: var(--ink-muted); }
    .browse-empty strong { display: block; font-family: var(--display); font-size: 18px; color: var(--ink); margin-bottom: 6px; }

    /* ── Redesign: subtle Style Packs entry point on home ── */
    .styles-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding: 18px 24px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; transition: border-color .15s; text-decoration: none; }
    .styles-link:hover { border-color: var(--ink-muted); }
    .styles-link strong { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--ink); display: block; }
    .styles-link .sub { font-size: 13px; color: var(--ink-muted); }
    .styles-link-cta { font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }

    /* ── Redesign: quick-view modal ── */
    .modal-overlay { position: fixed; inset: 0; background: oklch(13% 0.025 255 / .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 200; }
    .modal-overlay.show { display: flex; animation: modalFade .18s ease; }
    @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
    .modal { background: var(--bg); border-radius: 18px; max-width: 540px; width: 100%; max-height: 90vh; overflow: auto; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.28); }
    .modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: none; background: oklch(100% 0 0 / .85); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-size: 19px; line-height: 1; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .15s; }
    .modal-close:hover { background: #fff; }
    .modal-preview { padding: 30px; display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; background: var(--surface); border-bottom: 1.5px solid var(--border); }
    .modal-body { padding: 26px 28px 28px; }
    .modal-body h2 { font-family: var(--display); font-size: 24px; font-weight: 800; letter-spacing: -.025em; }
    .m-price { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 12px 0 4px; }
    .m-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin-top: 8px; }
    .m-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 22px; }
    .m-includes li { display: flex; gap: 10px; font-size: 13.5px; align-items: flex-start; line-height: 1.45; }
    .m-includes .perk-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
    .modal .btn { width: 100%; justify-content: center; }
    .modal-guarantee { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 12px; }
    .modal-detail-link { display: block; text-align: center; margin-top: 14px; font-size: 13px; color: var(--ink-muted); cursor: pointer; }
    .modal-detail-link:hover { color: var(--accent); }

    @media (max-width: 600px) {
      .kit-grid { grid-template-columns: 1fr; }
      .browse-bar { flex-direction: column; align-items: stretch; }
      .search-box { max-width: none; }
    }

