﻿/* -- Loader :: Start -- */
.main-loader {
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 30%);
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(3px);
}

    .main-loader img {
        width: 150px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.pc-nav {
    --pc-ink: #181220;
    --pc-paper: #ffffff;
    --pc-magenta: #C20B9C;
    --pc-hover: #FDEDF8;
    --pc-line: rgba(24,18,32,.10);
    --pc-tint: #F4ECFB;
    --pc-bg: rgba(255,255,255,.94);
    --pc-logo-h: 48px;
    --pc-nav-h: 64px;
    --pc-display: "Bricolage Grotesque","Inter",sans-serif;
    --pc-body: "Inter",sans-serif;
    --pc-mono: "JetBrains Mono",monospace;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--pc-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--pc-body);
    color: var(--pc-ink);
    line-height: 1.4;
}

    .pc-nav * {
        box-sizing: border-box
    }

.pc-nav__row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.1rem;
    padding: .85rem 24px
}

.pc-nav__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    justify-self: start
}

    .pc-nav__logo img {
        height: var(--pc-logo-h);
        width: auto;
        display: block
    }

.pc-nav__mid {
    justify-self: center;
    align-self: stretch;
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: var(--max);
}

.pc-nav__links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center
}

    .pc-nav__links a, .pc-nav__trigger {
        color: inherit;
        text-decoration: none;
        font-weight: 600;
        font-size: .92rem;
        position: relative
    }

.pc-nav__trigger {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: .35em
}

.pc-nav__links > li {
    position: relative;
    display: flex;
    align-items: center
}

.pc-nav__links a[aria-current="page"] {
    color: var(--pc-magenta)
}

.pc-nav__links > li.pc-nav--current > a:not(.pc-btn), .pc-nav__links > li.pc-nav--current > .pc-nav__trigger {
    color: var(--pc-magenta)
}

    .pc-nav__links > li.pc-nav--current > a:not(.pc-btn)::after, .pc-nav__links > li.pc-nav--current > .pc-nav__trigger::after {
        width: 100%
    }

.pc-nav__menu a[aria-current="page"] {
    background: var(--pc-hover);
    color: var(--pc-magenta)
}

.pc-nav__links > li > a:not(.pc-btn)::after, .pc-nav__links > li > .pc-nav__trigger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: var(--pc-magenta);
    border-radius: 2px;
    transition: width .18s ease
}

.pc-nav__links > li > a:not(.pc-btn):hover::after, .pc-nav__links > li > .pc-nav__trigger:hover::after, .pc-nav__drop:hover > .pc-nav__trigger::after, .pc-nav__drop:focus-within > .pc-nav__trigger::after {
    width: 100%
}

.pc-nav__caret {
    display: none;
    margin-left: auto;
    width: .5em;
    height: .5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease
}

.pc-nav__menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--pc-line);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(24,18,32,.16);
    padding: .45rem;
    min-width: 225px;
    display: none;
    z-index: 70
}

    .pc-nav__menu a {
        display: block;
        padding: .5em .85em;
        border-radius: 9px;
        font-size: .86rem;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        color: var(--pc-ink)
    }

        .pc-nav__menu a::after {
            content: none !important
        }

        .pc-nav__menu a:hover {
            background: var(--pc-hover);
            color: var(--pc-magenta)
        }

.pc-nav__all {
    border-top: 1px solid var(--pc-line);
    margin-top: .3rem;
    padding-top: .6em;
    color: var(--pc-magenta) !important
}

.pc-nav__menu--cols {
    grid-template-columns: repeat(2,minmax(185px,1fr));
    width: max-content
}

.pc-nav__cta {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-self: end
}

    /* when the cta slot has no visible buttons (they've moved to the drawer top-bar),
   hide it so the header grid collapses that column cleanly */
    .pc-nav__cta:not(:has(a, button)) {
        display: none;
    }

.pc-btn {
    font-family: var(--pc-display);
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .55em;
    padding: .5em 1.1em;
    border-radius: 999px;
    border: 2.5px solid var(--pc-ink);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .16s ease,box-shadow .16s ease,background .16s ease
}

.pc-btn--ink {
    background: var(--pc-ink);
    color: var(--pc-paper);
    box-shadow: 0 4px 0 rgba(24,18,32,.55)
}

    .pc-btn--ink:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 0 rgba(24,18,32,.55);
        color: var(--pc-paper) !important
    }

.pc-btn--ghost {
    background: transparent;
    color: var(--pc-ink);
    box-shadow: 0 4px 0 rgba(24,18,32,.16)
}

    .pc-btn--ghost:hover {
        transform: translateY(-3px);
        background: rgba(24,18,32,.04)
    }

.pc-nav__burger {
    display: none;
    background: none;
    border: 2.5px solid var(--pc-ink);
    border-radius: 10px;
    width: 44px;
    height: 40px;
    cursor: pointer;
    font-size: 1.15rem;
    font-family: var(--pc-mono);
    color: var(--pc-ink);
    justify-self: end
}

.pc-nav__mcta {
    display: none
}

@media(min-width:993px) {
    .pc-nav__drop::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px
    }

    .pc-nav__drop:hover > .pc-nav__menu, .pc-nav__drop:focus-within > .pc-nav__menu {
        display: block
    }

    .pc-nav__drop:hover > .pc-nav__menu--cols, .pc-nav__drop:focus-within > .pc-nav__menu--cols {
        display: grid
    }
}

@media(max-width:1200px) {
    .pc-nav__links {
        gap: 1rem
    }
}

@media(max-width:1120px) {
    .pc-nav__row {
        gap: .7rem
    }

    .pc-nav__links {
        gap: .6rem
    }

        .pc-nav__links a, .pc-nav__trigger {
            font-size: .85rem
        }

    .pc-nav__cta {
        gap: .4rem
    }

        .pc-nav__cta .pc-btn {
            padding: .45em .8em;
            font-size: .8rem
        }
}

@media(max-width:992px) {
    .pc-nav__cta {
        display: none
    }

    .pc-nav__burger {
        display: block
    }

    .pc-nav__links {
        position: fixed;
        top: var(--pc-nav-h);
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 22px 34px rgba(24,18,32,.14);
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        padding: .8rem 24px 1.4rem;
        gap: .15rem;
        display: none;
        z-index: 80;
        max-height: calc(100vh - var(--pc-nav-h));
        overflow-y: auto;
        overflow-x: hidden
    }

        .pc-nav__links.open {
            display: flex
        }

        .pc-nav__links > li {
            display: block;
            border-bottom: 1px solid var(--pc-line)
        }

            .pc-nav__links > li > a:not(.pc-btn), .pc-nav__trigger {
                display: flex;
                align-items: center;
                width: 100%;
                padding: .9rem 0;
                font-size: 1rem
            }

    .pc-nav__trigger {
        justify-content: flex-start
    }

        .pc-nav__trigger::after {
            display: none
        }

    .pc-nav__caret {
        display: inline-block
    }

    .pc-nav__drop.open > .pc-nav__trigger .pc-nav__caret {
        transform: rotate(-135deg)
    }

    .pc-nav__menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--pc-tint);
        border-radius: 0;
        padding: .1rem 0 .6rem .9rem;
        min-width: 0;
        display: none
    }

    .pc-nav__drop.open > .pc-nav__menu {
        display: block
    }

    .pc-nav__menu--cols {
        grid-template-columns: 1fr;
        width: auto
    }

    .pc-nav__drop.open > .pc-nav__menu--cols {
        display: grid
    }

    .pc-nav__menu a {
        padding: .55em 0;
        white-space: normal
    }

    .pc-nav__mcta {
        display: block
    }

        .pc-nav__mcta a {
            padding: .7rem 0;
            font-weight: 700
        }
}

@media(prefers-reduced-motion:reduce) {
    .pc-nav__links a::after, .pc-nav__trigger::after, .pc-btn, .pc-nav__caret {
        transition: none
    }
}

/*Middle Panel*/
:root {
    --paper: #FFFFFF;
    --paper-deep: #F5F5F3;
    --ink: #181220;
    --ink-soft: #2A2135;
    --purple: #6B2FA0;
    --magenta: #C20B9C;
    --grad: linear-gradient(135deg,#6B2FA0,#C20B9C);
    --amber: #FFB424;
    --pen: #C20B9C;
    --line: rgba(24,18,32,.16);
    --module: #6B2FA0;
    --module-tint: #F4ECFB;
    --module-soft: rgba(107,47,160,.14);
    --ui-border: rgba(24,18,32,.10);
    --ui-grey: #F7F6F9;
    --tint-pink: #FDEDF8;
    --display: "Bricolage Grotesque","Inter",sans-serif;
    --body: "Inter",sans-serif;
    --mono: "JetBrains Mono",monospace;
    --hand: "Caveat",cursive;
    --max: 1180px;
    --rad: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /*padding-bottom: 96px;*/
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(24,18,32,.028) 31px 32px);
        pointer-events: none;
        z-index: 0;
    }

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

section {
    position: relative;
    z-index: 1;
}

::selection {
    background: var(--amber);
    color: var(--ink);
}

a {
    color: inherit;
}

    a:focus-visible, button:focus-visible {
        outline: 3px solid var(--magenta);
        outline-offset: 3px;
        border-radius: 4px;
    }

.eyebrow {
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .6em;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: currentColor;
    }

h1, h2, h3 {
    font-family: var(--display);
    line-height: 1.04;
    letter-spacing: -.015em;
}

h2 {
    font-size: clamp(1.9rem,4vw,3rem);
    font-weight: 800;
}

.lede {
    font-size: clamp(1.02rem,1.6vw,1.22rem);
    color: var(--ink-soft);
    max-width: 62ch;
}

.hand {
    font-family: var(--hand);
    color: var(--pen);
    font-weight: 700;
    font-size: clamp(1.1rem,2vw,1.4rem);
    line-height: 1.2;
    transform: rotate(-2deg);
    display: inline-block;
}

.tick {
    font-family: var(--hand);
    font-weight: 700;
    color: var(--pen);
    display: inline-block;
    line-height: 1;
}

.btn {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .55em;
    padding: .9em 1.65em;
    border-radius: 999px;
    border: 2.5px solid var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.btn--ink {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 6px 0 rgba(24,18,32,.9);
}

    .btn--ink:hover {
        transform: translateY(-3px);
        box-shadow: 0 9px 0 rgba(24,18,32,.9);
    }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: 0 6px 0 rgba(24,18,32,.25);
}

    .btn--ghost:hover {
        transform: translateY(-3px);
        background: rgba(24,18,32,.04);
    }

.btn--grad {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 0 rgba(107,47,160,.55);
}

    .btn--grad:hover {
        transform: translateY(-3px);
        box-shadow: 0 9px 0 rgba(107,47,160,.55);
    }

/* ---------- global ticker ---------- */
.ticker {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: .62em 0;
    position: relative;
    z-index: 5;
}

.ticker__inner {
    display: inline-flex;
    animation: slide 36s linear infinite;
}

.ticker span {
    font-family: var(--mono);
    font-size: .82rem;
    letter-spacing: .06em;
    padding: 0 1.6em;
    display: inline-flex;
    align-items: center;
    gap: .7em;
}

.ticker b {
    color: var(--amber);
    font-weight: 700;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- global nav (finalised: brand left, centred links, ctas right, no heavy line) ---------- */
header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
}

.nav__row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 24px;
    max-width: var(--max);
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.brand__word {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.32rem;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.brand__dots {
    display: flex;
    gap: 5px;
    padding-left: 2px;
}

    .brand__dots i {
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

        .brand__dots i:nth-child(1) {
            background: var(--magenta);
        }

        .brand__dots i:nth-child(2) {
            background: var(--purple);
        }

        .brand__dots i:nth-child(3) {
            background: #2F80ED;
        }

        .brand__dots i:nth-child(4) {
            background: var(--amber);
        }

.nav__menu {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 1.4rem;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    list-style: none;
    margin: 0 auto;
}

    .nav__links a {
        text-decoration: none;
        font-weight: 600;
        font-size: .94rem;
        position: relative;
        color: var(--ink);
    }

        .nav__links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background: var(--magenta);
            border-radius: 2px;
            transition: width .18s ease;
        }

        .nav__links a:hover::after {
            width: 100%;
        }

.nav__cta {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
}

    .nav__cta .btn {
        padding: .5em 1.05em;
        font-size: .9rem;
        box-shadow: 0 4px 0 rgba(24,18,32,.85);
    }

    .nav__cta .btn--ghost {
        box-shadow: 0 4px 0 rgba(24,18,32,.2);
    }

    .nav__cta .btn--ink:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 0 rgba(24,18,32,.85);
    }

    .nav__cta .btn--ghost:hover {
        transform: translateY(-2px);
    }

.burger {
    display: none;
    background: none;
    border: 2.5px solid var(--ink);
    border-radius: 10px;
    width: 44px;
    height: 40px;
    cursor: pointer;
    font-size: 1.15rem;
    font-family: var(--mono);
    color: var(--ink);
    flex-shrink: 0;
}

/* ---------- hero + equation ---------- */
.hero {
    padding: clamp(3.5rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,3.5rem);
    text-align: center;
}

    .hero .eyebrow {
        color: var(--module);
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem,5.6vw,4.3rem);
        font-weight: 800;
        margin: 1.1rem auto 1.2rem;
        max-width: 18ch;
    }

    .hero .lede {
        margin: 0 auto;
    }

.hero__note {
    margin-top: .9rem;
}

.lede--pop {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.15rem,2.3vw,1.6rem);
    color: var(--ink);
    background: linear-gradient(transparent 58%, rgba(255,180,36,.55) 58%);
    padding: .05em .35em;
    line-height: 1.42;
    letter-spacing: -.01em;
}

.equation {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(.6rem,2vw,1.2rem);
    margin: clamp(2.2rem,5vw,3.4rem) auto 0;
    flex-wrap: wrap;
}

.eq-box {
    border: 2.5px solid var(--ink);
    border-radius: var(--rad);
    background: #fff;
    box-shadow: 0 7px 0 rgba(24,18,32,.18);
    padding: 1.3rem 1.6rem;
    min-width: 200px;
    text-align: left;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .eq-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 11px 0 rgba(24,18,32,.18);
    }

    .eq-box small {
        font-family: var(--mono);
        font-size: .6rem;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--module);
        display: block;
        margin-bottom: .35rem;
    }

    .eq-box b {
        font-family: var(--display);
        font-weight: 800;
        font-size: 1.3rem;
        display: block;
    }

    .eq-box em {
        font-style: normal;
        font-size: .8rem;
        color: var(--ink-soft);
        display: block;
        margin-top: .2rem;
    }

.eq-box--total {
    background: var(--module-tint);
    border-color: var(--module);
}

    .eq-box--total small {
        color: var(--module);
    }

.eq-sign {
    font-family: var(--hand);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--pen);
    align-self: center;
    transform: rotate(-4deg);
}

/* ---------- mode toggle ---------- */
.mode {
    padding: clamp(2rem,4vw,3rem) 0 0;
}

.mode__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mode__label {
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink-soft);
}

.segment {
    display: inline-flex;
    border: 2.5px solid var(--ink);
    border-radius: 999px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 5px 0 rgba(24,18,32,.18);
}

    .segment button {
        font-family: var(--display);
        font-weight: 700;
        font-size: .9rem;
        border: none;
        background: transparent;
        color: var(--ink-soft);
        border-radius: 999px;
        padding: .55em 1.3em;
        cursor: pointer;
        transition: background .18s ease, color .18s ease;
    }

        .segment button.on {
            background: var(--module-tint);
            color: var(--ink);
            box-shadow: inset 0 0 0 2px rgba(107,47,160,.35);
        }

/* ---------- builder ---------- */
.builder {
    padding: clamp(2.5rem,5vw,4rem) 0 clamp(4rem,8vw,6rem);
}

.part {
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 0 rgba(24,18,32,.16);
    padding: clamp(1.6rem,3.5vw,2.4rem);
    margin-bottom: 1.6rem;
    transition: opacity .3s ease;
}

    .part.is-off {
        pointer-events: none;
    }

        .part.is-off .tiers,
        .part.is-off .part__foot {
            display: none;
        }

        .part.is-off .part__head {
            margin-bottom: 0;
            opacity: .55;
        }

.skipnote {
    display: none;
    margin-top: 1.1rem;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 2px dashed var(--line);
    border-radius: 12px;
    padding: .85em 1.2em;
}

    .skipnote .tick {
        font-size: 1.1rem;
        margin-right: .4em;
    }

.part.is-off .skipnote {
    display: inline-block;
}

.part__head {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.6rem;
}

.part__n {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: var(--grad);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.part__head h2 {
    font-size: clamp(1.5rem,3vw,2.1rem);
    margin-bottom: .25rem;
}

.part__head p {
    color: var(--ink-soft);
    font-size: .97rem;
    max-width: 60ch;
}

.part__head .hand {
    font-size: 1.15rem;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: .8rem;
}

.tier {
    position: relative;
    border: 2px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 1.15rem 1rem 1.05rem;
    text-align: left;
    cursor: pointer;
    font-family: var(--body);
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

    .tier:hover {
        transform: translateY(-3px);
        border-color: var(--ink);
    }

    .tier.on {
        border-color: var(--module);
        background: var(--module-tint);
        box-shadow: 0 6px 0 var(--module-soft);
    }

        .tier.on::after {
            content: "\2713";
            font-family: var(--hand);
            font-weight: 700;
            color: var(--pen);
            position: absolute;
            top: 1.2rem;
            right: .8rem;
            font-size: 1.3rem;
        }

    /*.tier span {
        display: block;
        font-weight: 700;
        font-size: .95rem;
        margin-bottom: .3rem;
    }*/

    .tier .tier__plan {
        display: block;
        font-family: var(--display);
        font-weight: 800;
        font-size: 1.02rem;
        letter-spacing: -.01em;
        margin-bottom: .1rem;
    }

    .tier .tier__staff {
        display: block;
        font-family: var(--mono);
        font-size: .68rem;
        font-weight: 500;
        letter-spacing: .05em;
        color: var(--ink-soft);
        margin-bottom: .20rem;
    }
.tier__was {
    display: block;
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: .10rem;
    text-decoration: line-through;
    text-decoration-color: var(--magenta);
    text-decoration-thickness: 1.3px;
    /*padding-bottom: 5px;*/
}
    .tier .tier__off {
        position: absolute;
        top: -11px;
        right: 10px;
        font-family: var(--mono);
        font-size: .800rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        background: var(--amber);
        color: var(--ink);
        border: 2px solid var(--ink);
        border-radius: 999px;
        padding: .28em .7em;
        transform: rotate(2deg);
        white-space: nowrap;
    }
    .tier strong {
        display: block;
        font-family: var(--mono);
        font-weight: 700;
        font-size: 1.05rem;
        color: var(--module);
        margin-bottom: .35rem;
    }

    .tier small {
        display: block;
        font-size: .74rem;
        color: var(--ink-soft);
        line-height: 1.45;
    }

.badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    font-family: var(--mono);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 6px;
    padding: .25em .7em;
    white-space: nowrap;
}

.packs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .9rem;
}

.pack {
    position: relative;
    border: 2px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 1.15rem 1rem 1.05rem;
    text-align: left;
    cursor: pointer;
    font-family: var(--body);
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

    .pack:hover {
        transform: translateY(-3px);
        border-color: var(--ink);
    }

    .pack.on {
        border-color: var(--module);
        background: var(--module-tint);
        box-shadow: 0 6px 0 var(--module-soft);
    }

        .pack.on::after {
            content: "\2713";
            font-family: var(--hand);
            font-weight: 700;
            color: var(--pen);
            position: absolute;
            top: .5rem;
            right: .8rem;
            font-size: 1.3rem;
        }

    .pack span {
        display: block;
        font-weight: 700;
        font-size: .95rem;
        margin-bottom: .3rem;
    }

    .pack strong {
        display: block;
        font-family: var(--mono);
        font-weight: 700;
        font-size: 14px;
        margin-bottom: .35rem;
    }

        .pack strong b {
            color: var(--module);
            font-weight: 700;
        }

    .pack small {
        display: block;
        font-size: .74rem;
        color: var(--ink-soft);
        line-height: 1.45;
    }

    .pack .bonus {
        display: inline-block;
        margin-top: .45rem;
        font-family: var(--mono);
        font-size: .6rem;
        font-weight: 700;
        background: var(--tint-pink);
        color: var(--magenta);
        border-radius: 5px;
        padding: .25em .6em;
    }

.part__foot {
    margin-top: 1.4rem;
    font-size: .86rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

    .part__foot .tick {
        font-size: 1.2rem;
    }

/* ---------- bill bar ---------- */
.billbar {
    margin-top: 1.6rem;
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    box-shadow: 0 8px 0 rgba(24,18,32,.16);
}

.billbar__row {
    max-width: var(--max);
    margin: 0 auto;
    padding: .85rem 24px;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.billbar__kicker {
    font-family: var(--mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--module);
    white-space: nowrap;
}

.billbar__lines {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
}

.bline {
    font-size: .88rem;
    color: var(--ink-soft);
    white-space: nowrap;
}

    .bline b {
        font-family: var(--mono);
        font-weight: 700;
        color: var(--ink);
    }

    .bline .plus {
        font-family: var(--hand);
        color: var(--pen);
        font-weight: 700;
        font-size: 1.1rem;
        margin-right: .5rem;
    }

.billbar__cta {
    margin-left: auto;
    flex-shrink: 0;
}

    .billbar__cta .btn {
        padding: .65em 1.5em;
        font-size: .95rem;
    }

/* ---------- included (ink band) ---------- */
.included {
    background: var(--ink);
    color: #fff;
    padding: clamp(4rem,8vw,6rem) 0;
}

    .included .eyebrow {
        color: var(--amber);
    }

    .included h2 {
        margin: 1.1rem 0 2.2rem;
        max-width: 24ch;
    }

.included__grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: clamp(1.6rem,4vw,3rem);
}

.inc-list {
    list-style: none;
    display: grid;
    gap: .85rem;
}

    .inc-list li {
        display: flex;
        gap: .8rem;
        align-items: flex-start;
        font-size: 1rem;
        color: rgba(255,255,255,.88);
    }

    .inc-list .tick {
        color: var(--amber);
        font-size: 1.35rem;
        flex-shrink: 0;
        margin-top: -2px;
    }

    .inc-list b {
        color: #fff;
    }

.unl-big {
    color: var(--amber);
    display: inline-block;
    transform: rotate(-1deg);
}

.hl {
    background: var(--amber);
    color: var(--ink);
    font-weight: 800;
    padding: .02em .32em;
    border-radius: 4px;
    display: inline-block;
    transform: rotate(-1deg);
}

.included__note {
    margin-top: 2rem;
}

    .included__note .hand {
        color: var(--amber);
    }

/* ---------- credit rules ---------- */
.rules {
    padding: clamp(4rem,8vw,6rem) 0;
    background: var(--paper-deep);
}

.rules__head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.rules .eyebrow {
    color: var(--module);
    justify-content: center;
}

.rules h2 {
    margin: 1.1rem auto .5rem;
    max-width: 22ch;
}

.rules__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.1rem;
}

.rule {
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: var(--rad);
    box-shadow: 0 7px 0 rgba(24,18,32,.18);
    padding: 1.4rem 1.3rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .rule:hover {
        transform: translateY(-4px);
        box-shadow: 0 11px 0 rgba(24,18,32,.18);
    }

.rule__k {
    font-family: var(--mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--module);
    display: block;
    margin-bottom: .55rem;
}

.rule h3 {
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: .4rem;
}

.rule p {
    font-size: .86rem;
    color: var(--ink-soft);
}

/* ---------- FAQ chats ---------- */
.faq {
    padding: clamp(4rem,8vw,6rem) 0;
}

.faq__head {
    text-align: center;
    margin-bottom: 2.6rem;
}

.faq .eyebrow {
    color: var(--module);
    justify-content: center;
}

.faq h2 {
    margin: 1.1rem auto .5rem;
    max-width: 20ch;
}

.chat__grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1.8rem 2.2rem;
    max-width: 920px;
    margin: 0 auto;
}

.chat {
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: 16px;
    padding: 1.3rem 1.3rem 1.4rem;
    box-shadow: 0 8px 0 rgba(24,18,32,.16);
    transition: transform .2s ease;
}

    .chat:nth-child(odd) {
        transform: rotate(-1.2deg);
    }

    .chat:nth-child(even) {
        transform: rotate(1deg);
    }

    .chat:hover {
        transform: rotate(0) translateY(-4px);
    }

.bubble {
    border-radius: 14px;
    padding: .8rem 1rem;
    font-size: .9rem;
    line-height: 1.5;
    max-width: 92%;
    margin-bottom: .85rem;
}

.bubble--them {
    background: rgba(24,18,32,.06);
    border: 1.5px solid var(--line);
    border-bottom-left-radius: 4px;
}

.bubble--us {
    background: var(--grad);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
    margin-bottom: 0;
}

.bubble__who {
    display: block;
    font-family: var(--mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: .3rem;
}

/* ---------- CTA ---------- */
.cta {
    background: var(--amber);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    padding: clamp(3.5rem,7vw,5rem) 0;
    text-align: center;
}

    .cta h2 {
        max-width: 22ch;
        margin: 0 auto 1rem;
    }

    .cta p {
        color: rgba(24,18,32,.8);
        max-width: 52ch;
        margin: 0 auto 1.8rem;
        font-weight: 500;
    }

.cta__row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- footer ---------- */
footer {
    background: var(--ink);
    color: #fff;
    padding: clamp(3rem,6vw,4.5rem) 0 2.5rem;
}

.foot__top {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) repeat(3,minmax(0,1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

footer .brand__word {
    font-size: 2rem;
}

footer .brand__dots i {
    width: 8px;
    height: 8px;
}

.foot__note {
    font-family: var(--hand);
    font-size: 1.25rem;
    color: var(--amber);
    margin-top: .8rem;
    transform: rotate(-1.5deg);
    display: inline-block;
}

.foot__col h4 {
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.1rem;
}

.foot__col ul {
    list-style: none;
    display: grid;
    gap: .65rem;
}

.foot__col a {
    text-decoration: none;
    font-size: .92rem;
    color: rgba(255,255,255,.85);
}

    .foot__col a:hover {
        color: var(--amber);
    }

.foot__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
    font-family: var(--mono);
    font-size: .74rem;
    color: rgba(255,255,255,.55);
    flex-wrap: wrap;
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

/* ---------- responsive ---------- */
@media (max-width:1080px) {
    .tiers, .packs {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:1180px) and (min-width:1081px) {
    .tiers {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:980px) {
    .included__grid {
        grid-template-columns: 1fr;
    }

    .rules__grid {
        grid-template-columns: repeat(2,1fr);
    }

    .chat__grid {
        grid-template-columns: 1fr;
    }

    .foot__top {
        grid-template-columns: 1fr 1fr;
    }

    .billbar__lines {
        gap: .9rem;
    }
}

@media (max-width:900px) {
    .burger {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 2.5px solid var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 1.4rem 24px 1.8rem;
        gap: 1.1rem;
        display: none;
        z-index: 60;
    }

    header.nav.open .nav__menu {
        display: flex;
    }

    .nav__links {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        gap: 1rem;
    }

    .nav__cta {
        flex-direction: column;
        align-items: stretch;
        gap: .6rem;
    }

        .nav__cta .btn {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width:760px) {
    .tiers, .packs {
        grid-template-columns: repeat(2,1fr);
    }

    .rules__grid {
        grid-template-columns: 1fr;
    }

    .equation {
        flex-direction: column;
        align-items: stretch;
    }

    .eq-sign {
        text-align: center;
        transform: rotate(0);
        font-size: 1.9rem;
    }

    .billbar__row {
        flex-wrap: wrap;
        gap: .5rem .9rem;
        padding: .75rem 18px;
    }

    .billbar__cta {
        margin-left: 0;
        width: 100%;
    }

        .billbar__cta .btn {
            width: 100%;
            justify-content: center;
        }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    .ticker__inner {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        transition: none !important;
    }
}

/* ===== enhancement: prominent sticky mode toggle ===== */
/* --sticky-offset: set to your global header height (or 0 if it does not stick) */
.mode {
    --sticky-offset: 72px;
    position: sticky;
    top: var(--sticky-offset);
    z-index: 45;
    background: var(--paper);
    padding: .85rem 0;
    margin: 1.4rem 0 0;
    border-top: 1.5px solid var(--line);
    border-bottom: 2.5px solid var(--ink);
    box-shadow: 0 10px 24px -18px rgba(24,18,32,.4);
}

.mode__label {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
}

.segment button {
    font-size: .95rem;
    padding: .65em 1.4em;
}

    .segment button.on {
        background: var(--grad);
        color: #fff;
        box-shadow: none;
    }

/* ===== enhancement: the workings ===== */
.workings {
    margin-top: 1.1rem;
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: 14px;
    box-shadow: 0 6px 0 rgba(24,18,32,.14);
    padding: 1rem 1.25rem 1.1rem;
    overflow: hidden;
    background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 31px, rgba(24,18,32,.028) 31px, rgba(24,18,32,.028) 32px);
}

.workings__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .6rem;
}

.workings__k {
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--module);
}

.workings__hand {
    font-family: var(--hand);
    font-size: 1.15rem;
    color: var(--module);
    transform: rotate(-1deg);
}

.wrow {
    display: flex;
    align-items: baseline;
    gap: .7em;
    font-family: var(--mono);
    font-size: .8rem;
    color: var(--ink);
    padding: .34em 0;
}

    .wrow i {
        flex: 1;
        border-bottom: 2px dotted rgba(24,18,32,.22);
        transform: translateY(-4px);
    }

    .wrow b {
        font-weight: 700;
        white-space: nowrap;
    }

.wrow--total {
    border-top: 2.5px solid var(--ink);
    margin-top: .45rem;
    padding-top: .6em;
    font-weight: 700;
}

    .wrow--total .wtick {
        color: #1B7A4B;
        margin-right: .35em;
    }

.wrow--muted {
    color: var(--ink-soft);
}

.workings.bump {
    animation: wbump .45s ease;
}

@keyframes wbump {
    from {
        transform: translateY(6px);
        opacity: .35;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .workings.bump {
        animation: none;
    }
}

.part.is-off .workings {
    display: none;
}

/* ===== enhancement: signup modal (site vocabulary) ===== */
.tier--trial {
    border-style: dashed;
}

.tier__flag {
    position: absolute;
    top: -11px;
    right: 10px;
    font-family: var(--mono);
    font-size: .800rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--grad);
    color: #fff;
    border-radius: 999px;
    padding: .28em .75em;
}

.pcmodal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
}

    .pcmodal[hidden] {
        display: none;
    }

.pcmodal__ov {
    position: absolute;
    inset: 0;
    background: rgba(24,18,32,.5);
    backdrop-filter: blur(4px);
}

.pcmodal__card {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: 92vh;
    max-height: 92dvh;
    overflow: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    box-shadow: 0 10px 0 rgba(24,18,32,.18);
    padding: 1.9rem clamp(1.2rem,4vw,2rem) 1.7rem;
}

.pcmodal__x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--ink);
    background: #fff;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 4px 0 rgba(24,18,32,.2);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pcmodal__x:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 0 rgba(24,18,32,.2);
    }

.pcmodal__eyebrow {
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--module);
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding-right: 2.8rem;
}

    .pcmodal__eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--module);
    }

.pcmodal__card h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.4rem,3.4vw,1.7rem);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin: .5rem 0 .25rem;
    padding-right: 2.8rem;
    color: var(--ink);
}

.pcmodal__sub {
    color: var(--ink-soft);
    font-size: .88rem;
    margin: 0 0 1rem;
}

.pcmodal__pick {
    display: flex;
    align-items: center;
    gap: .6em;
    flex-wrap: wrap;
    border: 2px solid var(--module);
    background: var(--module-tint);
    border-radius: 14px;
    padding: .75em .95em;
    margin-bottom: 1.15rem;
    font-size: .86rem;
    color: var(--ink);
    box-shadow: 0 5px 0 var(--module-soft);
}

    .pcmodal__pick .ptick {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--module);
        color: #fff;
        display: inline-grid;
        place-items: center;
        font-size: .7rem;
        flex: 0 0 auto;
    }

    .pcmodal__pick b {
        font-weight: 800;
    }

    .pcmodal__pick .plus {
        font-family: var(--display);
        font-weight: 800;
        color: var(--module);
    }

.pcmodal .frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: .85rem 1rem;
    margin-bottom: 1rem;
}
.pcmodal .frowsignin {  
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: .85rem 1rem;
    margin-bottom: 1rem;
}
.pcmodal label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .005em;
    color: var(--ink);
}

    .pcmodal label i {
        color: var(--module);
        font-style: normal;
    }

.pcmodal input:not([type="checkbox"]), .pcmodal select {
    width: 100%;
    height: 46px;
    margin-top: .38rem;
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 0 .9em;
    font-family: var(--body);
    font-size: .9rem;
    line-height: 1.2;
    color: var(--ink);
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.pcmodal input::placeholder {
    color: rgba(24,18,32,.42);
    font-weight: 500;
}

.pcmodal select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 2.5em;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23181220' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .95em center;
    background-size: 12px;
}

    .pcmodal input:focus, .pcmodal select:focus {
        outline: none;
        border-color: var(--module);
        box-shadow: 0 0 0 3px var(--module-soft);
    }

.pwreq {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: .1rem 0 1rem;
    padding: 0;
}

    .pwreq li {
        font-family: var(--mono);
        font-size: .6rem;
        font-weight: 700;
        letter-spacing: .03em;
        color: var(--ink-soft);
        border: 1.5px solid var(--line);
        border-radius: 999px;
        padding: .4em .8em;
        transition: all .15s ease;
    }

        .pwreq li::before {
            content: "\2717  ";
            color: #C0392B;
        }

        .pwreq li.ok {
            color: #1B7A4B;
            border-color: #1B7A4B;
            background: #E9F6EE;
        }

            .pwreq li.ok::before {
                content: "\2713  ";
                color: #1B7A4B;
            }

.pcmodal .chk {
    display: flex;
    gap: .6em;
    align-items: flex-start;
    font-weight: 500;
    font-size: .74rem;
    color: var(--ink-soft);
    margin-bottom: .6rem;
    line-height: 1.5;
}

    .pcmodal .chk input {
        margin-top: .25em;
        width: 15px;
        height: 15px;
        accent-color: var(--module);
        flex: 0 0 auto;
    }

    .pcmodal .chk a {
        color: var(--module);
        font-weight: 700;
    }

.smErr {
    background: #FDF3F1;
    border: 2px solid #E7B7AE;
    color: #B5290F;
    border-radius: 12px;
    padding: .65em .95em;
    font-size: .78rem;
    font-weight: 600;
    margin: 0 0 .9rem;
}

.pcmodal__go {
    width: 100%;
    height: 52px;
    padding: 0 1.65em;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: .7rem;
}

    .pcmodal__go:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

.smtalk p {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.65;
    margin: .4rem 0 1.1rem;
}

.smtalk .btn {
    margin: .25rem .5rem .45rem 0;
}

/* ---------- OTP / access-code step ---------- */
#OTP_FormValidation {
    display: block;
    margin: 0;
}

    #OTP_FormValidation > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    #OTP_FormValidation .form-group {
        margin: 0;
        text-align: center;
    }

#txtClientotp {
    max-width: 360px;
    height: 54px;
    margin: .2rem auto .9rem;
    text-align: center;
    font-family: var(--mono);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .38em;
    text-indent: .38em;
}

.otp-sent-message {
    display: block;
    font-size: .84rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 .5rem;
}

.otpmsg {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 .35rem;
}

a.otpmsg {
    color: var(--module);
    font-weight: 700;
    text-decoration: none;
}

    a.otpmsg:hover {
        text-decoration: underline;
    }

#junkboxmessage {
    margin-top: .75rem;
}

.junk-mail-message {
    display: inline-block;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink-soft);
    background: var(--ui-grey);
    border: 1.5px solid var(--ui-border);
    border-radius: 999px;
    padding: .5em 1em;
}

    .junk-mail-message b {
        font-weight: 600;
    }

/* ---------- wizard action bar: Previous (left) / Verify (right) ---------- */
.pcmodal .wizard-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--ui-border);
}

    .pcmodal .wizard-action .btn {
        min-width: 132px;
        height: 48px;
        padding: 0 1.5em;
        justify-content: center;
        font-family: var(--display);
        font-size: .95rem;
        font-weight: 700;
        border-radius: 999px;
        cursor: pointer;
    }

    .pcmodal .wizard-action .btn-secondary {
        margin-right: auto;
        background: #fff;
        color: var(--ink);
        border: 2.5px solid var(--ink);
        box-shadow: 0 5px 0 rgba(24,18,32,.22);
    }

        .pcmodal .wizard-action .btn-secondary:hover {
            transform: translateY(-2px);
            background: rgba(24,18,32,.04);
            box-shadow: 0 7px 0 rgba(24,18,32,.22);
        }

    .pcmodal .wizard-action .btn-primary {
        margin-left: auto;
        background: var(--grad);
        color: #fff;
        border: 2.5px solid transparent;
        box-shadow: 0 5px 0 rgba(107,47,160,.5);
    }

        .pcmodal .wizard-action .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 0 rgba(107,47,160,.5);
        }

    .pcmodal .wizard-action .btn:active {
        transform: translateY(1px);
    }

    .pcmodal .wizard-action .btn:focus-visible {
        outline: 3px solid var(--module-soft);
        outline-offset: 3px;
    }

    .pcmodal .wizard-action .btn:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

@media (max-width:560px) {
    .pcmodal .frow {
        grid-template-columns: 1fr;
    }

    .mode {
        --sticky-offset: 60px;
    }

    .pcmodal__card {
        padding: 1.5rem 1.1rem 1.3rem;
    }

    .bline {
        white-space: normal;
    }

    .billbar__row {
        padding: .85rem 16px;
        gap: .7rem;
    }

    .pcmodal .wizard-action .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 1em;
    }

    .pcmodal__go {
        height: 50px;
        font-size: 1rem;
    }

    #txtClientotp {
        letter-spacing: .28em;
        text-indent: .28em;
    }
}
.smSignIn input:not([type="checkbox"]) {
    height: 50px;
    margin-top: .45rem;
    border-radius: 14px;
    border-color: var(--ui-border);
    background-color: var(--ui-grey);
    background-repeat: no-repeat;
    background-position: right 1.05em center;
    background-size: 18px 18px;
    padding: 0 3.1em 0 .9em;
    font-size: .95rem;
    font-weight: 500;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

    .smSignIn input:not([type="checkbox"]):hover {
        border-color: var(--line);
        background-color: #fff;
    }

    .smSignIn input:not([type="checkbox"]):focus {
        background-color: #fff;
        border-color: var(--module);
        box-shadow: 0 0 0 4px var(--module-soft), 0 1px 0 rgba(24,18,32,.04);
    }

/* field icons (decorative; labels already carry the meaning) */
#txtUserEmailId {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2FA0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2.5'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

#txtUserPassword {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2FA0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z'/%3E%3Ccircle cx='16.5' cy='7.5' r='.75' fill='%236B2FA0' stroke='none'/%3E%3C/svg%3E");
}

/* autofill: delay the UA repaint instead of masking it, so the icon stays visible */
.smSignIn input:-webkit-autofill {
    -webkit-text-fill-color: var(--ink);
    caret-color: var(--ink);
    transition: background-color 100000s ease-in-out 0s, border-color .18s ease, box-shadow .18s ease;
}
/*Footer*/
.pcfe {
    --bg: #181220;
    --text: #fff;
    --link: rgba(255,255,255,.82);
    --muted: rgba(255,255,255,.5);
    --line: rgba(255,255,255,.14);
    --mag: #C20B9C;
    --amber: #FFB424;
    --display: "Bricolage Grotesque","Inter",sans-serif;
    --body: "Inter",sans-serif;
    --mono: "JetBrains Mono",monospace;
    --hand: "Caveat",cursive;
    background: var(--bg);
    background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 31px, rgba(255,255,255,.05) 31px, rgba(255,255,255,.05) 32px);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.6;
    padding: 0 0 1.4rem;
    border-top: 3px solid var(--amber);
    position: relative;
    -webkit-font-smoothing: antialiased;
}

    .pcfe * {
        box-sizing: border-box;
    }

    .pcfe::before {
        content: "";
        position: absolute;
        top: -3px;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg,#2F80ED,#6B2FA0,#C20B9C,#FFB424);
    }

.pcfe__wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.pcfe__hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.4rem;
    flex-wrap: wrap;
    padding: 1.7rem 0 1.3rem;
    border-bottom: 2px dotted rgba(255,255,255,.28);
}

.pcfe__logo img {
    height: 36px;
    width: auto;
    display: block;
}

.pcfe__note {
    font-family: var(--hand);
    font-size: 1.25rem;
    color: var(--amber);
    transform: rotate(-1.4deg);
    display: inline-block;
    margin: .5rem 0 0;
}

.pcfe__contact {
    margin-top: .55rem;
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
}

    .pcfe__contact a {
        color: var(--link);
        font-size: .9rem;
        text-decoration: none;
        font-family: var(--mono);
    }

        .pcfe__contact a:hover {
            color: var(--amber);
        }

.pcfe__btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.pcfe__btn {
    font-family: var(--display);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    border-radius: 999px;
    padding: .55em 1.3em;
    background: linear-gradient(90deg,#6B2FA0,#C20B9C);
    color: #fff;
    border: none;
    box-shadow: 0 5px 0 rgba(0,0,0,.4);
    transition: transform .15s ease, box-shadow .15s ease;
    display: inline-block;
}

    .pcfe__btn:not(.pcfe__btn--line):hover {
        box-shadow: 0 7px 0 rgba(0,0,0,.4);
    }

    .pcfe__btn:hover {
        transform: translateY(-2px);
    }

.pcfe__btn--line {
    background: transparent;
    border: 2px solid var(--amber);
    color: var(--amber);
    box-shadow: 0 5px 0 rgba(255,180,36,.25);
}

    .pcfe__btn--line:hover {
        box-shadow: 0 7px 0 rgba(255,180,36,.25);
        color: var(--amber);
    }

.pcfe__grid {
    display: grid;
    grid-template-columns: 1fr 1.9fr 1fr 1fr;
    gap: 1.9rem;
    padding: 1.5rem 0 1.4rem;
    align-items: start;
}

.pcfe h2 {
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 0 0 .4rem;
}

.pcfe .rule_dot {
    border-bottom: 2px dotted rgba(255,255,255,.3);
    margin-bottom: .65rem;
    width: 64px;
}

.pcfe ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .42rem;
}

    .pcfe ul a {
        color: var(--link);
        font-size: .9rem;
        text-decoration: none;
        transition: color .15s ease, padding-left .15s ease;
    }

        .pcfe ul a:hover {
            color: var(--amber);
            padding-left: .3em;
        }

.pcfe__wide ul {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .42rem 1.5rem;
}

.pcfe__stack {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.pcfe__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem .85rem;
    padding: .75rem 0;
    border-top: 2px dotted rgba(255,255,255,.28);
    font-family: var(--mono);
    font-size: .72rem;
}

    .pcfe__legal a {
        color: var(--muted);
        text-decoration: none;
        letter-spacing: .03em;
    }

        .pcfe__legal a:hover {
            color: var(--amber);
        }

    .pcfe__legal span {
        color: var(--line);
    }

.pcfe__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 2px solid var(--amber);
    padding-top: .85rem;
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--muted);
}

.pcfe a:focus-visible {
    outline: 3px solid var(--mag);
    outline-offset: 3px;
    border-radius: 4px;
}

.pcfe {
    color: var(--text) !important;
}
    /* ── ELEMENTOR HOVER LOCK: pins every state so theme a:hover rules cannot repaint ── */
    .pcfe .pcfe__btn, .pcfe .pcfe__btn:hover, .pcfe .pcfe__btn:focus, .pcfe .pcfe__btn:active, .pcfe .pcfe__btn:visited {
        color: #fff !important;
        background: linear-gradient(90deg,#6B2FA0,#C20B9C) !important;
        text-decoration: none !important;
    }

    .pcfe .pcfe__btn--line, .pcfe .pcfe__btn--line:hover, .pcfe .pcfe__btn--line:focus, .pcfe .pcfe__btn--line:active, .pcfe .pcfe__btn--line:visited {
        color: var(--amber) !important;
        background: transparent !important;
        border-color: var(--amber) !important;
        text-decoration: none !important;
    }

    .pcfe ul a, .pcfe ul a:visited {
        text-decoration: none !important;
    }

        .pcfe ul a:hover, .pcfe ul a:focus {
            color: var(--amber) !important;
            text-decoration: none !important;
        }

    .pcfe .pcfe__contact a, .pcfe .pcfe__contact a:visited {
        color: var(--link) !important;
        text-decoration: none !important;
    }

        .pcfe .pcfe__contact a:hover, .pcfe .pcfe__contact a:focus {
            color: var(--amber) !important;
        }

    .pcfe .pcfe__legal a:hover, .pcfe .pcfe__legal a:focus {
        color: var(--amber) !important;
        text-decoration: none !important;
    }

.pcfe__note {
    color: var(--amber) !important;
}

.pcfe h2 {
    color: var(--amber) !important;
}

.pcfe ul a {
    color: var(--link) !important;
}

    .pcfe ul a:hover {
        color: var(--amber) !important;
    }

.pcfe__bottom, .pcfe__bottom span, .pcfe__legal a {
    color: var(--muted) !important;
}

    .pcfe__legal a:hover {
        color: var(--amber) !important;
    }

@media (max-width:1000px) {
    .pcfe__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pcfe__wide {
        grid-column: 1 / -1;
    }

        .pcfe__wide ul {
            grid-template-columns: repeat(3,minmax(0,1fr));
        }
}

@media (max-width:760px) {
    .pcfe__wide ul {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width:560px) {
    .pcfe__grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .pcfe__bottom {
        flex-direction: column;
        gap: .5rem;
    }

    .pcfe__hero {
        padding: 2.2rem 0 1.7rem;
    }
}

@media (max-width:380px) {
    .pcfe__wrap {
        padding: 0 18px;
    }
}

@media (prefers-reduced-motion:reduce) {
    .pcfe__btn, .pcfe ul a {
        transition: none;
    }
}

/* ===== SELECTION DRAWER — slides in from the right (desktop) / up from the bottom (mobile) ===== */

/* overlay — visible only on mobile (≤1199px) */
.drawer-ov {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(24,18,32,.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    display: none;
}

@media (max-width:1199px) {
    .drawer-ov {
        display: block;
    }

        .drawer-ov.show {
            opacity: 1;
            pointer-events: auto;
        }
}

/* the drawer panel itself */
.drawer {
    position: fixed;
    top: 0; /* flush with the very top of the viewport */
    right: 0;
    bottom: 0;
    z-index: 110;
    width: min(400px, 100%);
    background: #fff;
    border-left: 2.5px solid var(--line);
    box-shadow: -12px 0 28px rgba(24,18,32,.08);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.22,.9,.3,1);
    display: flex;
    flex-direction: column;
}

    .drawer.show {
        transform: translateX(0);
    }

/* gradient hair at the top */
.drawer__hair {
    height: 5px;
    background: var(--grad);
    flex: 0 0 auto;
}

/* ===== DRAWER TOP-BAR: Sign in / Free trial / Live demo =====
   Defined in _PricingLayout.cshtml as #pc-nav-drawer-btns.
   Fixed to the top-right, same width as the drawer, above the gradient hair.
   Shown only on desktop (≥1200px) when the drawer is open (.pc-drawer-open).
   Hidden on mobile — the nav is still accessible in the main header burger menu. */

#pc-nav-drawer-btns {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 115; /* above the drawer (110) */
    width: min(400px, 100%);
    display: none; /* hidden until drawer opens */
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    padding: .65rem 1rem;
    background: #fff;
    border-left: 2.5px solid var(--line);
    border-bottom: 1.5px solid var(--line);
    box-shadow: -12px 0 28px rgba(24,18,32,.08);
    /* slide in / out with the drawer */
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.22,.9,.3,1);
}

    /* reuse existing pc-btn scale — only override size to fit the bar */
    #pc-nav-drawer-btns .pc-btn {
        font-size: .78rem;
        padding: .42em .9em;
    }

/* show and slide in when the drawer is open on desktop */
@media (min-width:1200px) {
    #pc-nav-drawer-btns {
        display: flex;
    }

    .pc-drawer-open #pc-nav-drawer-btns {
        transform: translateX(0);
    }
}

/* scrollable body */
.drawer__body {
    padding: 1.6rem 1.5rem 1.4rem;
    overflow-y: auto;
    flex: 1;
}

/* close × button — hidden on desktop, shown on mobile */
.drawer__x {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: #fff;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
}

    .drawer__x:hover {
        background: var(--module-tint);
    }

/* typography inside drawer body */
.drawer__eyebrow {
    font-family: var(--mono);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--module);
    display: inline-flex;
    align-items: center;
    gap: .55em;
}

    .drawer__eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--module);
    }

.drawer__name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -.02em;
    margin: .55rem 0 0;
    color: var(--ink);
}

.drawer__staffline {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .05em;
    color: var(--ink-soft);
    margin: .2rem 0 0;
}

.drawer__price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--module);
    margin: .3rem 0 0;
}

.drawer__list {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: .5rem;
}

    .drawer__list li {
        display: flex;
        gap: .6em;
        align-items: flex-start;
        font-size: .9rem;
        color: var(--ink);
        line-height: 1.5;
    }

        .drawer__list li::before {
            content: "\2713";
            color: #1B7A4B;
            font-weight: 800;
            flex: 0 0 auto;
        }

.drawer__sec {
    border-top: 1.5px solid var(--line);
    margin-top: 1.2rem;
    padding-top: 1.1rem;
}

    .drawer__sec h4 {
        font-family: var(--mono);
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--ink-soft);
        margin: 0 0 .5rem;
    }

.drawer__pack {
    font-size: .92rem;
    color: var(--ink);
}

    .drawer__pack b {
        font-weight: 800;
    }

.drawer__note {
    font-size: .76rem;
    color: var(--ink-soft);
    margin-top: .35rem;
}

/* dotted-line rows */
.drow {
    display: flex;
    align-items: baseline;
    gap: .65em;
    font-size: .86rem;
    color: var(--ink);
    padding: .28em 0;
}

    .drow span:first-child {
        color: var(--ink-soft);
    }

    .drow i {
        flex: 1;
        border-bottom: 2px dotted rgba(24,18,32,.18);
        transform: translateY(-3px);
    }

    .drow b {
        font-weight: 700;
        white-space: nowrap;
    }

/* total line */
.drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    border-top: 2.5px solid var(--ink);
    margin-top: 1.2rem;
    padding-top: .9rem;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--ink);
}

/* sticky footer inside drawer */
.drawer__foot {
    padding: 1rem 1.5rem 1.4rem;
    border-top: 1.5px solid var(--line);
    flex: 0 0 auto;
    background: #fff;
}

.drawer__go {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.02rem;
    padding: .85em 1.2em;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 0 rgba(107,47,160,.55);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .drawer__go:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 0 rgba(107,47,160,.55);
    }

.drawer__alt {
    display: block;
    text-align: center;
    margin-top: .6rem;
    font-size: .78rem;
    color: var(--ink-soft);
}

    .drawer__alt a {
        color: var(--module);
        font-weight: 700;
    }

/* mobile peek bar — collapsed tab that peeks above the fold */
.drawer__peek {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    width: 100%;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 0 1.1rem;
    height: 60px;
    flex: 0 0 60px;
    font-family: var(--body);
    font-size: .85rem;
    color: var(--ink);
    text-align: left;
    border-bottom: 1.5px solid var(--line);
}

    .drawer__peek .ptick {
        color: #1B7A4B;
        font-weight: 800;
        margin-right: .4em;
    }

    .drawer__peek b {
        font-weight: 800;
    }

    .drawer__peek .chev {
        font-family: var(--mono);
        font-size: .68rem;
        font-weight: 700;
        color: var(--module);
        white-space: nowrap;
    }

/* ---- mobile: drawer becomes a bottom sheet ---- */
@media (max-width:1199px) {
    .drawer {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: 76vh;
        border-left: none;
        border-top: 2.5px solid var(--ink);
        border-radius: 18px 18px 0 0;
        box-shadow: 0 -8px 0 rgba(24,18,32,.12);
        transform: translateY(100%);
    }

        .drawer.peek {
            transform: translateY(calc(100% - 60px));
        }

        .drawer.show {
            transform: translateY(0);
        }

    .drawer__peek {
        display: flex;
    }

    .drawer__x {
        display: block;
    }
}

@media (max-width:480px) {
    .drawer__body {
        padding: 1.3rem 1.1rem 1.2rem;
    }

    .drawer__foot {
        padding: .9rem 1.1rem 1.1rem;
    }
}

/* ---- desktop: page makes room for the docked drawer ---- */
@media (min-width:1500px) {
    #pc-pricing {
        --pc-drawer-w: 420px;
    }
}

@media (min-width:1200px) {
    #pc-pricing {
        transition: padding-right .4s cubic-bezier(.22,.9,.3,1);
    }

        #pc-pricing.pc-drawer-open {
            padding-right: 400px;
        }

    .pc-nav,.pcfe {
        padding-right: 400px;
    }
}

@media (min-width:1200px) and (max-width:1700px) {
    #pc-pricing.pc-drawer-open .tiers,
    #pc-pricing.pc-drawer-open .packs {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (prefers-reduced-motion:reduce) {
    .drawer, .drawer-ov, #pc-pricing {
        transition: none;
    }

    .drawer__go {
        transition: none;
    }
}

/*Thank You*/
.pc-thanks {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(560px, 76vh, 860px);
    padding: clamp(48px, 8vw, 40px) 20px;
    overflow: hidden;
}

.pc-thanks__pattern {
    position: absolute;
    top: 50%;
    width: clamp(190px, 21vw, 330px);
    transform: translateY(-50%);
    opacity: .5;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.pc-thanks__pattern--l {
    left: 0;
}

.pc-thanks__pattern--r {
    right: 0;
}

.pc-thanks__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 660px;
    padding: clamp(36px, 6vw, 36px) clamp(24px, 5vw, 36px);
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--ui-border);
    border-radius: calc(var(--rad) + 8px);
    box-shadow: 0 1px 2px rgba(24,18,32,.05), 0 20px 44px -20px rgba(24,18,32,.18), 0 46px 90px -44px rgba(107,47,160,.24);
    overflow: hidden;
    animation: pc-thanks-rise .6s cubic-bezier(.22,.9,.3,1) both;
}

    /* brand accent rail */
    .pc-thanks__card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg,#2F80ED,var(--purple),var(--magenta),var(--amber));
    }

.pc-thanks__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 136px;
    height: 136px;
    margin-bottom: 20px;
}

    .pc-thanks__icon::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: radial-gradient(circle, var(--module-tint) 0%, rgba(244,236,251,0) 70%);
        animation: pc-thanks-halo 3.4s ease-in-out infinite;
    }

    .pc-thanks__icon img {
        position: relative;
        width: 104px;
        height: auto;
        animation: pc-thanks-pop .55s .12s cubic-bezier(.2,1.5,.4,1) both;
    }

.pc-thanks__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 5.2vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 18px;
    background: linear-gradient(90deg,#2F80ED,var(--purple),var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.pc-thanks__text {
    max-width: 52ch;
    margin: 0 auto 14px;
    font-size: clamp(.97rem, 1.6vw, 1.05rem);
    line-height: 1.72;
    color: var(--ink-soft);
}

    .pc-thanks__text:last-of-type {
        margin-bottom: 36px;
        color: rgba(42,33,53,.78);
    }

.pc-thanks__btn {
    display: inline-block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: var(--grad);
    border: none;
    border-radius: 999px;
    padding: .85em 2.2em;
    box-shadow: 0 5px 0 rgba(107,47,160,.45);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pc-thanks__btn, .pc-thanks__btn:hover, .pc-thanks__btn:focus, .pc-thanks__btn:active, .pc-thanks__btn:visited {
        color: #fff;
        text-decoration: none;
    }

        .pc-thanks__btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 0 rgba(107,47,160,.45);
        }

        .pc-thanks__btn:active {
            transform: translateY(1px);
            box-shadow: 0 3px 0 rgba(107,47,160,.45);
        }

        .pc-thanks__btn:focus-visible {
            outline: 3px solid var(--module-soft);
            outline-offset: 3px;
        }

@keyframes pc-thanks-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pc-thanks-pop {
    from {
        opacity: 0;
        transform: scale(.72);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pc-thanks-halo {
    0%, 100% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.09);
        opacity: .55;
    }
}

@media (max-width:991px) {
    .pc-thanks__pattern {
        display: none;
    }
}

@media (max-width:480px) {
    .pc-thanks__icon {
        width: 112px;
        height: 112px;
    }

        .pc-thanks__icon img {
            width: 88px;
        }

    .pc-thanks__btn {
        display: block;
        padding: .9em 1.5em;
    }
}

@media (prefers-reduced-motion:reduce) {
    .pc-thanks__card, .pc-thanks__icon::before, .pc-thanks__icon img {
        animation: none;
    }

    .pc-thanks__btn {
        transition: none;
    }
}
.pc-thanks__actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap; /* safe fallback for very narrow viewports */
}

    /* Individual button sizing — inherits the shared .pc-thanks__btn style */
    .pc-thanks__actions .pc-thanks__btn {
        flex: 0 0 auto; /* do NOT grow/shrink: each btn only takes what it needs */
        min-width: 160px;
    }

/* "Back to Dashboard" — secondary ghost look */
.pc-thanks__btn--ghost-purple {
    background: transparent;
    color: var(--purple, #6B2FA0);
    border: 2px solid var(--purple, #6B2FA0);
    box-shadow: 0 4px 0 rgba(107,47,160,.20);
}

    .pc-thanks__btn--ghost-purple:hover,
    .pc-thanks__btn--ghost-purple:focus,
    .pc-thanks__btn--ghost-purple:visited {
        color: var(--purple, #6B2FA0) !important;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 6px 0 rgba(107,47,160,.20);
    }

    .pc-thanks__btn--ghost-purple:active {
        transform: translateY(1px);
        box-shadow: 0 2px 0 rgba(107,47,160,.20);
    }

/* Mobile: stack buttons, each full width */
@media (max-width: 480px) {
    .pc-thanks__actions {
        flex-direction: column;
        align-items: stretch;
    }

        .pc-thanks__actions .pc-thanks__btn {
            display: block;
            text-align: center;
            min-width: 0;
        }
}

.pc-thanks__footer {
    margin-top: 22px;
    color: #9ca3af;
    font-size: 13px;
    text-align: center;
}

/* Spinner shown on the Download button while the PDF is generating */
.pc-thanks__btn.is-loading {
    opacity: .75;
    pointer-events: none;
    cursor: wait;
}

/* ===== existing firm: upgrade platform / credits only ===== */
.mode__up {
    display: none;
}

.segment button.on .mode__up {
    display: inline;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.segment button.up .mode__up {
    text-decoration-thickness: 2px;
}

    .segment button.up .mode__up::after {
        content: " \2713";
    }

.part.is-off .skipnote {
    pointer-events: auto;
}

.skipnote__go {
    pointer-events: auto;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: var(--module);
    background: none;
    border: 0;
    padding: 0;
    margin-left: .5em;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

    .skipnote__go:hover {
        color: var(--pen);
    }

.part__up {
    display: none;
}

.part.is-upgrade .part__up {
    display: inline-flex;
    margin-bottom: .4rem;
}

.part.is-upgrade .tiers {
    grid-template-columns: repeat(auto-fit,minmax(min(100%,170px),1fr));
}

.part.is-upgrade .tier--trial {
    display: none;
}
/* ---------- credit usage table ---------- */
.uses {
    border: 2px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: .2rem 1.15rem;
}

.uses__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--body);
}

    .uses__table th {
        font-family: var(--mono);
        font-size: .68rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--ink-soft);
        border-bottom: 2.5px solid var(--ink);
    }

    .uses__table td {
        border-bottom: 2px dotted rgba(24,18,32,.18);
    }

.uses__cr b {
    font-family: var(--mono);
    color: var(--module);
/*    background: var(--module-tint);*/
    border-radius: 8px;
}

.ctable td small {
    display: block;
    font-size: .76rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-top: .12rem;
}
.ctable__wrap {
    border: 1px solid var(--ui-border);
    border-radius: var(--rad);
    background: #fff;
    padding: .5rem 1.5rem .9rem;
}

.ctable {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}

    .ctable th {
        font-family: var(--mono);
        font-size: .72rem;
        font-weight: 500;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--ink);
        padding: .9rem .5rem .55rem;
        border-bottom: 2px solid var(--ink);
    }

    .ctable td {
        padding: .62rem .5rem;
        border-bottom: 1px dotted var(--line);
    }

        .ctable th:first-child, .ctable td:first-child {
            width: 5.5em;
            text-align: center;
        }

        .ctable td:first-child {
            font-family: var(--body);
            color: var(--ink);
        }

    .ctable th:nth-child(2) {
        text-align: center;
    }

    .ctable th:last-child, .ctable td:last-child {
        width: 9em;
        text-align: center;
    }

    .ctable td:last-child {
        font-family: var(--mono);
        font-weight: 700;
        color: var(--module);
    }

    .ctable td small {
        display: block;
        font-size: .76rem;
        color: var(--ink-soft);
        line-height: 1.45;
        margin-top: .12rem;
    }