:root {
    --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --text: #e6eef6;
    --muted: #9aa7b6;
    --fine: #7a8694;
    --bg: #000000;
    --card: #000000;
    --border: #1f2937;
    --shadow: 0 1px 2px rgba(2, 6, 23, .4), 0 6px 20px rgba(2, 6, 23, .35);
    --radius: 14px;
    --accent: #213AD8;
    /* brand accent */
    --accent-strong: #213AD8;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px
}

.stack-lg>* {
    margin-bottom: 24px
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 50
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit
}

.brand img {
    height: 80px
}

/* Tighten header vertical padding only */
.site-header .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: .2px
}

.social-box {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
    padding: 0;
}

.social-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    background: transparent
}

.social-box a:hover {
    background: #ffffff;
    color: #000000;
}

.social-box a svg {
    width: 24px;
    height: 24px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.confirmation {
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px
}

.confirm-left {
    display: flex;
    flex-direction: column
}

.confirm-title {
    display: flex;
    align-items: center;
    gap: 10px
}

.confirm-title h1 {
    font-size: 18px;
    margin: 0
}

.muted {
    color: var(--muted)
}

.fine {
    color: var(--fine);
    font-size: 12px;
    margin-top: 6px
}

/* Welcome access strip under OTO */
.welcome-access {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #000000
}

.welcome-access h4 {
    margin: 0 0 6px 0;
    font-size: 16px
}

.order-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: center
}

.order-summary .row {
    display: contents
}

.label {
    color: var(--muted)
}

.value {
    font-weight: 500
}

.inline-link {
    color: var(--accent);
    text-decoration: none
}

.inline-link:hover {
    color: var(--accent-strong);
    text-decoration: underline
}

.accent {
    color: var(--accent);
}

.success-strip {
    display: none
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(33, 58, 216, .12);
    color: #213AD8
}

.oto {
    padding: 18px
}

/* Compact two-column OTO layout */
.oto-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    align-items: start
}

/* Stretch columns equal height to allow vertical centering in aside */
.oto-grid {
    align-items: stretch;
}

.oto-aside .carousel {
    max-width: 360px;
    margin-left: auto
}

.oto-aside .slide img {
    height: auto
}

/* Center CTA box between image and card bottom */
.oto-aside {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: stretch;
}

.oto-aside .cta-notice {
    align-self: center;
    justify-self: center;
    width: 100%;
}

.cta-notice .price-row {
    margin-top: 0;
}

.oto-aside .price-row {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.oto-main .feature-list {
    margin-top: 8px;
    margin-bottom: 8px
}

.oto-main .price-row {
    margin-top: 6px
}

.oto-header h2 {
    margin: 0 0 4px 0;
    font-size: 20px
}

.oto-header .subhead {
    color: var(--muted);
    margin: 4px 0 8px 0;
}

.oto-welcome {
    margin: 0 0 10px 0
}

.oto-welcome h3 {
    margin: 0 0 6px 0;
    font-size: 18px
}

.oto-welcome p {
    margin: 8px 0;
}

/* Lighter, slightly neon accent for hero blips on free_confirmation */
.oto-welcome .accent {
    color: #6FA3FF;
    text-shadow: 0 0 10px rgba(33, 58, 216, .38), 0 0 2px rgba(33, 58, 216, .6);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 14px 0;
    display: grid;
    gap: 8px
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.micro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #34d399;
    background: transparent;
    border-radius: 999px
}

.gallery {
    margin: 10px 0 4px
}

.carousel {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #000000
}

.slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: center
}

.slide img {
    width: 100%;
    display: block
}

.dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 10px 0
}

.dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: #324154;
    cursor: pointer
}

.dots button[aria-selected="true"] {
    background: var(--accent)
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px
}

.price .now {
    font-weight: 700
}

.urgency {
    margin-top: 6px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.urgency .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(33, 58, 216, .7);
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: .8;
    }
}

.quote-inline {
    margin: 8px 0 0 0;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 240px
}

.price-anchor {
    color: var(--text);
    font-size: 14px;
}

.price-anchor .save {
    color: var(--accent);
}

.price-anchor .regular {
    color: var(--muted);
}

.cta-micro {
    margin-top: -2px;
}

.guarantee {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.guarantee .badge {
    display: inline-block;
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--text);
    box-shadow: 0 0 0 2px rgba(33, 58, 216, .12), 0 0 20px rgba(33, 58, 216, .15);
}

/* Softer guarantee styling inside CTA blue box */
.cta-notice .guarantee .badge {
    font-weight: 500;
    background: rgba(33, 58, 216, .12);
    border-color: rgba(33, 58, 216, .5);
    box-shadow: 0 0 0 1px rgba(33, 58, 216, .12);
}

.mini-faq {
    margin-top: 10px;
}

.mini-faq details {
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
}

.mini-faq details+details {
    margin-top: 6px;
}

.mini-faq summary {
    cursor: pointer;
}

.mini-faq p {
    margin: 6px 0 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-weight: 600
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.btn-primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong)
}

.btn-quiet {
    background: transparent;
    color: var(--muted);
    height: auto;
    padding: 4px 0;
    border: none;
    justify-content: flex-start
}

.btn-quiet:hover {
    color: var(--text)
}

.btn-ghost {
    background: #111827
}

/* Referral code copy UI */
.referral-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin: 6px 0;
    padding: 6px 10px;
    border: 1px dashed var(--accent);
    border-radius: 10px;
    background: rgba(33, 58, 216, .08);
}

.referral-box code {
    color: var(--text);
}

.btn-copy {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    color: #ffffff;
}

.btn-copy svg {
    display: block;
}

/* Copy toast microinteraction (referral copy) */
.copy-toast {
    position: absolute;
    right: 10px;
    top: -12px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .85));
    color: #0f172a;
    border-radius: 999px;
    padding: .3rem .65rem;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 8px 26px rgba(6, 182, 212, .18), inset 0 1px 0 rgba(255, 255, 255, .85);
    border: 1px solid rgba(148, 163, 184, .35);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    opacity: 0;
    transform: translateY(-4px) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.copy-toast .check-icon {
    color: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, .45));
}

/* Subtle nudge when copied */
.btn-copy.copied {
    transform: translateY(-1px);
}

.activation {
    margin-top: 8px
}

.activation h3 {
    margin: 0 0 12px 0
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.step {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.step-body {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #111827;
    color: #cbd5e1
}

.step-text h4 {
    margin: 0 0 2px 0;
    font-size: 15px
}

.optional {
    padding: 12px
}

.optional-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.optional h4 {
    margin: 0
}

.social-proof {
    margin: 8px 0 24px
}

.quotes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.quote {
    padding: 14px
}

.quote p {
    margin: 0 0 8px 0
}

.cite {
    color: var(--fine);
    font-size: 12px
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 16px 0;
    margin-top: 14px
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

@media (max-width: 900px) {
    .confirmation {
        flex-direction: column;
        align-items: flex-start
    }

    .order-summary {
        grid-template-columns: 130px 1fr
    }

    .steps {
        grid-template-columns: 1fr
    }

    .quotes {
        grid-template-columns: 1fr
    }

    .cta {
        min-width: 0
    }

    .oto-grid {
        grid-template-columns: 1fr
    }

    .oto-aside .carousel {
        max-width: 100%;
        margin-left: 0
    }
}

@media (max-width: 640px) {
    .container {
        padding: 16px
    }

    .oto {
        padding: 16px
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start
    }

    /* Fix header overlap on mobile */
    .header-inner {
        justify-content: space-between;
    }

    .brand img {
        height: 48px;
    }

    .social-box {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        gap: 8px;
    }

    .social-box a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .social-box a svg {
        width: 20px;
        height: 20px;
    }
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(0, 0, 0, .7);
    border-top: 1px solid var(--border);
    z-index: 60;
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
}

.sticky-cta .skip {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

/* Small notice card */
.notice {
    padding: 12px;
    border: 1px solid var(--accent);
    border-radius: 12px;
    background: linear-gradient(135deg, #0e1b24 0%, #0b2a34 60%, #0c3640 100%);
    box-shadow: 0 0 0 1px #214d5c, 0 8px 30px rgba(33, 58, 216, .22);
}

/* Brighter neon ring for CTA notice */
.cta-notice {
    box-shadow: 0 0 0 2px rgba(33, 58, 216, .38), 0 0 24px rgba(33, 58, 216, .26), 0 12px 36px rgba(33, 58, 216, .18);
    border-color: var(--accent);
}

/* Apply similar glow to other notice in OTO */
.oto .notice {
    box-shadow: 0 0 0 2px rgba(33, 58, 216, .38), 0 0 24px rgba(33, 58, 216, .26), 0 12px 36px rgba(33, 58, 216, .18);
    border-color: var(--accent);
}

/* Quickstart page */
.quickstart {
    padding: 18px;
}

.qs-hero .eyebrow,
.quickstart .eyebrow {
    letter-spacing: .2em;
    font-size: 12px;
    color: var(--muted);
}

.qs-hero h1 {
    margin: 6px 0 8px 0;
    font-size: 22px;
}

.qs-bonus {
    margin: 10px 0 12px 0;
    padding: 12px;
    border: 1px solid var(--accent);
    border-radius: 12px;
    background: linear-gradient(135deg, #0e1b24 0%, #0b2a34 60%, #0c3640 100%);
    box-shadow: 0 0 0 1px #214d5c, 0 8px 30px rgba(33, 58, 216, .22);
}

/* Lighter neon accent for "+7 days" in bonus callout */
.qs-bonus .accent {
    color: #6FA3FF;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(33, 58, 216, .45), 0 0 2px rgba(33, 58, 216, .7);
}

.qs-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qs-card {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #0b1217;
}

.qs-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qs-social-inline a {
    color: var(--text);
}

@media (max-width: 900px) {
    .qs-grid-2 {
        grid-template-columns: 1fr;
    }
}