@keyframes drift {
    from {
        /* FIX: "fom" → "from" */
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 40px);
    }
}

.wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.page-content {
    flex: 1;
    padding: 40px 0 60px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.page-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blue-dim);
    border: 1px solid var(--border2);
    border-radius: 100px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--mono);
    backdrop-filter: blur(4px);
}

.info-highlight {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-highlight span:first-child {
    font-size: 28px;
}

.info-highlight strong {
    color: #60a5fa;
    font-weight: 600;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--blue-dim);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--border2);
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--border2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-dim);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.65;
}

.feature-list {
    list-style: none;
    margin-bottom: 16px;
}

.feature-list li {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}

.feature-note {
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s;
}

.benefit-item:hover {
    border-color: var(--border2);
}

.benefit-value {
    font-size: 32px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.benefit-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.use-case {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: border-color 0.2s;
}

.use-case:hover {
    border-color: var(--border2);
}

.use-case span {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.use-case p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.example-box {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.example-box p {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
}

.example-box ul {
    list-style: none;
}

.example-box li {
    color: var(--muted);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.example-box li::before {
    content: "→";
    color: var(--blue);
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--blue-dim);
    border: 1px solid var(--border2);
    border-radius: 100px;
    color: #60a5fa;
    font-size: 12px;
    font-weight: 600;
}

.goal-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.goal-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #60a5fa;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 40px;
}

.section-content p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .goal-box {
        padding: 30px 20px;
    }

    .goal-box p {
        font-size: 18px;
    }

    .info-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}