:root {
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    --black: #0d1f3c;
    --rhode-taupe: #CC0000;
    --rhode-clay: #fdf0f0;
    --white: #ffffff;
    --gray-text: #121212;
    --border: rgba(204, 0, 0, 0.12);
    --page-bg: #ffffff;
    --accent: #CC0000;
    --salmon: #CC0000;
    --salmon-dark: #a30000;
    --salmon-light: #fbe8e8;
    --success: #34C759;
}

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

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

/* Vouch Notifications - Glassmorphism */
#vouch-container {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.vouch-msg {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(204, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vouch-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.vouch-msg span {
    color: var(--accent);
}

/* Header & Logo */
.header {
    display: flex;
    justify-content: center;
    padding: 20px 0 20px;
    margin-bottom: 0;
}

.rhode-logo {
    color: var(--salmon);
    width: 100px;
}

/* Main Card */
.page {
    max-width: 440px;
    margin: 0 auto;
    padding: 60px 20px 60px;
}

.main-card {
    background: var(--rhode-clay);
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 40px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--rhode-taupe);
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-title em {
    font-style: italic;
    font-weight: bold;
    color: var(--salmon);
}

/* Steps */
.steps-container {
    max-width: 280px;
    margin: 0 auto 40px;
    text-align: left;
}

.steps {
    list-style: none;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--salmon);
    padding-top: 4px;
}

.step-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
}

/* CTA */
.cta-btn {
    width: 90%;
    background: var(--salmon);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
    background: var(--salmon-dark);
}

.cta-btn:active {
    transform: scale(0.98);
}

.cta-note {
    font-size: 11px;
    color: var(--rhode-taupe);
    margin-top: 16px;
}

/* FAQ */
.faq-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rhode-taupe);
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: var(--black);
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    color: var(--salmon);
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray-text);
    font-size: 14px;
}

.faq-item.open .faq-answer {
    max-height: 100px;
    padding-bottom: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}