:root {
    --ink: #101a24;
    --muted: #5f6b76;
    --paper: #f4f2eb;
    --white: #ffffff;
    --line: #d9ddd9;
    --yellow: #f4c400;
    --yellow-dark: #cda500;
    --green: #159455;
    --blue: #164f78;
    --error: #b42318;
    --error-soft: #fff1f0;
    --shadow: 0 24px 70px rgba(16, 26, 36, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

input,
button {
    font: inherit;
}

.promotions-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    background: var(--white);
    border-bottom: 1px solid rgba(16, 26, 36, 0.09);
}

.promotions-brand {
    color: var(--ink);
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
}

.promotions-brand strong {
    color: var(--yellow-dark);
}

.promotions-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

.promotions-name {
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.promotions-main {
    min-height: calc(100vh - 158px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
    align-items: start;
    gap: clamp(36px, 6vw, 90px);
    padding: clamp(48px, 7vw, 90px) max(5vw, 22px);
    background:
        radial-gradient(circle at 8% 20%, rgba(21, 148, 85, 0.24), transparent 27rem),
        radial-gradient(circle at 38% 75%, rgba(22, 79, 120, 0.24), transparent 30rem),
        linear-gradient(125deg, #07131e 0%, #113247 58%, #102a38 100%);
}

.promotions-intro {
    min-width: 0;
    align-self: start;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.promotions-intro h1,
.subscription-heading h2,
.success-card h1,
.privacy-card h1 {
    margin: 0;
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    line-height: 1.02;
}

.promotions-intro h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6.4rem);
}

.promotions-intro > p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: #e8eef2;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 680px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
}

.category-strip span {
    min-width: 0;
    padding: 14px 10px;
    color: #dce6ec;
    text-align: center;
}

.category-strip span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.category-strip strong {
    display: block;
    color: var(--white);
}

.subscription-card,
.privacy-card {
    width: min(100%, 670px);
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.subscription-heading {
    margin-bottom: 25px;
}

.subscription-heading h2 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.subscription-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.field {
    min-width: 0;
    margin-bottom: 18px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    font-weight: 700;
}

.field label small {
    color: var(--muted);
    font-weight: 500;
}

.field input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid #bcc5cb;
    border-radius: 9px;
    background: var(--white);
}

.field input:focus {
    outline: 3px solid rgba(244, 196, 0, 0.22);
    border-color: var(--yellow-dark);
}

.field input.invalid,
.consent-invalid {
    border-color: var(--error);
    background: var(--error-soft);
}

.field-help,
.form-fine-print {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.field-error {
    margin: 7px 0 0;
    color: var(--error);
    font-size: 0.8rem;
    font-weight: 700;
}

.form-error-summary {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #e4a29d;
    border-radius: 9px;
    color: var(--error);
    background: var(--error-soft);
    font-weight: 700;
}

.consent-box {
    margin: 16px 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #faf9f6;
}

.consent-box label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.81rem;
    line-height: 1.5;
}

.consent-box input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.consent-box a,
.form-fine-print a,
.privacy-card a {
    color: var(--blue);
    font-weight: 700;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    padding: 13px 18px;
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    background: var(--yellow);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.subscribe-button:hover,
.subscribe-button:focus-visible {
    background: #ffd522;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.promotions-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px max(5vw, 22px);
    background: var(--white);
}

.promotions-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.promotions-footer a {
    color: var(--blue);
    font-size: 0.86rem;
    font-weight: 700;
}

.promotions-success-page {
    background:
        radial-gradient(circle at 15% 20%, rgba(21, 148, 85, 0.22), transparent 27rem),
        linear-gradient(130deg, #07131e, #113247);
}

.success-main {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.success-card {
    text-align: center;
}

.success-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-size: 2rem;
    font-weight: 800;
}

.success-card h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.success-card p {
    color: var(--muted);
}

.green-signoff {
    color: var(--green) !important;
    font-weight: 800;
}

.success-actions {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.text-link {
    color: var(--blue);
    font-weight: 700;
}

.privacy-page {
    background: var(--paper);
}

.privacy-main {
    padding: clamp(34px, 6vw, 70px) 18px;
}

.privacy-card {
    width: min(940px, 100%);
    margin: 0 auto;
    background: var(--white);
}

.privacy-card h1 {
    font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.policy-meta {
    margin: 10px 0 28px;
    color: var(--muted);
    font-size: 0.86rem;
}

.privacy-card h2 {
    margin: 30px 0 8px;
    padding-top: 20px;
    border-top: 1px solid #eceae4;
    font-family: Impact, "Arial Narrow", Arial, sans-serif;
    font-size: 1.45rem;
}

.privacy-card p,
.privacy-card li {
    color: #394753;
}

.privacy-card address {
    padding: 16px;
    border-left: 4px solid var(--yellow);
    background: #faf9f6;
    font-style: normal;
}

.policy-actions {
    display: grid;
    grid-template-columns: minmax(0, 320px) auto;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

@media (max-width: 850px) {
    .promotions-main {
        grid-template-columns: 1fr;
    }

    .promotions-intro {
        text-align: center;
    }

    .promotions-intro h1,
    .promotions-intro > p:not(.eyebrow),
    .airplane-loop-graphic,
    .category-strip,
    .subscription-card {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .promotions-header,
    .promotions-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .promotions-divider {
        display: none;
    }

    .promotions-main {
        padding: 38px 12px;
    }

    .promotions-intro h1 {
        font-size: clamp(2.7rem, 15vw, 4.5rem);
        overflow-wrap: anywhere;
    }

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

    .category-strip span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .category-strip span:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .subscription-card,
    .privacy-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .policy-actions {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/*
 * Decorative flight-path illustration used beside the "Stay in the loop"
 * message. It is inline SVG, requires no external asset, and scales cleanly
 * from desktop to narrow mobile screens.
 */
.airplane-loop-graphic {
    width: min(520px, 100%);
    margin: 18px 0 6px;
}

.airplane-loop-graphic svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.loop-flight-path {
    fill: none;
    stroke: rgba(244, 196, 0, 0.88);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 12 12;
}

.loop-airplane {
    fill: #ffffff;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.28));
}

.trademark {
    position: relative;
    top: -0.45em;
    margin-left: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.38em;
    line-height: 0;
}



/* ==========================================================================
   First-time subscriber promotional-code panel
   --------------------------------------------------------------------------
   The left side is intentionally styled as a strong visual badge. The right
   side remains readable body copy. On narrow screens, the two columns stack
   vertically so the panel stays balanced and easy to scan.
   ========================================================================== */

.subscriber-offer {
    width: min(650px, 100%);
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 22px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(244, 196, 0, 0.65);
    border-radius: 10px;
    background: rgba(244, 196, 0, 0.12);
}

.subscriber-offer strong {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-right: 1px solid rgba(244, 196, 0, 0.35);
    color: var(--yellow);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.subscriber-offer span {
    display: flex;
    align-items: center;
    padding: 22px 24px;
    color: #e8eef2;
    font-size: 1rem;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .subscriber-offer {
        display: block;
    }

    .subscriber-offer strong {
        flex: none;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(244, 196, 0, 0.35);
        font-size: 1.1rem;
    }

    .subscriber-offer span {
        padding: 16px;
    }
}
