:root {
    --ink: #10221c;
    --muted: #5d6d67;
    --green: #6fa82d;
    --green-dark: #315a28;
    --gold: #f3b63f;
    --coral: #ef6f57;
    --sky: #72b7c7;
    --paper: #fffaf0;
    --white: #ffffff;
    --line: rgba(16, 34, 28, 0.16);
    --shadow: 0 20px 60px rgba(16, 34, 28, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #f7f3e9;
}

a {
    color: inherit;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(16px, 5vw, 54px);
    color: var(--white);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: clamp(150px, 24vw, 235px);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    background: var(--gold);
    color: #241608;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    white-space: nowrap;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.hero {
    min-height: 92vh;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 14, 22, 0.50), rgba(6, 14, 22, 0.08) 48%, rgba(6, 14, 22, 0.26)),
        url("../img/vegas-strip.jpg") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 9vh;
    background: linear-gradient(0deg, rgba(247, 243, 233, 0.78), rgba(247, 243, 233, 0));
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 120px 0 74px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: end;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 18px 0 18px;
    font-size: clamp(3.1rem, 8vw, 7.2rem);
    line-height: 0.9;
    letter-spacing: 0;
    max-width: 860px;
}

.lead {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.48;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-cta,
.secondary-cta,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.primary-cta,
.submit-btn {
    color: #231400;
    background: var(--gold);
}

.secondary-cta {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.13);
}

.prize-panel,
.claim-card,
.agent-panel {
    background: rgba(255, 250, 240, 0.96);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.prize-panel {
    padding: 24px;
}

.prize-panel h2,
.claim-copy h2,
.agent-panel h1 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.05;
}

.prize-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.prize-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: center;
    color: #25362f;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(111, 168, 45, 0.16);
    color: var(--green-dark);
    font-weight: 900;
}

.question {
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.question p {
    margin: 0 0 10px;
    font-weight: 800;
}

.answers {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.answers li {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f1f7ec;
}

.answers .correct {
    color: #173d1f;
    background: #dff1cf;
    font-weight: 900;
}

.panel-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.band {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature {
    min-height: 185px;
    padding: 22px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.feature strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.feature p,
.claim-copy p,
.agent-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.call-band {
    background: #16372f;
    color: var(--white);
}

.call-band .band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.call-band h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.fine-print {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 38px;
    color: #68746f;
    font-size: 0.82rem;
    line-height: 1.55;
}

.claim-page,
.agent-page {
    min-height: 100vh;
    padding: 28px 16px 44px;
    background:
        linear-gradient(120deg, rgba(9, 25, 34, 0.52), rgba(21, 50, 58, 0.30)),
        url("../img/vegas-strip.jpg") center / cover no-repeat fixed;
}

.claim-shell,
.agent-shell {
    width: min(780px, 100%);
    margin: 0 auto;
}

.claim-header,
.agent-header {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.claim-header img,
.agent-header img {
    width: min(250px, 76vw);
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.claim-card,
.agent-panel {
    padding: clamp(18px, 4vw, 30px);
}

.alert {
    border-radius: 8px;
    padding: 14px 15px;
    margin: 0 0 16px;
    line-height: 1.45;
}

.alert.success {
    background: #e8f7dc;
    border: 1px solid #75b84a;
}

.alert.error {
    background: #fff0eb;
    border: 1px solid #ef6f57;
}

form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 800;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    min-height: 50px;
    border: 1px solid #ccd7d1;
    border-radius: 8px;
    padding: 0 13px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(111, 168, 45, 0.18);
}

.consent-box {
    display: grid;
    gap: 8px;
    padding: 13px;
    border-radius: 8px;
    background: #f6f8f2;
    border: 1px solid #dfe8d7;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.consent-row input {
    margin-top: 2px;
}

.consent-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

.submit-btn {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
}

.submit-btn[disabled] {
    opacity: 0.7;
}

.submit-status {
    color: var(--green-dark);
    font-weight: 800;
    text-align: center;
}

@media (max-width: 820px) {
    .site-header {
        position: relative;
        background: #17372f;
        padding: 14px 16px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 54px 0 56px;
    }

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

    .call-band .band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-header {
        flex-direction: column;
    }

    .phone-pill {
        width: 100%;
    }

    h1 {
        font-size: clamp(2.65rem, 16vw, 4.2rem);
    }

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