/* =========================================================
   HOLIDAY KDP JV PAGE
   MAIN STYLESHEET
========================================================= */

:root {
    --navy: #101b35;
    --navy-dark: #091125;
    --blue: #2457d6;
    --blue-dark: #173fa5;
    --ice: #eef5ff;
    --ice-2: #f7faff;
    --white: #ffffff;
    --text: #1a2335;
    --muted: #657089;
    --border: #dfe6f1;
    --green: #1b9b69;
    --gold: #f0b84a;
    --shadow: 0 20px 50px rgba(16, 27, 53, 0.10);
    --radius: 18px;
    --max-width: 1180px;
}

/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.section {
    padding: 110px 0;
}

.section-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 15px;
}

.section-label.light {
    color: #9dbbff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.intro-section h2 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-heading p,
.intro-section p {
    color: var(--muted);
    font-size: 17px;
}

.lead {
    font-size: 20px !important;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
}

p + p {
    margin-top: 18px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 9px;
    padding: 13px 22px;
    font-weight: 800;
    font-size: 14px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 25px rgba(36, 87, 214, 0.25);
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 14px 30px rgba(36, 87, 214, 0.32);
}

.btn-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--blue);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-large {
    padding: 17px 27px;
    font-size: 15px;
}

.btn-small {
    padding: 10px 15px;
    font-size: 12px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 230, 241, 0.8);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: white;
    border-radius: 10px;
}

.desktop-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.desktop-nav a:hover {
    color: var(--blue);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(77, 128, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #f7faff 0%, #eaf2ff 100%);
    padding: 105px 0 95px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(36, 87, 214, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(36, 87, 214, 0.08);
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-size: clamp(44px, 5.7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: 760px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text {
    max-width: 690px;
    color: #56637a;
    font-size: 18px;
    margin: 28px 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note span {
    color: var(--green);
    font-weight: 900;
}

.hero-decoration {
    position: absolute;
    color: rgba(36, 87, 214, 0.15);
    font-size: 55px;
}

.hero-decoration-one {
    top: 90px;
    right: 4%;
}

.hero-decoration-two {
    bottom: 30px;
    left: 3%;
}

.hero-decoration-three {
    top: 48%;
    left: 48%;
}

/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    padding: 25px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(36, 87, 214, 0.12);
    border-radius: 50%;
    filter: blur(45px);
    top: -100px;
    right: -70px;
}

.hero-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(27, 155, 105, 0.12);
}

.hero-card-main {
    position: relative;
    padding-top: 22px;
}

.funnel-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: var(--ice-2);
    border: 1px solid var(--border);
    border-radius: 13px;
}

.funnel-mini-item.highlight {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.mini-number {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.funnel-mini-item strong {
    display: block;
    font-size: 14px;
}

.funnel-mini-item small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.funnel-mini-item.highlight small {
    color: #b9c5dd;
}

.funnel-arrow {
    text-align: center;
    color: var(--blue);
    font-weight: 900;
    padding: 7px;
}

/* =========================================================
   QUICK STATS
========================================================= */

.quick-stats {
    background: var(--navy);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat {
    text-align: center;
    padding: 27px 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-size: 27px;
    font-weight: 900;
}

.stat span {
    color: #aebbd4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   INTRO
========================================================= */

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

.intro-section h2 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.progression {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.progression span {
    padding: 11px 15px;
    background: var(--ice);
    color: var(--navy);
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
}

.progression b {
    color: var(--blue);
}

/* =========================================================
   CTA STRIP
========================================================= */

.cta-strip {
    background: var(--blue);
    color: white;
}

.cta-strip-inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-small {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    opacity: 0.75;
}

.cta-strip h3 {
    font-size: 26px;
    margin-top: 4px;
}

/* =========================================================
   SNAPSHOT
========================================================= */

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.snapshot-card {
    position: relative;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.snapshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.snapshot-card.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.product-tag {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.featured .product-tag {
    color: #a9c1ff;
}

.snapshot-icon {
    font-size: 31px;
    margin: 25px 0 15px;
}

.snapshot-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.snapshot-card p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.snapshot-card.featured p {
    color: #b4bfd5;
}

.snapshot-card a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

/* =========================================================
   DARK SECTIONS
========================================================= */

.dark-section {
    background: var(--navy);
    color: white;
}

.dark-section h2 {
    color: white;
}

.dark-section p {
    color: #b7c2d7;
}

/* =========================================================
   TWO COLUMN
========================================================= */

.two-column {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.two-column h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4.5vw, 55px);
}

.two-column p {
    font-size: 17px;
}

/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: #fbfcff;
}

.product-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 65px 0;
    border-bottom: 1px solid var(--border);
}

.product-block:last-child {
    border-bottom: 0;
}

.product-number {
    font-family: "Playfair Display", serif;
    font-size: 70px;
    color: #dbe5f7;
    font-weight: 700;
}

.product-content {
    max-width: 900px;
}

.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.product-topline > span:first-child {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.product-badge {
    background: var(--ice);
    color: var(--blue);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 9px;
    font-weight: 900;
}

.product-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 43px);
    margin-bottom: 18px;
}

.product-intro {
    color: var(--muted);
    font-size: 17px;
    max-width: 780px;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 25px 0 35px;
}

.feature-grid > div {
    padding: 17px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.feature-grid strong {
    display: block;
    color: var(--blue);
    font-size: 25px;
}

.feature-grid span {
    color: var(--muted);
    font-size: 11px;
}

.product-content h4 {
    color: var(--navy);
    font-size: 14px;
    margin: 30px 0 12px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 9px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #536078;
    font-size: 13px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-list span,
.seasonal-unlocks span {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.angle-box {
    margin-top: 35px;
    padding: 20px 23px;
    border-left: 4px solid var(--blue);
    background: var(--ice);
    border-radius: 0 12px 12px 0;
}

.angle-box span {
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

.angle-box strong {
    color: var(--navy);
    font-size: 14px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-row {
    display: flex;
    gap: 10px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.feature-row span {
    color: var(--green);
    font-weight: 900;
}

.feature-row strong {
    color: var(--navy);
    font-size: 12px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.rights-card {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.rights-card span {
    color: var(--green);
    font-weight: 900;
}

.rights-card strong {
    display: block;
    color: var(--navy);
    margin-top: 8px;
}

.rights-card small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin-top: 5px;
}

.notice-box {
    margin-top: 20px;
    padding: 15px 18px;
    background: #fff8e9;
    border: 1px solid #f3dfad;
    color: #6d5522;
    border-radius: 10px;
    font-size: 12px;
}

.featured-product {
    padding: 65px 35px;
    margin: 30px -35px;
    border-radius: 25px;
    background: linear-gradient(135deg, #f0f6ff, #ffffff);
    border: 1px solid #d7e3fa;
}

.book-count {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.book-count strong {
    font-size: 65px;
    line-height: 1;
    color: var(--blue);
}

.book-count span {
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.theme-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.theme-cards div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.theme-cards span {
    font-size: 22px;
    color: var(--blue);
}

.theme-cards strong {
    font-size: 12px;
}

.seasonal-unlocks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.small-note {
    color: var(--muted);
    font-size: 11px;
    margin-top: 10px;
}

/* =========================================================
   ANGLES
========================================================= */

.light-section {
    background: var(--ice-2);
}

.angle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.angle-grid article {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
}

.angle-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.angle-grid h3 {
    margin: 18px 0 10px;
    font-size: 18px;
}

.angle-grid p {
    color: var(--muted);
    font-size: 12px;
}

/* =========================================================
   AFFILIATE BENEFITS
========================================================= */

.affiliate-section {
    background: white;
}

.sticky-heading {
    position: sticky;
    top: 110px;
}

.sticky-heading p {
    color: var(--muted);
    margin: 20px 0 30px;
}

.affiliate-benefits {
    display: grid;
    gap: 10px;
}

.benefit {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.benefit > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--ice);
    color: var(--blue);
    font-weight: 900;
    font-size: 11px;
}

.benefit h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.benefit p {
    color: var(--muted);
    font-size: 13px;
}

.affiliate-contest-section {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contest-heading {
    margin-bottom: 30px;
}

.contest-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(36, 87, 214, 0.12);
    border-radius: 999px;
    background: rgba(36, 87, 214, 0.06);
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contest-intro {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.contest-intro p {
    color: var(--muted);
    font-size: 17px;
}

.contest-emphasis {
    margin-top: 16px;
    color: var(--navy) !important;
    font-weight: 700;
}

.contest-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.contest-stat {
    padding: 24px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(16, 27, 53, 0.04);
}

.contest-stat strong {
    display: block;
    color: var(--navy);
    font-size: clamp(26px, 2vw, 38px);
    line-height: 1.08;
    margin-bottom: 6px;
}

.contest-stat span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contest-window {
    display: grid;
    gap: 8px;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--navy), #112958);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    text-align: center;
    box-shadow: var(--shadow);
}

.contest-window span {
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.contest-window strong {
    display: block;
    color: #9bb5ff;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.contest-window small {
    display: block;
    margin-top: 8px;
    color: #d2defa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contest-prizes {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 30px;
}

.prize-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 22px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(16, 27, 53, 0.04);
    text-align: center;
}

.prize-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.prize-card strong {
    display: block;
    color: var(--navy);
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1;
}

.prize-card-first {
    background: linear-gradient(180deg, #fff7d8, #fffdf7);
    border-color: #f2d788;
}

.prize-card-first strong,
.prize-card-first span {
    color: #7c5a00;
}

.prize-card-second {
    background: linear-gradient(180deg, #eef4ff, #ffffff);
}

.prize-card-third {
    background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.prize-card-fourth,
.prize-card-fifth {
    background: linear-gradient(180deg, #f4f5f8, #ffffff);
}

.contest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
}

.contest-total {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: var(--navy);
}

.contest-total span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contest-total strong {
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1;
    color: var(--blue);
}

.affiliate-contest-section .btn {
    white-space: nowrap;
}

/* =========================================================
   PROMOTION
========================================================= */

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.promotion-card {
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    border-radius: 15px;
}

.promotion-card > span {
    color: #8fb0ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.promotion-card h3 {
    color: white;
    margin: 20px 0 12px;
    font-size: 19px;
}

.promotion-card p {
    color: #b6c2d8;
    font-size: 12px;
}

.promo-hook {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #dbe4f5;
    font-size: 11px;
}

.promo-hook strong {
    color: white;
}

/* =========================================================
   EMAIL SWIPES
========================================================= */

.swipes-section {
    background: #f7f9fd;
}

.swipe-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-bottom: 25px;
    overflow: hidden;
}

.swipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--navy);
    color: white;
}

.swipe-header span {
    color: #9db8ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.swipe-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-top: 5px;
}

.copy-btn {
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: white;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.copy-btn:hover {
    background: white;
    color: var(--navy);
}

.swipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 17px 30px;
    background: var(--ice-2);
    color: var(--muted);
    font-size: 11px;
}

.subjects {
    padding: 25px 30px 10px;
    color: var(--muted);
    font-size: 12px;
}

.subjects strong {
    color: var(--navy);
}

.subjects ol {
    margin: 10px 0 0 20px;
}

.email-body {
    padding: 25px 30px;
    color: #45516a;
    font-size: 14px;
    border-top: 1px solid var(--border);
}

.email-body p {
    margin-bottom: 17px;
}

.email-body p:first-child {
    color: var(--navy);
    font-weight: 700;
}

.email-link {
    padding: 13px 16px;
    background: var(--ice);
    color: var(--blue);
    font-weight: 900;
    border-radius: 7px;
}

.placement {
    padding: 15px 30px;
    border-top: 1px solid var(--border);
    background: #fffdf5;
    color: #74643b;
    font-size: 11px;
}

/* =========================================================
   CREATIVE
========================================================= */

.creative-section {
    background: white;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.creative-item {
    padding: 25px;
    background: var(--ice-2);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.creative-item > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
}

.creative-item h3 {
    font-size: 17px;
    margin: 15px 0 8px;
}

.creative-item p {
    color: var(--muted);
    font-size: 12px;
}

/* =========================================================
   COMPLIANCE
========================================================= */

.compliance {
    background: #f4f7fc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 75px 0;
}

.compliance-inner {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 30px;
    align-items: start;
}

.compliance-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 24px;
    font-weight: 900;
}

.compliance h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--navy);
}

.compliance p {
    color: var(--muted);
    max-width: 750px;
    margin: 12px 0 25px;
}

.compliance-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.compliance-list span {
    padding: 7px 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(73, 123, 255, 0.25), transparent 40%),
        var(--navy-dark);
    color: white;
}

.final-cta-content {
    max-width: 780px;
    margin: 0 auto;
}

.final-cta .eyebrow {
    background: rgba(255,255,255,0.08);
    color: #a7c0ff;
}

.final-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 6vw, 65px);
    margin-bottom: 20px;
}

.final-cta p {
    color: #b8c4db;
    font-size: 16px;
    margin-bottom: 30px;
}

.final-note {
    font-size: 11px !important;
    color: #8290ab !important;
    margin-top: 18px !important;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #060c1b;
    color: white;
    padding: 30px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-inner strong {
    display: block;
    font-size: 14px;
}

.footer-inner > div:first-child span {
    color: #697692;
    font-size: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #8c99b1;
    font-size: 10px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: right;
    color: #697692;
    font-size: 10px;
}

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

@media (max-width: 1050px) {

    .hero-grid {
        gap: 45px;
    }

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

    .angle-grid,
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .angle-grid article:last-child,
    .promotion-grid article:last-child {
        grid-column: span 2;
    }

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

    .two-column {
        gap: 50px;
    }
}

@media (max-width: 800px) {

    .desktop-nav {
        display: none;
    }

    .header-inner {
        height: 68px;
    }

    .header-inner .btn {
        display: none;
    }

    .hero {
        padding: 75px 0;
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

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

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:last-child {
        grid-column: span 2;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .cta-strip-inner {
        padding: 30px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-block {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-number {
        font-size: 45px;
    }

    .featured-product {
        margin-left: 0;
        margin-right: 0;
        padding: 45px 25px;
    }

    .sticky-heading {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .container {
        width: min(var(--max-width), calc(100% - 28px));
    }

    .section {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .progression {
        flex-direction: column;
    }

    .progression b {
        transform: rotate(90deg);
    }

    .snapshot-grid,
    .feature-grid,
    .feature-list,
    .rights-grid,
    .theme-cards,
    .creative-grid,
    .angle-grid,
    .promotion-grid,
    .contest-highlight-grid,
    .contest-prizes {
        grid-template-columns: 1fr;
    }

    .angle-grid article:last-child,
    .promotion-grid article:last-child {
        grid-column: auto;
    }

    .contest-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .affiliate-contest-section .btn {
        width: 100%;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .swipe-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .swipe-meta {
        flex-direction: column;
        gap: 7px;
    }

    .email-body,
    .subjects,
    .placement {
        padding-left: 20px;
        padding-right: 20px;
    }

    .compliance-inner {
        grid-template-columns: 1fr;
    }

    .compliance-icon {
        margin-bottom: 5px;
    }

    .compliance h2 {
        font-size: 31px;
    }
}