:root {
    color-scheme: dark;
    --bg: #050607;
    --ink: #fbf7ee;
    --muted: #c9c1b3;
    --soft: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.16);
    --panel: rgba(10, 12, 14, 0.72);
    --panel-solid: #101317;
    --gold: #f2c25d;
    --blue: #48b7ff;
    --red: #ff5b68;
    --green: #4fe09a;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    background: var(--bg);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-shell,
.thanks-shell {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.hero-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.34) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.84)),
        url("../img/banner.png");
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 92svh;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 34px;
}

.brand-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.42);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.brand-mark.centered {
    margin: 0 auto 18px;
}

.panel-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--soft);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.24);
}

.panel-link:hover,
.panel-link:focus-visible {
    border-color: rgba(242, 194, 93, 0.72);
    color: var(--ink);
}

.panel-link-primary {
    border-color: rgba(242, 194, 93, 0.5);
    color: #130f08;
    font-weight: 850;
    background: linear-gradient(135deg, #f7d788, var(--gold) 58%, #ff7068);
}

.panel-link-primary:hover,
.panel-link-primary:focus-visible {
    color: #130f08;
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-copy {
    align-self: start;
    max-width: 720px;
    padding: 28px 0 22px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1.35;
}

.body-copy {
    max-width: 690px;
    margin: 16px 0 0;
    color: var(--soft);
    font-size: 1.08rem;
    line-height: 1.7;
}

.signup-area {
    display: grid;
    max-width: 720px;
    gap: 12px;
}

.signup-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    width: 100%;
}

.signup-form input {
    min-height: 58px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 18px;
    color: var(--ink);
    background: rgba(0, 0, 0, 0.52);
    outline: none;
}

.signup-form input:focus {
    border-color: rgba(72, 183, 255, 0.78);
    box-shadow: 0 0 0 3px rgba(72, 183, 255, 0.18);
}

.signup-form button,
.whatsapp-button {
    min-height: 58px;
    border: 0;
    border-radius: 8px;
    padding: 0 24px;
    color: #130f08;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, #f7d788, var(--gold) 54%, #ff7068);
    box-shadow: 0 14px 34px rgba(242, 194, 93, 0.28);
}

.signup-form button:hover,
.signup-form button:focus-visible,
.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(242, 194, 93, 0.34);
}

.form-message {
    margin: 0;
    color: #ffd1d5;
    font-weight: 700;
}

.trust-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.countdown-panel {
    position: absolute;
    right: 0;
    bottom: 34px;
    display: grid;
    width: min(420px, 40vw);
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 7, 0.56);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.countdown-status,
.countdown-copy {
    margin: 0;
}

.countdown-status {
    color: var(--soft);
    font-size: 0.95rem;
}

.countdown-copy {
    margin-top: 4px;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 850;
}

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

.countdown-grid span {
    display: grid;
    min-height: 74px;
    align-content: center;
    justify-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.countdown-grid strong {
    font-size: 1.55rem;
    line-height: 1;
}

.countdown-grid small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.lower-signal {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 8svh;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #090b0d;
}

.lower-signal div {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(1180px, 100%);
}

.lower-signal p {
    margin: 0;
    color: var(--muted);
}

.signal-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px rgba(79, 224, 154, 0.7);
}

.thanks-shell {
    display: grid;
    place-items: center;
    padding: 28px 20px;
}

.thanks-content {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    text-align: center;
}

.thanks-content h1 {
    max-width: none;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.delivery-body {
    min-height: 100svh;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)),
        url("../img/banner.png") center / cover fixed;
}

.delivery-shell {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 28px 20px;
}

.delivery-card {
    width: min(720px, 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 12, 0.86);
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 38px);
    text-align: center;
    backdrop-filter: blur(16px);
}

.delivery-card h1 {
    max-width: none;
    font-size: clamp(2.35rem, 6vw, 4.7rem);
}

.delivery-card .lead {
    margin-left: auto;
    margin-right: auto;
}

.delivery-form {
    margin: 26px auto 0;
}

.delivery-message {
    margin: 18px auto 0;
}

.delivery-access-note {
    display: grid;
    gap: 6px;
    margin: 18px auto 14px;
    border: 1px solid rgba(242, 194, 93, 0.28);
    border-radius: 8px;
    background: rgba(242, 194, 93, 0.08);
    padding: 14px;
    text-align: left;
}

.delivery-access-note strong {
    color: var(--gold);
}

.delivery-access-note span {
    color: var(--soft);
    line-height: 1.55;
}

.payment-body {
    min-height: 100svh;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.64)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.88)),
        url("../img/banner.png") center / cover fixed;
}

.payment-shell {
    min-height: 100svh;
}

.payment-hero {
    display: grid;
    grid-template-rows: auto 1fr;
    width: min(1180px, calc(100% - 40px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 22px 0 36px;
}

.payment-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    gap: 24px;
    align-items: end;
    padding: 48px 0 0;
}

.payment-copy {
    max-width: 790px;
}

.payment-copy h1 {
    font-size: clamp(2.8rem, 7vw, 5.9rem);
}

.payment-includes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.payment-includes article,
.payment-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 12, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.payment-includes article {
    min-height: 110px;
    padding: 16px;
}

.payment-includes span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.payment-includes strong {
    display: block;
    line-height: 1.35;
}

.payment-card {
    padding: clamp(20px, 3vw, 28px);
}

.payment-card h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1;
}

.payment-card p {
    margin: 16px 0 0;
    color: var(--soft);
    line-height: 1.6;
}

.paypal-form {
    margin-top: 22px;
}

.paypal-hosted-button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
}

.paypal-button,
.whatsapp-direct-button {
    display: inline-flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.paypal-button {
    border: 0;
    color: #08111e;
    cursor: pointer;
    background: linear-gradient(135deg, #ffe66d, #ffc43b 58%, #f1a40b);
    box-shadow: 0 16px 34px rgba(255, 196, 59, 0.26);
}

.paypal-button:disabled {
    cursor: not-allowed;
    opacity: 0.76;
    filter: grayscale(0.18);
}

.payment-status {
    border: 1px solid rgba(242, 194, 93, 0.28);
    border-radius: 8px;
    background: rgba(242, 194, 93, 0.08);
    padding: 12px;
    font-size: 0.9rem;
}

.whatsapp-direct-button {
    margin-top: 12px;
    border: 1px solid rgba(79, 224, 154, 0.34);
    color: #ecfff5;
    background: rgba(79, 224, 154, 0.12);
}

.whatsapp-direct-button:hover,
.whatsapp-direct-button:focus-visible {
    border-color: rgba(79, 224, 154, 0.76);
    background: rgba(79, 224, 154, 0.18);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 14px;
}

.panel-body {
    background:
        linear-gradient(180deg, rgba(5, 6, 7, 0.82), #080a0d 48%, #0d1014),
        url("../img/banner.png") center / cover fixed;
}

.panel-shell {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 42px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.panel-brand {
    flex: 0 0 72px;
}

.panel-header h1 {
    font-size: 2.2rem;
    line-height: 1;
}

.panel-note {
    margin: 8px 0 0;
    color: var(--muted);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.metric-card,
.panel-table-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 16, 20, 0.82);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.metric-card {
    display: grid;
    gap: 10px;
    min-height: 118px;
    align-content: center;
    padding: 18px;
}

.metric-card span {
    color: var(--muted);
    font-size: 0.84rem;
}

.metric-card strong {
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 14px;
    margin-top: 14px;
}

.panel-table-block {
    overflow: hidden;
}

.lead-table-block {
    grid-column: 1 / -1;
}

.table-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.table-heading h2 {
    margin: 0;
    font-size: 1rem;
}

.table-heading p {
    margin: 7px 0 0;
}

.table-heading span {
    color: var(--muted);
    font-size: 0.82rem;
}

.lead-list-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-list-controls label {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 750;
}

.lead-list-controls select {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--ink);
    background: #11151a;
    outline: none;
}

.lead-list-controls select:focus {
    border-color: rgba(72, 183, 255, 0.78);
    box-shadow: 0 0 0 3px rgba(72, 183, 255, 0.16);
}

.responsive-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

td {
    color: var(--soft);
    font-size: 0.9rem;
}

.email-code {
    color: var(--ink);
    white-space: nowrap;
}

.actions-cell,
.pager-actions,
.panel-footer-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.panel-footer-actions {
    justify-content: space-between;
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-button,
.primary-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.mini-button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
}

.mini-button:hover,
.mini-button:focus-visible {
    border-color: rgba(242, 194, 93, 0.62);
}

.mini-button.is-disabled {
    cursor: default;
    opacity: 0.45;
}

.mini-button.is-copied,
.primary-button.is-copied {
    border-color: rgba(79, 224, 154, 0.72);
    color: #03110a;
    background: var(--green);
}

.primary-button {
    border: 0;
    color: #130f08;
    background: linear-gradient(135deg, #f7d788, var(--gold) 54%, #ff7068);
}

.note,
.page-indicator {
    color: var(--muted);
    font-size: 0.86rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: #03110a;
    font-size: 0.74rem;
    font-weight: 850;
    background: var(--green);
}

.status-pill.offline {
    color: var(--soft);
    background: rgba(255, 255, 255, 0.12);
}

.lead-list {
    display: grid;
    gap: 0;
}

.lead-row {
    display: grid;
    gap: 5px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-row strong {
    font-size: 0.95rem;
}

.lead-row span {
    color: var(--muted);
    font-size: 0.8rem;
}

.empty-row {
    padding: 18px;
    color: var(--muted);
}

@media (max-width: 960px) {
    .hero-content {
        min-height: auto;
        padding-bottom: 28px;
    }

    .hero-copy {
        align-self: start;
        padding-top: 42px;
    }

    .countdown-panel {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
    }

    .metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .panel-layout {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .payment-card {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    .hero-background {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.94) 100%),
            url("../img/banner.png");
        background-position: 58% center;
    }

    .hero-content,
    .panel-shell {
        width: min(100% - 28px, 1180px);
    }

    .brand-mark {
        width: 56px;
        height: 56px;
    }

    .hero-copy {
        padding-top: 22px;
        padding-bottom: 16px;
    }

    h1 {
        font-size: 2.35rem;
        line-height: 0.98;
    }

    .lead {
        margin-top: 18px;
        font-size: 1.08rem;
    }

    .body-copy {
        margin-top: 12px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .signup-form {
        grid-template-columns: 1fr;
    }

    .signup-form button {
        width: 100%;
    }

    .payment-hero {
        width: min(100% - 28px, 1180px);
        padding-bottom: 28px;
    }

    .payment-topbar {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .payment-grid {
        gap: 18px;
        padding-top: 28px;
    }

    .payment-includes {
        grid-template-columns: 1fr;
    }

    .countdown-panel {
        gap: 12px;
        padding: 14px;
    }

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

    .countdown-grid span {
        min-height: 62px;
    }

    .countdown-grid strong {
        font-size: 1.18rem;
    }

    .countdown-grid small {
        font-size: 0.62rem;
    }

    .lower-signal div {
        align-items: flex-start;
    }

    .metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-card {
        min-height: 104px;
        padding: 14px;
    }

    .metric-card strong {
        font-size: 1.55rem;
    }

    .panel-header {
        align-items: flex-start;
    }

    .table-heading,
    .panel-footer-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .lead-list-controls {
        width: 100%;
        justify-content: space-between;
    }

    .lead-list-controls select,
    .primary-button {
        width: 100%;
    }

    .pager-actions {
        width: 100%;
    }

    th,
    td {
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .metric-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .hero-content {
        padding-top: 16px;
        padding-bottom: 22px;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .hero-copy {
        padding-top: 16px;
        padding-bottom: 12px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 0.72rem;
    }

    h1 {
        font-size: 2.08rem;
        line-height: 1;
    }

    .lead {
        margin-top: 14px;
        font-size: 1.02rem;
    }

    .body-copy {
        margin-top: 10px;
        font-size: 0.94rem;
        line-height: 1.48;
    }

    .signup-area {
        gap: 10px;
    }

    .signup-form input,
    .signup-form button {
        min-height: 54px;
    }

    .countdown-panel {
        margin-top: 16px;
    }
}
