:root {
    color-scheme: light;
    --ink: #17201b;
    --muted: #53625a;
    --paper: #fffdf7;
    --mint: #dcefe2;
    --sky: #d7ecf7;
    --coral: #f06f4f;
    --leaf: #2f6f4e;
    --gold: #f5c14b;
    --line: #d9ded7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.landing-page {
    overflow-x: clip;
}

.hero-section {
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: 8rem 1.25rem 4rem;
    background:
        linear-gradient(90deg, rgb(15 26 18 / 88%), rgb(15 26 18 / 44%) 55%, rgb(15 26 18 / 14%)),
        url("/images/landing/hero-summer-agency.png") center / cover;
}

.hero-content {
    width: min(760px, 100%);
    margin: 0 auto;
    color: white;
}

.eyebrow {
    margin: 0 0 .75rem;
    color: var(--coral);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: var(--gold);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(2.8rem, 9vw, 5.6rem);
    line-height: .96;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-lede {
    max-width: 680px;
    margin: 1.25rem 0 0;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.hero-actions,
.tag-row,
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-actions {
    margin-top: 1.75rem;
}

.button,
.catalog-filters a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: .75rem 1rem;
    font-weight: 800;
    text-decoration: none;
}

.button-primary {
    color: white;
    background: var(--coral);
}

.button-secondary {
    color: var(--ink);
    background: var(--gold);
}

.button-ghost {
    color: white;
    border-color: rgb(255 255 255 / 38%);
    background: rgb(255 255 255 / 8%);
}

.trust-strip,
.hero-preview {
    margin-top: 1.5rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .65rem;
}

.trust-strip div,
.hero-preview {
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 8px;
    background: rgb(9 20 13 / 38%);
    backdrop-filter: blur(12px);
}

.trust-strip div {
    padding: .75rem;
}

.trust-strip dt {
    color: var(--gold);
    font-weight: 900;
}

.trust-strip dd {
    margin: .15rem 0 0;
    font-size: .82rem;
}

.hero-preview {
    width: min(520px, 100%);
    padding: 1rem;
}

.hero-preview span {
    display: block;
    color: var(--gold);
    font-weight: 900;
}

.hero-preview ul {
    margin: .55rem 0 0;
    padding-left: 1.1rem;
}

.section {
    padding: 5rem 1.25rem;
}

.section:nth-of-type(odd) {
    background: white;
}

.section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

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

.section-heading p,
.section-inner > p,
.feature-grid p,
.benefit-grid p,
.faq-list p,
.price-card p,
.catalog-card p,
.steps-list p {
    color: var(--muted);
}

.two-column,
.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.feature-grid,
.benefit-grid,
.pricing-grid,
.faq-list,
.catalog-grid,
.steps-list {
    display: grid;
    gap: 1rem;
}

.feature-grid,
.benefit-grid,
.pricing-grid,
.faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.feature-grid article,
.benefit-grid article,
.steps-list article,
.price-card,
.faq-list article,
.catalog-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.feature-grid article,
.benefit-grid article,
.steps-list article,
.price-card,
.faq-list article {
    padding: 1.25rem;
}

.steps-list span {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
    border-radius: 999px;
    color: white;
    background: var(--leaf);
    font-weight: 900;
}

.section-benefits,
.section-safety {
    background: var(--mint);
}

.method-list {
    display: grid;
    gap: .75rem;
}

.method-list span {
    border-left: 5px solid var(--leaf);
    background: var(--mint);
    padding: 1rem;
    font-weight: 800;
}

.safety-card {
    border-radius: 8px;
    padding: 1.5rem;
    color: white;
    background: var(--leaf);
}

.action-band {
    border-radius: 8px;
    padding: 2rem;
    background: var(--sky);
}

.highlighted {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgb(240 111 79 / 14%);
}

.catalog-filters {
    margin: 1.5rem 0 1rem;
}

.catalog-filters a {
    border-color: var(--line);
    background: white;
}

.catalog-summary {
    margin: 0 0 1rem;
    font-weight: 800;
}

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

.catalog-card {
    overflow: hidden;
}

.catalog-card-visual {
    position: relative;
}

.catalog-card-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    background: var(--mint);
}

.game-icon {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 8px;
    background: rgb(255 253 247 / 92%);
    font-size: 1.55rem;
    box-shadow: 0 10px 28px rgb(23 32 27 / 18%);
}

.catalog-card-body {
    padding: 1rem;
}

.catalog-card-topline {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
    color: var(--leaf);
    font-size: .85rem;
    font-weight: 900;
}

.catalog-card-outcome {
    color: var(--leaf);
    font-size: .9rem;
    font-weight: 800;
}

.materials-hint,
.form-reassurance {
    font-size: .9rem;
}

.tag-row span {
    border-radius: 999px;
    background: var(--mint);
    padding: .3rem .55rem;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
}

.demo-form,
.feedback-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label,
fieldset {
    display: grid;
    gap: .4rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .8rem;
    color: var(--ink);
    background: white;
    font: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.consent-line {
    grid-template-columns: auto 1fr;
    align-items: center;
    font-weight: 700;
}

.consent-line input,
.chip-fieldset input {
    width: auto;
    min-height: auto;
}

.chip-fieldset {
    border: 0;
    padding: 0;
}

.chip-fieldset legend {
    margin-bottom: .5rem;
    font-weight: 900;
}

.chip-fieldset label {
    display: inline-flex;
    align-items: center;
    margin: 0 .5rem .5rem 0;
    border-radius: 999px;
    padding: .45rem .65rem;
    background: var(--mint);
}

.section-feedback {
    background: white;
}

.feedback-thanks {
    margin-top: 1rem;
    border-left: 5px solid var(--leaf);
    padding: 1rem;
    background: var(--mint);
    font-weight: 800;
}

.sticky-demo-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 10;
    display: none;
    border-radius: 999px;
    padding: .8rem 1rem;
    color: white;
    background: var(--coral);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 30px rgb(23 32 27 / 22%);
}

@media (max-width: 900px) {
    .feature-grid,
    .benefit-grid,
    .pricing-grid,
    .faq-list,
    .two-column,
    .solution-layout,
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    .hero-section {
        min-height: 82vh;
        align-items: center;
        padding-top: 5rem;
        background:
            linear-gradient(90deg, rgb(15 26 18 / 92%), rgb(15 26 18 / 64%)),
            url("/images/landing/hero-summer-agency.png") center / cover;
    }

    .feature-grid,
    .benefit-grid,
    .pricing-grid,
    .faq-list,
    .two-column,
    .solution-layout,
    .form-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .hero-preview {
        display: none;
    }

    .sticky-demo-cta {
        display: inline-flex;
    }
}
