:root {
    --bg: #f6ede7;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #fff9f6;
    --text: #2b292c;
    --muted: #6d6460;
    --primary: #ff8ca0;
    --primary-dark: #ef6d86;
    --accent: #2b292c;
    --line: rgba(43, 41, 44, 0.1);
    --shadow: 0 24px 60px rgba(96, 67, 55, 0.14);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 140, 160, 0.18), transparent 28%),
        radial-gradient(circle at right 20%, rgba(255, 255, 255, 0.8), transparent 24%),
        linear-gradient(180deg, #fbf4ef 0%, #f6ede7 52%, #fff7f2 100%);
}

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

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

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 140, 160, 0.12);
    filter: blur(18px);
    z-index: 0;
}

.page-shell::before {
    width: 320px;
    height: 320px;
    top: 120px;
    right: -120px;
}

.page-shell::after {
    width: 280px;
    height: 280px;
    bottom: 120px;
    left: -100px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.nav,
.nav-toggle {
    position: relative;
    z-index: 21;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.brand img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    color: var(--text);
}

.nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 140, 160, 0.7);
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-weight: 600;
}

.nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.cta-link {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 16px 28px rgba(43, 41, 44, 0.16);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 42px;
    align-items: center;
    padding: 26px 0 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 160, 0.28);
    background: rgba(255, 255, 255, 0.55);
    color: #7f5160;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.hero h1 {
    margin: 20px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 11ch;
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero p {
    margin: 0;
    max-width: 560px;
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--muted);
}

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

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-dark), #ff9eb0);
    color: white;
    box-shadow: 0 20px 30px rgba(239, 109, 134, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    border: 1px solid var(--line);
}

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

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.hero-meta-card {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(43, 41, 44, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background-clip: padding-box;
}

.hero-meta-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hero-visual {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 18px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.48));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: cover;
}

.floating-note,
.floating-pill {
    position: absolute;
    background: rgba(43, 41, 44, 0.9);
    color: #fff7f2;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background-clip: padding-box;
    box-shadow: 0 18px 30px rgba(43, 41, 44, 0.18);
}

.floating-note {
    left: -20px;
    bottom: 26px;
    max-width: 240px;
    padding: 18px 18px 16px;
    border-radius: 22px;
}

.floating-note strong,
.floating-pill strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.floating-note span,
.floating-pill span {
    color: rgba(255, 247, 242, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.floating-pill {
    top: 24px;
    right: -18px;
    padding: 14px 18px;
    border-radius: 999px;
}

.waitlist {
    padding: 26px 0 92px;
}

.waitlist-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.form-embed {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.form-embed iframe {
    width: 100%;
    min-height: 820px;
    height: 100%;
    border: 0;
}

.waitlist-copy,
.waitlist-card {
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow);
}

.waitlist-copy {
    background: linear-gradient(180deg, rgba(43, 41, 44, 0.96), rgba(67, 55, 61, 0.96));
    color: #fff7f2;
}

.waitlist-copy h2,
.waitlist-card h2 {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.waitlist-copy p,
.waitlist-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 1.03rem;
}

.benefits {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-badge {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 160, 0.2);
    color: #ffb8c4;
    font-weight: 800;
}

.waitlist-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-clip: padding-box;
}

.waitlist-card p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.field-group {
    display: grid;
    gap: 8px;
}

.field-group label {
    font-weight: 700;
    color: var(--text);
}

.field-group input,
.field-group select {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(43, 41, 44, 0.12);
    background: rgba(255, 255, 255, 0.82);
    font: inherit;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: rgba(239, 109, 134, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 140, 160, 0.16);
    transform: translateY(-1px);
}

.submit-button {
    border: 0;
    min-height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #454045);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 20px 32px rgba(43, 41, 44, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-footnote {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.93rem;
}

.success-message {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 140, 160, 0.12);
    border: 1px solid rgba(255, 140, 160, 0.22);
    color: #7a4150;
    font-weight: 700;
}

footer {
    padding: 0 0 42px;
    color: var(--muted);
    font-size: 0.92rem;
}

footer .footer-links {
    margin-top: 8px;
    font-size: 0.9rem;
}

footer .footer-links a {
    color: var(--muted);
    text-decoration: underline;
}

footer .footer-links a:hover {
    color: var(--text);
}

@media (max-width: 980px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .hero,
    .waitlist-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 12px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-visual {
        order: -1;
    }

    .floating-pill {
        right: 14px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar {
        padding-top: 18px;
        position: relative;
        z-index: 40;
    }

    .nav {
        font-size: 0.95rem;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.94);
        border-top: 1px solid rgba(43, 41, 44, 0.12);
        padding: 14px 20px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        box-shadow: 0 12px 26px rgba(43, 41, 44, 0.12);
        z-index: 50;
    }

    .nav-toggle {
        z-index: 51;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        padding: 10px 0;
        display: block;
    }

    .nav .hide-mobile {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        gap: 28px;
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 13vw, 3.6rem);
    }

    .waitlist-copy,
    .waitlist-card {
        padding: 24px;
    }

    .floating-note,
    .floating-pill {
        position: static;
        margin-top: 16px;
    }

    .hero-meta {
        gap: 12px;
    }

    .hero-meta-card {
        min-width: 0;
        flex: 1 1 140px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-copy,
    .hero-visual,
    .waitlist-copy,
    .waitlist-card {
        animation: rise 0.8s ease both;
    }

    .hero-visual {
        animation-delay: 0.12s;
    }

    .waitlist-copy {
        animation-delay: 0.16s;
    }

    .waitlist-card {
        animation-delay: 0.24s;
    }

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