@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

:root {
  /* Brand Colors */
  --color-brand-red: #D11B1E;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark-surface: #1E1E1F;
  --color-ui-gray: #3C3C3E;
  --color-muted-gray: #A9A9A9;

  /* Backgrounds */
  --bg-primary: #000000;
  --bg-secondary: #1E1E1F;
  --bg-tertiary: #3C3C3E;
  --bg-overlay: rgba(0, 0, 0, 0.95);
  --bg-modal-backdrop: rgba(0, 0, 0, 0.9);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #FFFFFF;
  --text-disabled: #A9A9A9;

  /* Accents */
  --accent-primary: #D11B1E;
  --accent-hover: #B01518;

  /* Borders */
  --border-primary: #3C3C3E;
  --border-secondary: #1E1E1F;
  --border-focus: #D11B1E;

  /* Success (keep existing green) */
  --color-success: #00ff00;
  --color-success-bg: rgba(0, 255, 0, 0.1);
  --color-success-border: rgba(0, 255, 0, 0.3);

  /* Shadows & Effects */
  --shadow-button: 0 10px 30px rgba(209, 27, 30, 0.3);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

  /* Transparent Overlays */
  --overlay-light-5: rgba(255, 255, 255, 0.05);
  --overlay-light-8: rgba(255, 255, 255, 0.08);
  --overlay-light-20: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-overlay);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.container {
    max-width: 100%;
    padding: 3rem 2rem;
    padding-top: 6rem; /* Space for fixed navbar */
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header Section */
.header-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.tagline {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.waitlist-btn {
    background-color: var(--accent-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.waitlist-btn:hover {
    background-color: var(--accent-hover);
}

/* Main Section */
.main-section {
    width: 100%;
    max-width: 700px;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 2rem;
}

.revolt-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dealers-save {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Trial Section */
.trial-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 2rem;
}

.trial-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trial-feature {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

/* Features Section */
.features-section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 0 2rem;
}

.features-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.dealers-heading {
    color: var(--accent-primary);
}

.creators-heading {
    color: var(--accent-primary);
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.features-list li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: 700;
}

/* Inline Modal Section */
.inline-modal-section {
    width: 100%;
    max-width: 420px;
    margin-top: 2rem;
    background: #2A2A2A;
    border-radius: 24px;
    padding: 2.5rem;
}

.inline-modal-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-option {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.modal-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.modal-option i {
    font-size: 2.75rem;
    color: var(--text-primary);
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.modal-option h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-option p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-overlay);
    padding: 1rem 2rem;
    z-index: 1000;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
}

.footer-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .container {
        padding: 2rem 1.5rem;
        padding-top: 5rem; /* Adjust for smaller navbar on tablets */
        padding-bottom: 4rem;
    }

    .main-section {
        padding-left: 1.5rem;
    }

    .revolt-text {
        font-size: 2.75rem;
    }

    .trial-section {
        padding-left: 1.5rem;
    }

    .trial-heading {
        font-size: 1.75rem;
    }

    .features-section {
        padding-left: 1.5rem;
    }

    .features-heading {
        font-size: 1.75rem;
    }

    .inline-modal-section {
        padding: 2rem;
    }

    .inline-modal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .modal-options {
        gap: 1.25rem;
    }

    .modal-option {
        padding: 1.5rem 1.25rem;
    }

    .footer {
        padding: 1rem 1.5rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .container {
        padding: 1.5rem 1rem;
        padding-top: 4.5rem; /* Adjust for smaller navbar on mobile */
        padding-bottom: 3.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .tagline {
        font-size: 1rem;
    }

    .waitlist-btn {
        font-size: 0.75rem;
        padding: 0.65rem 1.75rem;
    }

    .main-section {
        padding-left: 1rem;
    }

    .revolt-text {
        font-size: 2.25rem;
    }

    .dealers-save {
        font-size: 0.9rem;
    }

    .trial-section {
        padding-left: 1rem;
    }

    .trial-heading {
        font-size: 1.5rem;
    }

    .trial-feature {
        font-size: 0.9rem;
    }

    .features-section {
        padding-left: 1rem;
    }

    .features-heading {
        font-size: 1.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .inline-modal-section {
        padding: 1.5rem;
    }

    .inline-modal-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .modal-options {
        gap: 1rem;
    }

    .modal-option {
        padding: 1.25rem 1rem;
    }

    .option-icon {
        width: 50px;
        height: 50px;
    }

    .modal-option i {
        font-size: 2.25rem;
    }

    .modal-option h3 {
        font-size: 1.125rem;
    }

    .modal-option p {
        font-size: 0.875rem;
    }

    .footer {
        padding: 1rem;
    }

    .footer-text {
        font-size: 0.7rem;
    }
}