body.page-home {
    --home-line: rgba(17, 17, 17, 0.08);
    --home-line-strong: rgba(17, 17, 17, 0.12);
    --home-tint: #f6f5f1;
    --home-tint-strong: #efeee8;
    --home-panel: #fbfaf7;
    --home-shadow: 0 30px 80px rgba(17, 17, 17, 0.06);
}

.page-home .section {
    padding: clamp(56px, 7vw, 104px) 0;
}

.page-home .section.compact,
.page-home .flow-section,
.page-home .types-section,
.page-home .editorial-section,
.page-home .fair-section,
.page-home .safety-section {
    padding: clamp(48px, 6vw, 84px) 0;
}

.page-home .hero {
    padding-top: clamp(44px, 6vw, 92px);
    padding-bottom: clamp(28px, 5vw, 52px);
    background: #fff;
}

.page-home .hero-grid {
    align-items: start;
    gap: clamp(28px, 5vw, 72px);
}

.page-home .hero-copy {
    max-width: 620px;
}

.page-home .hero-copy h1 {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: clamp(42px, 6vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-home .hero-copy .lead {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.58;
}

.page-home .hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.page-home .value-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--home-line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.page-home .hero-micro {
    display: grid;
    gap: 6px;
    margin: 0 0 18px;
}

.page-home .hero-micro .micro,
.page-home .hero-store-note {
    margin: 0;
    font-size: 13px;
}

.page-home .hero-store-note {
    margin-top: 14px;
    color: var(--muted2);
}

.page-home .hero-media .slider {
    padding-inline: 0;
}

.page-home .hero-media .slide img {
    max-width: min(360px, 100%);
    border-radius: 28px;
}

.page-home .value-strip-section {
    padding: 24px 0;
    background: #F5F5F5;
}

.page-home .value-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px 36px;
}

.page-home .value-strip-main,
.page-home .value-strip-sub {
    margin: 0;
}

.page-home .value-strip-main {
    font-size: clamp(24px, 3vw, 24px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.page-home .value-strip-sub {
    max-width: 460px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    text-align: right;
}

.page-home .section-intro {
    margin-bottom: 28px;
}

.page-home .section-intro .lead {
    max-width: 760px;
    margin-bottom: 0;
}

.page-home .section-note {
    margin-top: 18px;
}

.page-home .explain-section {
    padding-top: clamp(32px, 4vw, 52px);
}

.page-home .explain-section .section-intro {
    margin-bottom: 18px;
}

.page-home .what-copy,
.page-home .what-bridge,
.page-home .explain-terms-label {
    margin: 0;
}

.page-home .what-copy {
    max-width: 760px;
    color: var(--muted);
}

.page-home .what-bridge {
    margin-top: 12px;
}

.page-home .explain-terms-label {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted2);
}

.page-home .flow-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: flow-step;
}

.page-home .flow-step {
    position: relative;
    min-height: 238px;
    padding: 26px 24px 24px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.page-home .flow-step::before {
    counter-increment: flow-step;
    content: counter(flow-step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #F5F5F5;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-home .flow-step h3,
.page-home .type-card h3,
.page-home .editorial-item h3,
.page-home .compare-card h3 {
    margin-bottom: 10px;
}

.page-home .flow-step p,
.page-home .type-card p,
.page-home .editorial-item p,
.page-home .compare-card p,
.page-home .creator-body {
    max-width: none;
}

.page-home .types-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    grid-template-areas:
        "local city city"
        "local global followers";
    gap: 18px;
}

.page-home .type-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 210px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.page-home .type-card p {
    margin: 0;
    color: var(--muted);
}

.page-home .type-card .card-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted2);
}

.page-home .type-card .card-note {
    margin-top: auto;
    font-size: 13px;
    color: var(--muted2);
}

.page-home .type-card-local {
    grid-area: local;
    min-height: 438px;
    justify-content: space-between;
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: none;
}

.page-home .type-card-local p,
.page-home .type-card-local .card-note,
.page-home .type-card-local .card-eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.page-home .types-layout .type-card-local h3 {
    color: #fff !important;
}

.page-home .type-card-city {
    grid-area: city;
    min-height: 210px;
    background: #F5F5F5;
}

.page-home .type-card-global {
    grid-area: global;
}

.page-home .type-card-followers {
    grid-area: followers;
}

.page-home .editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--home-line-strong);
    border-radius: 28px;
    overflow: hidden;
    background: var(--home-line-strong);
}

.page-home .editorial-item {
    padding: 28px;
    background: #fff;
}

.page-home .editorial-item p {
    margin: 0;
    color: var(--muted);
}

.page-home .creator-section {
    background: #111;
    color: #fff;
}

.page-home .creator-section .kicker {
    color: rgba(255, 255, 255, 0.7);
}

.page-home .creator-section h2,
.page-home .creator-section h3 {
    color: #fff;
}

.page-home .creator-section .lead,
.page-home .creator-body {
    color: rgba(255, 255, 255, 0.82);
}

.page-home .creator-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.page-home .creator-side {
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .creator-side-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
}

.page-home .creator-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.page-home .creator-checklist li {
    position: relative;
    padding-left: 20px;
    color: #000;
    font-size: 17px;
    line-height: 1.45;
}

.page-home .creator-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0 0 0 / 88%);
    transform: translateY(-50%);
}

.page-home .compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.page-home .fair-section .compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-home .compare-card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
}

.page-home .compare-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted2);
}

.page-home .compare-card p {
    margin: 0;
    color: var(--muted);
}

.page-home .compare-card-active {
    background: #F5F5F5;
}

.page-home .safety-shell {
    max-width: 920px;
}

.page-home .trust-panel {
    margin-top: 24px;
    border-top: 1px solid var(--home-line-strong);
    border-bottom: 1px solid var(--home-line-strong);
}

.page-home .trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-home .trust-list li {
    position: relative;
    padding: 18px 0 18px 26px;
    border-bottom: 1px solid var(--home-line);
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.page-home .trust-list li:last-child {
    border-bottom: 0;
}

.page-home .trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.65em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #111;
    transform: translateY(-50%);
}

.page-home .video-section .video-container {
    margin-top: 0;
}

.page-home .video-section .video-caption {
    margin-top: 14px;
}

.page-home .cta-section {
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(56px, 6vw, 92px);
}

.page-home .cta-panel {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 32px;
    background: #F5F5F5;
    text-align: center;
}

.page-home .cta-panel .lead {
    margin-inline: auto;
    max-width: 700px;
}

.page-home .cta-panel .store-buttons {
    justify-content: center;
}

@media (max-width: 960px) {
    .page-home .hero-grid,
    .page-home .creator-panel,
    .page-home .compare-grid,
    .page-home .editorial-grid,
    .page-home .value-strip,
    .page-home .types-layout,
    .page-home .flow-steps {
        grid-template-columns: 1fr;
    }

    .page-home .value-strip {
        display: grid;
    }

    .page-home .value-strip-sub {
        text-align: left;
        max-width: none;
    }

    .page-home .types-layout {
        grid-template-areas:
            "local"
            "city"
            "global"
            "followers";
    }
}

@media (max-width: 900px) {
    .page-home .hero-grid {
        text-align: left;
    }

    .page-home .hero-copy {
        align-items: flex-start;
    }

    .page-home .store-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .page-home .hero-copy h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .page-home .flow-step,
    .page-home .type-card,
    .page-home .editorial-item,
    .page-home .compare-card,
    .page-home .creator-side,
    .page-home .cta-panel {
        padding: 22px;
        border-radius: 24px;
    }
}

.page-home .hero-grid > *,
.page-home .value-strip > *,
.page-home .types-layout > *,
.page-home .creator-panel > *,
.page-home .compare-grid > * {
    min-width: 0;
}

.page-home .store-buttons {
    flex-wrap: wrap;
    row-gap: 10px;
}

.page-home .hero-copy h1,
.page-home .section h2,
.page-home .value-strip-main,
.page-home .cta-panel h2 {
    text-wrap: balance;
}

@media (max-width: 640px) {
    .page-home .creator-checklist li {
        font-size: 16px;
    }
}
