:root {
    --bg: #f5f2ea;
    --bg-soft: #f8f4ec;
    --ink: #1f1f1c;
    --muted: #7a766f;
    --green: #8fa286;
    --green-dark: #5f7e65;
    --green-soft: #bcc7b1;
    --accent: #d7ff63;
    --accent-soft: #eef7c9;
    --card: rgba(255,255,255,0.7);
    --line: rgba(0,0,0,0.06);
    --shadow: 0 20px 60px rgba(21, 20, 18, 0.10);
    --radius-xl: 32px;
    --radius-lg: 24px;


    --ink: #35124f;
    --ink-soft: #2b2534;
    --gradient-1: #d52aa5;
    --gradient-2: #8e2de2;
    --gradient-3: #5b13a6;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    /*background:*/
    /*        radial-gradient(circle at 10% 10%, rgba(215, 255, 99, 0.4), transparent 28%),*/
    /*        radial-gradient(circle at 85% 20%, rgba(188, 199, 177, 0.4), transparent 30%),*/
    /*        radial-gradient(circle at 75% 80%, rgba(143, 162, 134, 0.25), transparent 22%),*/
    /*        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);*/
    background: var(--bg-soft);
    overflow-x: hidden;
}

.page-shell {
    min-height: 100vh;
    position: relative;
}

.noise,
.blur-orb,
.grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/*.grid-overlay {*/
/*    background-image:*/
/*            linear-gradient(rgba(26, 26, 26, 0.03) 1px, transparent 1px),*/
/*            linear-gradient(90deg, rgba(26, 26, 26, 0.03) 1px, transparent 1px);*/
/*    background-size: 42px 42px;*/
/*    mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 80%);*/
/*    z-index: -3;*/
/*}*/

.blur-orb::before,
.blur-orb::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .8;
}

.blur-orb::before {
    width: 280px;
    height: 280px;
    /*background: rgba(215, 255, 99, 0.55);*/
    top: 6%;
    right: 6%;
}

.blur-orb::after {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.9);
    bottom: 8%;
    left: 4%;
}

.site-nav {
    padding: 0.2rem 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(0,0,0,.08);
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand-text {
    font-weight: 700;
    letter-spacing: -.03em;
}

.main-nav {
    padding: .4rem;
    border-radius: 999px;
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(26,26,26,.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.main-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1rem;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: -.02em;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.main-nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .45rem;
    height: 3px;
    border-radius: 999px;
    background: #b6965a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav-link:hover,
.main-nav-link:focus-visible,
.main-nav-link.active {
    color: #000;
    background: rgba(255,255,255,.55);
}

.main-nav-link:hover::after,
.main-nav-link:focus-visible::after,
.main-nav-link.active::after {
    transform: scaleX(1);
}

.glass {
    background: var(--card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: var(--shadow);
}

.hero-card {
    border-radius: var(--radius-xl);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    position: relative;
    overflow: hidden;
}

/*.hero-card::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,0));*/
/*    pointer-events: none;*/
/*}*/

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(26,26,26,.06);
    font-size: 1rem;
    font-weight: 600;
    color: black;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b7e82a, #d7ff63);
    box-shadow: 0 0 0 6px rgba(215,255,99,.18);
}

.hero-title {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 800;
    max-width: 10ch;
    margin: 0;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 58ch;
    margin: 0;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.1rem;
    border-radius: 20px;
    background: #171717;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

.launch-badge small {
    display: block;
    color: rgba(255,255,255,.65);
    line-height: 1.2;
}

.launch-badge strong {
    display: block;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.countdown-item {
    border-radius: var(--radius-lg);
    padding: 1.1rem;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(95,126,101,.15);
    min-height: 122px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.countdown-value {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    margin-bottom: .35rem;
}

.countdown-label {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
}

.notify-form {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(26,26,26,.06);
    border-radius: 999px;
    padding: .45rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.notify-form .form-control {
    border: 0;
    background: transparent;
    min-height: 56px;
    padding-left: 1rem;
    font-size: 1rem;
    box-shadow: none !important;
}

.btn-gold{
    background: #b6965a;
    color: #fff;
}

.btn-gold:hover{
    background: rgba(182,150,90,.8);
    color: #fff;
}

.btn-accent {

    border-radius: 999px;
    padding: .95rem 1.4rem;
    font-weight: 600;
    min-width: 170px;
}

.feature-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    height: 100%;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(95,126,101,.15);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover,
.feature-card:focus-visible,
.countdown-item:hover,
.countdown-item:focus-visible,
.video-preview-shell:hover,
.video-preview-shell:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border-color: rgba(26,26,26,.12);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(215,255,99,.9), rgba(255,255,255,.9));
    margin-bottom: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.03em;
}

.process-section {
    padding: 1rem 0 2rem;
}

.process-figure {
    padding: 2rem 1.5rem;
    border-radius: calc(var(--radius-xl) + 4px);
    overflow: hidden;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(11, auto);
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.flow-step-button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: #1b2c44;
    transition: transform .25s ease;
}

.flow-step-button:hover,
.flow-step-button:focus-visible {
    transform: translateY(-4px);
    outline: none;
}

.flow-circle {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* Step-specific colours matching original visual */
.flow-step:nth-of-type(1) .flow-circle { background: linear-gradient(135deg, #561217, #561217); }
.flow-step:nth-of-type(2) .flow-circle { background: linear-gradient(135deg, #fbe5b6, #fbe5b6); }
.flow-step:nth-of-type(3) .flow-circle { background: linear-gradient(135deg, #f8b735, #f8b735); }
.flow-step:nth-of-type(4) .flow-circle { background: linear-gradient(135deg, #f38218, #f38218); }
.flow-step:nth-of-type(5) .flow-circle { background: linear-gradient(135deg, #2c6e63, #2c6e63); }
.flow-step:nth-of-type(6) .flow-circle { background: linear-gradient(135deg, #883418, #883418); }

.flow-label {
    max-width: 170px;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #21334b;
}

.flow-arrow {
    align-self: center;
    font-size: 2rem;
    line-height: 1;
    /* color: rgba(143, 162, 134, .75);*/
    color: rgba(0, 0, 0, 0.8);
    transform: translateY(-26px);
}

.flow-popover {
    --bs-popover-max-width: 320px;
    --bs-popover-border: none;
    --bs-popover-border-radius: 18px;
    --bs-popover-bg: rgba(255,255,255,0.85);
    --bs-popover-header-bg: transparent;
    --bs-popover-header-color: #1b2c44;
    --bs-popover-body-color: #4b5a68;
    --bs-popover-body-padding-x: 1.1rem;
    --bs-popover-body-padding-y: 1rem;
    --bs-popover-box-shadow: 0 25px 60px rgba(0,0,0,.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(143,162,134,.18);
    animation: popFadeIn .25s ease;
}

.flow-popover .popover-header {
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.01em;
    padding-bottom: .2rem;
}

.flow-popover .popover-body {
    font-size: .9rem;
    line-height: 1.55;
}

.flow-popover .popover-arrow::before {
    border-top-color: rgba(255,255,255,0.85) !important;
}

.audience-section {
    padding: 0 0 1rem;
}

.audience-card {
    height: 100%;
    padding: 1.6rem 1.55rem 1.7rem;
    border-radius: calc(var(--radius-xl) + 2px);
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(31,31,28,.08);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/*.audience-card::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0));*/
/*    pointer-events: none;*/
/*}*/

.audience-card:hover,
.audience-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(0,0,0,.09);
    border-color: rgba(95,126,101,.18);
}

.audience-card h3 {
    margin: 0 0 1.2rem;
    font-size: clamp(1.7rem, 2.6vw, 1.8rem);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 800;
    color: #14233b;
}

.audience-card h4 {
    margin: 0 0 1.2rem;
    font-size: clamp(1.3rem, 2.6vw, 1.3rem);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 800;
    color: #14233b;
}

.audience-card p {
    position: relative;
    z-index: 1;
    color: #23364f;
    font-size: 1rem;
    line-height: 1.7;
}

.audience-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: #1d314a;
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.55;
    font-weight: 500;
}

.audience-list li::before {
    content: "✓";
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
    background: linear-gradient(135deg, rgba(46,140,122,.18), rgba(143,162,134,.14));
    border: 1px solid rgba(46,140,122,.16);
    box-shadow: 0 10px 24px rgba(46,140,122,.10);
    color: #228a78;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.we-do-not-list .audience-list li::before {
    content: "x";
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
    background: linear-gradient(135deg, rgba(158, 19, 26,.18), rgba(143,162,134,.14));
    border: 1px solid rgba(158, 19, 26,.16);
    box-shadow: 0 10px 24px rgba(158, 19, 26,.10);
    color: #9e131a;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

/* SECTION */
.stages-section {
    background: linear-gradient(180deg, #f8f4ec, #eef3f0);
}

/* PHONE MOCKUP */
.phone-wrapper {
    display: flex;
    justify-content: center;
}

.phone {
    width: 380px;
    height: 660px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge */
.badge-live {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1b2c44;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 10px;
}

/* Mic button */
.mic-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #8fa286;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* STAGES */
.stages-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Cards */
.stage-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all .3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
}

/* Typography */
.stage-card h5 {
    font-weight: 800;
    margin-bottom: .3rem;
}

.stage-sub {
    font-weight: 600;
    color: #5b6b7a;
    margin-bottom: .5rem;
}

.stage-card p {
    margin: 0;
}

.stage-card .muted {
    color: #6c7a89;
    margin-top: .4rem;
}

/* COLOR ACCENTS (matching your brand palette) */
.stage-1 {
    border-left: 4px solid #8fa286;
}

.stage-2 {
    border-left: 4px solid #c9a66b;
}

.stage-3 {
    border-left: 4px solid #1b2c44;
}

.stages-stack {
    position: relative;
    min-height: 660px;
}

.stage-flyout {
    position: absolute;
    left: -84px;
    width: min(100%, 630px);
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transform: translate3d(40px, 0, 0) scale(.97);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1);
    will-change: transform, opacity;
}

.stage-flyout.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.stage-flyout:nth-child(1) { top: 34px; }
.stage-flyout:nth-child(2) { top: 210px; }
.stage-flyout:nth-child(3) { top: 386px; }

.stage-orb {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -.05em;
    box-shadow: 0 16px 35px rgba(0,0,0,.16);
    z-index: 2;
    margin-top: 18px;
}

.stage-card-panel {
    margin-left: -14px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(31,31,28,.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.stage-card-head {
    color: #fff;
    padding: 1rem 1.2rem 1rem 1.5rem;
}

.stage-card-head h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 800;
}

.stage-card-body {
    padding: 1.1rem 1.35rem 1.25rem 1.5rem;
}

.stage-card-body p {
    margin: 0;
    color: #24374f;
    font-size: 1rem;
    line-height: 1.6;
}

.stage-card-body p + p {
    margin-top: .75rem;
}

.stage-1 .stage-orb,
.stage-1 .stage-card-head { background: linear-gradient(135deg, #324f7c, #223b66); }
.stage-2 .stage-orb,
.stage-2 .stage-card-head { background: linear-gradient(135deg, #2b7b6c, #1f5f54); }
.stage-3 .stage-orb,
.stage-3 .stage-card-head { background: linear-gradient(135deg, #8f4a25, #b96429); }

@media (max-width: 1199.98px) {
    .stage-flyout {
        left: -34px;
        width: min(100%, 560px);
    }
}

@keyframes popFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1399.98px) {
    .process-flow {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        row-gap: 2rem;
    }

    .flow-arrow {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .process-figure {
        padding: 1.5rem 1rem;
    }

    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .flow-circle {
        width: 88px;
        height: 88px;
        font-size: 3rem;
    }

    .flow-label {
        max-width: 130px;
        font-size: 1rem;
    }
}

@media (max-width: 479.98px) {
    .process-flow {
        grid-template-columns: 1fr;
    }
}

.download-section {
    padding: 0 0 1rem;
}

.download-shell {
    padding: 1.6rem;
    border-radius: calc(var(--radius-xl) + 4px);
}

.download-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: .96;
    letter-spacing: -.05em;
    font-weight: 800;
    color: #14233b;
    margin: 0 0 1rem;
    max-width: 15ch;
}

.download-text {
    max-width: 56ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(31,31,28,.08);
    border-radius: 1.7rem;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    color: inherit;
}

.download-card:hover,
.download-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,.10);
    border-color: rgba(95,126,101,.25);
    outline: none;
}

.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.download-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    box-shadow: 0 14px 30px rgba(95,126,101,.22);
}

.download-badge {
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(240,161,127,.14);
    color: #8f5a43;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 1px solid rgba(240,161,127,.28);
}

.download-card h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 800;
    color: #16253d;
}

.download-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.download-trigger {
    align-self: flex-start;
    min-width: 0;
    pointer-events: none;
}

.template-modal-content {
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,244,239,.98));
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.template-label {
    font-size: .92rem;
    font-weight: 700;
    color: #1b2c44;
    margin-bottom: .45rem;
}

.template-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(31,31,28,.10);
    background: rgba(255,255,255,.82);
    box-shadow: none !important;
    padding-inline: 1rem;
}

.template-input:focus {
    border-color: rgba(95,126,101,.38);
}

.template-success {
    padding: .9rem 1rem;
    border-radius: 16px;
    background: rgba(143,162,134,.12);
    border: 1px solid rgba(95,126,101,.18);
    color: #35503b;
    font-weight: 600;
}

.pricing-section {
    padding: 2rem 0 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,244,239,.98));
}

.pricing-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #314c67;
}

.pricing-title {
    max-width: 9ch;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 800;
    margin: 0 0 2rem;
    color: #14233b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 1.9rem;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(31,31,28,.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
    cursor: pointer;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: auto -18% -38% -18%;
    height: 140px;
    background: radial-gradient(circle, rgba(215,255,99,.16) 0%, rgba(143,162,134,.10) 35%, rgba(143,162,134,0) 72%);
    opacity: 0;
    transform: translateY(18px) scale(.92);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.pricing-card:hover,
.pricing-card:focus-visible {
    transform: translateY(-8px) scale(1.018);
    box-shadow: 0 28px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(143,162,134,.14);
    border-color: rgba(95,126,101,.28);
}

.pricing-card:hover::before,
.pricing-card:focus-visible::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(248,239,230,.88), rgba(255,252,247,.84));
    border-color: rgba(240, 161, 127, .9);
    box-shadow: 0 24px 58px rgba(240, 161, 127, .18);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,247,239,.9));
    border: 1px solid rgba(240,161,127,.55);
    box-shadow: 0 10px 24px rgba(240,161,127,.16);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #8f5a43;
    z-index: 2;
}

.popular-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0a17f;
    box-shadow: 0 0 0 5px rgba(240,161,127,.16);
}

.reveal-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
    will-change: transform, opacity;
}

.js-reveal-card {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
}

.js-reveal-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.js-reveal-card.is-visible:hover,
.js-reveal-card.is-visible:focus-visible,
.reveal-card:hover,
.reveal-card:focus-visible {
    transform: translate3d(0, -8px, 0) scale(1.018);
}

.pricing-option {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #16253d;
    margin-bottom: .45rem;
}

.pricing-name {
    font-size: 1rem;
    line-height: 1.4;
    color: #294566;
    margin-bottom: 1.35rem;
    min-height: 3.1rem;
}

.pricing-price {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.06em;
    color: #16253d;
    margin-bottom: 1.5rem;
}

.pricing-list {
    margin: 0 0 2rem;
    padding-left: 1.45rem;
    color: #1b2c44;
    font-size: .95rem;
    line-height: 1.45;
}

.pricing-list li + li {
    margin-top: .6rem;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: flex-start;
    min-width: 0;
    padding: .85rem 1.35rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(95,119,80,.18);
}

.feature-card p,
.fine-print,
.section-label {
    color: var(--muted);
}

.preview-panel {
    border-radius: 12px;
    padding: 1rem;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(26,26,26,.06);
    box-shadow: var(--shadow);
    min-height: 100%;
}

.video-preview-shell {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(26,26,26,.08);
    background: linear-gradient(180deg, #ffffff, #f7f4ef);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.video-preview-topbar {
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(26,26,26,.06);
    background: rgba(255,255,255,.86);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4d0c8;
    display: inline-block;
}

.video-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(188, 199, 177, .22));
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s ease;
    background: #e9e4db;
}

.hero-video.is-ready {
    opacity: 1;
}

.video-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    background: linear-gradient(180deg, rgba(248,244,236,.92), rgba(245,242,234,.85));
    z-index: 2;
    transition: opacity .35s ease, visibility .35s ease;
}

.video-loading.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.video-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(95,126,101,.18);
    border-top-color: var(--green-dark);
    animation: spin 1s linear infinite;
}

.video-loading-text {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: -.02em;
    text-align: center;
    padding-inline: 1rem;
}

.video-preview-caption {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255,255,255,.78);
    border-top: 1px solid rgba(26,26,26,.06);
}

.video-preview-caption h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.03em;
    margin: 0 0 .2rem;
}

.video-preview-caption p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

footer {
    color: var(--muted);
}

.site-footer {
    margin-top: 4rem;
    padding: 3.25rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,247,241,0.88));
    border-top: 1px solid rgba(31,31,28,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer-top {
    padding-bottom: 2rem;
}

.footer-brand .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.footer-title {
    font-weight: 800;
    letter-spacing: -.04em;
    color: #14233b;
}

.footer-kicker {
    color: #5f6c79;
    font-size: .92rem;
    line-height: 1.45;
}

.footer-subtitle {
    font-weight: 800;
    margin-bottom: .95rem;
    color: #1b2c44;
    letter-spacing: -.02em;
}

.footer-text {
    color: var(--muted);
    line-height: 1.7;
    max-width: 34ch;
}

.footer-contact-card {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(31,31,28,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.footer-contact-row + .footer-contact-row {
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(31,31,28,.06);
}

.footer-contact-label {
    display: block;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6d7780;
    margin-bottom: .2rem;
}

.footer-contact-card a,
.footer-links a {
    text-decoration: none;
    color: #2c3e55;
    transition: color .2s ease, opacity .2s ease;
}

.footer-contact-card a:hover,
.footer-links a:hover {
    color: black;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .65rem;
}

.footer-social {
    display: flex;
    gap: .7rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(143,162,134,.12);
    color: #1b2c44;
    border: 1px solid rgba(95,126,101,.12);
    transition: all .25s ease;
}

.social-icon:hover {
    background: rgb(182, 150, 90);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(95,126,101,.18);
}

.footer-note {
    color: #64707b;
    line-height: 1.65;
    max-width: 42ch;
    font-size: .95rem;
}

.footer-bottom {
    margin-top: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31,31,28,.08);
    font-size: .92rem;
    color: var(--muted);
}

.footer-meta {
    color: #7b838b;
}

.modal {
    z-index: 2000;
}

.modal-backdrop {
    z-index: 1990;
    background: rgba(31, 31, 28, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-dialog {
    z-index: 2001;
    position: relative;
}

.modal-content {
    position: relative;
    z-index: 2002;
}

.btn-close {
    position: relative;
    z-index: 2003;
}

@media (max-width: 1199.98px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-title {
        max-width: 100%;
    }

    .pricing-title {
        max-width: 100%;
    }
}

.hero-title {
    max-width: 100%;
}

/* Topbar */
.topbar {
    font-size: .9rem;
    background: #fdfcf9;
    color: black;
    padding: .45rem 0;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: black;
    text-decoration: none;
    opacity: .9;
    transition: opacity .2s ease;
}

.topbar-link:hover {
    opacity: 1;
}

.topbar i {
    font-size: .95rem;
}

.topbar-note {
    opacity: .75;
    font-size: .85rem;
}


@media (max-width: 575.98px) {
    .countdown-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .stages-list{
        position: relative;
    }

    .countdown-item {
        min-height: auto;
    }

    .notify-form {
        border-radius: 28px;
    }

    .btn-accent {
        width: 100%;
    }

    .video-preview-caption {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card .btn {
        width: auto;
    }
}

.countdown-item {
    min-height: auto;
}

.notify-form {
    border-radius: 28px;
}

.btn-accent {
    width: 100%;
}

.video-preview-caption {
    flex-direction: column;
    align-items: flex-start;
}

.how-section { padding-top: 2rem; }

.how-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.how-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.how-step-title {
    font-weight: 700;
    margin-top: .5rem;
    margin-bottom: .4rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.how-step {
    position: relative;
    height: 100%;
    padding: 1rem .75rem;
    border-radius: 22px;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .6s ease, filter .6s ease;
}

.how-step-hidden {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(4px);
}

.how-step-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.how-step:hover,
.how-step:focus-within {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.42);
}

.how-step-title {
    font-weight: 700;
    margin-top: .5rem;
    margin-bottom: .4rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.how-step p {
    margin-top: 0;
    font-size: 1.1rem;
    color: #2b2534;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

.how-step-connector {
    position: absolute;
    top: 38%;
    right: -10%;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, rgba(142,45,226,0.32), rgba(91,19,166,0.12));
    z-index: 0;
}

.how-step-connector::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(91,19,166,0.3);
    border-right: 2px solid rgba(91,19,166,0.3);
    transform: translateY(-50%) rotate(45deg);
}

.how-number {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    will-change: contents;
}

.how-number.count-ready {
    opacity: 1;
}

.how-number {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}

.how-number.gradient {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-number.dark { color: #2a0a3a; }

.how-subtitle {
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--ink);
}

.how-small {
    font-size: 1.1rem;
    color: #2b2534;
}

.how-link {
    text-decoration: underline;
    color: var(--ink);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .how-step-connector {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .how-card { padding: 2rem 1.2rem; }
    .how-step p { font-size: 1rem; }
    .how-step { padding: .75rem .4rem; }
}
.how-step p { font-size: 1rem; }

.terms-section {
    padding-top: 1rem;
}

.terms-card {
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 3rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.terms-eyebrow {
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink);
}

.terms-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: .95;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: var(--ink);
}

.terms-intro {
    max-width: 900px;
    margin-inline: auto;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    color: #2b2534;
}

.terms-grid {
    display: grid;
    gap: 1.25rem;
}

.terms-block {
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(53,18,79,0.08);
    border-radius: 20px;
    padding: 1.3rem 1.35rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

.terms-block h3 {
    margin: 0 0 .8rem;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--ink);
}

.terms-block h4 {
    margin: 1rem 0 .45rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.terms-block p,
.terms-block li {
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2534;
}

.terms-block ul {
    margin: 0;
    padding-left: 1.25rem;
}

.terms-block p + p {
    margin-top: .75rem;
}

@media (max-width: 767.98px) {
    .terms-card {
        padding: 1.25rem;
    }
}

.faq-section {
    padding-top: 1rem;
}

.faq-card {
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 3rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.faq-accordion {
    display: grid;
    gap: .95rem;
}

.faq-item {
    border: 1px solid rgba(53,18,79,0.08) !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: rgba(255,255,255,0.58);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
}

.faq-button {
    background: transparent !important;
    color: var(--ink) !important;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    padding: 1.15rem 1.2rem;
    box-shadow: none !important;
}

.faq-button:not(.collapsed) {
    background: rgba(255,255,255,0.65) !important;
}

.faq-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-body {
    padding: .15rem 1.2rem 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #2b2534;
}

.faq-list {
    margin: 0;
    padding-left: 1.25rem;
}

.faq-list li + li {
    margin-top: .35rem;
}

@media (max-width: 767.98px) {
    .faq-card {
        padding: 1.25rem;
    }
}
