/* Tournament Day Kit funnel page.
   Own prefix (.kit-*) and own palette so it cannot entangle with the soccer
   funnel stylesheet — the two pages sell different products to different
   people and will drift apart deliberately. Shared with soccer only via the
   layout-level .funnel-shell / .funnel-header hooks. */

.kit-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 22px 70px;
}

.funnel-header {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.kit-main {
    --amber: #ffb547;
    --night: #0b1220;
    --panel: #141d2e;
    --muted: #a7b4c9;
    color: #f4f8ff;
    background: var(--night);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(6, 13, 26, .26);
}

.kit-main * { box-sizing: border-box; }

.kit-main h1,
.kit-main h2,
.kit-main h3 { margin: 0; letter-spacing: -.04em; }

.kit-main h1 {
    max-width: 900px;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: .96;
}

.kit-main h2 {
    max-width: 800px;
    font-size: clamp(1.85rem, 4vw, 3.4rem);
    line-height: 1.03;
}

.kit-main h3 { font-size: 1.28rem; }

.kit-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--amber);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ---------- hero ---------- */

.kit-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 44px;
    padding: clamp(48px, 7.5vw, 92px);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 181, 71, .16), transparent 32%),
        linear-gradient(150deg, #0b1220, #101a2c);
}

.kit-lede {
    max-width: 720px;
    margin: 24px 0 0;
    color: #c2cede;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.kit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.kit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .15s ease, box-shadow .15s ease;
}

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

.kit-button.primary {
    color: #17120a;
    background: var(--amber);
    box-shadow: 0 15px 35px rgba(255, 181, 71, .22);
}

.kit-button.secondary {
    color: #eaf1ff;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
}

.kit-button.compact { padding: 10px 16px; }

.kit-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #9dabc1;
    font-size: .86rem;
}

.kit-bridge {
    margin: 18px 0 0;
    color: #93a2ba;
    font-size: .92rem;
}

.kit-bridge a {
    color: var(--amber);
    font-weight: 700;
}

.kit-trust li::before {
    content: "✓";
    margin-right: 7px;
    color: var(--amber);
    font-weight: 900;
}

/* Sample of the workbook, standing in for a product screenshot.
   It is a <figure>, which carries a 40px UA margin on both sides — with
   width:100% on mobile that overflows the column and shunts the card off the
   right edge, so the margin is reset here rather than fought with later. */
.kit-preview {
    align-self: center;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(255, 181, 71, .24);
    border-radius: 26px;
    background: rgba(17, 27, 45, .85);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.kit-preview > span {
    display: block;
    margin-bottom: 8px;
    color: #93a2ba;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.kit-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.kit-preview-row b { color: var(--amber); }

.kit-preview-row em {
    color: var(--muted);
    font-size: .88rem;
    font-style: normal;
}

.kit-flag {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 92, 92, .16);
    color: #ff8b8b;
    font-size: .76rem;
    font-weight: 800;
}

.kit-flag.ok {
    background: rgba(107, 224, 152, .14);
    color: #6be098;
}

/* ---------- bands and sections ---------- */

.kit-band {
    padding: 26px clamp(30px, 7vw, 82px);
    background: var(--amber);
    color: #17120a;
}

.kit-band p,
.kit-band strong {
    display: inline;
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.28rem);
}

.kit-band p { margin-right: 8px; }

.kit-section { padding: clamp(46px, 7vw, 80px); }

.kit-section p { color: var(--muted); line-height: 1.65; }

.kit-intro { max-width: 760px; margin-top: 18px; }

.kit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.kit-grid article {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: var(--panel);
}

.kit-grid span {
    display: block;
    margin-bottom: 28px;
    color: var(--amber);
    font-size: .78rem;
    font-weight: 900;
}

/* The "what a bracket can't do" contrast table. */
.kit-compare {
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    overflow: hidden;
}

.kit-compare-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.kit-compare-row > div {
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    line-height: 1.55;
}

.kit-compare-row:first-child > div {
    border-top: 0;
    background: rgba(255, 255, 255, .04);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #93a2ba;
}

.kit-compare-row > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, .09);
    color: var(--muted);
}

.kit-compare-row > div:last-child { color: #eaf1ff; }

.kit-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #0e1728;
}

.kit-list {
    max-width: 640px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kit-list li {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #c6d2e3;
    line-height: 1.5;
}

.kit-list li::before {
    content: "→";
    margin-right: 12px;
    color: var(--amber);
}

/* Real screenshots of the shipped workbook. Light images on a dark page, so
   they get a light frame rather than floating on the navy. */
.kit-shot {
    margin: 30px 0 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: #f7f8f9;
    overflow: hidden;
}

.kit-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.kit-shot figcaption {
    padding: 12px 18px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #eef0f3;
    color: #46536a;
    font-size: .88rem;
}

.kit-shot-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* The two sheets are genuinely different heights (the money tab carries 20
       expense lines). Stretching them to match would letterbox the shorter one. */
    align-items: start;
    gap: 16px;
}

/* Mid-page conversion points. The page is long and mobile-dominant; without
   these the only buy button between the hero and the footer is off-screen. */
.kit-cta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 22px;
    margin-top: 36px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 181, 71, .3);
    border-radius: 20px;
    background: rgba(255, 181, 71, .07);
}

.kit-cta-strip p {
    margin: 0;
    max-width: 560px;
    color: #dbe4f1 !important;
}

/* Sticky mobile buy bar. Desktop keeps the header CTA in view; mobile scrolls
   it away immediately, so the ask has to follow the reader down. */
.kit-sticky {
    display: none;
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 181, 71, .28);
    background: rgba(11, 18, 32, .96);
    backdrop-filter: blur(8px);
}

.kit-sticky .kit-button {
    width: 100%;
    padding: 14px 18px;
}

@media (max-width: 820px) {
    .kit-sticky { display: block; }

    /* Clear the bar so it never covers the final CTA or the footer. */
    .kit-shell { padding-bottom: 96px; }
}

.kit-faq { max-width: 940px; margin: 0 auto; }

.kit-faq details {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.kit-faq summary { cursor: pointer; font-weight: 850; }

.kit-faq p { margin: 12px 0 0; }

/* ---------- closing ---------- */

.kit-closing {
    margin: 0 clamp(24px, 6vw, 70px) 70px;
    padding: clamp(34px, 6vw, 62px);
    text-align: center;
    border: 1px solid rgba(255, 181, 71, .3);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 181, 71, .15), transparent 55%),
        #141d2e;
}

.kit-closing h2 { margin: 0 auto 24px; }
.kit-closing p { margin: 18px 0 0; color: var(--muted); }
.kit-closing .kit-kicker { display: block; }

.kit-price-note { color: var(--amber) !important; font-weight: 850; }

@media (max-width: 820px) {
    .kit-shell { padding: 12px 10px 50px; }
    .kit-main { border-radius: 22px; }
    .kit-hero { grid-template-columns: 1fr; padding: 46px 24px; }
    .kit-grid { grid-template-columns: 1fr; }
    .kit-section { padding: 46px 24px; }
    .kit-split { align-items: flex-start; flex-direction: column; }
    .kit-preview { width: 100%; }
    .kit-closing { margin: 0 18px 42px; }
    .kit-trust { gap: 10px 18px; }
    .kit-compare-row { grid-template-columns: 1fr; }
    .kit-compare-row > div:first-child { border-right: 0; }
    .kit-compare-row:first-child { display: none; }
    .kit-shot-pair { grid-template-columns: 1fr; }
    .kit-cta-strip { flex-direction: column; align-items: stretch; }
}
