:root {
    --primary: #FF4B1F;
    --primary-hover: #FF6A2A;
    --black: #111111;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --text: #111827;
    --font: Inter, Arial, Helvetica, sans-serif;
    --ease: all 0.2s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
}

/* ── layout ── */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* soft orange glow top-right */
.page::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255, 75, 31, .18) 0%, transparent 68%);
    pointer-events: none;
}

/* subtle glow bottom-left */
.page::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 75, 31, .08) 0%, transparent 68%);
    pointer-events: none;
}

/* ── header ── */
header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

.header-tag {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ── hero ── */
.hero {
    flex: 1;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px 48px;
    gap: 72px;
}

/* ── left column ── */
.hero-left {
    flex: 1;
    max-width: 540px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 75, 31, .12);
    border: 1px solid rgba(255, 75, 31, .35);
    color: var(--primary);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 28px;
}

/* feature tags — flowing wrap */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 8px;
    margin-bottom: 20px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.4;
    white-space: normal;
}

.pill svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pill span {
    flex: 1;
}

/* pricing box */
.pricing {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-left: 3px solid var(--primary);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.pricing-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 10px;
}

.cur {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.val {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
}

.cents {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    align-self: flex-start;
    margin-top: 8px;
}

.period {
    font-size: 15px;
    color: rgba(255, 255, 255, .4);
    margin-left: 4px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.pricing-note svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA */
.btn {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 28px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--ease);
    letter-spacing: .3px;
}

.btn:hover {
    background: var(--primary-hover);
}

.btn-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-top: 10px;
}

/* ── right column — features + mockup ── */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    position: relative;
}

.mockup {
    width: 420px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    position: relative;
    overflow: hidden;
}

/* top accent bar */
.mockup::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--primary);
}

.mockup-inner {
    padding: 24px;
}

/* window dots */
.mockup-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.mockup-dots span:first-child {
    background: rgba(255, 75, 31, .6);
}

/* stat cards row */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.m-stat {
    background: rgba(255, 255, 255, .06);
    padding: 12px;
}

.m-stat-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.m-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* chart bar */
.chart {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 16px;
    margin-bottom: 16px;
}

.chart-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    opacity: .7;
}

.chart-bar:nth-child(1)::after {
    height: 40%;
}

.chart-bar:nth-child(2)::after {
    height: 65%;
}

.chart-bar:nth-child(3)::after {
    height: 50%;
}

.chart-bar:nth-child(4)::after {
    height: 80%;
}

.chart-bar:nth-child(5)::after {
    height: 55%;
}

.chart-bar:nth-child(6)::after {
    height: 90%;
    background: var(--primary);
    opacity: 1;
}

.chart-bar:nth-child(7)::after {
    height: 70%;
}

/* list rows */
.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    padding: 10px 12px;
}

.m-row-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.m-row-info {
    flex: 1;
}

.m-row-name {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, .15);
    margin-bottom: 5px;
}

.m-row-sub {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, .07);
}

.m-row-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 75, 31, .12);
    padding: 3px 8px;
}

/* floating glow inside mockup */
.mockup-glow {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 75, 31, .15) 0%, transparent 65%);
    pointer-events: none;
}

/* ── header partner block ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .15);
}

.partner-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .3);
    white-space: nowrap;
}

.tray-logo {
    padding: 6px 14px;
}

.tray-logo img {
    height: 35px;
    width: auto;
    display: block;
}

/* ── footer ── */
footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-link {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: var(--ease);
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link.support {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .55);
    font-weight: 700;
}

.footer-link.support:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
}

/* ── responsive ── */
@media (max-width: 960px) {

    .page::before,
    .page::after {
        display: none;
    }

    header {
        padding: 16px 24px;
    }

    .partner-label {
        display: none;
    }

    .header-divider {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 24px 24px 40px;
        gap: 40px;
        align-items: flex-start;
    }

    .hero-left {
        max-width: 100%;
    }

    h1 {
        font-size: 28px;
    }

    .hero-right {
        width: 100%;
        justify-content: flex-start;
    }

    .mockup {
        width: 100%;
        max-width: 420px;
    }

    footer {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}