/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette from original design */
    --color-passion: hsl(346 77% 49.8%);
    --color-romantic: hsl(320 65% 52%);
    --color-confident: hsl(45 93% 47%);
    --color-sophisticated: hsl(217 19% 27%);
    --color-destructive: hsl(0 62.8% 30.6%);

    /* Background & Surface colors */
    --color-bg: hsl(20 14.3% 4.1%);
    --color-bg-light: hsl(24 9.8% 10%);
    --color-card: hsl(24 9.8% 10%);

    /* Text colors */
    --color-text: hsl(0 0% 98%);
    --color-text-muted: hsl(240 5% 64.9%);
    --color-foreground: hsl(0 0% 95%);

    /* Border */
    --color-border: hsl(240 3.7% 15.9%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(346 77% 49.8%) 0%, hsl(320 65% 52%) 50%, hsl(217 19% 27%) 100%);
    --gradient-passion: linear-gradient(135deg, hsl(346 77% 49.8%), hsl(320 65% 52%));
    --gradient-section: linear-gradient(180deg, hsl(20 14.3% 4.1%), hsl(24 9.8% 10%));

    /* Shadows */
    --shadow-glow: 0 0 40px hsl(346 77% 49.8% / 0.3);
    --shadow-passion: 0 25px 50px -12px hsl(346 77% 49.8% / 0.4);
    --shadow-card: 0 10px 30px -10px hsl(0 0% 0% / 0.3);

    /* Radius */
    --radius: 0.75rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.9;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/hero-background.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1420px;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 3rem 2rem;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-passion);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    h1 {
        font-size: 3.5rem;
    }
}

.title-main {
    display: block;
    color: var(--color-passion);
}

.title-sub {
    display: block;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .title-sub {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .title-sub {
        font-size: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .title-sub {
        font-size: 1.875rem;
    }
}

.title-accent {
    display: block;
    color: var(--color-confident);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .title-accent {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .title-accent {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .title-accent {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .stat-item {
        gap: 0.75rem;
    }
}

.stat-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .stat-icon {
        font-size: 1.5rem;
    }
}

.stat-icon-svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .stat-icon-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.btn-icon-svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .btn-icon-svg {
        width: 1.5rem;
        height: 1.5rem;
        margin-left: 0.75rem;
    }
}

.stat-text {
    font-weight: 600;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .stat-text {
        font-size: 0.9rem;
    }
}

.stat-confident {
    color: var(--color-confident);
}

.stat-romantic {
    color: var(--color-romantic);
}

.stat-sophisticated {
    color: var(--color-sophisticated);
}

.hero-cta {
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-cta {
        text-align: left;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1rem;
}

/* Signup Card */
.signup-card {
    max-width: 28rem;
    margin: 2rem auto;
    background: var(--color-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
    .signup-card {
        margin-left: 0;
    }
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.hero-form {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 0.5rem;
}

input[type="email"],
input[type="text"] {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
}

input[type="email"]:focus,
input[type="text"]:focus {
    border-color: var(--color-passion);
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-passion);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-passion);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow), var(--shadow-passion);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.benefits-list {
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-passion);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: rgba(239, 68, 68, 0.1);
}

.hero-stats-text {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
}

.highlight {
    color: var(--color-passion);
    font-weight: 700;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    order: -1;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 0;
    }
}

.book-glow {
    position: absolute;
    inset: -20%;
    background: var(--gradient-passion);
    opacity: 0.3;
    filter: blur(60px);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .book-glow {
        filter: blur(80px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.book-cover {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 16rem;
    box-shadow: var(--shadow-passion);
    border-radius: var(--radius);
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .book-cover {
        max-width: 20rem;
    }
}

@media (min-width: 1024px) {
    .book-cover {
        max-width: 28rem;
    }
}

.book-cover:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Early Access Section */
.early-access-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.early-access-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-passion);
    opacity: 0.05;
    filter: blur(100px);
}

.early-access-card {
    max-width: 56rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-card) 0%, hsl(24 9.8% 8%) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid hsl(346 77% 49.8% / 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-passion);
    position: relative;
    overflow: hidden;
}

.early-access-card .card-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.early-access-card .card-glow-top {
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-passion);
    opacity: 0.1;
}

.early-access-card .card-glow-bottom {
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background: var(--color-romantic);
    opacity: 0.1;
}

.early-access-content {
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .early-access-content {
        padding: 4rem;
    }
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(346 77% 49.8% / 0.1);
    color: var(--color-passion);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.early-access-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .early-access-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .early-access-title {
        font-size: 3rem;
    }
}

.early-access-title span {
    color: var(--color-text);
}

.early-access-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

@media (min-width: 768px) {
    .early-access-description {
        font-size: 1.25rem;
    }
}

.benefits-section {
    margin-bottom: 2rem;
}

.benefits-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 20rem;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    text-align: left;
}

.benefit-emoji {
    font-size: 1rem;
}

.early-access-form {
    max-width: 28rem;
    margin: 0 auto 1rem;
}

.early-access-form .form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.early-access-form input[type="email"] {
    flex: 1;
    background: hsl(0 0% 0% / 0.3);
    border-color: hsl(240 3.7% 15.9% / 0.5);
}

.early-access-form input[type="email"]:focus {
    border-color: var(--color-passion);
}

.join-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-passion);
}

/* Author Section */
.author-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.author-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .author-container {
        flex-direction: row;
        align-items: center;
    }
}

.author-image-wrapper {
    flex-shrink: 0;
}

.author-image {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid hsl(346 77% 49.8% / 0.2);
    box-shadow: var(--shadow-card);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content {
    text-align: center;
}

@media (min-width: 768px) {
    .author-content {
        text-align: left;
    }
}

.author-quote {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .author-quote {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .author-quote {
        font-size: 1.5rem;
    }
}

.author-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    font-style: normal;
    margin-bottom: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-passion);
    text-decoration: none;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: hsl(346 77% 40%);
}

.linkedin-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4rem;
    }
}

.text-passion {
    color: var(--color-passion);
    display: block;
}

.section-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.5rem;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
}

/* Card color variants */
.card-destructive {
    border-color: hsl(0 62.8% 30.6% / 0.2);
}

.card-destructive:hover {
    border-color: var(--color-destructive);
}

.card-confident {
    border-color: hsl(45 93% 47% / 0.2);
}

.card-confident:hover {
    border-color: var(--color-confident);
}

.card-passion {
    border-color: hsl(346 77% 49.8% / 0.2);
}

.card-passion:hover {
    border-color: var(--color-passion);
}

/* Icon colors */
.icon-destructive {
    color: var(--color-destructive);
}

.icon-confident {
    color: var(--color-confident);
}

.icon-passion {
    color: var(--color-passion);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Chapters Section */
.chapters-section {
    padding: 6rem 0;
}

.chapters-section .badge {
    display: block;
    margin: 0 auto 2rem;
    width: fit-content;
}

.chapters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .chapters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chapters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.chapter-card {
    position: relative;
    background: var(--color-card);
    border: 1px solid hsl(217 19% 27% / 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(4px);
    height: 100%;
}

.chapter-card:hover {
    transform: scale(1.05);
    border-color: hsl(346 77% 49.8% / 0.4);
}

.chapter-card.highlighted {
    background: hsl(346 77% 49.8% / 0.1);
    border-color: hsl(346 77% 49.8% / 0.3);
    box-shadow: var(--shadow-passion);
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.chapter-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.chapter-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.chapter-emoji {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    font-size: 1.25rem;
}

.chapter-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.chapter-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.more-chapters {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.stars-svg {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-confident);
    fill: var(--color-confident);
}

.rating-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: hsl(24 9.8% 10% / 0.5);
    border: 1px solid hsl(217 19% 27% / 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card-header {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.quote-icon-svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-passion);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.testimonial-card-content {
    padding: 0 1.5rem 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info .author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.author-info .author-title {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.author-linkedin {
    font-size: 0.75rem;
    color: var(--color-passion);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 0.25rem;
    display: inline-block;
}

.author-linkedin:hover {
    color: hsl(346 77% 40%);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-passion);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--color-text-muted);
}

/* Preorder Section */
.preorder-section {
    padding: 6rem 0;
    background: var(--gradient-section);
}

.preorder-header {
    text-align: center;
    margin-bottom: 4rem;
}

.preorder-card {
    max-width: 42rem;
    margin: 0 auto;
    background: hsl(24 9.8% 10% / 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(217 19% 27% / 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.preorder-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

.card-icons-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-icon-heart {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-passion);
}

.card-icon-sparkles {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-romantic);
}

.preorder-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.preorder-card-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.preorder-card-content {
    padding: 0 1.5rem 1.5rem;
}

.preorder-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input[type="email"] {
    width: 100%;
    background: hsl(0 0% 0% / 0.5);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--color-passion);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label-text {
    font-size: 0.875rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label-text:hover {
    color: var(--color-passion);
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
    font-size: 0.875rem;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-passion);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-passion);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-passion);
}

.btn-submit:hover {
    box-shadow: var(--shadow-glow), var(--shadow-passion);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-text-blink {
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.preorder-disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.disclaimer {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid hsl(217 19% 27% / 0.2);
    background: var(--color-bg);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-passion);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--color-text-muted);
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-separator {
    color: var(--color-text-muted);
}

/* Signup Form Container */
.signup-form-container {
    width: 100%;
}

/* Form Input Styled */
.form-input-styled {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input-styled:focus {
    border-color: var(--color-passion);
}

.form-input-styled::placeholder {
    color: var(--color-text-muted);
}

/* Captcha Container */
.captcha-container-styled {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.captcha-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 0.25rem;
    overflow: hidden;
}

.captcha-svg-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.captcha-svg-container svg {
    max-width: 100%;
    height: auto;
}

.refresh-captcha-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    color: var(--color-sophisticated);
    transition: background-color 0.2s ease;
}

.refresh-captcha-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.captcha-input {
    margin-top: 0;
}

/* Button Full Width */
.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Loading Button */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Back Button */
.btn-back {
    background: transparent;
    border: 1px solid var(--color-passion);
    color: var(--color-passion);
    box-shadow: none;
}

.btn-back:hover {
    background: rgba(239, 68, 68, 0.1);
    box-shadow: none;
    transform: none;
    filter: none;
}

/* Form Result Messages */
.form-result-message {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.form-result-message .message-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-result-message p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-message .message-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.error-message .message-icon {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-passion);
}

/* Early Access Form Specific */
.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 28rem;
    margin: 0 auto;
}

.early-access-form .form-row {
    margin-bottom: 0;
}

.early-access-form .btn-primary {
    margin-top: 1rem;
}

/* Preorder Form Specific */
.preorder-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preorder-form .captcha-container-styled {
    margin-top: 0.5rem;
}

.preorder-form .btn-submit {
    margin-top: 0.5rem;
}
