/* Design Tokens - Rosebud Style */
:root {
    /* Colors */
    --primary-magenta: #D6165B;
    --primary-magenta-hover: #c01351;
    --accent-teal: #1A7660;
    --text-dark: #1A1B1F;
    --text-white: #FFFFFF;
    --text-gray: #555555;
    --bg-white: #FFFFFF;
    --bg-gray-light: #F8F9FA;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing & Radii */
    --radius-card: 24px;
    --radius-button: 41px;
    --spacing-section: 80px;
    --container-width: 1200px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

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

/* Section Containers */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-button);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-magenta);
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-magenta-hover);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-dark);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-magenta);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    background-size: cover;
    background-position: center;
    /* Premium Gradient Fallback */
    background: url('images/hero.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.icon-teal {
    background: #e0f2f1;
    color: var(--accent-teal);
}

.icon-magenta {
    background: #fce4ec;
    color: var(--primary-magenta);
}

.icon-blue {
    background: #e3f2fd;
    color: #2196f3;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: white;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-bubble {
    background-color: var(--accent-teal);
    color: white;
    padding: 48px;
    border-radius: 40px;
    max-width: 800px;
    position: relative;
    margin: 0 20px 40px;
    box-shadow: 0 20px 40px rgba(26, 118, 96, 0.2);
}

/* Little triangle for speech bubble effect */
.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 40px;
    height: 40px;
    background-color: var(--accent-teal);
    z-index: -1;
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ddd;
    /* Placeholder for avatar */
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waitlist Page */
.waitlist-hero {
    position: relative;
    padding: 160px 0 120px;
    color: var(--text-white);
    background: url('hero-bg.png') no-repeat center center/cover;
    background-color: #0b0b0f;
    overflow: hidden;
}

.waitlist-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.65), rgba(8, 9, 12, 0.3));
    z-index: 0;
}

.waitlist-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.waitlist-copy {
    max-width: 560px;
}

.waitlist-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.waitlist-copy h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.waitlist-copy p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.waitlist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.waitlist-tags span {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
}

.waitlist-card {
    width: min(420px, 100%);
    background: var(--text-white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(8, 10, 18, 0.35);
}

.waitlist-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.waitlist-card p {
    color: var(--text-gray);
    font-size: 16px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.waitlist-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: var(--radius-button);
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-family: var(--font-body);
    font-size: 15px;
}

.waitlist-form input:focus {
    outline: none;
    border-color: rgba(214, 22, 91, 0.6);
    box-shadow: 0 0 0 3px rgba(214, 22, 91, 0.15);
}

.waitlist-form .btn {
    padding: 14px 24px;
}

.waitlist-footnote {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(85, 85, 85, 0.8);
}

.waitlist-glimpse {
    padding: 100px 0;
    background-color: var(--bg-gray-light);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .waitlist-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .waitlist-card {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .waitlist-copy h1 {
        font-size: 44px;
    }

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

    .waitlist-form .btn {
        width: 100%;
    }
}
