/* ============================================================
   Workshop — OFFER LAYER
   Loaded after workshop99.css. Adds the visual, offer-style
   components: the announcement bar, the split hero with mock
   creatives, the "what you'll make" gallery, the module list,
   the value stack, bonuses and the guarantee.
   All artwork is pure CSS — no image files needed.
   ============================================================ */

/* ---------- announcement bar ---------- */

.topbar {
    position: relative;
    z-index: 60;
    background: linear-gradient(100deg, #6d28d9, #a21caf 55%, #0891b2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
    padding: 9px 16px;
}

.topbar b { font-weight: 800; }

.topbar__sep { opacity: .55; margin: 0 10px; }

@media (max-width: 560px) {
    .topbar { font-size: 11.8px; padding: 8px 12px; }
    .topbar__hide { display: none; }
}

/* ---------- hero: split layout ---------- */

@media (min-width: 1000px) {
    .hero__grid {
        display: grid;
        grid-template-columns: 1.02fr .98fr;
        gap: 54px;
        align-items: center;
        text-align: left;
    }

    .hero { text-align: left; }
    .hero__grid .hero__sub  { margin-left: 0; }
    .hero__grid .hero__when { justify-content: flex-start; }
    .hero__grid .hero__cta  { align-items: flex-start; }
    .hero__grid .countdown  { margin-left: 0; }
}

/* price flag that sits above the headline */
.offer-flag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 8px 8px 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    font-size: 13.5px;
    font-weight: 600;
    color: #e7e7f5;
}

.offer-flag s { color: var(--muted-2); font-weight: 500; }

.offer-flag__amt {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    box-shadow: 0 6px 18px -10px rgba(124, 107, 245, .9);
}

/* trust row under the CTA */
.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 4px;
    font-size: 12.8px;
    color: var(--muted-2);
}

.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust i { color: #7dd3a8; font-size: 11.5px; }

/* ---------- mock creatives (pure CSS artwork) ---------- */

.art-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "ad   reel"
        "film reel";
    gap: 14px;
    margin: 42px auto 0;
    max-width: 460px;
}

@media (min-width: 1000px) {
    .art-stack { margin: 0; max-width: none; gap: 16px; }
}

.mock {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    background: #0b0b16;
    box-shadow: 0 26px 60px -30px rgba(0, 0, 0, .95),
                0 0 0 1px rgba(255, 255, 255, .04) inset;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.mock:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px -28px rgba(124, 107, 245, .55),
                0 0 0 1px rgba(255, 255, 255, .10) inset;
}

.mock--ad   { grid-area: ad;   aspect-ratio: 4 / 5; }
.mock--film { grid-area: film; aspect-ratio: 16 / 10; }
.mock--reel { grid-area: reel; align-self: stretch; }

.mock--reel { animation: float 7s ease-in-out infinite; }
.mock--ad   { animation: float 8s ease-in-out .6s infinite; }
.mock--film { animation: float 9s ease-in-out 1.2s infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* the "photo" itself: layered mesh gradients + a product silhouette */
.mock__art {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.mock__art::after {
    /* film grain so the gradients don't read as flat CSS */
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.art--studio {
    background:
        radial-gradient(70% 55% at 32% 22%, rgba(255, 255, 255, .30), transparent 62%),
        radial-gradient(90% 80% at 78% 88%, rgba(139, 92, 246, .55), transparent 68%),
        linear-gradient(165deg, #2b2545, #14121f 62%, #08070f);
}

.art--neon {
    background:
        radial-gradient(60% 50% at 24% 78%, rgba(34, 211, 238, .48), transparent 66%),
        radial-gradient(70% 60% at 80% 18%, rgba(236, 56, 181, .52), transparent 66%),
        linear-gradient(200deg, #1a1030, #0d0a19 70%, #060510);
}

.art--sunset {
    background:
        radial-gradient(65% 55% at 50% 108%, rgba(251, 146, 60, .55), transparent 62%),
        radial-gradient(60% 50% at 18% 12%, rgba(236, 72, 153, .42), transparent 64%),
        linear-gradient(180deg, #241436, #120c22 68%, #07060f);
}

.art--mint {
    background:
        radial-gradient(60% 50% at 74% 26%, rgba(52, 211, 153, .45), transparent 64%),
        radial-gradient(70% 60% at 20% 84%, rgba(56, 189, 248, .42), transparent 66%),
        linear-gradient(170deg, #10202c, #0a1420 66%, #050a12);
}

.art--gold {
    background:
        radial-gradient(58% 48% at 30% 20%, rgba(253, 224, 71, .40), transparent 62%),
        radial-gradient(76% 66% at 82% 90%, rgba(217, 119, 6, .48), transparent 66%),
        linear-gradient(165deg, #241c0e, #14100a 66%, #080609);
}

.art--ice {
    background:
        radial-gradient(62% 52% at 68% 18%, rgba(191, 219, 254, .42), transparent 62%),
        radial-gradient(72% 62% at 22% 88%, rgba(99, 102, 241, .50), transparent 66%),
        linear-gradient(190deg, #1a2140, #0d1024 66%, #060713);
}

/* the "product" in frame */
.mock__prod {
    position: absolute;
    left: 50%;
    bottom: 26%;
    width: 26%;
    height: 40%;
    transform: translateX(-50%);
    border-radius: 34% 34% 16% 16% / 22% 22% 10% 10%;
    background: linear-gradient(115deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .38) 42%, rgba(255, 255, 255, .10));
    box-shadow: 0 22px 34px -16px rgba(0, 0, 0, .9),
                0 0 26px rgba(255, 255, 255, .22);
}

.mock__prod::before {
    /* cap */
    content: "";
    position: absolute;
    left: 50%;
    top: -16%;
    width: 42%;
    height: 20%;
    transform: translateX(-50%);
    border-radius: 5px 5px 3px 3px;
    background: rgba(255, 255, 255, .55);
}

.mock__prod::after {
    /* label band */
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 42%;
    height: 26%;
    border-radius: 4px;
    background: rgba(10, 8, 22, .48);
    backdrop-filter: blur(2px);
}

/* reflection under the product */
.mock__floor {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 21%;
    height: 8%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .30), transparent);
    filter: blur(4px);
}

/* ad copy burned into the creative */
.mock__copy {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 8%;
    z-index: 3;
}

.mock__copy b {
    display: block;
    font-size: clamp(13px, 3.4vw, 19px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.mock__copy small {
    display: inline-block;
    margin-top: 7px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #12101f;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* reel chrome: play, right rail, caption, progress */
.mock__ui { position: absolute; inset: 0; z-index: 3; }

.mock__play {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    font-size: 13px;
    color: #fff;
    padding-left: 3px;
}

.mock__rail {
    position: absolute;
    right: 9px;
    bottom: 60px;
    display: grid;
    gap: 15px;
    justify-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

.mock__rail span { display: grid; justify-items: center; gap: 3px; font-size: 8px; font-weight: 600; }

.mock__cap {
    position: absolute;
    left: 11px;
    right: 46px;
    bottom: 26px;
    font-size: 10.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.mock__cap b { font-weight: 700; }

.mock__bar {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 13px;
    height: 2.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .26);
    overflow: hidden;
}

.mock__bar::after {
    content: "";
    position: absolute;
    inset: 0 62% 0 0;
    background: #fff;
    border-radius: 2px;
}

/* film letterbox + subtitle */
.mock__bars::before,
.mock__bars::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 11%;
    background: #04040a;
    z-index: 3;
}

.mock__bars::before { top: 0; }
.mock__bars::after  { bottom: 0; }

.mock__sub {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 17%;
    z-index: 4;
    text-align: center;
    font-size: 10px;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .9);
}

/* format badge in the corner of every mock */
.mock__fmt {
    position: absolute;
    left: 9px;
    top: 9px;
    z-index: 5;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(6, 5, 14, .62);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e8e8f6;
}

.mock--film .mock__fmt { top: 13%; }

/* ---------- tools marquee ---------- */

.tools {
    position: relative;
    z-index: 2;
    padding: 8px 0 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    overflow: hidden;
}

.tools__lbl {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 18px;
}

.tools__track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: slide 34s linear infinite;
}

@keyframes slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.tools__track:hover { animation-play-state: paused; }

.tool {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.005em;
    white-space: nowrap;
    color: #d9d9e8;
}

.tool i { color: var(--violet-soft); font-size: 13px; }

/* ---------- "what you'll make" gallery ---------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 760px)  { .gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.tile { display: grid; gap: 12px; }

.tile .mock { animation: none; aspect-ratio: 4 / 5; }
.tile .mock:hover { transform: translateY(-6px); }

.tile__meta b {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.tile__meta span {
    display: block;
    margin-top: 3px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--muted-2);
}

.gallery__note {
    margin-top: 22px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted-2);
}

/* ---------- module list (curriculum) ---------- */

.mods { display: grid; gap: 14px; }

@media (min-width: 900px) { .mods { grid-template-columns: 1fr 1fr; gap: 16px; } }

.mod {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.mod:hover { border-color: var(--line-glow); transform: translateY(-3px); }

.mod::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--grad);
    opacity: .85;
}

.mod__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mod__n {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(139, 92, 246, .16);
    border: 1px solid rgba(139, 92, 246, .32);
    font-size: 13px;
    font-weight: 800;
    color: #cbb8fd;
}

.mod__top h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -.014em; }

.mod > p { color: var(--muted); font-size: 14.7px; line-height: 1.68; }

.mod__out {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.mod__out em {
    width: 100%;
    font-style: normal;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 2px;
}

.mod__out span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 550;
    color: #d3d3e2;
}

.mod__out span i { font-size: 9.5px; color: #86efac; }

/* ---------- value stack ---------- */

.stack {
    max-width: 620px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    overflow: hidden;
}

.stack__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 14.6px;
    line-height: 1.5;
}

.stack__row i { color: var(--violet-soft); font-size: 13px; flex: 0 0 auto; }
.stack__row span { flex: 1; }

.stack__row b {
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--muted-2);
    font-variant-numeric: tabular-nums;
}

.stack__row--total {
    background: rgba(255, 255, 255, .04);
    font-weight: 700;
    font-size: 15px;
}

.stack__row--total b { color: var(--text); text-decoration: line-through; text-decoration-color: rgba(255, 90, 120, .8); }

.stack__row--today {
    border-bottom: 0;
    background: linear-gradient(100deg, rgba(124, 107, 245, .20), rgba(180, 92, 240, .16));
    font-weight: 800;
    font-size: 16px;
}

.stack__row--today b {
    color: #fff;
    font-size: 22px;
    letter-spacing: -.02em;
    text-decoration: none;
}

/* ---------- bonuses ---------- */

.bonuses { display: grid; gap: 14px; margin-top: 22px; }

@media (min-width: 860px) { .bonuses { grid-template-columns: repeat(3, 1fr); } }

.bonus {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: var(--r);
    border: 1px dashed rgba(196, 181, 253, .34);
    background: rgba(139, 92, 246, .07);
}

.bonus__tag {
    position: absolute;
    top: -11px;
    left: 20px;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--grad);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.bonus h3 { margin-top: 8px; font-size: 16.5px; font-weight: 700; }

.bonus p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.62; }

.bonus__val {
    display: inline-block;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #c4b5fd;
}

/* ---------- guarantee ---------- */

.guarantee {
    max-width: 640px;
    margin: 26px auto 0;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border-radius: var(--r);
    border: 1px solid rgba(125, 211, 168, .26);
    background: rgba(52, 211, 153, .07);
}

.guarantee__seal {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #6ee7b7;
    background: rgba(52, 211, 153, .14);
    border: 1px solid rgba(110, 231, 183, .35);
}

.guarantee b { display: block; font-size: 15.5px; font-weight: 700; }
.guarantee p { margin-top: 5px; font-size: 14px; line-height: 1.6; color: var(--muted); }

@media (max-width: 560px) {
    .guarantee { flex-direction: column; text-align: center; }
}

/* ---------- pricing card polish ---------- */

.price-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .14) !important;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(139, 92, 246, .75), rgba(34, 211, 238, .3) 45%, transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.price-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--grad);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .mock, .tools__track { animation: none !important; }
}

/* ---------- split-hero fine tuning ---------- */

@media (min-width: 1000px) {
    /* the headline shares the row with the art stack, so it runs smaller */
    .hero__grid .hero__title { font-size: clamp(44px, 4.2vw, 60px); margin-top: 22px; }
    .hero__grid .hero__sub   { max-width: 500px; margin-top: 20px; }
    .hero__grid .countdown   { max-width: 380px; margin-top: 30px; }
    .hero { padding: 56px 0 84px; }

    /* keep the floating 3D shapes off the headline and off the mock-ups */
    .a1 { top: 84px; left: -4%; }
    .a2, .a4, .a5 { display: none; }
    .a3 { top: 560px; left: -6%; }
}

/* the page reads tighter with slightly shorter section gaps */
@media (min-width: 900px) {
    .section { padding: 88px 0; }
    .section-head { margin-bottom: 52px; }
}

/* format badge sits opposite the ad copy so the two never collide */
.mock__fmt { left: auto; right: 9px; }
.mock--film .mock__fmt { top: 13%; }
.mock__copy { top: 9%; }

/* ---------- offer row: one price, one discount ---------- */

.stack__row--today b {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.stack__row--today b s {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    text-decoration-color: rgba(255, 120, 150, .9);
}

/* ============================================================
   THE TICKET — the price is the hero of this section, so it
   gets its own rotating aurora ring, glass body and a number
   that shimmers.
   ============================================================ */

.ticket {
    position: relative;
    max-width: 520px;
    margin: 38px auto 0;
    padding: 2px;                 /* the aura shows through here */
    border-radius: 30px;
    isolation: isolate;
}

/* slow-rotating conic gradient = a living gradient border */
.ticket__aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 42%;
    background: conic-gradient(from 0deg,
        #7c6bf5, #b45cf0, #22d3ee, #ec38b5, #7c6bf5);
    filter: blur(24px);
    opacity: .55;
    animation: spin 16s linear infinite;
}

@keyframes spin-c {
    to { transform: translate(-50%, -50%) rotate(1turn); }
}

.ticket__aura { animation-name: spin-c; }

@keyframes spin { to { transform: rotate(1turn); } }

.ticket__in {
    position: relative;
    z-index: 1;
    padding: 42px 28px 30px;
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(139, 92, 246, .22), transparent 62%),
        linear-gradient(180deg, rgba(18, 17, 32, .96), rgba(9, 9, 18, .98));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 1),
                0 0 60px -30px rgba(139, 92, 246, .55);
    overflow: hidden;
}

/* a soft light sweeping across the glass, once every few seconds */
.ticket__in::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .07), transparent);
    transform: skewX(-18deg);
    animation: sweep 6.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sweep {
    0%, 62% { left: -60%; }
    100%    { left: 130%; }
}

@media (min-width: 620px) { .ticket__in { padding: 48px 44px 34px; } }

.ticket__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    border: 1px solid rgba(196, 181, 253, .3);
    background: rgba(139, 92, 246, .13);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ddd0f7;
}

.ticket__tag i { font-size: 11px; }

/* the number itself */
.ticket__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
    line-height: 1;
}

.ticket__cur {
    margin-top: 14px;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 700;
    letter-spacing: -.02em;
    background: linear-gradient(180deg, #fff, #b9b2ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ticket__num {
    font-size: clamp(74px, 19vw, 116px);
    font-weight: 900;
    letter-spacing: -.05em;
    background: linear-gradient(100deg,
        #ffffff 0%, #d7cdff 26%, #ffffff 44%, #a78bfa 62%, #ffffff 88%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 7s linear infinite;
    filter: drop-shadow(0 14px 34px rgba(139, 92, 246, .45));
}

.ticket__note {
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--muted);
}

.ticket__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.ticket__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    font-size: 13px;
    font-weight: 550;
    color: #d8d8e6;
}

.ticket__meta i { font-size: 11.5px; color: var(--violet-soft); }

.ticket__cta { margin-top: 26px; width: 100%; }

.ticket .seats { margin-top: 22px; }
.ticket .price-secure { margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
    .ticket__aura, .ticket__in::after, .ticket__num { animation: none; }
}

/* ---------- ticket celebration ---------- */

.ticket__burst {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: visible;
    pointer-events: none;
}

.ticket__burst .bit {
    position: absolute;
    top: 14px;
    width: 7px;
    height: 11px;
    border-radius: 2px;
    opacity: 0;
    will-change: transform, opacity;
}

.ticket__burst .bit--round { width: 7px; height: 7px; border-radius: 50%; }

/* the congratulations line fades down into place */
.ticket__congrats {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.005em;
    color: #ddd0f7;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.ticket__congrats.is-on { opacity: 1; transform: none; }

/* the number itself springs in once */
.ticket__num.is-pop { animation: shine 7s linear infinite, pop .75s var(--ease) 1; }

@keyframes pop {
    0%   { transform: scale(.72); opacity: 0; }
    58%  { transform: scale(1.07); opacity: 1; }
    100% { transform: scale(1); }
}

/* the aura flares for a moment as the confetti goes off */
.ticket.is-celebrating .ticket__aura {
    animation: spin-c 16s linear infinite, flare 1.5s var(--ease) 1;
}

@keyframes flare {
    0%   { opacity: .95; filter: blur(14px); }
    100% { opacity: .55; filter: blur(24px); }
}

@media (prefers-reduced-motion: reduce) {
    .ticket__congrats { opacity: 1; transform: none; }
    .ticket__num.is-pop { animation: none; }
    .ticket.is-celebrating .ticket__aura { animation: none; }
}

/* ============================================================
   PHONES — everything below 900px
   ============================================================ */

@media (max-width: 899px) {

    /* the floating 3D shapes were placed for the old centred hero;
       keep them hugging the edges so they never sit on the copy */
    .a1 { top: 22px;  left: -13%; }
    .a2 { top: 128px; right: -11%; }
    .a3 { top: 720px; left: -13%; }

    /* hero mock-ups: smaller frames need smaller type */
    .mock__fmt { font-size: 8px; padding: 3px 7px; left: auto; right: 7px; top: 7px; }
    .mock--film .mock__fmt { top: 14%; }
    .mock__copy { top: 8%; left: 7%; right: 34%; }
    .mock__copy b { font-size: 12.5px; }
    .mock__copy small { font-size: 8px; padding: 3px 8px; margin-top: 5px; }
    .mock__sub { font-size: 8.5px; bottom: 16%; }
    .mock__cap { font-size: 9.5px; left: 9px; bottom: 22px; }
    .mock__rail { font-size: 11px; bottom: 48px; gap: 11px; }
    .mock__play { width: 38px; height: 38px; font-size: 11px; }

    /* prompt vault reads better a touch smaller */
    .prompt__code { font-size: 11.8px; line-height: 1.66; padding: 13px 13px; }
    .prompt { padding: 20px 18px 18px; }

    /* the ticket: keep the CTA on one line and the three chips in one row */
    .ticket__in { padding: 34px 18px 26px; }
    .ticket__cta { font-size: 15px; padding: 16px 14px; }
    .ticket__meta { gap: 6px; }
    .ticket__meta span { font-size: 11.5px; padding: 7px 10px; gap: 6px; }
    .ticket__meta i { font-size: 10.5px; }
    .ticket__congrats { font-size: 13px; }
    .ticket__note { font-size: 13.5px; }

    /* the include list wraps on two lines — give the rows a little more air */
    .stack__row { padding: 14px 16px; font-size: 14px; gap: 12px; }
    .stack__row--today { font-size: 15px; }
    .stack__row--today b { font-size: 20px; }

    /* agenda: the time column doesn't need to eat a third of the row */
    .agenda__item { gap: 12px; padding: 18px 16px; }
    .agenda__time { min-width: 44px; font-size: 13px; }
    .agenda__item h3 { font-size: 15.5px; }
    .agenda__item p { font-size: 14px; }

    /* modules */
    .mod { padding: 22px 18px 20px; }
    .mod__top h3 { font-size: 16.5px; }
    .mod > p { font-size: 14.3px; }

    /* gallery captions */
    .tile__meta b { font-size: 13.5px; }
    .tile__meta span { font-size: 11.8px; }

    /* the topbar is one short line on a phone */
    .topbar { line-height: 1.45; }
}

/* very small phones */
@media (max-width: 380px) {
    .ticket__cta { font-size: 14px; }
    .ticket__meta span { font-size: 11px; padding: 6px 9px; }
    .offer-flag { font-size: 12.5px; gap: 9px; padding-left: 13px; }
    .offer-flag__amt { font-size: 13px; padding: 5px 11px; }
}

/* the sticky bar's sub-label is a note, not a struck-out old price */
.dock__price small { text-decoration: none; }

@media (max-width: 899px) {
    /* squeeze the three ticket chips onto one line */
    .ticket__meta { gap: 5px; }
    .ticket__meta span { font-size: 11px; padding: 6px 9px; gap: 5px; }
}

/* ---------- result tiles ----------
   These were tall 4:5 frames waiting for screenshots; until real ones
   exist they read as empty boxes, so they sit as compact stat tiles. */

.result {
    aspect-ratio: auto;
    min-height: 112px;
    padding: 18px 16px;
}

.result::after { opacity: .35; }

@media (min-width: 720px) { .result { min-height: 132px; } }

/* the final-CTA eyebrow wraps on phones; the leading dot then hangs off
   to one side, so it's dropped and the label is centred on its own */
@media (max-width: 560px) {
    .final .eyebrow {
        display: block;
        font-size: 10px;
        letter-spacing: .14em;
        line-height: 1.7;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .final .eyebrow::before { display: none; }
}

/* ---------- long CTA labels ----------
   Buttons carry the full wording on wide screens and a short one on
   phones, so a fallback font can never push the text out of the pill. */

.lbl-short { display: none; }

@media (max-width: 560px) {
    .lbl-full  { display: none; }
    .lbl-short { display: inline; }
}

/* every button keeps its label inside, whatever the font */
.btn { max-width: 100%; }
.btn > span { min-width: 0; overflow-wrap: anywhere; }

/* belt and braces: nothing may cause a sideways scroll */
html, body { overflow-x: hidden; max-width: 100%; }

/* ============================================================
   MOBILE MENU — a proper sheet instead of a bare list.
   Scoped to this page (this stylesheet only loads here).
   ============================================================ */

.pnav__mobile {
    /* a full-screen sheet: it must never expand the sticky bar and push
       the page down, which is what an in-flow panel was doing */
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: 0;
    border-top: 0;
    max-height: none;
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(139, 92, 246, .16), transparent 62%),
        rgba(6, 6, 13, .985);
    backdrop-filter: blur(22px);
    overscroll-behavior: contain;
}

.pnav__mobile.is-open {
    display: flex;
    animation: sheet-in .3s var(--ease) both;
}

/* the burger is behind the sheet, so the desktop breakpoint must also
   put the sheet away if the screen is rotated or resized while open */
@media (min-width: 900px) {
    .pnav__mobile.is-open { display: none; }
}

@keyframes sheet-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
}

/* sheet header ------------------------------------------ */

.msheet__head {
    flex: 0 0 auto;
    height: 64px;
    padding: 0 15px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.msheet__brand img { height: 26px; width: auto; }

.msheet__x {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.msheet__x:active { background: rgba(255, 255, 255, .12); }

.msheet {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 15px calc(16px + env(safe-area-inset-bottom));
    display: grid;
    align-content: start;
    gap: 7px;
}

/* rows -------------------------------------------------- */

.pnav__mobile .mrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
}

.pnav__mobile .mrow:active { background: rgba(255, 255, 255, .08); }

.mrow__ico {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #cbb8fd;
    background: rgba(139, 92, 246, .14);
    border: 1px solid rgba(139, 92, 246, .26);
}

.mrow__txt { flex: 1; min-width: 0; line-height: 1.3; }
.mrow__txt b { display: block; font-weight: 650; font-size: 15px; }

.mrow__txt small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted-2);
}

.mrow__go { font-size: 12px; color: var(--muted-2); }

/* the page you're on */
.pnav__mobile .mrow--now {
    border-color: rgba(139, 92, 246, .42);
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(139, 92, 246, .22), transparent 62%),
        rgba(139, 92, 246, .10);
}

.mrow__pill {
    flex: 0 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* services grid ----------------------------------------- */

.mlabel {
    margin: 7px 4px 1px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.mgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pnav__mobile .mtile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
}

.pnav__mobile .mtile i { font-size: 15px; color: #a78bfa; }
.pnav__mobile .mtile:active { background: rgba(255, 255, 255, .07); }

.pnav__mobile .mall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border: 0;
    border-radius: 12px;
    color: var(--violet-soft);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
}

.pnav__mobile .mall i { font-size: 11px; }

/* CTA + note -------------------------------------------- */

.pnav__mobile .mcta {
    /* site-nav.css sets `.pnav__mobile a { display: block }`, which would
       strip the button's flex centring — put it back explicitly. */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;              /* the sheet's link colour would dim it */
    position: sticky;
    bottom: 0;
    width: 100%;
    margin-top: 4px;
    padding: 15px 20px;
    font-size: 15px;
    /* solid pad so list items can't show through when the sheet scrolls */
    box-shadow: 0 0 0 9px rgba(6, 6, 13, .99),
                0 10px 26px -14px rgba(124, 107, 245, .9);
}

.mnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted-2);
}

.mnote i { font-size: 11px; color: #7dd3a8; }

@media (max-width: 340px) {
    .mgrid { grid-template-columns: 1fr; }
}

/* the page behind the sheet is frozen in place while it's open; the JS
   offsets it by the scroll position and puts it back on close */
body.menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

/* ============================================================
   PHONE RHYTHM — the desktop spacing left huge empty bands on a
   phone. Everything below tightens the vertical gaps only.
   ============================================================ */

@media (max-width: 899px) {
    .section        { padding: 46px 0; }
    .section-head   { margin-bottom: 28px; }

    .hero           { padding: 26px 0 40px; }
    .hero__title    { margin-top: 16px; }
    .hero__sub      { margin-top: 16px; }
    .hero__when     { margin-top: 18px; gap: 8px; }
    .hero__cta      { margin-top: 22px; gap: 10px; }
    .countdown      { margin-top: 24px; }
    .offer-flag     { margin-top: 14px; }
    .art-stack      { margin-top: 28px; }

    .tools          { padding: 4px 0 0; }
    .tools__lbl     { margin-bottom: 12px; }

    .lead           { margin-top: 10px; }

    /* card grids sit closer together */
    .cards, .mods, .prompts, .bonuses { gap: 10px; }
    .agenda { gap: 9px; }
    .gallery { gap: 12px; }

    .prompts__note   { margin-top: 16px; }
    .gallery__note   { margin-top: 14px; }
    .bonuses         { margin-top: 14px; }
    .guarantee       { margin-top: 16px; padding: 18px 18px; }
    .ticket          { margin-top: 22px; }

    .who             { gap: 8px; }
    .results         { margin-top: 22px; }
    .marquee         { padding: 4px 0; }

    .final           { padding: 32px 18px; }
    .final .countdown { margin-top: 20px; }

    .faq             { gap: 8px; }
    .faq__item summary { padding: 15px 18px; font-size: 15px; }
    .faq__a          { padding: 0 18px 16px; }

    .footer          { padding: 24px 0 90px; }
}
