/* ============================================================
   download-new.css — immersive download page
   ============================================================ */

.dl-page {
    background: var(--black);
    color: var(--white);
}

/* ============================================================
   SECTION 1 — INTRO HERO
   ============================================================ */

.dl-intro-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dl-intro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dl-intro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.dl-intro-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.85) 100%
    );
}

.dl-intro-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 40px;
    max-width: 900px;
}

.dl-intro-badge {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    animation: badgePulse 3s ease infinite;
}

.dl-intro-badge img {
    width: 44px;
    height: auto;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(50, 203, 12, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(50, 203, 12, 0); }
}

.dl-intro-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(64px, 10vw, 140px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 32px;
}

.dl-intro-line {
    display: block;
}

.dl-intro-line--outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.dl-intro-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 48px;
}

.dl-scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.dl-scroll-cta:hover { color: var(--green); }

.dl-arrow {
    font-size: 20px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================================
   SECTION 2 — STATEMENTS
   ============================================================ */

.dl-statements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--black);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.dl-statement {
    padding: 80px 60px;
    border-right: 1px solid #1a1a1a;
    position: relative;
}

.dl-statement:last-child { border-right: none; }

.dl-statement-num {
    font-family: "novecento-sans-condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green);
    display: block;
    margin-bottom: 20px;
}

.dl-statement p {
    font-family: "novecento-sans-condensed", sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: rgba(255,255,255,0.5);
}

.dl-statement p em {
    font-style: normal;
    color: var(--white);
}

/* ============================================================
   SECTION 3 — FORM
   ============================================================ */

.dl-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--black);
}

/* Left panel */
.dl-form-left {
    background: #050505;
    border-right: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.dl-form-left-inner {
    max-width: 420px;
}

.dl-form-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}

.dl-form-big-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(72px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 60px;
}

.dl-badge-stack {
    display: flex;
    gap: -12px;
    margin-bottom: 16px;
}

.dl-badge-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -12px;
    border: 2px solid #111;
}

.dl-badge-circle--black { background: #111; border-color: #333; }
.dl-badge-circle--white { background: var(--white); }
.dl-badge-circle--beige { background: var(--beige); }

.dl-badge-circle img {
    width: 34px;
    height: auto;
}

.dl-badge-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 40px;
    margin-top: 8px;
}

.dl-form-pillars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-form-pillars span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
}

/* Right panel — form */
.dl-form-right {
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.dl-form-inner {
    width: 100%;
    max-width: 540px;
}

.dl-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #2a2a2a;
}

.dl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #2a2a2a;
}

.dl-field {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #2a2a2a;
    border-right: 1px solid #2a2a2a;
    padding: 20px 24px;
}

.dl-form-row .dl-field:last-child,
.dl-field:not(.dl-form-row .dl-field) {
    border-right: none;
}

.dl-field:last-of-type {
    border-bottom: 1px solid #1a1a1a;
}

.dl-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-optional {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #666;
}

.dl-field input,
.dl-field select,
.dl-field textarea {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #f0f0f0;
    width: 100%;
    padding: 0;
    transition: color 0.2s;
}

.dl-field input::placeholder,
.dl-field textarea::placeholder { color: #555; }

.dl-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.dl-field select option { background: #1a1a1a; color: #f0f0f0; }

.dl-field textarea {
    resize: none;
    min-height: 90px;
    line-height: 1.6;
}

.dl-field:focus-within {
    background: #0d0d0d;
}

.dl-field:focus-within label { color: var(--green); }

.dl-form-submit {
    padding: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dl-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 20px 28px 26px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.dl-submit-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.dl-submit-text { flex: 1; text-align: left; }

.dl-submit-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
}

.dl-submit-btn:hover .dl-submit-icon {
    background: rgba(0,0,0,0.1);
}

.dl-form-note {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */

.dl-success-inner {
    width: 100%;
    max-width: 540px;
}

.dl-success-gif {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.dl-success-gif img {
    width: 100%;
    display: block;
}

.dl-success-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}

.dl-success-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 56px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 20px;
}

.dl-success-title em {
    font-style: normal;
    color: var(--green);
}

.dl-success-sub {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 36px;
}

.dl-download-btn {
    margin-bottom: 28px;
}

.dl-success-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.dl-success-hash {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .dl-form-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .dl-form-left {
        position: static;
        height: auto;
        padding: 80px 40px 60px;
    }

    .dl-form-left-inner {
        max-width: 100%;
        text-align: center;
    }

    .dl-badge-stack { justify-content: center; }
    .dl-form-pillars { align-items: center; }

    .dl-form-right {
        padding: 60px 40px 80px;
        justify-content: center;
    }

    .dl-form-inner, .dl-success-inner {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .dl-statements {
        grid-template-columns: 1fr;
    }

    .dl-statement {
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
        padding: 50px 30px;
    }

    .dl-statement:last-child { border-bottom: none; }

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

    .dl-form-left { padding: 60px 24px 40px; }
    .dl-form-right { padding: 40px 24px 60px; }

    .dl-intro-title { font-size: clamp(48px, 14vw, 80px); }
}

/* Consent checkbox */
.dl-field--consent {
    border-bottom: 1px solid #1a1a1a;
    border-right: none !important;
    padding: 20px 24px;
}

.dl-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.dl-consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: var(--green);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.dl-consent-label:hover { color: #ccc; }
