/* ===================================
   BoldAsk Website - Dark Theme
   Professional, Clean, Modern
   =================================== */

/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-primary: #b91c3c;
    --color-primary-light: #dc2626;
    --color-primary-dark: #991b1b;
    --color-text: #ffffff;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    --color-border: #27272a;
    --color-border-light: #3f3f46;
    --color-success: #22c55e;
    --color-error: #ef4444;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Light Mode - Auto-detects user's system preference */
@media (prefers-color-scheme: light) {
    :root {
        --color-bg: #f8f9fa;
        --color-bg-secondary: #f1f3f4;
        --color-bg-tertiary: #ffffff;
        --color-text: #1a1a1a;
        --color-text-secondary: #52525b;
        --color-text-muted: #71717a;
        --color-border: #e4e4e7;
        --color-border-light: #d4d4d8;
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
        /* Primary color - light faded green for light mode */
        --color-primary: #6ab592;
        --color-primary-light: #7fc9a5;
        --color-primary-dark: #5aa082;
    }

    /* Navbar light mode - remove border line */
    .navbar {
        background: rgba(248, 249, 250, 0.95) !important;
        border-bottom: none !important;
    }

    .nav-container {
        background: transparent !important;
    }

    .nav-logo,
    .nav-logo img {
        background: transparent !important;
    }

    /* Mobile nav menu light mode */
    .nav-menu {
        background: #f8f9fa !important;
        border-top: 1px solid #e4e4e7 !important;
    }

    /* Nav links light mode */
    .nav-link {
        color: #52525b;
    }

    .nav-link:hover {
        color: #1a1a1a;
        background: #e4e4e7;
    }

    .nav-link.active {
        color: #1a1a1a;
    }

    /* Primary button light mode - light faded green */
    .nav-link.btn-primary,
    .btn-primary {
        background: #6ab592 !important;
        color: #ffffff !important;
    }

    .nav-link.btn-primary:hover,
    .btn-primary:hover {
        background: #7fc9a5 !important;
        box-shadow: 0 8px 20px rgba(106, 181, 146, 0.4) !important;
    }

    /* Hero gradient light mode - green tint */
    .hero::before {
        background: radial-gradient(ellipse at 50% 0%, rgba(106, 181, 146, 0.12) 0%, transparent 60%);
    }

    /* Age picker light mode */
    .age-picker-container {
        background: #f1f3f4;
        border-color: #e4e4e7;
    }

    .age-picker-highlight {
        background: linear-gradient(180deg,
            rgba(106, 181, 146, 0.1) 0%,
            rgba(106, 181, 146, 0.2) 50%,
            rgba(106, 181, 146, 0.1) 100%);
        border-color: rgba(106, 181, 146, 0.5);
        box-shadow: 0 0 20px rgba(106, 181, 146, 0.15);
    }

    .age-picker-wrapper::before {
        background: linear-gradient(to right,
            rgba(241, 243, 244, 0.95) 0%,
            rgba(241, 243, 244, 0.6) 60%,
            transparent 100%);
    }

    .age-picker-wrapper::after {
        background: linear-gradient(to left,
            rgba(241, 243, 244, 0.95) 0%,
            rgba(241, 243, 244, 0.6) 60%,
            transparent 100%);
    }

    .age-option {
        color: #a1a1aa;
    }

    .age-option.near-1 {
        color: #71717a;
    }

    .age-option.near-2 {
        color: #a1a1aa;
    }

    .age-option.far {
        color: #d4d4d8;
    }

    .age-option.selected {
        color: #1a1a1a;
    }

    /* Country select light mode */
    .country-select,
    select#nationality {
        background-color: #ffffff;
        color: #1a1a1a;
        border-color: #e4e4e7;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    }

    select#nationality option {
        background-color: #ffffff;
        color: #1a1a1a;
    }

    /* Country and age inputs light mode */
    .country-input,
    .age-input {
        background-color: #ffffff;
        color: #1a1a1a;
        border-color: #e4e4e7;
    }

    /* Mobiscroll overrides for light mode */
    .mbsc-popup,
    .mbsc-fr-popup {
        background-color: #ffffff !important;
        border-color: #e4e4e7 !important;
    }

    .mbsc-scroller-wheel-item {
        color: #a1a1aa !important;
    }

    .mbsc-ios .mbsc-scroller-wheel-overlay,
    .mbsc-ios-dark .mbsc-scroller-wheel-overlay {
        background: linear-gradient(#ffffff, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0) 48%, #ffffff) !important;
    }

    /* Nav toggle bars light mode */
    .nav-toggle span {
        background: #1a1a1a;
    }

    /* Google button stays the same in light mode (already light) */
    .btn-google-dark {
        background: #ffffff;
        border-color: #e4e4e7;
    }

    .btn-google-dark:hover {
        background: #f1f3f4;
    }

    /* Vision numbers - Home page "What we're building" */
    .vision-number {
        color: #6ab592 !important;
        opacity: 1 !important;
    }

    /* Showcase numbers - Circles page features */
    .showcase-number {
        color: #6ab592 !important;
        opacity: 1 !important;
    }

    /* Feature icon background - App page platform features */
    .feature-icon {
        background: rgba(106, 181, 146, 0.15) !important;
    }

    /* Feature check icon */
    .feature-check {
        background: rgba(106, 181, 146, 0.15) !important;
        color: #6ab592 !important;
    }

    /* Position badges - Careers page */
    .position-count,
    .job-openings {
        background: rgba(106, 181, 146, 0.15) !important;
        color: #5aa082 !important;
    }

    /* Tier card selected state */
    .tier-card input:checked + .tier-content {
        border-color: #6ab592 !important;
        background: rgba(106, 181, 146, 0.1) !important;
    }

    /* Checkmark when checked */
    .checkbox-label input:checked + .checkmark {
        background: #6ab592 !important;
        border-color: #6ab592 !important;
    }

    /* Poll option bars */
    .option-bar {
        background: #6ab592 !important;
    }

    /* Poll preview visual */
    .poll-option .option-bar {
        background: linear-gradient(90deg, rgba(106, 181, 146, 0.8) 0%, rgba(106, 181, 146, 0.4) 100%) !important;
    }

    /* Demo vote button */
    .demo-vote-btn.voted {
        border-color: #6ab592 !important;
        background: rgba(106, 181, 146, 0.1) !important;
    }

    .demo-vote-btn .option-bar {
        background: linear-gradient(90deg, rgba(106, 181, 146, 0.3) 0%, rgba(106, 181, 146, 0.1) 100%) !important;
    }

    .demo-vote-btn .option-percent {
        color: #5aa082 !important;
    }

    /* Quote mark */
    .quote-mark {
        color: #6ab592 !important;
    }

    /* Problem card hover */
    .problem-card:hover {
        border-color: #6ab592 !important;
    }

    /* Problem icon */
    .problem-icon {
        color: #6ab592 !important;
    }

    /* Vision card top border on hover */
    .vision-card::before {
        background: linear-gradient(90deg, #6ab592, #7fc9a5) !important;
    }

    /* Question list bullet */
    .question-list li::before {
        color: #6ab592 !important;
    }

    /* Project goals bullet */
    .project-goals li::before {
        color: #6ab592 !important;
    }

    /* Project status */
    .project-status {
        background: rgba(106, 181, 146, 0.15) !important;
        color: #5aa082 !important;
    }

    /* Project status inactive */
    .project-status-inactive {
        background: rgba(185, 28, 60, 0.1) !important;
        color: #da0000 !important;
    }

    /* Position scope bullets */
    .position-scope li::before {
        background: #6ab592 !important;
    }

    /* Tier badge */
    .tier-badge {
        background: #6ab592 !important;
    }

    /* Coming soon badge */
    .coming-soon-badge {
        background: #6ab592 !important;
    }

    /* Category tag in circles */
    .category-tag {
        background: #6ab592 !important;
    }

    /* Join button */
    .btn-join {
        border-color: #6ab592 !important;
        color: #6ab592 !important;
    }

    .btn-join:hover {
        background: #6ab592 !important;
        color: white !important;
    }

    .btn-join.joined {
        background: #6ab592 !important;
        border-color: #6ab592 !important;
    }

    /* Step number */
    .step-number {
        background: #6ab592 !important;
    }

    /* Process step dot */
    .process-step::before {
        background: #6ab592 !important;
    }

    /* Stat number */
    .stat-number {
        color: #6ab592 !important;
    }

    /* Bold coins icon */
    .bold-coins-icon {
        background: linear-gradient(135deg, #6ab592 0%, #7fc9a5 100%) !important;
        box-shadow: 0 8px 32px rgba(106, 181, 146, 0.3) !important;
    }

    /* Page icon */
    .page-icon svg {
        stroke: #6ab592 !important;
    }

    /* Btn outline hover */
    .btn-outline:hover {
        border-color: #6ab592 !important;
        color: #6ab592 !important;
    }

    /* Form focus states */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: #6ab592 !important;
        box-shadow: 0 0 0 3px rgba(106, 181, 146, 0.2) !important;
    }

    /* Legal section heading border */
    .legal-section h2 {
        border-bottom-color: #e4e4e7 !important;
    }

    /* Quote block border */
    .quote-block blockquote {
        border-left-color: #6ab592 !important;
    }
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo img {
    height: 36px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text);
    background: var(--color-bg-tertiary);
}

.nav-link.active {
    color: var(--color-text);
}

.nav-link.btn-primary {
    background: var(--color-primary);
    color: var(--color-text);
    margin-left: 8px;
}

.nav-link.btn-primary:hover {
    background: var(--color-primary-light);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 28, 60, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(185, 28, 60, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-visual {
    margin-top: 60px;
}

.quote-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: inline-block;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.quote-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* Hero Page Variant */
.hero-page {
    min-height: 60vh;
    padding-top: 150px;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-primary);
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 100px 24px;
}

.section-dark {
    background: var(--color-bg-secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: -40px auto 60px;
}

.section-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

/* ===================================
   Content Grids
   =================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.content-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-block {
    padding: 32px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.content-block:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
}

.content-block h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-block p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Question List */
.question-list {
    list-style: none;
}

.question-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.question-list li:last-child {
    border-bottom: none;
}

.question-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ===================================
   Problem Section
   =================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   Vision Section
   =================================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.vision-card {
    padding: 40px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.vision-card:hover::before {
    opacity: 1;
}

.vision-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.vision-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===================================
   Waitlist Form
   =================================== */
.section-cta {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

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

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 14px;
}

.checkbox-label:hover {
    border-color: var(--color-border-light);
}

.checkbox-label input {
    display: none;
}

.checkbox-label input:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border-light);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
}

.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

/* Tier Options */
.tier-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tier-card {
    display: block;
    cursor: pointer;
}

.tier-card input {
    display: none;
}

.tier-content {
    padding: 20px 16px;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.tier-card:hover .tier-content {
    border-color: var(--color-border-light);
}

.tier-card input:checked + .tier-content {
    border-color: var(--color-primary);
    background: rgba(185, 28, 60, 0.1);
}

.tier-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.tier-content p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-secondary);
}

/* ===================================
   Principles Section
   =================================== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.principle {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.principle:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.principle-icon {
    display: block;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.principle h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.principle p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   Final CTA Section
   =================================== */
.section-final {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
    padding: 120px 24px;
}

.final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ===================================
   Features Grid (App Page)
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(185, 28, 60, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tier {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   Tiers Grid (App Page)
   =================================== */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-full-card {
    padding: 40px 32px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.tier-full-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tier-full-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.tier-features {
    text-align: left;
    margin-bottom: 32px;
}

.tier-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--color-border);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features .check {
    color: var(--color-success);
}

.tier-features .x {
    color: var(--color-text-muted);
}

/* ===================================
   Steps Grid (App Page)
   =================================== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--color-border);
    margin-top: 48px;
}

/* ===================================
   Content Split (Polls/Circles Pages)
   =================================== */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text .highlight-text {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 500;
}

/* Poll Preview */
.poll-preview {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.poll-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.poll-option {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.option-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.option-bar {
    height: 8px;
    background: var(--color-primary);
    border-radius: 4px;
    grid-column: 1;
}

.option-percent {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 40px;
    text-align: right;
}

.poll-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Circles Visual */
.circles-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-preview {
    position: absolute;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all var(--transition-normal);
}

.circle-preview:hover {
    border-color: var(--color-primary);
    transform: scale(1.1);
    z-index: 10;
}

.circle-preview span {
    font-size: 0.85rem;
    font-weight: 600;
}

.circle-1 {
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 40px;
    right: 40px;
}

.circle-3 {
    width: 130px;
    height: 130px;
    bottom: 20px;
    left: 60px;
}

.circle-4 {
    width: 110px;
    height: 110px;
    bottom: 30px;
    right: 20px;
}

/* ===================================
   Card Grid (Info Cards)
   =================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    padding: 32px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   Feature List
   =================================== */
.features-list {
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 40px;
    height: 40px;
    background: rgba(185, 28, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   Feature Showcase (Circles Page)
   =================================== */
.features-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.feature-showcase-item {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.feature-showcase-item:last-child {
    border-bottom: none;
}

.showcase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.showcase-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.showcase-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Quote Block */
.quote-block {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    padding: 40px;
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
}

/* ===================================
   Projects Page
   =================================== */
.project-visual {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    font-size: 2rem;
}

.project-status {
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.project-goals h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.project-goals ul {
    margin-bottom: 24px;
}

.project-goals li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.project-goals li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.project-footer {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

/* Process Timeline */
.process-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-left: 2px solid var(--color-border);
    padding-left: 32px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 40px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.process-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Future Grid */
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.future-card {
    padding: 28px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

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

.future-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.future-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   Platform List (App Page)
   =================================== */
.platforms-simple {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.platform-item.available {
    border-color: var(--color-success);
}

.platform-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.platform-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.platform-badge.available {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
}

.platform-badge.coming-soon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
}

/* ===================================
   Demo Section (App Page)
   =================================== */
.demo-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.demo-browser {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.browser-bar {
    background: var(--color-bg-secondary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border-light);
}

.browser-dot:first-child { background: #ef4444; }
.browser-dot:nth-child(2) { background: #f59e0b; }
.browser-dot:nth-child(3) { background: #22c55e; }

.browser-url {
    margin-left: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: 6px 16px;
    border-radius: 4px;
    flex: 1;
}

.browser-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--color-text-muted);
}

.placeholder-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-border-light);
    margin-bottom: 16px;
}

.demo-cta {
    text-align: left;
}

.demo-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.demo-cta p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===================================
   Waitlist Container (App Page)
   =================================== */
.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.signup-options {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.google-signin-wrapper {
    margin-bottom: 24px;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: white;
    color: #1f1f1f;
    border: 1px solid #dadce0;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

/* Dark Google Button */
.btn-google-dark {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--color-bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-google-dark:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
}

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

.divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: var(--color-text-muted);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.divider span {
    padding: 0 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-privacy {
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

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

/* ===================================
   Email Verification Form
   =================================== */
.email-verify-row {
    display: flex;
    gap: 12px;
}

.email-verify-row input {
    flex: 1;
}

.btn-verify {
    padding: 14px 24px;
    background: var(--color-primary);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-verify:hover {
    background: var(--color-primary-light);
}

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

.email-status,
.code-status {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    min-height: 20px;
}

.email-status.success,
.code-status.success {
    color: var(--color-success);
}

.email-status.error,
.code-status.error {
    color: var(--color-error);
}

.email-status.sending {
    color: var(--color-text-muted);
}

.code-input-row {
    display: flex;
    gap: 12px;
}

.code-input-row input {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 8px;
    font-family: 'Monaco', 'Consolas', monospace;
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--color-primary-light);
}

/* ===================================
   Age Picker (Mobiscroll-style 3D Horizontal Wheel)
   =================================== */
.age-picker-container {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid #27272a;
    border-radius: 12px;
    perspective: 1000px;
}

.age-picker-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Curved glass overlay effect - left side */
.age-picker-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(to right,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(13, 13, 13, 0.6) 60%,
        transparent 100%);
}

/* Curved glass overlay effect - right side */
.age-picker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 35%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(to left,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(13, 13, 13, 0.6) 60%,
        transparent 100%);
}

/* Center selection frame */
.age-picker-highlight {
    position: absolute;
    left: 50%;
    top: 5px;
    bottom: 5px;
    width: 56px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        rgba(185, 28, 60, 0.1) 0%,
        rgba(185, 28, 60, 0.2) 50%,
        rgba(185, 28, 60, 0.1) 100%);
    border: 1.5px solid rgba(185, 28, 60, 0.5);
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 20px rgba(185, 28, 60, 0.15);
}

.age-picker-scroll {
    display: flex;
    align-items: center;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.age-picker-scroll::-webkit-scrollbar {
    display: none;
}

.age-option {
    flex: 0 0 56px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 400;
    color: #404040;
    scroll-snap-align: center;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease-out, color 0.1s ease-out, font-size 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* 3D rotation for items left of center */
.age-option.near-1 {
    color: #606060;
    font-size: 17px;
    transform: translateZ(-20px) rotateY(25deg);
}

.age-option.near-2 {
    color: #505050;
    font-size: 15px;
    transform: translateZ(-40px) rotateY(40deg);
}

.age-option.far {
    color: #404040;
    font-size: 14px;
    transform: translateZ(-60px) rotateY(55deg);
    opacity: 0.5;
}

/* 3D rotation for items right of center (mirror) */
.age-option.near-1.right {
    transform: translateZ(-20px) rotateY(-25deg);
}

.age-option.near-2.right {
    transform: translateZ(-40px) rotateY(-40deg);
}

.age-option.far.right {
    transform: translateZ(-60px) rotateY(-55deg);
}

/* Selected center item */
.age-option.selected {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    transform: translateZ(0) rotateY(0deg) scale(1);
}

/* Spacers for centering first/last items */
.age-picker-spacer {
    flex: 0 0 calc(50% - 28px);
    height: 100%;
}

/* ===================================
   Country Select - Simple Dark Select
   =================================== */
.country-select,
select#nationality {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    border: 1px solid #27272a;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select#nationality:focus {
    outline: none;
    border-color: #b91c3c;
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

select#nationality option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px;
}

select#nationality:invalid {
    color: #71717a;
}

/* Country Input for Mobiscroll */
.country-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    border: 1px solid #27272a;
    border-radius: 8px;
    cursor: pointer;
}

.country-input:focus {
    outline: none;
    border-color: #b91c3c;
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

.country-input::placeholder {
    color: #71717a;
}

/* Age Input for Mobiscroll */
.age-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    border: 1px solid #27272a;
    border-radius: 8px;
    cursor: pointer;
}

.age-input:focus {
    outline: none;
    border-color: #b91c3c;
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

/* Mobiscroll Dark Theme Overrides */
.mbsc-popup,
.mbsc-fr-popup {
    background-color: #1a1a1a !important;
    border: 1px solid #27272a !important;
    border-radius: 12px !important;
}

.mbsc-scroller-wheel-wrapper {
    background: transparent !important;
}

.mbsc-scroller-wheel-item {
    color: #71717a !important;
}

.mbsc-scroller-wheel-item.mbsc-selected,
.mbsc-selected {
    color: #ffffff !important;
}

.mbsc-scroller-wheel-highlight,
.mbsc-wheel-item-checkmark {
    border-color: rgba(185, 28, 60, 0.5) !important;
    background: rgba(185, 28, 60, 0.1) !important;
}

.mbsc-ios .mbsc-scroller-wheel-overlay {
    background: linear-gradient(#1a1a1a, rgba(26, 26, 26, 0) 52%, rgba(26, 26, 26, 0) 48%, #1a1a1a) !important;
}

.mbsc-ios-dark .mbsc-scroller-wheel-overlay {
    background: linear-gradient(#1a1a1a, rgba(26, 26, 26, 0) 52%, rgba(26, 26, 26, 0) 48%, #1a1a1a) !important;
}

.mbsc-fr-btn,
.mbsc-popup-button {
    color: #b91c3c !important;
}

/* Button loading state */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success details */
.success-detail-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.success-detail-card p {
    margin-bottom: 8px;
    color: var(--color-text-secondary);
}

.success-detail-card p:last-child {
    margin-bottom: 0;
}

.verified-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-container {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-options {
        padding: 32px 24px;
    }
}

/* ===================================
   Team Page - Jobs Grid
   =================================== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.job-openings {
    background: rgba(185, 28, 60, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.job-scope {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.job-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Compensation Note */
.compensation-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.compensation-note h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.compensation-note p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.compensation-note strong {
    color: var(--color-text);
}

/* Form textarea and select */
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: all var(--transition-fast);
    resize: vertical;
}

.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

.form-group select option {
    background: var(--color-bg-secondary);
    color: var(--color-text);
}

/* ===================================
   Careers Page
   =================================== */
.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Bold Coins Section */
.bold-coins-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bold-coins-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(185, 28, 60, 0.3);
}

.coin-symbol {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bold-coins-content {
    text-align: left;
}

.bold-coins-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.bold-coins-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.coin-feature {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.coin-feature .feature-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.coin-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.coin-feature p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.coins-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    padding: 20px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
}

/* Positions Grid */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.positions-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
    .positions-grid.two-columns {
        grid-template-columns: 1fr;
    }
}

.position-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.position-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(185, 28, 60, 0.15);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.position-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
}

.position-count {
    background: rgba(185, 28, 60, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.position-scope {
    flex: 1;
    margin-bottom: 24px;
}

.position-scope h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.position-scope ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-scope li {
    color: var(--color-text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.position-scope li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Application Form */
.application-container {
    max-width: 700px;
    margin: 0 auto;
}

.application-form {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.application-form .form-group {
    margin-bottom: 24px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.application-form .required {
    color: var(--color-primary);
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(185, 28, 60, 0.2);
}

.application-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-wrapper:hover,
.file-upload-wrapper.drag-over {
    border-color: var(--color-primary);
    background: rgba(185, 28, 60, 0.05);
}

.file-upload-wrapper.has-file {
    border-color: var(--color-success);
    background: rgba(34, 197, 94, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-display {
    pointer-events: none;
}

.file-icon {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
}

.file-text {
    display: block;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 4px;
}

.file-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.file-name {
    display: block;
    margin-top: 12px;
    color: var(--color-success);
    font-weight: 500;
}

/* Single checkbox */
.checkbox-single {
    margin-top: 24px;
}

.checkbox-single .checkbox-label {
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bold-coins-features {
        grid-template-columns: 1fr;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 24px;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   Legal Pages (Privacy Policy, Terms)
   =================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 24px 0 12px;
}

.legal-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-section li strong {
    color: var(--color-text);
}

.legal-section strong {
    color: var(--color-text);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 80px 24px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-split.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        border-top: 1px solid var(--color-border);
        flex-direction: column;
        padding: 40px 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .nav-link.btn-primary {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 60px 20px;
    }

    .tier-options {
        grid-template-columns: 1fr;
    }

    .waitlist-form {
        padding: 32px 24px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .circles-visual {
        height: 400px;
    }

    .circle-1 {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .circle-2 {
        top: auto;
        bottom: 140px;
        right: auto;
        left: 10px;
    }

    .circle-3 {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .circle-4 {
        top: auto;
        bottom: 140px;
        right: 10px;
        left: auto;
    }

    .project-visual {
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-showcase-item {
        flex-direction: column;
        gap: 16px;
    }

    .showcase-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .checkbox-group {
        flex-direction: column;
    }

    .checkbox-label {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Live Demo Section
   =================================== */
.section-demo {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.demo-tab {
    padding: 12px 32px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.demo-tab:hover {
    background: var(--color-border);
    color: var(--color-text);
}

.demo-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.demo-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.demo-form input:focus,
.demo-form textarea:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.demo-form textarea {
    resize: vertical;
    min-height: 80px;
}

.demo-form select {
    cursor: pointer;
}

.demo-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-option-input {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    background: transparent;
    border: 1px dashed var(--color-border);
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-small:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Demo Polls List */
.demo-polls-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.demo-poll {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.demo-poll-question {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-text);
}

.demo-poll-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-vote-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.demo-vote-btn:hover {
    border-color: var(--color-primary);
}

.demo-vote-btn.voted {
    border-color: var(--color-primary);
    background: rgba(185, 28, 60, 0.1);
}

.option-text {
    position: relative;
    z-index: 2;
}

.option-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(185, 28, 60, 0.3) 0%, rgba(185, 28, 60, 0.1) 100%);
    transition: width 0.5s ease;
}

.option-percent {
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: var(--color-primary-light);
}

.demo-poll-votes {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Demo Circles List */
.demo-circles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
}

.demo-circle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: border-color var(--transition-fast);
}

.demo-circle:hover {
    border-color: var(--color-border-light);
}

.demo-circle-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.demo-circle-info {
    flex: 1;
    min-width: 0;
}

.demo-circle-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.demo-circle-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-circle-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.category-tag {
    padding: 2px 8px;
    background: var(--color-primary);
    border-radius: 4px;
    color: white;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-join {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.btn-join:hover {
    background: var(--color-primary);
    color: white;
}

.btn-join.joined {
    background: var(--color-success);
    border-color: var(--color-success);
    color: white;
}

.demo-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.demo-note a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.demo-note a:hover {
    color: var(--color-primary);
}

/* Demo responsive */
@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .demo-tabs {
        flex-wrap: wrap;
    }

    .demo-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .demo-circle {
        flex-direction: column;
        text-align: center;
    }

    .demo-circle-info p {
        white-space: normal;
    }

    .demo-circle-meta {
        justify-content: center;
    }
}
