:root {
    --cream: #fff7e8;
    --cream2: #fff2d6;
    --ink: #0f172a;

    --coral: #ff5a66;
    --gold: #ffb703;
    --teal: #14b8a6;
    --purple: #7c3aed;

    --ring: rgba(15, 23, 42, 0.1);
    --ring2: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 45px -25px rgba(2, 6, 23, 0.55);
    --shadow2: 0 10px 25px -18px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream), #fff 35%, #f5f3ff 120%);
}

img {
    max-width: 100%;
    display: block;
}
button {
    font: inherit;
}
strong {
    font-weight: 800;
}

.container {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Icons (lucide uses currentColor) */
.icon {
    width: 18px;
    height: 18px;
}
.icon--white {
    color: #fff;
}

/* Sticky top area */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Topbar */
.topbar {
    border-bottom: 1px solid var(--ring);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 1rem;
}
.topbar__left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.topbar__sponsor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.78);
}
.topbar__text {
    font-size: 14px;
    color: rgba(15, 23, 42, 0.65);
}
.brand {
    font-weight: 800;
    color: rgba(15, 23, 42, 0.95);
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.link-btn {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.9);
    cursor: pointer;
}
.link-btn:hover {
    background: #fff;
}

/* Header */
.header {
    border-bottom: 1px solid var(--ring2);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
}
.brandlock {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brandlock__logo {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow2);
    background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
}
.brandlock__title {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1;
}
.brandlock__subtitle {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.6);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    border: 0;
    cursor: pointer;
    border-radius: 14px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        background 0.12s ease,
        opacity 0.12s ease;
}
.btn:active {
    transform: translateY(1px);
}
.btn--primary {
    color: #fff;
    box-shadow: 0 14px 30px -18px rgba(2, 6, 23, 0.7);
    background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
}
.btn--primary:hover {
    box-shadow: 0 18px 38px -20px rgba(2, 6, 23, 0.75);
}
.btn--secondary {
    background: rgba(255, 255, 255, 0.85);
    color: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--ring);
    box-shadow: 0 10px 18px -16px rgba(2, 6, 23, 0.4);
}
.btn--secondary:hover {
    background: #fff;
}
.btn--ghost {
    background: transparent;
    color: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--ring);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.7);
}
.btn--ghostWhite {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghostWhite:hover {
    background: rgba(255, 255, 255, 0.1);
}
.btn--sm {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 12px;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Pills */
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pills--tight {
    gap: 5px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid var(--ring);
    box-shadow: 0 8px 18px -16px rgba(2, 6, 23, 0.35);
}
.pill--light {
    background: rgba(255, 255, 255, 0.85);
    color: rgba(15, 23, 42, 0.9);
}
.pill--gold {
    background: #fffbeb;
    color: #7a4a00;
    border-color: rgba(122, 74, 0, 0.12);
}
.pill--teal {
    background: #ecfeff;
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.16);
}
.pill--coral {
    background: #fff1f2;
    color: #9f1239;
    border-color: rgba(159, 18, 57, 0.14);
}

.emojiSmall {
    font-size: 16px;
    line-height: 1;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}
.hero__grid {
    padding: 48px 1rem 44px;
    display: grid;
    gap: 28px;
}
.hero__blobs .blob {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(48px);
    opacity: 0.3;
}
.blob--coral {
    background: var(--coral);
    top: -110px;
    left: -90px;
}
.blob--teal {
    background: var(--teal);
    top: 40px;
    right: -60px;
    opacity: 0.23;
}
.blob--purple {
    background: var(--purple);
    bottom: -130px;
    left: 35%;
    opacity: 0.18;
}

.hero__title {
    margin: 18px 0 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.hero__titleMuted {
    color: rgba(15, 23, 42, 0.85);
}
.hero__lead {
    margin: 14px 0 0;
    font-size: 18px;
    color: rgba(15, 23, 42, 0.72);
}
.hero__cta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hint {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.6);
}

.stats {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}
.stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.45);
    border-radius: 18px;
    padding: 14px;
}
.stat__label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.66);
}
.stat__value {
    margin-top: 6px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.95);
    font-size: 16px;
}

.hero__media {
    position: relative;
}
.glow {
    z-index: -1;
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    filter: blur(24px);
    opacity: 0.35;
    background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
}
.media-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ring);
    box-shadow: var(--shadow);
}
.media-card__imgWrap {
    position: relative;
}
.media-card__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.media-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 25%, rgba(2, 6, 23, 0.35) 100%);
}
.media-card__overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
}
.overlay-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ring);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 16px 30px -22px rgba(2, 6, 23, 0.55);
}
.overlay-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}
.overlay-card__kicker {
    font-size: 13px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.7);
}
.overlay-card__title {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 900;
}
.overlay-card__note {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(15, 23, 42, 0.6);
}

.microcards {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.microcard {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.45);
    padding: 10px 6px;
    text-align: center;
}
.microcard__title {
    font-weight: 900;
    font-size: 12px;
}
.microcard__sub {
    font-size: 11px;
    color: rgba(15, 23, 42, 0.6);
}

/* Wave */
.wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* Sections */
.section {
    padding: 56px 0;
}
.section--white {
    background: #fff;
}
.sectionHeader .kicker {
    font-size: 13px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.65);
    letter-spacing: 0.02em;
}
.sectionHeader h2 {
    margin: 8px 0 0;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 900;
}
.sectionHeader p {
    margin: 12px 0 0;
    font-size: 18px;
    color: rgba(15, 23, 42, 0.68);
}

/* Grids */
.grid2 {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}
.grid3 {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}
.gap16 {
    gap: 16px;
}

/* Gradient bordered cards */
.gradCard {
    background: linear-gradient(135deg, #fff1f2, #fffbeb, #ecfeff);
    padding: 1px;
    border-radius: 24px;
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.4);
}
.gradCard--alt {
    background: linear-gradient(135deg, #f5f3ff, #fff, #fff1f2);
}
.gradCard--teal {
    background: linear-gradient(135deg, #ecfeff, #fff, #fffbeb);
}
.gradCard--amber {
    background: linear-gradient(135deg, #fffbeb, #fff, #f5f3ff);
}
.gradCard--preview {
    background: linear-gradient(135deg, #fff1f2, #fff, #ecfeff);
}

.gradCard__inner {
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 24px;
    padding: 18px;
}

.rowTop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.rowBetween {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.emoji {
    font-size: 28px;
    line-height: 1;
}
.cardTitle {
    font-weight: 900;
    font-size: 18px;
}
.cardText {
    margin: 8px 0 0;
    color: rgba(15, 23, 42, 0.7);
}
.small {
    font-size: 14px;
}
.tiny {
    font-size: 12px;
}
.muted {
    color: rgba(15, 23, 42, 0.62);
}
.mt8 {
    margin-top: 8px;
}
.mt12 {
    margin-top: 12px;
}
.mt16 {
    margin-top: 16px;
}
.mt20 {
    margin-top: 20px;
}
.mt24 {
    margin-top: 24px;
}

/* Image strip inside cards */
.imgStrip {
    margin-top: 14px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ring);
}
.imgStrip img {
    height: 176px;
    width: 100%;
    object-fit: cover;
}

/* Check row */
.checkRow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--ring);
    font-size: 14px;
    color: rgba(15, 23, 42, 0.72);
}

/* Callouts */
.calloutDark {
    margin-top: 18px;
    border-radius: 24px;
    background: #0f172a;
    color: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: var(--shadow);
}
.calloutDark__title {
    font-size: 20px;
    font-weight: 900;
}
.calloutDark__text {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.calloutSoft {
    margin-top: 18px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid var(--ring);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
}
.calloutSoft__title {
    font-size: 20px;
    font-weight: 900;
}
.calloutSoft__text {
    margin: 8px 0 0;
    color: rgba(15, 23, 42, 0.7);
}

/* Feature cards */
.feature {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.4);
}
.feature__media {
    position: relative;
}
.feature__media img {
    width: 100%;
    height: 208px;
    object-fit: cover;
}
.feature__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 30%, rgba(2, 6, 23, 0.75) 100%);
}
.feature__cap {
    position: absolute;
    left: 16px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding-right: 16px;
}
.feature__rec {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.9;
}
.feature__title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}
.feature__body {
    padding: 18px;
}

.badgeIcon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    display: grid;
    place-items: center;
}
.badgeIcon--teal {
    background: #ccfbf1;
    color: #0f766e;
}
.badgeIcon--purple {
    background: #ede9fe;
    color: #5b21b6;
}
.badgeIcon--gold {
    background: #fef3c7;
    color: #7a4a00;
}
.badgeIcon--coral {
    background: #ffe4e6;
    color: #9f1239;
}

.bullets {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(15, 23, 42, 0.7);
    font-size: 15px;
}

/* Gradient banner */
.gradBanner {
    background: linear-gradient(90deg, #fff1f2, #fffbeb, #ecfeff);
    padding: 1px;
    border-radius: 24px;
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.4);
}
.gradBanner__inner {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--ring);
    padding: 22px;
    display: flex;
    flex-direction: column !important;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
}
.reminder .gradBanner__inner {
    flex-direction: row !important;
}

/* Step cards */
.stepCard {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.4);
}
.stepCard__media {
    position: relative;
}
.stepCard__media img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}
.stepCard__shade {
    position: absolute;
    inset: 0;
    background: #0f172a
    
}
.stepCard__cap {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.stepBadge {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--ink);
}
.stepBadge--gold {
    background: #fef3c7;
}
.stepBadge--teal {
    background: #ccfbf1;
}
.stepBadge--coral {
    background: #ffe4e6;
}
.stepCard__title {
    font-size: 18px;
    font-weight: 900;
}
.stepCard__sub {
    font-size: 12px;
    opacity: 0.9;
}
.stepCard__body {
    padding: 18px;
}

/* Message section */
.messageSection {
    position: relative;
    overflow: hidden;
}
.messageSection__blobs .blob {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    filter: blur(58px);
    opacity: 0.2;
}
.blob--gold {
    background: var(--gold);
}
.blob--teal {
    background: var(--teal);
}
.blob--br {
    right: -140px;
    bottom: -180px;
}
.blob--tl {
    left: -160px;
    top: -180px;
}

.card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.4);
}
.pad24 {
    padding: 22px;
}

.label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.68);
}
.chipRow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 8px;
}
.chip {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--ring);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    transition: 0.12s ease;
}
.chip:hover {
    background: #f8fafc;
}
.chip.is-active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.toneRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    margin-top: 8px;
}
.tone {
    border-radius: 18px;
    border: 1px solid var(--ring);
    background: #fff;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 10px;
    font-size: 14px;
}
.tone:hover {
    background: #f8fafc;
}
.tone.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}

.messageBox {
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--ring);
    padding: 14px;
}
.messageQuote {
    margin-top: 8px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.95);
}
.btnRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tipCard {
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--ring);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Chat preview */
.chat {
    display: grid;
    gap: 12px;
}
.chatRow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.avatar {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
}
.avatar--you {
    background: #0f172a;
    color: #fff;
}
.avatar--pat {
    background: #e2e8f0;
    color: var(--ink);
}
.bubble {
    max-width: 80%;
    padding: 12px 14px;
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.5;
}
.bubble--you {
    background: #0f172a;
    color: #fff;
    border-top-left-radius: 8px;
}
.bubble--pat {
    background: #f1f5f9;
    color: rgba(15, 23, 42, 0.9);
    border-top-right-radius: 8px;
}

.ctaDark {
    border-radius: 18px;
    background: #0f172a;
    color: #fff;
    padding: 18px;
}
.ctaDark__title {
    font-size: 20px;
    font-weight: 900;
}
.ctaDark__text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.85);
}

/* FAQ */
.faqCol  {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faqItem {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 22px -18px rgba(2, 6, 23, 0.35);
    overflow: hidden;
}
.faqQ {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
    cursor: pointer;
    font-weight: 900;
}
.faqQ:hover {
    background: #f8fafc;
}
.faqA {
    padding: 0 18px 16px 18px;
    color: rgba(15, 23, 42, 0.72);
    font-size: 15px;
    display: none;
}
.faqItem.is-open .faqA {
    display: block;
}
.faqItem.is-open .faqQ .icon {
    transform: rotate(180deg);
}
.faqQ .icon {
    transition: transform 0.12s ease;
}

/* Right FAQ banner */
.iconBox {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 90, 102, 0.12);
    color: var(--ink);
    border: 1px solid rgba(255, 90, 102, 0.12);
}
.calloutMini {
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--ring);
    padding: 14px;
    width: 100%;
}
.smallTitle {
    font-size: 14px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--ring);
    background: linear-gradient(180deg, var(--cream2), #fff);
    padding: 48px 0;
}
.footer__grid {
    display: grid;
    gap: 26px;
}
.footer__title {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}
.footerLink {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 6px 0;
    cursor: pointer;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 700;
}
.footerLink:hover {
    color: rgba(15, 23, 42, 0.95);
}

/* Sticky CTA */
.stickyCta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 40;
    display: none;
}
.stickyCta.is-visible {
    display: block;
}
.stickyCta__inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ring);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stickyCta__left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sparkIcon {
    width: 42px;
    height: 42px;
    border-radius: 18px;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
}
.stickyCta__title {
    font-size: 14px;
    font-weight: 900;
}
.stickyCta__sub {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.62);
}
.stickyCta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 80;
    background: #0f172a;
    color: #fff;
    padding: 12px 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-weight: 800;
    font-size: 14px;
    display: none;
}
.toast.is-on {
    display: block;
}

/* Modal */
body.modal-open {
    overflow: hidden;
}
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 70;
}
.modal.is-open {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
}
.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 40px 80px -40px rgba(2, 6, 23, 0.85);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
}
.modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.modal__title {
    font-weight: 900;
}
.iconBtn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    color: rgba(15, 23, 42, 0.65);
}
.iconBtn:hover {
    background: #f8fafc;
}
.modal__body {
    padding: 18px 18px;
}
.modal__foot {
    padding: 14px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.modal__foot--register {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.progress {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dots {
    display: flex;
    gap: 8px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}
.dot.is-on {
    background: #0f172a;
}
.regBtns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Fields */
.field label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.68);
}
.field input {
    margin-top: 8px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    outline: none;
    font-size: 16px;
}
.field input:focus {
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
    border-color: rgba(15, 23, 42, 0.22);
}

/* Register segments */
.seg3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.seg {
    border-radius: 18px;
    border: 1px solid var(--ring);
    background: #fff;
    padding: 12px;
    cursor: pointer;
    font-weight: 900;
}
.seg:hover {
    background: #f8fafc;
}
.seg.is-active {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.checkLine {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--ring);
    background: #fff;
}
.checkLine input {
    margin-top: 3px;
}

/* small promo block */
.noGuarantees {
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--ring);
    padding: 14px;
}
.gradMini {
    border-radius: 18px;
    background: linear-gradient(90deg, #fff1f2, #fffbeb, #ecfeff);
    border: 1px solid var(--ring);
    padding: 14px;
}

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}
[data-reveal].in-view {
    opacity: 1;
    transform: none;
}

/* Responsive */
.hide-mobile {
    display: none;
}
.md-only {
    display: none;
}

@media (min-width: 640px) {
    .hide-mobile {
        display: inline-flex;
    }
    .hero__cta {
        flex-direction: row;
    }
    .btnRow {
        flex-direction: row;
    }
    .stickyCta__actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md-only {
        display: block;
    }
    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .calloutDark,
    .calloutSoft,
    .gradBanner__inner {
        flex-direction: row;
        align-items: center;
    }
    .stickyCta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 46px;
    }
    .hero__lead {
        font-size: 20px;
    }
    .media-card__img {
        height: 500px;
    }
}


/* custom */
.blob {
    z-index: -1;
}
@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .hero__title {
        font-size: 36px;
        line-height: 1.2;
    }
    .reminder .gradBanner__inner {
        flex-direction: column !important;
    }
    .rowBetween {
        flex-direction: column;
    }
    .rowBetween > * {
        order: 2;
    }
    .rowBetween .pill  {
        order: 1;
    }
}

.modal .modal-header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--ring);
}
.modal  .modal-header h2 {
    padding: 0;
    margin: 0;
}

.modal .modal-actions {
    padding: 1rem;
    display: grid;
    gap: 1rem;
}
.modal .modal-actions a {
    text-decoration: none;
}

.btn--primary-outline {
  position: relative;
  background: #fff;
  color: transparent;                
  z-index: 0;

  background-image: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
}
.btn--primary-outline::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--coral), var(--gold), var(--teal));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  z-index: -1;
}

/* compact top */
/* .hero__copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
}
@media (max-width: 767px){
  .pills{
    flex-wrap: nowrap;       
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  .pills::-webkit-scrollbar{ display:none; }

  .pill{
    flex: 0 0 auto; 
    white-space: nowrap;
    scroll-snap-align: start;
  }
} */

.footer_secondary {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
    color: #777;
    background: #fff;
}
.footer_secondary .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
}
.footer_secondary .footer__link {
    text-align: center;
    text-decoration: none !important;
    color: #777;
    font-size: 14px;
}