/* ============================================================
   AI Prompt Workshop (₹99) — dark, premium, mobile-first
   Self-contained: no framework, no CDN CSS.
   ============================================================ */

:root {
    --ink:        #05050b;
    --ink-2:      #0a0a15;
    --ink-3:      #10101f;
    --line:       rgba(255, 255, 255, .10);
    --line-2:     rgba(255, 255, 255, .16);
    --line-glow:  rgba(168, 85, 247, .30);
    --text:       #f2f2f7;
    --muted:      #adadc2;
    --muted-2:    #7f7f96;

    --violet:     #8b5cf6;
    --violet-soft:#c4b5fd;
    --magenta:    #ec38b5;
    --cyan:       #22d3ee;

    /* One accent gradient, used sparingly: the hero headline and the primary
       button. Everything else stays white / muted so the page reads calm. */
    --grad:       linear-gradient(100deg, #7c6bf5 0%, #b45cf0 100%);

    --shell:      1120px;
    --r-sm:       12px;
    --r:          18px;
    --r-lg:       26px;

    --ease:       cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16.5px;
    line-height: 1.68;
    letter-spacing: .001em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Headings stay tight enough to feel designed, loose enough to read.
   -.03em and below was pinching the letters together at large sizes. */
h1, h2, h3 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: -.018em;
    font-weight: 800;
    text-wrap: balance;
}

p { margin: 0; }

::selection { background: rgba(139, 92, 246, .55); color: #fff; }

/* ---------- layout ---------- */

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    position: relative;
    padding: 72px 0;
}

@media (min-width: 900px) {
    .section { padding: 110px 0; }
}

.section-head {
    position: relative;
    max-width: 660px;
    margin: 0 auto 48px;
    text-align: center;
}

@media (min-width: 900px) {
    .section-head { margin-bottom: 60px; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--violet-soft);
}

.h2 {
    font-size: clamp(27px, 6.4vw, 42px);
    line-height: 1.16;
}

.lead {
    margin-top: 16px;
    color: var(--muted);
    font-size: clamp(15.5px, 3.4vw, 17px);
    line-height: 1.7;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- ambient background ---------- */

.bg-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-fx__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .34;
}

.bg-fx__glow--a {
    top: -14vh; left: -18vw;
    width: 74vw; height: 74vw;
    max-width: 620px; max-height: 620px;
    background: radial-gradient(circle, rgba(139, 92, 246, .42), transparent 68%);
}

.bg-fx__glow--b {
    top: 8vh; right: -22vw;
    width: 66vw; height: 66vw;
    max-width: 540px; max-height: 540px;
    background: radial-gradient(circle, rgba(180, 92, 240, .30), transparent 68%);
}

.bg-fx__glow--c {
    top: 52vh; left: 22vw;
    width: 58vw; height: 58vw;
    max-width: 480px; max-height: 480px;
    background: radial-gradient(circle, rgba(34, 211, 238, .16), transparent 68%);
}

/* fine grain, drawn once as a data-uri so there is no extra request */
.bg-fx__grain {
    position: absolute;
    inset: -50%;
    opacity: .10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.bg-fx__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 0%, transparent 30%, var(--ink) 96%);
}

/* WebGL accents canvas — sits above the glow, below the content */
#fx-3d {
    position: fixed;
    inset: 0;
    /* an absolutely-positioned <canvas> with width:auto falls back to its
       intrinsic (drawing-buffer) size, which is devicePixelRatio times too
       big — pin the CSS box so 1 world unit stays 1 CSS pixel */
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Anchors mark where a 3D shape floats. They carry no visual style —
   fx-shapes-3d.js reads their position each frame. Positions live here
   (not inline) so phones can place the shapes clear of the copy. */
.shape-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

/* hero — phone first: shapes hug the edges, away from the headline */
.a1 { top: 58px;  left: -3%; }
.a2 { top: 92px;  right: 6%; }
.a3 { top: 660px; left: -9%; }
.a4,
.a5 { display: none; }

@media (min-width: 900px) {
    .a1 { top: 120px; left: 6%; }
    .a2 { top: 230px; right: 8%; }   /* clear of the sticky top bar */
    .a3 { top: 520px; left: 4%; }
    .a4 { display: block; top: 600px; right: 7%; }
    .a5 { display: block; top: 400px; right: 4%; }
}

/* section headings — flush to the edges on phones, outdented on desktop */
.a-sec-l  { top: -14px; left: 0; }
.a-sec-r  { top: 26px;  right: 0; }
.a-sec-r2 { top: 0;     right: 0; }

@media (min-width: 900px) {
    .a-sec-l  { left: -7%; }
    .a-sec-r  { right: -7%; }
    .a-sec-r2 { right: -6%; }
}

/* ---------- buttons ---------- */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: .005em;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    isolation: isolate;
}

.btn--primary {
    color: #fff;
    background: var(--grad);
    background-size: 180% 100%;
    box-shadow: 0 8px 24px -12px rgba(124, 107, 245, .8),
                0 0 0 1px rgba(255, 255, 255, .12) inset;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 14px 32px -14px rgba(124, 107, 245, .95),
                0 0 0 1px rgba(255, 255, 255, .2) inset;
}

.btn--lg {
    padding: 18px 34px;
    font-size: 16.5px;
    width: 100%;
}

@media (min-width: 640px) {
    .btn--lg { width: auto; }
}

.btn--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover { background: rgba(255, 255, 255, .12); }

.btn--sm { padding: 10px 18px; font-size: 13px; }

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

.hero {
    position: relative;
    padding: 46px 0 60px;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 900px) {
    .hero { padding: 80px 0 96px; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, .28);
    background: rgba(139, 92, 246, .10);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ddd0f7;
}

.badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 0 0 rgba(167, 139, 250, .7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70%  { box-shadow: 0 0 0 8px rgba(167, 139, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}

.hero__title {
    margin-top: 26px;
    font-size: clamp(36px, 10.4vw, 72px);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.1;
    text-wrap: balance;
}

/* animated gradient shine that sweeps across the headline */
.shine {
    background: linear-gradient(100deg,
        #8b7cf8 0%, #c07df3 34%,
        #ffffff 50%, #c07df3 66%, #8b7cf8 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    from { background-position: 180% 0; }
    to   { background-position: -80% 0; }
}

.hero__sub {
    max-width: 580px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(15.5px, 3.6vw, 17.5px);
    line-height: 1.72;
}

.hero__when {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .005em;
    color: #d6d6e4;
}

.chip i { color: var(--violet-soft); font-size: 12px; opacity: .85; }

.hero__cta {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero__note {
    font-size: 13px;
    color: var(--muted-2);
    letter-spacing: .01em;
}

/* ---------- countdown ---------- */

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 400px;
    margin: 36px auto 0;
}

.countdown__cell {
    padding: 14px 4px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
    text-align: center;
}

.countdown__num {
    display: block;
    font-size: clamp(23px, 6.6vw, 30px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.01em;
    font-variant-numeric: tabular-nums;
    color: var(--text);
}

.countdown__lbl {
    display: block;
    margin-top: 9px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.countdown__live {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-glow);
    background: rgba(139, 92, 246, .12);
    text-align: center;
    font-weight: 650;
}

/* ---------- glass cards ---------- */

.glass {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--r);
    background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .022));
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform .5s var(--ease), border-color .4s var(--ease);
}

/* thin top edge — a single hairline of light, no rainbow */
.glass::before {
    content: "";
    position: absolute;
    top: 0; left: 14%; right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
}

.glass:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
}

.cards {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(139, 92, 246, .14);
    border: 1px solid rgba(139, 92, 246, .28);
    color: var(--violet-soft);
    font-size: 17px;
}

.card__num {
    position: absolute;
    top: 20px; right: 22px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .18);
    letter-spacing: .12em;
}

.card h3 {
    margin-top: 18px;
    font-size: 18.5px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.008em;
}

.card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

/* ---------- audience chips ---------- */

.who {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto;
}

.who__chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .005em;
    transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}

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

.who__chip:hover {
    transform: translateY(-3px);
    border-color: var(--line-2);
    background: rgba(255, 255, 255, .085);
}

/* ---------- instructor ---------- */

.tutor {
    display: grid;
    gap: 26px;
    align-items: center;
    padding: 26px 22px;
}

@media (min-width: 820px) {
    .tutor {
        grid-template-columns: 260px 1fr;
        gap: 44px;
        padding: 40px;
    }
}

.tutor__photo {
    position: relative;
    width: 168px;
    height: 168px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, rgba(139, 92, 246, .8), rgba(180, 92, 240, .45));
    padding: 2px;
    box-shadow: 0 18px 46px -22px rgba(139, 92, 246, .8);
}

@media (min-width: 820px) {
    .tutor__photo { width: 100%; height: auto; aspect-ratio: 1; }
}

.tutor__photo > span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink-3);
    display: grid;
    place-items: center;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: rgba(255, 255, 255, .55);
}

.tutor__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tutor__name {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
    letter-spacing: -.018em;
}

.tutor__role {
    margin-top: 8px;
    color: var(--violet-soft);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
}

.tutor__bio {
    margin-top: 18px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 60ch;
}

/* grid children default to min-width:auto, which lets long words push the
   card wider than the phone — pin them to 0 so the text wraps instead */
.tutor > * { min-width: 0; }

.tutor__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.stat {
    padding: 14px 10px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    text-align: center;
}

.stat b {
    display: block;
    font-size: clamp(20px, 5.4vw, 25px);
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--text);
}

.stat span {
    display: block;
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
}

/* ---------- testimonials marquee ---------- */

.marquee {
    position: relative;
    overflow: hidden;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: slide 42s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

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

.quote {
    width: 300px;
    flex: 0 0 auto;
    padding: 22px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(10px);
}

.quote p {
    font-size: 15px;
    line-height: 1.66;
    color: #d8d8e6;
}

.quote__by {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.quote__av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(139, 92, 246, .2);
    border: 1px solid rgba(139, 92, 246, .32);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--violet-soft);
}

.quote__by b { font-size: 14px; font-weight: 600; display: block; }
.quote__by small { color: var(--muted-2); font-size: 12.5px; }

.stars { color: #e0b551; font-size: 11.5px; letter-spacing: 2.5px; }

/* results grid */

.results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 34px;
}

@media (min-width: 720px) { .results { grid-template-columns: repeat(4, 1fr); } }

.result {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background:
        radial-gradient(120% 90% at 20% 0%, rgba(139, 92, 246, .20), transparent 62%),
        radial-gradient(120% 90% at 90% 100%, rgba(34, 211, 238, .10), transparent 62%),
        var(--ink-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.result::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .6;
}

.result b {
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.result span {
    position: relative;
    z-index: 2;
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5;
}

/* ---------- pricing ---------- */

/* The price card is the one place the eye should land, so it stays almost
   monochrome — white numerals, hairline rules, a single violet accent. */
.price-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 34px 26px 30px;
    text-align: center;
    border-radius: var(--r-lg);
}

@media (min-width: 640px) {
    .price-card { padding: 40px 40px 34px; }
}

.price-card::before { left: 26%; right: 26%; }

.price-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.price-old {
    font-size: 21px;
    font-weight: 400;
    color: var(--muted-2);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.price-new {
    font-size: clamp(56px, 15vw, 72px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    color: #fff;
}

.price-save {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(139, 92, 246, .13);
    border: 1px solid rgba(139, 92, 246, .3);
    color: var(--violet-soft);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .01em;
}

.includes {
    list-style: none;
    margin: 28px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    text-align: left;
    display: grid;
    gap: 13px;
}

.includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #d6d6e4;
}

.includes i {
    margin-top: 5px;
    font-size: 11px;
    color: var(--violet-soft);
    opacity: .85;
}

.urgency {
    margin-top: 26px;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.55;
}

.urgency i { color: #d8b45f; margin-right: 4px; }

.seats {
    margin-top: 18px;
}

.seats__bar {
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.seats__fill {
    height: 100%;
    width: 82%;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(139, 92, 246, .85), rgba(180, 92, 240, .85));
}

.seats small {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--muted-2);
}

.price-secure {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted-2);
    line-height: 1.55;
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq__item {
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
    transition: border-color .35s var(--ease);
}

.faq__item[open] { border-color: var(--line-2); }

.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 15.5px;
    line-height: 1.5;
    letter-spacing: -.004em;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary i {
    flex: 0 0 auto;
    font-size: 13px;
    color: var(--muted);
    transition: transform .3s var(--ease);
}

.faq__item[open] summary i { transform: rotate(180deg); color: var(--violet-soft); }

.faq__a {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
    max-width: 62ch;
}

.faq__a a {
    color: var(--violet-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(196, 181, 253, .4);
}

.faq__a a:hover { text-decoration-color: var(--violet-soft); }

/* ---------- final CTA ---------- */

.final {
    position: relative;
    padding: 44px 22px;
    border-radius: var(--r-lg);
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        radial-gradient(110% 130% at 50% 0%, rgba(139, 92, 246, .18), transparent 66%),
        rgba(255, 255, 255, .032);
    backdrop-filter: blur(14px);
}

@media (min-width: 900px) { .final { padding: 64px 40px; } }

.wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color .3s var(--ease);
}

.wa i { font-size: 14px; opacity: .8; }

.wa:hover { color: var(--text); }

/* ---------- footer ---------- */

.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 32px 0 96px;
    color: var(--muted-2);
    font-size: 13.5px;
    letter-spacing: .01em;
}

@media (min-width: 900px) { .footer { padding-bottom: 34px; } }

.footer__in {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

@media (min-width: 720px) {
    .footer__in { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer__links a:hover { color: var(--text); }

/* ---------- sticky mobile bar ---------- */

.dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 5, 11, .86);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(120%);
    transition: transform .45s var(--ease);
}

.dock.is-on { transform: translateY(0); }

@media (min-width: 900px) { .dock { display: none; } }

.dock__price {
    line-height: 1.25;
    padding-left: 4px;
}

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

.dock__price small {
    font-size: 11.5px;
    color: var(--muted-2);
    text-decoration: line-through;
}

.dock .btn { flex: 1; padding: 14px 18px; }

/* ---------- scroll reveal ---------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--d, 0ms);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee__track,
    .shine,
    .badge__dot { animation: none; }
}

/* ---------- prompt vault ---------- */

.prompts {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

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

.prompt {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prompt__tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid var(--line-2);
    background: rgba(255, 255, 255, .05);
}

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

.prompt__tag--ad   { color: #c4b5fd; border-color: rgba(168, 85, 247, .38); background: rgba(139, 92, 246, .12); }
.prompt__tag--reel { color: #f9a8d4; border-color: rgba(236, 56, 181, .34); background: rgba(236, 56, 181, .12); }
.prompt__tag--film { color: #7dd3fc; border-color: rgba(34, 211, 238, .32);  background: rgba(34, 211, 238, .11); }

.prompt__code {
    flex: 1;
    margin: 0;
    padding: 15px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .34);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12.8px;
    line-height: 1.72;
    color: #d7d7ea;
    letter-spacing: 0;
}

.prompt__out {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.8px;
    line-height: 1.6;
    color: var(--muted);
}

.prompt__out i {
    margin-top: 4px;
    font-size: 11px;
    color: var(--violet-soft);
    flex: 0 0 auto;
}

.prompts__note {
    margin: 22px auto 0;
    max-width: 640px;
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
}

.prompts__note i {
    margin-top: 5px;
    color: var(--violet-soft);
    flex: 0 0 auto;
}

/* ---------- agenda ---------- */

.agenda {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    display: grid;
    gap: 12px;
}

.agenda__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    transition: border-color .35s var(--ease), background .35s var(--ease);
}

.agenda__item:hover {
    border-color: var(--line-glow);
    background: rgba(255, 255, 255, .055);
}

.agenda__time {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agenda__item h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 5px;
}

.agenda__item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.66;
}

/* bolded phrases inside the hero paragraph read brighter than the body copy */
.hero__sub b { color: var(--text); font-weight: 600; }
