/* ===== Fonts ===== */

@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-Regular-BF644b214ff145f.otf")
        format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-Ultralight-BF644b21500d0c0.otf")
        format("opentype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-Ultrabold-BF644b21500840c.otf")
        format("opentype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-Italic-BF644b214fb0c0a.otf")
        format("opentype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-UltraboldItalic-BF644b214faef01.otf")
        format("opentype");
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: "PP Editorial New";
    src: url("./fonts/PPEditorialNew-UltralightItalic-BF644b214ff1e9b.otf")
        format("opentype");
    font-weight: 200;
    font-style: italic;
}

/* ===== Design Tokens ===== */

:root {
    --bloom-dusty-rose: #c48da0;
    --bloom-cream: #d6d2c4;
    --bloom-dark-brown: #31261d;
    --bloom-warm-gray: #a59c8c;
    --bloom-steel-blue: #7c8db0;
    --bloom-white: #ffffff;

    --font-heading: "PP Editorial New", "Georgia", serif;
    --font-body: "Avenir", "Avenir Next", -apple-system, "Segoe UI", sans-serif;

    --shadow-card: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-hero: 0 6px 12px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;

    --transition: all 0.3s ease-in-out;
    --spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bloom-white);
    color: var(--bloom-dark-brown);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

body.landing-page {
    height: auto;
    overflow-y: auto;
}

/* ===== Background Scattered Cards ===== */

.bg-cards {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-card {
    position: absolute;
    width: 306px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    will-change: transform, opacity;
    background: var(--bloom-white);
    display: flex;
    flex-direction: column;
}

/* Image section — 75% of card */
.bg-card-image {
    position: relative;
    width: 100%;
    flex: 3;
    overflow: hidden;
    background: var(--bloom-cream);
}

.bg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Price badge — top right of image */
.bg-card-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bloom-dusty-rose);
    color: var(--bloom-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* Info strip — bottom 25% */
.bg-card-info {
    flex: 1;
    background: var(--bloom-white);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--bloom-dark-brown);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bg-card-artist {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    color: var(--bloom-warm-gray);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bg-card-meta {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 11px;
    color: var(--bloom-warm-gray);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Entrance animation for each card */
@keyframes cardFloat {
    from {
        opacity: 0;
        transform: var(--card-start-transform);
    }
    to {
        opacity: var(--card-opacity);
        transform: var(--card-end-transform);
    }
}

/* Continuous gentle float */
@keyframes gentleDrift {
    0%,
    100% {
        transform: var(--card-end-transform) translateY(0px);
    }
    50% {
        transform: var(--card-end-transform) translateY(var(--drift-y, -8px));
    }
}

/* Cream overlay to keep hero text readable */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 50% at 50% 50%,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.15) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.features,
.footer {
    position: relative;
    z-index: 1;
}

/* ===== Nav ===== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    background: transparent;
}

/* Expanded nav with links and actions */
.nav--expanded {
    justify-content: space-between;
}

.nav-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--bloom-dark-brown);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-link:hover {
    opacity: 1;
    color: var(--bloom-dusty-rose);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--bloom-dark-brown);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-wishlist svg {
    color: var(--bloom-dusty-rose);
    transition: var(--spring);
}

.nav-wishlist:hover {
    opacity: 1;
    color: var(--bloom-dusty-rose);
}

.nav-wishlist:hover svg {
    transform: scale(1.15);
}

.nav-wishlist--active {
    opacity: 1;
    color: var(--bloom-dusty-rose);
}

.nav-btn {
    padding: 10px 22px;
    font-size: 14px;
    text-decoration: none;
}

/* ===== Hero ===== */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100dvh;
    padding: 80px 20px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Landing page hero fills viewport but not locked */
.hero--landing {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 620px;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bloom-dusty-rose);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    color: var(--bloom-dark-brown);
    margin-bottom: 24px;
}

.hero-title em {
    font-weight: 200;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--bloom-warm-gray);
    max-width: 480px;
    margin: 0 auto 40px;
}

/* ===== Waitlist Form ===== */

.waitlist-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.form-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--bloom-cream);
    border-radius: var(--radius-pill);
    background: var(--bloom-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--bloom-dark-brown);
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--bloom-cream);
}

.form-input:focus {
    border-color: var(--bloom-dusty-rose);
    box-shadow: 0 0 0 3px rgba(196, 141, 160, 0.15);
}

.bloom-btn-primary {
    background: var(--bloom-dusty-rose);
    color: var(--bloom-white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.bloom-btn-primary:hover {
    box-shadow: 0 4px 16px rgba(196, 141, 160, 0.4);
    transform: translateY(-1px);
}

.bloom-btn-primary:active {
    transform: translateY(0);
}

.form-hint {
    font-size: 13px;
    color: var(--bloom-cream);
    margin-top: 14px;
    text-align: center;
}

/* ===== Success State ===== */

.waitlist-success {
    display: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.waitlist-success.show {
    display: block;
}

.success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bloom-dusty-rose);
    color: var(--bloom-white);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--bloom-dark-brown);
    margin-bottom: 8px;
}

.success-body {
    font-size: 15px;
    color: var(--bloom-warm-gray);
    line-height: 1.6;
}

/* ===== Features ===== */

.features {
    padding: 40px 20px 100px;
    max-width: 960px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bloom-cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: var(--spring);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hero);
}

.feature-number {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 14px;
    color: var(--bloom-dusty-rose);
    display: block;
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px;
    color: var(--bloom-dark-brown);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--bloom-warm-gray);
}

/* ===== Footer ===== */

.footer {
    text-align: center;
    padding: 32px 20px;
    border-top: 1px solid rgba(165, 156, 140, 0.2);
    background: var(--bloom-white);
}

.footer-text {
    font-size: 13px;
    color: var(--bloom-warm-gray);
}

/* Landing page expanded footer */
.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-style: italic;
    font-weight: 200;
    color: var(--bloom-warm-gray);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--bloom-warm-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--bloom-dusty-rose);
}

.footer-link--wishlist {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--bloom-dusty-rose);
}

.footer-link--wishlist:hover {
    color: var(--bloom-dark-brown);
}

/* ===== Animations ===== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* entrance animations */
.hero-eyebrow,
.hero-title,
.hero-subtitle,
.waitlist-form {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}
.hero-title {
    animation-delay: 0.25s;
}
.hero-subtitle {
    animation-delay: 0.4s;
}
.waitlist-form {
    animation-delay: 0.55s;
}

.feature-card {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.7s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.85s;
}
.feature-card:nth-child(3) {
    animation-delay: 1s;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row {
        flex-direction: column;
    }

    .bloom-btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
        padding: 80px 20px 20px;
    }

    .bg-card {
        width: 204px;
    }
}

/* ===== Secondary Button ===== */

.bloom-btn-secondary {
    background: transparent;
    color: var(--bloom-dark-brown);
    border: 1px solid rgba(196, 141, 160, 0.35);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
}

.bloom-btn-secondary:hover {
    border-color: var(--bloom-dusty-rose);
    color: var(--bloom-dusty-rose);
    background: rgba(196, 141, 160, 0.06);
}

/* ===== Hero CTAs ===== */

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.7s forwards;
}

/* ===== Shared Section Styles ===== */

.section-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bloom-dusty-rose);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.1;
    color: var(--bloom-dark-brown);
    margin-bottom: 20px;
}

.section-title em {
    font-weight: 200;
    font-style: italic;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--bloom-warm-gray);
    max-width: 560px;
    margin-bottom: 56px;
}

/* ===== Stats Band ===== */

.stats-band {
    position: relative;
    z-index: 2;
    background: var(--bloom-dark-brown);
    padding: 40px 20px;
}

.stats-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--bloom-white);
    line-height: 1;
}

.stat-number .stat-suffix {
    font-weight: 200;
    color: var(--bloom-dusty-rose);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--bloom-warm-gray);
    letter-spacing: 0.05em;
}

/* ===== How It Works ===== */

.how-it-works {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--bloom-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    background: var(--bloom-white);
    border: 1px solid rgba(214, 210, 196, 0.6);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: var(--spring);
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hero);
    border-color: rgba(196, 141, 160, 0.3);
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 13px;
    color: var(--bloom-dusty-rose);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 20px;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(196, 141, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bloom-dusty-rose);
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--bloom-dark-brown);
    margin-bottom: 12px;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--bloom-warm-gray);
}

/* ===== For Collectors / For Artists Sections ===== */

.for-section {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.for-section--collectors {
    background: #f7f6f3;
}

.for-section--artists {
    background: var(--bloom-white);
}

.for-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.for-section__inner--reversed {
    direction: rtl;
}

.for-section__inner--reversed > * {
    direction: ltr;
}

.for-section__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.for-section__text .section-subtitle {
    margin-bottom: 0;
}

.section-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bloom-warm-gray);
    margin-bottom: 28px;
    max-width: 440px;
}

.for-section__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.for-section__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--bloom-dark-brown);
}

.list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bloom-dusty-rose);
    margin-top: 6px;
    flex-shrink: 0;
}

/* ===== Visual Cards (Collector section mockup) ===== */

.for-section__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.visual-card {
    background: var(--bloom-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hero);
    overflow: hidden;
    position: relative;
}

.visual-card--main {
    width: 240px;
    z-index: 2;
    transform: rotate(-2deg);
}

.visual-card--secondary {
    width: 190px;
    position: absolute;
    right: 0;
    bottom: 20px;
    transform: rotate(4deg);
    z-index: 1;
    opacity: 0.85;
}

.visual-card__img-placeholder {
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, var(--bloom-cream) 0%, rgba(196, 141, 160, 0.3) 100%);
}

.visual-card > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.visual-card--secondary .visual-card__img-placeholder {
    background: linear-gradient(135deg, rgba(124, 141, 176, 0.2) 0%, var(--bloom-cream) 100%);
}

.visual-card__info {
    padding: 14px 16px;
}

.visual-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--bloom-dark-brown);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visual-card__artist {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 12px;
    color: var(--bloom-warm-gray);
}

.visual-card__meta {
    font-family: var(--font-heading);
    font-weight: 200;
    font-size: 11px;
    color: var(--bloom-warm-gray);
    margin-top: 2px;
}

.visual-card__wishlist-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bloom-dusty-rose);
    color: var(--bloom-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* ===== Artist Card (Artists section mockup) ===== */

.artist-card {
    background: var(--bloom-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hero);
    padding: 28px;
    width: 100%;
    max-width: 320px;
}

.artist-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bloom-dusty-rose) 0%, rgba(196, 141, 160, 0.5) 100%);
    margin-bottom: 16px;
}

.artist-card__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--bloom-dark-brown);
    margin-bottom: 8px;
}

.artist-card__bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--bloom-warm-gray);
    margin-bottom: 24px;
}

.artist-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(165, 156, 140, 0.2);
}

.artist-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.artist-stat__num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--bloom-dark-brown);
}

.artist-stat__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--bloom-warm-gray);
    text-align: center;
}

/* ===== Features Section (landing page variant) ===== */

.landing-page .features {
    padding: 100px 20px;
    max-width: none;
    background: #f9f8f6;
    text-align: center;
}

.landing-page .features .section-container {
    max-width: 960px;
    margin: 0 auto;
}

.landing-page .features .section-subtitle {
    margin: 0 auto 56px;
}

.landing-page .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.landing-page .feature-card:nth-child(4) { animation-delay: 1.15s; }
.landing-page .feature-card:nth-child(5) { animation-delay: 1.3s; }
.landing-page .feature-card:nth-child(6) { animation-delay: 1.45s; }

/* ===== Join CTA Section ===== */

.join-cta {
    padding: 100px 20px;
    background: var(--bloom-dark-brown);
    text-align: center;
    position: relative;
    z-index: 2;
}

.join-cta__inner {
    max-width: 580px;
    margin: 0 auto;
}

.join-cta .hero-eyebrow {
    color: var(--bloom-dusty-rose);
    opacity: 1;
    animation: none;
}

.join-cta .section-title {
    color: var(--bloom-white);
}

.join-cta .section-subtitle {
    color: rgba(214, 210, 196, 0.75);
    margin: 0 auto 40px;
}

.join-cta .waitlist-form {
    opacity: 1;
    animation: none;
}

.join-cta .form-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--bloom-white);
}

.join-cta .form-input::placeholder {
    color: rgba(214, 210, 196, 0.5);
}

.join-cta .form-input:focus {
    border-color: var(--bloom-dusty-rose);
    background: rgba(255, 255, 255, 0.15);
}

.join-cta .form-hint {
    color: rgba(214, 210, 196, 0.5);
}

.join-cta .waitlist-success {
    color: var(--bloom-white);
}

.join-cta .success-heading {
    color: var(--bloom-white);
}

.join-cta .success-body {
    color: rgba(214, 210, 196, 0.75);
}

.join-cta__wishlist-nudge {
    margin-top: 28px;
}

.nudge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(214, 210, 196, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

.nudge-link svg {
    color: var(--bloom-dusty-rose);
}

.nudge-link:hover {
    color: var(--bloom-dusty-rose);
}

/* ===== Landing Page Responsive ===== */

@media (max-width: 960px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .for-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .for-section__inner--reversed {
        direction: ltr;
    }

    .for-section__visual {
        justify-content: flex-start;
    }

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

@media (max-width: 768px) {
    .nav--expanded {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-wishlist span {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-page .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .bloom-btn-secondary {
        text-align: center;
    }

    .how-it-works,
    .for-section,
    .join-cta {
        padding: 64px 20px;
    }

    .landing-page .features {
        padding: 64px 20px;
    }

    .for-section__inner {
        gap: 36px;
    }

    .visual-card--main {
        width: 200px;
    }

    .visual-card--secondary {
        width: 160px;
    }
}
