:root {
    --ci-primary: #0C4F50;
    --ci-primary-hover: #093a3b;
    --ci-dark: #000000;
    --ci-muted: #737373;
    --ci-surface: #FFFFFF;
    --ci-bg: #F9FAFB;
    --ci-border: #E5E7EB;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.02);
    --shadow-glass: 0 20px 40px -10px rgb(0 0 0 / 0.05), 0 1px 3px 0 rgb(0 0 0 / 0.02);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--ci-bg);
    color: var(--ci-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 32px 0;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.logo-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--ci-primary);
    background: rgba(12, 79, 80, 0.08);
    padding: 6px 12px;
    border-radius: 100px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 80px;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ci-surface);
    border: 1px solid var(--ci-border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ci-muted);
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ci-primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--ci-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(3); opacity: 0; }
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 800px;
}

.text-accent {
    color: var(--ci-primary);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--ci-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--ci-primary);
    color: var(--ci-surface);
    box-shadow: 0 4px 14px 0 rgba(12, 79, 80, 0.25);
}

.btn-primary:hover {
    background-color: var(--ci-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(12, 79, 80, 0.23);
}

.trust-note {
    font-size: 13px;
    color: var(--ci-muted);
}

/* Graphic */
.hero-graphic {
    margin-top: 80px;
    width: 100%;
    max-width: 700px;
    perspective: 1000px;
}

.mockup-window {
    background: var(--ci-surface);
    border: 1px solid var(--ci-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    text-align: left;
}

.mockup-header {
    background: #fdfdfd;
    border-bottom: 1px solid var(--ci-border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e4e9;
}

.mockup-title {
    font-size: 12px;
    color: var(--ci-muted);
    font-family: monospace;
}

.mockup-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.code-line {
    height: 12px;
    border-radius: 6px;
    background: #f0f1f4;
}

.skeleton-1 { width: 40%; }
.skeleton-2 { width: 75%; }
.skeleton-3 { width: 55%; margin-bottom: 16px; }

.status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(12, 79, 80, 0.05);
    border: 1px dashed rgba(12, 79, 80, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ci-primary);
    font-weight: 500;
    align-self: flex-start;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.feature-card {
    background: var(--ci-surface);
    border: 1px solid var(--ci-border);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 12px;
    font-weight: 600;
    color: var(--ci-primary);
    margin-bottom: 16px;
    background: rgba(12, 79, 80, 0.08);
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 4px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--ci-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    .hero-graphic {
        margin-top: 40px;
    }
    .mockup-body {
        padding: 20px;
    }
}
