        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1f2937;
            background: #ffffff;
            overflow-x: hidden;
            padding-top: 72px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: box-shadow 0.3s;
        }
        .header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            height: 72px;
        }
        .header-logo {
            display: flex; align-items: center; gap: 10px;
            font-weight: 800; font-size: 1.35rem;
        }
        .header-logo img { height: 36px; width: auto; }
        .header-nav { display: flex; align-items: center; gap: 12px; }
        .btn-outline {
            padding: 10px 24px; border-radius: 12px; font-weight: 600; font-size: 0.9rem;
            border: 2px solid #4F46E5; color: #4F46E5;
            transition: all 0.3s; background: transparent;
        }
        .btn-outline:hover { background: #4F46E5; color: #fff; transform: scale(1.03); }
        .btn-primary {
            padding: 12px 32px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
            background: #4F46E5; color: #fff; border: none;
            transition: all 0.3s; cursor: pointer; display: inline-block;
        }
        .btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(79,70,229,0.35); }

        main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
        .cad-wrapper {
            width: 100%;
            max-width: 440px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .cad-title {
            text-align: center;
        }
        .cad-title h1 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 8px;
        }
        .cad-title p {
            color: #6b7280;
            font-size: 0.95rem;
        }
        .cad-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .cad-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #374151;
        }
        .form-group input {
            padding: 14px 16px;
            border-radius: 12px;
            border: 1.5px solid #e5e7eb;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.2s;
            outline: none;
            background: #F9FAFB;
        }
        .form-group input:focus {
            border-color: #4F46E5;
            background: #fff;
        }
        .password-group {
            position: relative;
        }
        .password-group input {
            width: 100%;
            padding-right: 44px;
        }
        .toggle-pass {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 1.2rem;
            color: #9CA3AF;
            user-select: none;
            background: none;
            border: none;
            padding: 4px;
        }
        .toggle-pass:hover { color: #4F46E5; }
        .cad-form .btn-primary {
            width: 100%;
            padding: 14px;
            font-size: 1rem;
            margin-top: 4px;
        }
        .cad-divider {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #9CA3AF;
            font-size: 0.85rem;
        }
        .cad-divider::before,
        .cad-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e5e7eb;
        }
        .cad-footer {
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        .cad-footer a {
            color: #4F46E5;
            font-weight: 600;
        }
        .cad-footer a:hover { text-decoration: underline; }
        .terms {
            font-size: 0.75rem;
            color: #9CA3AF;
            text-align: center;
            line-height: 1.5;
            margin-top: 8px;
        }

        .footer {
            background: #111827; color: #fff; padding: 48px 0 32px;
        }
        .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
        .footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
        .footer-links a { color: #9CA3AF; font-size: 0.9rem; transition: color 0.2s; }
        .footer-links a:hover { color: #fff; }
        .footer-copy { color: #6b7280; font-size: 0.85rem; text-align: center; }

        @media (max-width: 768px) {
            body { padding-top: 64px; }
            .header-inner { height: 64px; }
            .cad-card { padding: 28px 20px; }
        }
