:root {
            --bg-page: #f5f7fb;
            --bg-hero: #0f64b5;
            --accent: #008fd3;
            --text-main: #111827;
            --text-muted: #6b7280;
            --radius-hero: 26px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Inter", sans-serif;
            background: var(--bg-page);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px 16px 32px;
        }

        .hero-wrapper {
            width: 100%;
            max-width: 1040px;
            display: flex;
            justify-content: center;
        }

        .hero-card {
            width: 100%;
            background: var(--bg-hero);
            border-radius: var(--radius-hero);
            padding: 24px 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 0 0, rgba(255,255,255,0.25), transparent 55%),
                        radial-gradient(circle at 100% 100%, rgba(0,0,0,0.35), transparent 60%);
            opacity: 0.45;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            max-width: 880px;
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
        }

        .hero-text {
            color: #f9fafb;
            flex: 1;
        }

        .hero-title {
            font-size: 24px;
            font-weight: 600;
            margin: 0 0 6px;
        }

        .hero-subtitle {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

        .hero-image {
            flex: 1.1;
            display: flex;
            justify-content: center;
        }

        .hero-image-placeholder {
            width: 100%;
            max-width: 380px;
            aspect-ratio: 4 / 3;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: #e5e7eb;
            text-align: center;
            padding: 12px;
        }

        .hero-image-placeholder span {
            display: block;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            display: block;
        }

        .content {
            margin-top: 32px;
            width: 100%;
            max-width: 720px;
            text-align: center;
        }

        .logo-row {
            
            align-items: center;
            margin-bottom: 2rem;
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: #008fd3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
            font-size: 18px;
        }

        .logo-text-main {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .logo-text-sub {
            font-size: 12px;
            color: var(--text-muted);
        }

        .headline {
            margin: 12px 0 6px;
            font-size: 22px;
            font-weight: 500;
        }

        .description {
            margin: 0;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .cta-row {
            margin-top: 18px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 999px;
            border: none;
            background: var(--accent);
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-primary span.arrow {
            font-size: 16px;
            transform: translateY(1px);
        }

        .page-footer {
            text-align: center;
            padding: 0 16px 16px;
            font-size: 11px;
            color: #9ca3af;
        }

        @media (max-width: 768px) {
            .hero-card {
                padding: 20px 16px;
            }

            .hero-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-image {
                width: 100%;
            }

            .content {
                margin-top: 24px;
            }
        }
