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

:root {
    --text-primary: #eef0f6;
    --text-secondary: #c2b0b7; /* warm, burgundy-leaning */
    --text-tertiary: #8e7a83;  /* warm, burgundy-leaning */
    --bg-primary: #0b0b12;
    --bg-secondary: #11111a;
    --border-color: #1a1c27;
    --accent-color: #8a1538; /* burgundy */
    --accent-hover: #6f102d;
    --success-color: #22c55e;
    --pending-color: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.45);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: radial-gradient(1200px 600px at 50% -100px, rgba(138, 21, 56, 0.18), transparent 60%), var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: rgba(11, 11, 18, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header + main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo .brand-logo {
    width: 60px;
    height: 60px;
}

.logo .brand-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.logo .brand-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 24px 96px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 8px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(138, 21, 56, 0.18);
    color: #f1cad5;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1.2px;
    /* Use solid color to avoid clipping issues with gradient text */
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    overflow: visible;
    word-break: normal;
    hyphens: manual;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Brand lockup inside hero */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-primary);
    opacity: 0.9;
}

.hero-cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: #0f0f18;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.hero-email-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(138, 21, 56, 0.18);
}

.hero-email-input::placeholder {
    color: var(--text-tertiary);
}

.hero-submit-btn {
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(138, 21, 56, 0.25);
}

.hero-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(138, 21, 56, 0.32);
}

.hero-submit-btn:active {
    transform: translateY(0);
}

.hero-form-message {
    margin-top: 16px;
    font-size: 14px;
    color: var(--success-color);
    min-height: 20px;
}

/* Hide detailed sections to keep the page minimal */
.product-preview,
.features-section,
.dashboard-preview,
.why-section,
.use-cases,
.mission-section,
.cta-section {
    display: none;
}

/* Product Preview */
.product-preview {
    padding: 80px 32px;
    background: var(--bg-secondary);
}

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

.preview-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.preview-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.preview-status {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.preview-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.preview-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.preview-details {
    flex: 1;
}

.preview-user {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-role {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.preview-compliance {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.compliance-item.approved {
    color: var(--success-color);
}

.compliance-icon {
    font-weight: 600;
}

.preview-review {
    margin-bottom: 24px;
}

.review-section {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
}

.review-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.review-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.review-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--pending-color);
}

.review-note {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.review-meta {
    font-size: 13px;
    color: var(--text-tertiary);
}

.preview-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

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

.action-btn.primary:hover {
    background: #333;
}

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

.action-btn.secondary:hover {
    background: var(--bg-secondary);
}

.preview-footer {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 80px 32px;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card > p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 80px 32px;
    background: var(--bg-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.dashboard-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-badge.live {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-activity {
    margin-top: 24px;
}

.activity-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.activity-item {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.compliance-dashboard {
    margin-top: 24px;
}

.compliance-request {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

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

.request-id {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.request-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.request-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.request-details {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.request-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.request-info {
    flex: 1;
}

.request-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.request-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.request-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.request-type {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.request-checks {
    margin-bottom: 16px;
}

.check-item {
    font-size: 14px;
    color: var(--success-color);
    padding: 4px 0;
}

.request-reviewer {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.reviewer-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.request-footer {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Why Section */
.why-section {
    padding: 80px 32px;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-main h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.3;
}

.why-main p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.why-stat {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Use Cases */
.use-cases {
    padding: 80px 32px;
    background: var(--bg-secondary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.use-case-card {
    padding: 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mission Section */
.mission-section {
    padding: 80px 32px;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content blockquote {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    padding: 0;
    border: none;
}

.mission-attribution {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 80px 32px;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-email-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.cta-email-input::placeholder {
    color: var(--text-tertiary);
}

.cta-submit-btn {
    padding: 14px 32px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cta-submit-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.cta-form-message {
    margin-top: 16px;
    font-size: 14px;
    color: var(--success-color);
    min-height: 20px;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-primary);
    padding: 48px 32px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    font-size: 14px;
    color: var(--text-tertiary);
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .product-preview {
        padding: 60px 24px;
    }

    .preview-card {
        padding: 24px;
    }

    .preview-content {
        flex-direction: column;
        gap: 24px;
    }

    .preview-amount {
        font-size: 28px;
    }

    .features-section,
    .dashboard-preview,
    .why-section,
    .use-cases,
    .mission-section,
    .cta-section {
        padding: 60px 24px;
    }

    .features-grid,
    .dashboard-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-cta-form,
    .cta-form {
        flex-direction: column;
    }

    .hero-email-input,
    .cta-email-input {
        min-width: 100%;
    }

    .hero-submit-btn,
    .cta-submit-btn {
        width: 100%;
    }

    .preview-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
}
