/* ════════════════════════════════════════════════════════════════
   HOMEPAGE V1 — Sandbox + Story Arc Hybrid
   Lifted from docs/mockups/sequence-ky-hybrid.html (with _shared.css
   and _sections.css). All rules are scoped via class names that are
   unique to this page (.home-v1, .sandbox-*, .stripe, .faq-item-x,
   etc.) so nothing leaks into the rest of the app.

   Tokens (--c-navy, --c-lime, etc.) come from shuttle-v2.css.
   Local-only tokens (--c-navy-deep, --c-navy-2) are scoped here.

   ENHANCEMENT (2026-05-07): [HOME-V1] Initial homepage redesign.
   ════════════════════════════════════════════════════════════════ */

.home-v1 {
    --c-navy-deep: #060D16;
    --c-navy-2:    #15294a;
    color: var(--c-white);
    /* BUG FIX (2026-05-07): [HOME-V1 / LIGHT-MODE] Solid navy base so the
       light-mode body background can't show through any gap or
       semi-transparent section. The marketing page is intentionally
       dark-only — all colours, contrasts, and tokens were designed against
       navy, not against `var(--bg-page)`. */
    background: var(--c-navy);
}

/* The base.html navbar already covers the top of the page; just give
   the hero some breathing room below it. */
.home-v1 .hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height, 64px));
    display: flex;
    align-items: center;
    background-color: var(--c-navy);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 280' fill='none' stroke='white' stroke-width='1.2' stroke-opacity='0.06'><rect x='40' y='30' width='520' height='220'/><line x1='300' y1='30' x2='300' y2='250'/><line x1='40' y1='75' x2='560' y2='75'/><line x1='40' y1='205' x2='560' y2='205'/><line x1='100' y1='75' x2='100' y2='205'/><line x1='500' y1='75' x2='500' y2='205'/><line x1='100' y1='140' x2='500' y2='140'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 80px 24px;
}
.home-v1 .hero-grid {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 980px) {
    .home-v1 .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .home-v1 .hero { padding: 80px 20px 60px; }
}

.home-v1 .hero-copy { max-width: 560px; }
.home-v1 .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(200,241,53,0.1);
    border: 1px solid rgba(200,241,53,0.2);
    border-radius: 100px;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--c-lime);
    margin-bottom: 28px;
}
.home-v1 .hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--c-lime); border-radius: 50%;
    animation: home-v1-dot-pulse 2s ease-in-out infinite;
}
@keyframes home-v1-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}
.home-v1 .hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -0.03em; margin-bottom: 20px;
    color: var(--c-white);
}
.home-v1 .hero-title .accent { color: var(--c-lime); }
.home-v1 .hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.65; margin-bottom: 24px;
}
/* ENHANCEMENT (2026-05-07): [HOME-V1 / SKIP-NOTE] Note moved from hero copy
   into the sandbox card. Tiny single-line footer — visible across all four
   steps without competing with the active step's content. */
.home-v1 .sandbox-skip-note {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.06);
    font-size: 0.6875rem;
    line-height: 1.4;
    color: rgba(255,179,71,0.7);
    font-style: italic;
    text-align: center;
}
.home-v1 .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero buttons — local override so .btn-outline reads on dark navy. */
.home-v1 .hero-cta .btn-primary {
    box-shadow: 0 4px 14px rgba(200,241,53,0.3);
}
.home-v1 .hero-cta .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(200,241,53,0.4);
}
.home-v1 .hero-cta .btn-outline-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 12px;
    font-weight: 700; font-size: 0.9375rem;
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--c-white);
    background: transparent;
    transition: all 200ms var(--ease-out);
    line-height: 1;
}
.home-v1 .hero-cta .btn-outline-hero:hover {
    border-color: var(--c-lime);
    color: var(--c-lime);
    background: rgba(200,241,53,0.06);
}

/* ── SANDBOX CARD ── */
.home-v1 .sandbox-card {
    background: linear-gradient(160deg, var(--c-navy-2), #0a172d);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6),
                0 0 0 1px rgba(200,241,53,0.04);
    position: relative; overflow: hidden;
    min-height: 460px;
}
.home-v1 .sandbox-stepper { display: flex; gap: 4px; margin-bottom: 18px; }
.home-v1 .sandbox-stepper-pill {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.5);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    transition: all 200ms;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.home-v1 .sandbox-stepper-pill.done { background: rgba(200,241,53,0.1); color: var(--c-lime-dim); }
.home-v1 .sandbox-stepper-pill.active {
    background: var(--c-lime); color: var(--c-navy);
}
.home-v1 .sandbox-step { display: none; min-height: 320px; }
.home-v1 .sandbox-step.active { display: block; animation: home-v1-fade-in 300ms var(--ease-out); }
@keyframes home-v1-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.home-v1 .sandbox-step h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--c-white); }
.home-v1 .sandbox-step p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 18px; line-height: 1.55; }
.home-v1 .sandbox-step-content {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.home-v1 .sandbox-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 14px;
}
.home-v1 .sandbox-back {
    padding: 8px 16px; border-radius: 8px;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
    font-size: 0.8125rem; font-weight: 600; transition: all 150ms;
    border: none; font-family: inherit; cursor: pointer;
}
.home-v1 .sandbox-back:hover:not(:disabled) { background: rgba(255,255,255,0.1); color: var(--c-white); }
.home-v1 .sandbox-back:disabled { opacity: 0.3; cursor: not-allowed; }
.home-v1 .sandbox-next {
    padding: 8px 18px; border-radius: 8px;
    background: var(--c-lime); color: var(--c-navy);
    font-size: 0.8125rem; font-weight: 700;
    transition: all 150ms;
    box-shadow: 0 2px 8px rgba(200,241,53,0.3);
    border: none; font-family: inherit; cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.home-v1 .sandbox-next:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,241,53,0.4); }
.home-v1 .sandbox-next:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.home-v1 .sandbox-team-add { display: flex; gap: 8px; margin-bottom: 12px; }
.home-v1 .sandbox-team-input {
    flex: 1; padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: var(--c-white);
    font-family: inherit; font-size: 0.875rem;
}
.home-v1 .sandbox-team-input:focus { outline: none; border-color: var(--c-lime); }
.home-v1 .sandbox-team-add-btn {
    padding: 8px 14px; background: var(--c-lime); color: var(--c-navy);
    border-radius: 8px; font-weight: 700; font-size: 0.8125rem;
    border: none; font-family: inherit; cursor: pointer;
}
.home-v1 .sandbox-team-list { display: flex; flex-direction: column; gap: 5px; }
.home-v1 .sandbox-team-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 12px;
    background: rgba(200,241,53,0.06);
    border: 1px solid rgba(200,241,53,0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}
.home-v1 .sandbox-team-item .num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-lime); color: var(--c-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6875rem; font-weight: 800;
}
.home-v1 .sandbox-fx-list { display: flex; flex-direction: column; gap: 5px; }
.home-v1 .sandbox-fx-item {
    display: grid; grid-template-columns: 28px 1fr auto;
    gap: 10px; align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px; font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}
.home-v1 .sandbox-fx-item.scoring { background: rgba(255,77,109,0.08); border: 1px solid rgba(255,77,109,0.2); }
.home-v1 .sandbox-fx-item .num { color: var(--c-lime); font-weight: 800; font-size: 0.6875rem; }

.home-v1 .sandbox-publish { text-align: center; padding: 30px 20px; }
.home-v1 .sandbox-publish-icon { font-size: 2.5rem; margin-bottom: 12px; }
.home-v1 .sandbox-publish h4 { font-size: 1.125rem; font-weight: 800; margin-bottom: 6px; color: var(--c-white); }
.home-v1 .sandbox-publish p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 18px; }
.home-v1 .sandbox-publish-link {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(200,241,53,0.1);
    border: 1px solid rgba(200,241,53,0.3);
    border-radius: 10px;
    font-family: ui-monospace, monospace;
    font-size: 0.8125rem;
    color: var(--c-lime);
}

/* ── BRIDGE LINE ── */
.home-v1 .bridge {
    padding: 60px 24px 0;
    text-align: center;
    background: var(--c-navy);
}
.home-v1 .bridge-line {
    max-width: 620px; margin: 0 auto;
    color: rgba(255,255,255,0.6);
    font-size: 1.0625rem; line-height: 1.55;
}
.home-v1 .bridge-line strong { color: var(--c-lime); font-weight: 700; }

/* ── SECTION HEADER ── */
.home-v1 .section-header { text-align: center; margin-bottom: 56px; }
.home-v1 .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px; border-radius: 100px;
    background: rgba(200,241,53,0.08);
    color: var(--c-lime-dim);
    font-size: 0.6875rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.home-v1 .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--c-white);
}
.home-v1 .section-title .accent { color: var(--c-lime); }
.home-v1 .section-subtitle {
    font-size: 1rem; color: rgba(255,255,255,0.6);
    max-width: 540px; margin: 0 auto;
    line-height: 1.65;
}

/* ── EXCEL PAIN FRAME ── */
.home-v1 .excel-section {
    background: linear-gradient(180deg, var(--c-navy-deep) 0%, #0d1626 100%);
    padding: 100px 24px;
}
.home-v1 .excel-vs-text { text-align: center; margin-bottom: 56px; }
.home-v1 .excel-vs-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; letter-spacing: -0.02em;
    margin-bottom: 18px;
    line-height: 1.05;
    color: var(--c-white);
}
.home-v1 .excel-vs-text h2 .accent { color: var(--c-lime); }
.home-v1 .excel-vs-text p {
    font-size: 1.0625rem; color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 480px; margin: 0 auto;
}
.home-v1 .excel-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .home-v1 .excel-grid-2 { grid-template-columns: 1fr; gap: 24px; } }
.home-v1 .excel-side {
    background: #f3f3f1; color: #222;
    border-radius: 10px;
    padding: 0; overflow: hidden;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
    transform: rotate(-1deg);
    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    font-size: 0.6875rem;
}
.home-v1 .excel-bar { background: #217346; color: white; padding: 4px 8px; font-size: 0.6875rem; }
.home-v1 .excel-rows {
    display: grid;
    grid-template-columns: 18px 1fr 38px 38px 38px 1fr;
    background: white;
}
.home-v1 .excel-rows > div {
    border-right: 1px solid #d4d4d2;
    border-bottom: 1px solid #d4d4d2;
    padding: 3px 6px; font-size: 0.6875rem;
    line-height: 1.4; min-height: 16px;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.home-v1 .excel-rows .rn,
.home-v1 .excel-rows .ch { background: #f0f0ee; color: #888; text-align: center; font-weight: 600; }
.home-v1 .excel-rows .err { background: #fce4e4; color: #c0392b; font-weight: 600; }
.home-v1 .excel-rows .hand { color: #1144aa; font-family: "Comic Sans MS", cursive; transform: rotate(-2deg); }
.home-v1 .excel-rows .strike { color: red; text-decoration: line-through; }
.home-v1 .excel-rows .merged {
    grid-column: span 5;
    background: #fff7d6;
    text-align: center; color: #7a6500; font-weight: 700;
}
.home-v1 .excel-rows .guess { color: #888; font-style: italic; }

.home-v1 .app-side {
    background: linear-gradient(160deg, var(--c-navy-2), #0a172d);
    border: 1px solid rgba(200,241,53,0.2);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6),
                0 0 30px -10px rgba(200,241,53,0.15);
}
.home-v1 .app-side .head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px;
    font-size: 0.75rem; font-weight: 700;
    color: var(--c-white);
}
.home-v1 .app-side .head .live {
    color: var(--c-lime); font-size: 0.625rem;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
}
.home-v1 .app-side table { width: 100%; border-collapse: collapse; font-size: 0.75rem; }
.home-v1 .app-side th {
    text-align: left; padding: 6px; color: rgba(255,255,255,0.4);
    font-size: 0.625rem; text-transform: uppercase; font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-v1 .app-side th.n,
.home-v1 .app-side td.n { text-align: right; }
.home-v1 .app-side td {
    padding: 8px 6px; color: rgba(255,255,255,0.85);
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.home-v1 .app-side tr.first td { color: var(--c-lime); font-weight: 700; }
.home-v1 .app-side tr.first td:first-child::before { content: '★ '; color: var(--c-lime); }

/* ── PRODUCT STRIPES ── */
.home-v1 .stripe { padding: 80px 24px; background: var(--c-navy); }
/* BUG FIX (2026-05-07): [HOME-V1 / LIGHT-MODE] `.stripe.alt` was a
   near-transparent overlay assuming the body would always be navy — in
   light mode it became white-on-white. Replaced with a solid darker navy
   shade so the alt-row visual rhythm survives both themes. */
.home-v1 .stripe.alt { background: #0a1729; }
.home-v1 .stripe-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.home-v1 .stripe.flip .stripe-inner { grid-template-columns: 1.1fr 1fr; }
.home-v1 .stripe.flip .stripe-text { order: 2; }
.home-v1 .stripe.flip .stripe-visual { order: 1; }
@media (max-width: 900px) {
    .home-v1 .stripe-inner,
    .home-v1 .stripe.flip .stripe-inner { grid-template-columns: 1fr; gap: 32px; }
    .home-v1 .stripe.flip .stripe-text { order: 1; }
    .home-v1 .stripe.flip .stripe-visual { order: 2; }
}

.home-v1 .stripe-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--c-lime); font-size: 0.6875rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.home-v1 .stripe-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--c-lime);
}
.home-v1 .stripe-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--c-white);
}
.home-v1 .stripe-text h2 .accent { color: var(--c-lime); }
.home-v1 .stripe-text p {
    font-size: 1rem; color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}
.home-v1 .stripe-bullets { list-style: none; padding: 0; margin: 0; }
.home-v1 .stripe-bullets li {
    padding: 6px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    display: flex; align-items: flex-start; gap: 10px;
}
.home-v1 .stripe-bullets li::before {
    content: '✓';
    color: var(--c-lime);
    font-weight: 800;
    flex-shrink: 0;
}

/* Generic mock-UI container for stripe visuals */
.home-v1 .mock-ui {
    background: linear-gradient(160deg, var(--c-navy-2) 0%, #0a172d 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}
.home-v1 .mini-sb-meta {
    font-size: 0.6875rem; color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 14px; font-weight: 600;
    display: flex; justify-content: space-between;
}
.home-v1 .mini-sb-meta .live-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; background: rgba(255,77,109,0.15);
    border: 1px solid rgba(255,77,109,0.3);
    color: var(--c-danger);
    border-radius: 100px;
    text-transform: none; letter-spacing: 0.06em;
    font-weight: 700;
}
.home-v1 .mini-sb-meta .live-pill::before {
    content: ''; width: 5px; height: 5px;
    background: var(--c-danger); border-radius: 50%;
    animation: home-v1-live-pulse 1.4s ease-in-out infinite;
}
@keyframes home-v1-live-pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.home-v1 .mini-sb-row {
    display: grid; grid-template-columns: 32px 1fr auto; gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.home-v1 .mini-sb-row:first-of-type { border-top: none; }
.home-v1 .mini-sb-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c-lime); color: var(--c-navy);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.75rem;
}
.home-v1 .mini-sb-row.b .mini-sb-avatar { background: var(--c-info); }
.home-v1 .mini-sb-name { font-weight: 600; font-size: 0.875rem; color: var(--c-white); }
.home-v1 .mini-sb-score {
    font-family: ui-monospace, "SF Mono", monospace;
    font-variant-numeric: tabular-nums;
    font-size: 2rem; font-weight: 800; line-height: 1;
    color: var(--c-white);
}
.home-v1 .sb-btn-plus {
    border: none; font-family: inherit; cursor: pointer;
    transition: all 150ms;
}
.home-v1 .sb-btn-plus:hover:not(:disabled) { background: rgba(200,241,53,0.3); }
.home-v1 .sb-btn-plus:disabled { opacity: 0.35; cursor: not-allowed; }

/* Mini bracket */
.home-v1 .mini-br {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    align-items: center;
    padding: 8px;
    position: relative;
}
.home-v1 .mini-br-col { display: flex; flex-direction: column; gap: 8px; }
.home-v1 .mini-br-match {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.75rem;
}
.home-v1 .mini-br-match.winner { border-color: rgba(200,241,53,0.4); background: rgba(200,241,53,0.06); }
.home-v1 .mini-br-team { display: flex; justify-content: space-between; padding: 3px 0; color: rgba(255,255,255,0.7); }
.home-v1 .mini-br-team + .mini-br-team { border-top: 1px dashed rgba(255,255,255,0.05); }
.home-v1 .mini-br-team.win { color: var(--c-white); font-weight: 700; }
.home-v1 .mini-br-team.win .s { color: var(--c-lime); font-weight: 700; }
.home-v1 .mini-br-team.lose { opacity: 0.4; text-decoration: line-through; }
.home-v1 .mini-br-team .s {
    font-family: ui-monospace, monospace; font-variant-numeric: tabular-nums;
    font-size: 0.6875rem; color: rgba(255,255,255,0.5);
}
.home-v1 .mini-br-trophy {
    background: var(--c-lime); color: var(--c-navy);
    border-radius: 8px; padding: 12px;
    text-align: center; font-weight: 800;
    box-shadow: 0 0 30px rgba(200,241,53,0.3);
}
.home-v1 .mini-br-trophy .crown { font-size: 1.5rem; line-height: 1; }
.home-v1 .mini-br-trophy .name { font-size: 0.875rem; margin-top: 4px; }

/* Compact public-page mock */
.home-v1 .mini-pp {
    background: white; color: #0B1F3A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
    transition: transform 400ms;
}
.home-v1 .mini-pp:hover { transform: rotate(0deg); }
.home-v1 .mini-pp-bar {
    background: #0B1F3A; color: white;
    padding: 10px 14px;
    font-size: 0.75rem; font-weight: 700;
    display: flex; justify-content: space-between; align-items: center;
}
.home-v1 .mini-pp-bar .live {
    color: var(--c-lime); font-size: 0.625rem;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.home-v1 .mini-pp-tabs {
    display: flex; padding: 0 14px;
    border-bottom: 1px solid #ecedf0;
    font-size: 0.75rem;
}
.home-v1 .mini-pp-tabs .tab { padding: 10px 12px; color: #6b7280; }
.home-v1 .mini-pp-tabs .tab.active { color: #0B1F3A; border-bottom: 2px solid var(--c-lime); font-weight: 700; }
.home-v1 .mini-pp-body { padding: 14px; }
.home-v1 .mini-pp-stand {
    display: grid;
    grid-template-columns: 24px 1fr auto auto;
    gap: 8px; font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}
.home-v1 .mini-pp-stand > div { padding: 6px 0; border-bottom: 1px solid #f3f4f7; }
.home-v1 .mini-pp-stand .head { color: #6b7280; font-size: 0.625rem; text-transform: uppercase; font-weight: 700; }
.home-v1 .mini-pp-stand .first { background: #faffe1; font-weight: 700; padding-left: 4px; padding-right: 4px; border-radius: 4px; }
.home-v1 .mini-pp-stand .pos { color: #a3acb9; text-align: center; }

/* ── DAY IN THE LIFE ── */
.home-v1 .dl-section { padding: 100px 24px; background: var(--c-navy); }
.home-v1 .dl-list {
    max-width: 720px; margin: 0 auto;
    list-style: none; padding: 0;
    position: relative;
}
.home-v1 .dl-list::before {
    content: '';
    position: absolute;
    left: 70px; top: 12px; bottom: 12px;
    width: 2px; background: rgba(200,241,53,0.2);
}
.home-v1 .dl-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 18px 0;
    align-items: flex-start;
    position: relative;
}
.home-v1 .dl-time {
    text-align: right;
    font-size: 0.875rem; font-weight: 800;
    color: var(--c-lime);
    font-variant-numeric: tabular-nums;
    padding-top: 2px;
    position: relative;
}
.home-v1 .dl-time::after {
    content: ''; position: absolute;
    right: -16px; top: 7px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--c-lime);
    border: 3px solid var(--c-navy);
    box-shadow: 0 0 0 1px var(--c-lime);
}
.home-v1 .dl-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 18px;
}
.home-v1 .dl-content h3 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 6px; color: var(--c-white);
}
.home-v1 .dl-content p {
    font-size: 0.875rem; color: rgba(255,255,255,0.65);
    line-height: 1.55; margin: 0;
}
@media (max-width: 600px) {
    .home-v1 .dl-list::before { left: 18px; }
    .home-v1 .dl-step { grid-template-columns: 38px 1fr; gap: 14px; }
    .home-v1 .dl-time { text-align: left; font-size: 0.75rem; }
    .home-v1 .dl-time::after { right: auto; left: -16px; }
}

/* ── PRICING CALCULATOR ── */
.home-v1 .calc-section { padding: 80px 24px; background: var(--c-navy); }
.home-v1 .calc-card {
    max-width: 720px; margin: 0 auto;
    background: linear-gradient(160deg, var(--c-navy-2), #0a172d);
    border: 1px solid rgba(200,241,53,0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5),
                0 0 40px -10px rgba(200,241,53,0.1);
}
.home-v1 .calc-input-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px; align-items: center;
    margin-bottom: 12px;
}
.home-v1 .calc-label {
    font-size: 0.875rem; font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.home-v1 .calc-value {
    font-family: ui-monospace, "SF Mono", monospace;
    font-variant-numeric: tabular-nums;
    font-size: 1.5rem; font-weight: 800;
    color: var(--c-lime);
    min-width: 60px; text-align: right;
}
.home-v1 input[type="range"].calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    outline: none;
    margin-bottom: 12px;
}
.home-v1 input[type="range"].calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    background: var(--c-lime);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200,241,53,0.4);
}
.home-v1 input[type="range"].calc-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    background: var(--c-lime);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200,241,53,0.4);
}
.home-v1 .calc-result {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px; align-items: center;
}
.home-v1 .calc-rec-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 4px;
}
.home-v1 .calc-rec-name {
    font-size: 1.25rem; font-weight: 800;
    color: var(--c-white);
}
.home-v1 .calc-rec-tag {
    color: var(--c-lime);
    font-size: 0.875rem;
    margin-top: 2px;
}
.home-v1 .calc-rec-price {
    font-family: ui-monospace, "SF Mono", monospace;
    font-variant-numeric: tabular-nums;
    font-size: 2.25rem; font-weight: 900;
    color: var(--c-lime);
    line-height: 1;
}
.home-v1 .calc-rec-period {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin-top: 2px;
}

/* ── CROSSOVER SUB-LINE ──
   Sits below .calc-result and explains the Club-vs-PPT cost math the
   qualitative recommendation hides. Honest both ways: when PPT is the
   cheaper choice for the visitor's volume, the line says so. */
.home-v1 .calc-crossover {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}
.home-v1 .calc-crossover[hidden] { display: none; }
.home-v1 .calc-crossover-icon {
    color: var(--c-lime);
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1.4;
}
.home-v1 .calc-crossover-text strong { color: var(--c-white); font-weight: 700; }

/* ── PRICING CARDS ── */
.home-v1 .pricing-section-x { padding: 100px 24px; background: var(--c-navy); }
.home-v1 .pricing-grid-x {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px; margin: 0 auto;
    align-items: start;
}
@media (max-width: 900px) {
    .home-v1 .pricing-grid-x { grid-template-columns: 1fr; max-width: 420px; }
}
.home-v1 .pricing-card-x {
    background: linear-gradient(160deg, var(--c-navy-2), #0a172d);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
}
.home-v1 .pricing-card-x.featured {
    border-color: var(--c-lime);
    box-shadow: 0 12px 40px rgba(11,31,58,0.4), 0 0 60px rgba(200,241,53,0.1);
    transform: scale(1.04);
    z-index: 2;
}
@media (max-width: 900px) {
    .home-v1 .pricing-card-x.featured { transform: scale(1); }
}
.home-v1 .pricing-popular-x {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--c-lime); color: var(--c-navy);
    padding: 4px 14px; border-radius: 100px;
    font-size: 0.625rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.home-v1 .pricing-name-x { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--c-white); }
.home-v1 .pricing-desc-x { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.home-v1 .pricing-price-x { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.home-v1 .pricing-cur-x { font-size: 1.25rem; color: rgba(255,255,255,0.6); align-self: flex-start; margin-top: 8px; }
.home-v1 .pricing-amt-x { font-size: 3rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--c-white); }
.home-v1 .pricing-per-x { font-size: 0.8125rem; color: rgba(255,255,255,0.5); align-self: flex-end; }
.home-v1 .pricing-note-x { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.home-v1 .pricing-feat-x { list-style: none; margin: 0 0 28px; padding: 0; }
.home-v1 .pricing-feat-x li {
    padding: 9px 0; display: flex; gap: 10px;
    color: rgba(255,255,255,0.85); font-size: 0.875rem;
    align-items: center;
}
.home-v1 .pricing-feat-x li + li { border-top: 1px solid rgba(255,255,255,0.05); }
.home-v1 .pricing-feat-x .check {
    width: 18px; height: 18px;
    border-radius: 50%; background: rgba(200,241,53,0.15);
    color: var(--c-lime);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 800;
    flex-shrink: 0;
}
.home-v1 .pricing-cta-x {
    display: block; width: 100%;
    padding: 12px 20px; border-radius: 10px;
    font-weight: 700; font-size: 0.875rem;
    text-align: center;
    transition: all 150ms;
    border: 2px solid transparent;
    text-decoration: none;
    box-sizing: border-box;
}
.home-v1 .pricing-cta-x.primary { background: var(--c-lime); color: var(--c-navy); }
.home-v1 .pricing-cta-x.primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(200,241,53,0.35); }
.home-v1 .pricing-cta-x.outline { border-color: rgba(255,255,255,0.2); color: var(--c-white); }
.home-v1 .pricing-cta-x.outline:hover { border-color: var(--c-lime); color: var(--c-lime); }

.home-v1 .pricing-compare-link {
    text-align: center; margin-top: 24px;
}
.home-v1 .pricing-compare-link a {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.875rem;
}
.home-v1 .pricing-compare-link a:hover { color: var(--c-lime); }

/* ── FAQ ── */
.home-v1 .faq-section { padding: 100px 24px; background: var(--c-navy); }
.home-v1 .faq-list-x {
    max-width: 720px; margin: 0 auto;
    list-style: none; padding: 0;
}
.home-v1 .faq-item-x { border-bottom: 1px solid rgba(255,255,255,0.08); }
.home-v1 .faq-q {
    width: 100%; padding: 22px 0;
    background: none; border: none;
    color: rgba(255,255,255,0.92);
    text-align: left; cursor: pointer;
    font-family: inherit;
    font-size: 1rem; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}
.home-v1 .faq-q:hover { color: var(--c-lime); }
.home-v1 .faq-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(200,241,53,0.1);
    color: var(--c-lime-dim);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 250ms, background 200ms;
    font-weight: 700;
}
.home-v1 .faq-item-x.open .faq-icon {
    background: var(--c-lime); color: var(--c-navy);
    transform: rotate(45deg);
}
.home-v1 .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 350ms var(--ease-out);
}
.home-v1 .faq-item-x.open .faq-a { max-height: 280px; }
.home-v1 .faq-a p {
    padding-bottom: 22px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem; line-height: 1.65;
    margin: 0;
}

/* ── PERSONA TILES ── */
.home-v1 .persona-section { padding: 100px 24px; background: var(--c-navy-deep); }
.home-v1 .persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px; margin: 0 auto;
}
@media (max-width: 800px) { .home-v1 .persona-grid { grid-template-columns: 1fr; } }
.home-v1 .persona-tile {
    background: linear-gradient(160deg, var(--c-navy-2), #0a172d);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 200ms var(--ease-out);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 12px;
}
.home-v1 .persona-tile:hover {
    border-color: rgba(200,241,53,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(200,241,53,0.2);
}
.home-v1 .persona-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(200,241,53,0.12);
    color: var(--c-lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.home-v1 .persona-tile h3 {
    font-size: 1.125rem; font-weight: 800;
    letter-spacing: -0.01em; color: var(--c-white);
    margin: 0;
}
.home-v1 .persona-tile p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5; margin: 0;
}
.home-v1 .persona-tile .arrow {
    margin-top: auto;
    color: var(--c-lime);
    font-weight: 700;
    font-size: 0.875rem;
    transition: gap 200ms;
    display: inline-flex; gap: 6px; align-items: center;
}
.home-v1 .persona-tile:hover .arrow { gap: 12px; }
