* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: #f8f8f8;
    color: #1a1a1a;
    line-height: 1.6;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo-mini {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-left:hover {
    opacity: 0.8;
}

.brand {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #1a1a1a;
}

.nav-link.active::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

p {
    margin-bottom: 16px;
    color: #333333;
    font-size: 15px;
    line-height: 1.8;
}

.section {
    margin-bottom: 48px;
}

.highlight-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
}

.value-card h3 {
    margin-top: 0;
    font-size: 16px;
}

.value-card p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.feature-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.feature-text div {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.timeline {
    margin: 32px 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid #1a1a1a;
}

.timeline-year {
    font-weight: 700;
    color: #1a1a1a;
    min-width: 60px;
}

.timeline-content {
    flex: 1;
}

.timeline-content p {
    margin-bottom: 0;
}

.cta-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    margin-bottom: 12px;
}

.cta-section p {
    color: #666666;
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn:hover {
    background: #333333;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 24px;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 24px;
    text-align: center;
    color: #999999;
    font-size: 13px;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link.login-btn {
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.nav-link.login-btn:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

.nav-link.signup-btn {
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.nav-link.signup-btn:hover {
    background: #333333;
    border-color: #333333;
}

@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 38px; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 16px; }
    h2 { font-size: 22px; }
    .container { padding: 40px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .highlight-box { padding: 20px; }
    .cta-section { padding: 40px 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; gap: 4px; }
    .cta-section { padding: 32px 16px; }
}
