:root {
    --ink: #24161d;
    --muted: #6b5560;
    --paper: #fff7ef;
    --paper-strong: rgba(255, 251, 247, 0.96);
    --paper-soft: rgba(255, 247, 239, 0.84);
    --accent: #ea4326;
    --accent-deep: #991d16;
    --gold: #ffb44a;
    --line: rgba(111, 44, 33, 0.12);
    --shadow: 0 26px 58px rgba(93, 27, 17, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 189, 130, 0.75), transparent 30%),
        radial-gradient(circle at top right, rgba(236, 83, 66, 0.22), transparent 24%),
        linear-gradient(180deg, #fff5ea 0%, #ffdabb 47%, #ffeedd 100%);
}

a {
    color: inherit;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 52px;
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 22px;
    margin-bottom: 22px;
    padding: 16px 20px;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.76);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(76, 21, 17, 0.08);
}

.brand {
    font-family: "Cooper Black", "Trebuchet MS", serif;
    font-size: 1.7rem;
    text-decoration: none;
    color: var(--accent-deep);
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: var(--muted);
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cooper Black", "Trebuchet MS", serif;
    line-height: 0.98;
}

h1 {
    font-size: clamp(2.9rem, 6vw, 5.7rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
    font-size: 1.4rem;
}

.lead,
.hero-points li,
.feature-card p,
.section-copy p,
.step-card p,
.mini-panel p,
.buy-copy p,
.buy-note,
.instruction-card p,
.steps-list li,
.tips-list li {
    color: var(--muted);
    line-height: 1.65;
}

.hero-panel,
.page-hero,
.feature-band,
.steps-shell,
.buy-section,
.download-grid,
.instruction-grid,
.content-section {
    margin-top: 28px;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255, 252, 248, 0.95), rgba(255, 235, 214, 0.93));
    box-shadow: var(--shadow);
}

.lead {
    max-width: 58ch;
    margin: 18px 0 0;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-link,
.secondary-link,
.paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-link,
.paypal-button {
    background: linear-gradient(180deg, #ff6840, var(--accent));
    color: #fff;
    box-shadow: 0 16px 32px rgba(220, 71, 39, 0.24);
}

.secondary-link {
    background: rgba(255, 255, 255, 0.75);
    color: var(--accent-deep);
    border: 1px solid rgba(153, 29, 22, 0.12);
}

.primary-link:hover,
.secondary-link:hover,
.paypal-button:hover {
    transform: translateY(-2px);
}

.hero-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 18px;
    font-weight: 700;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: min(100%, 450px);
    padding: 16px;
    border-radius: 30px;
    background: rgba(255, 251, 247, 0.92);
    box-shadow: 0 26px 44px rgba(56, 15, 6, 0.18);
    transform: rotate(2deg);
}

.visual-card img {
    display: block;
    width: 100%;
    border-radius: 22px;
}

.tag {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff6eb, #ffe2bf);
    color: var(--accent-deep);
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(69, 18, 5, 0.15);
}

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

.feature-card,
.step-card,
.mini-panel,
.buy-panel,
.instruction-card,
.download-card {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 28px;
}

.feature-card.hot {
    background: linear-gradient(135deg, #eb4327, #ffb14c);
    color: #fff;
}

.feature-card.hot p {
    color: rgba(255, 245, 239, 0.9);
}

.feature-card.soft {
    background: var(--paper-strong);
}

.content-section.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.content-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-copy {
    padding: 10px 6px;
}

.stack-panel {
    display: grid;
    gap: 16px;
}

.mini-panel {
    padding: 22px;
    background: var(--paper-strong);
}

.mini-panel strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.steps-shell {
    padding: 34px 28px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 236, 219, 0.92));
    box-shadow: var(--shadow);
}

.section-heading {
    max-width: 58ch;
}

.step-grid,
.download-grid,
.instruction-grid {
    display: grid;
    gap: 18px;
}

.step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.step-card {
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.82);
}

.step-no {
    display: inline-flex;
    margin-bottom: 16px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.12em;
}

.buy-section {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 22px;
    align-items: center;
    padding: 30px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(126, 28, 24, 0.96), rgba(235, 77, 38, 0.96) 46%, rgba(255, 180, 74, 0.95));
    color: #fff;
    box-shadow: 0 26px 54px rgba(88, 28, 20, 0.28);
}

.buy-section .eyebrow,
.buy-section .lead,
.buy-section .small-note,
.buy-section .buy-note {
    color: rgba(255, 241, 225, 0.88);
}

.buy-copy p {
    color: rgba(255, 242, 228, 0.88);
}

.buy-panel {
    padding: 24px;
    background: rgba(255, 248, 240, 0.96);
    color: var(--ink);
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 18px;
}

.price-label {
    font-weight: 700;
    color: var(--muted);
}

.price-value {
    font-family: "Cooper Black", "Trebuchet MS", serif;
    font-size: 2.6rem;
    color: var(--accent-deep);
}

.buy-note {
    margin: 14px 0 0;
    font-size: 0.94rem;
}

.page-hero {
    padding: 28px 30px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 251, 246, 0.97), rgba(255, 235, 212, 0.92));
    box-shadow: var(--shadow);
}

.page-hero.compact h1 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-hero.success {
    background: linear-gradient(135deg, rgba(255, 251, 246, 0.97), rgba(237, 255, 223, 0.92));
}

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

.instruction-grid.single {
    grid-template-columns: 1fr;
}

.instruction-card,
.download-card {
    padding: 26px 24px;
    background: var(--paper-strong);
}

.steps-list,
.tips-list {
    margin: 18px 0 0;
    padding-left: 22px;
}

.steps-list li,
.tips-list li {
    margin-bottom: 10px;
}

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

.block {
    width: 100%;
}

.inline {
    margin-top: 12px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 18px;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 250, 244, 0.76);
    color: var(--muted);
    box-shadow: 0 14px 34px rgba(76, 21, 17, 0.08);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .hero-panel,
    .feature-band,
    .content-section.split,
    .step-grid,
    .buy-section,
    .download-grid,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .visual-card {
        transform: none;
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: min(100% - 18px, 100%);
        padding: 16px 0 30px;
    }

    .topbar {
        border-radius: 28px;
        justify-content: center;
    }

    .hero-panel,
    .steps-shell,
    .buy-section,
    .page-hero {
        padding: 22px;
        border-radius: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer {
        justify-content: center;
        text-align: center;
    }
}
