:root {
    --c-orange: #E8962A;
    --c-coral: #E85328;
    --c-pink: #CC3BB0;
    --c-magenta: #9B27A8;
    --c-purple: #5B2D8E;
    --c-green: #2DB98C;
    --c-blue: #2A4DA8;
    --ink: #14131A;
    --ink-soft: #3a3946;
    --muted: #6b6a76;
    --line: #e9e7e0;
    --paper: #FAF7F1;
    --paper-2: #F2EEE4;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ============ TOP BAR ============ */
.topbar {
    background: #000;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

.topbar span {
    color: var(--c-orange);
}

/* ============ HEADER ============ */
header.site {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    height: 44px;
    width: auto;
}

.brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.brand-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

nav.menu {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}

nav.menu a {
    color: var(--ink-soft);
    transition: color .2s;
    position: relative;
}

nav.menu a:hover {
    color: var(--c-magenta);
}

nav.menu a.active {
    color: var(--ink);
}

nav.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-orange), var(--c-magenta), var(--c-purple), var(--c-blue));
}

.cta-btn {
    background: var(--ink);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform .2s, background .2s;
}

.cta-btn:hover {
    background: var(--c-magenta);
    transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    padding: 80px 32px 100px;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-magenta);
    margin-bottom: 24px;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1.5px;
    background: var(--c-magenta);
}

h1.hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
}

h1.hero-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-pink) 35%, var(--c-purple) 70%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-meta-item small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-meta-item strong {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: #000;
    border-radius: 24px;
    padding: 50px 40px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 30px 60px -20px rgba(91, 45, 142, 0.35),
        0 18px 36px -18px rgba(204, 59, 176, 0.25);
    transform: rotate(-2deg);
    transition: transform .5s cubic-bezier(.2, .9, .2, 1);
    position: relative;
    overflow: hidden;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-card img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .4));
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(232, 150, 42, 0.18), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(204, 59, 176, 0.18), transparent 40%);
    pointer-events: none;
}

/* Floating sticker */
.sticker {
    position: absolute;
    background: var(--c-orange);
    color: #000;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    top: -25px;
    right: -25px;
    transform: rotate(15deg);
    z-index: 2;
    box-shadow: 0 12px 28px -8px rgba(232, 150, 42, .5);
    animation: spin 18s linear infinite;
}

.sticker-inner {
    transform: rotate(-15deg);
    padding: 10px;
}

@keyframes spin {
    from {
        transform: rotate(15deg);
    }

    to {
        transform: rotate(375deg);
    }
}

.sticker:hover {
    animation-play-state: paused;
}

/* Decorative spots */
.hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 150, 42, .18), transparent 65%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 77, 168, .12), transparent 65%);
    bottom: -80px;
    right: 10%;
    pointer-events: none;
}

/* ============ INTRO BLOCK ============ */
.intro {
    background: var(--white);
    padding: 90px 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.intro-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    position: sticky;
    top: 110px;
}

.intro-label::before {
    content: "01 —";
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--c-magenta);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 8px;
    font-weight: 400;
}

.intro h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.intro p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro p:last-child {
    margin-bottom: 0;
}

/* ============ DOWNLOADS GRID ============ */
.downloads {
    padding: 100px 32px;
    background: var(--paper);
    position: relative;
}

.downloads-head {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    flex-wrap: wrap;
}

.downloads-head h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    max-width: 720px;
}

.downloads-head h2 em {
    font-style: italic;
    color: var(--c-magenta);
    font-weight: 400;
}

.downloads-head p {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 320px;
    line-height: 1.6;
}

.grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .35s cubic-bezier(.2, .9, .2, 1), box-shadow .35s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(20, 19, 26, .25);
}

.card-thumb {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 28px;
}

.card-thumb img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.card-thumb-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    backdrop-filter: blur(4px);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.card-body {
    padding: 24px 26px 26px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--ink);
}

.card-body p.dim {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-dl {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    transition: all .2s;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-dl:hover {
    background: var(--ink);
    color: #fff;
}

.btn-dl.primary {
    background: var(--ink);
    color: #fff;
}

.btn-dl.primary:hover {
    background: var(--c-magenta);
    border-color: var(--c-magenta);
}

.btn-dl svg {
    width: 12px;
    height: 12px;
}

/* Variable-color thumbnail backgrounds */
.thumb-orange {
    background: linear-gradient(135deg, #FFE9CC 0%, #FAC07F 100%);
}

.thumb-pink {
    background: linear-gradient(135deg, #FFD8EC 0%, #E895C0 100%);
}

.thumb-purple {
    background: linear-gradient(135deg, #E8DCF4 0%, #B79CD8 100%);
}

.thumb-blue {
    background: linear-gradient(135deg, #DCE7FF 0%, #8FA8E0 100%);
}

.thumb-green {
    background: linear-gradient(135deg, #D6F1E5 0%, #7BCBA8 100%);
}

.thumb-coral {
    background: linear-gradient(135deg, #FFDDD0 0%, #F09778 100%);
}

.thumb-mono {
    background: #f4f1ea;
}

.thumb-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3a 100%);
}

/* Grid spans */
.span-6 {
    grid-column: span 6;
}

.span-4 {
    grid-column: span 4;
}

.span-3 {
    grid-column: span 3;
}

/* Hero card label badges */
.preview-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--ink);
}

/* Preview placeholder styles */
.preview-frame {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.preview-zoom {
    width: 90%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #4a1c5e 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
}

.preview-zoom::before,
.preview-zoom::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 35%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.preview-zoom::before {
    top: 10%;
    left: 5%;
}

.preview-zoom::after {
    bottom: 10%;
    right: 5%;
    width: 28%;
    height: 30%;
}

.preview-zoom img {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.preview-pdf {
    width: 80%;
    height: 90%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .15);
}

.preview-pdf::before {
    content: "PDF";
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--c-coral);
    letter-spacing: 1.5px;
}

.preview-pdf img {
    max-width: 80%;
}

.preview-email {
    width: 90%;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .12);
}

.preview-email .e-line {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 6px;
}

.preview-email .e-line.short {
    width: 50%;
}

.preview-email .e-divider {
    height: 1px;
    background: #ddd;
    margin: 10px 0 8px;
}

.preview-email img {
    max-height: 28px;
    margin-top: 6px;
}

.preview-email .e-name {
    font-family: 'Fraunces', serif;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
}

.preview-email .e-role {
    font-size: 8px;
    color: var(--muted);
    margin-bottom: 6px;
}

.preview-ppt {
    width: 88%;
    aspect-ratio: 16/9;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, .15);
    position: relative;
}

.preview-ppt::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 5%;
    right: 5%;
    height: 6px;
    background: rgba(0, 0, 0, .08);
    border-radius: 3px;
    filter: blur(3px);
}

.preview-card {
    width: 70%;
    aspect-ratio: 5/4;
    background: linear-gradient(135deg, #fff5e8, #ffe4cc);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 12px 28px -10px rgba(232, 150, 42, .4);
    border: 1px solid rgba(232, 150, 42, .3);
    text-align: center;
}

.preview-card .card-eyebrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 11px;
    color: var(--c-coral);
    margin-bottom: 4px;
}

.preview-card .card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.preview-card .card-sub {
    font-size: 9px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.preview-banner {
    width: 92%;
    aspect-ratio: 4/1;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .3);
}

.preview-banner img {
    max-height: 90%;
}

.preview-banner .b-text {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 11px;
    line-height: 1.2;
    text-align: right;
}

/* ============ CREDIT BLOCK ============ */
.credit {
    background: linear-gradient(135deg, #14131a 0%, #2a1a3a 100%);
    color: #fff;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}

.credit::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 59, 176, .25), transparent 65%);
    top: -200px;
    right: -100px;
}

.credit::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 150, 42, .18), transparent 65%);
    bottom: -150px;
    left: -50px;
}

.credit-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.credit-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.credit-eyebrow::before {
    content: "";
    width: 32px;
    height: 1.5px;
    background: var(--c-orange);
}

.credit h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.credit h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--c-orange), var(--c-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credit p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
}

.agency-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 32px;
}

.agency-card .agency-mark {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    background: linear-gradient(120deg, #fff, var(--c-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agency-card .agency-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: 600;
}

.agency-card .agency-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
}

.agency-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ============ FOOTER ============ */
footer {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 32px 30px;
    text-align: center;
}

footer .foot-mark {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

footer .foot-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

footer .foot-rule {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px auto;
    max-width: 600px;
}

footer .foot-fine {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

footer .foot-fine a {
    color: var(--c-orange);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {

    .hero-grid,
    .intro-inner,
    .credit-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .span-6,
    .span-4,
    .span-3 {
        grid-column: span 12;
    }

    nav.menu {
        display: none;
    }

    .hero {
        padding: 60px 24px 80px;
    }

    .intro {
        padding: 60px 24px;
    }

    .downloads {
        padding: 70px 24px;
    }

    .credit {
        padding: 60px 24px;
    }

    .intro-label {
        position: static;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 14px 20px;
    }

    .brand-text {
        font-size: 13px;
    }

    .brand-text small {
        font-size: 9.5px;
    }

    .topbar {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-meta {
        gap: 20px;
    }

    .grid {
        gap: 18px;
    }

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

    .btn-dl {
        width: 100%;
    }
}