 :root {
            --primary: #ff2d6f;
            --primary-dark: #c61d58;
            --accent: #4dd0e1;
            --neutral: #f3f5f7;
            --ink: #1f1f29;
            --muted: #5a5a6d;
            --border: #e2e4ec;
            --shadow: rgba(26, 24, 36, 0.08);
            --card-shadow: rgba(26, 24, 36, 0.14);
        }

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

        body {
            font-family: "Inter", "Segoe UI", Roboto, sans-serif;
            background: var(--neutral);
            color: var(--ink);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .nav {
            max-width: 1440px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        .brand i {
            font-size: 1.2rem;
            color: var(--ink);
            margin: 0 0.2rem;
        }

        .brand span {
            color: var(--ink);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--ink);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--muted);
        }

        .nav-meta strong {
            color: var(--ink);
        }

        .hero {
            background: radial-gradient(circle at top left, rgba(255,45,111,0.18), transparent 60%),
                        radial-gradient(circle at right, rgba(77,208,225,0.22), transparent 55%),
                        #0f0f17;
            color: #ffffff;
            padding: 4.5rem 2rem 4rem;
        }

        .hero__inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
            gap: 3rem;
            align-items: center;
        }

        .hero__copy h1 {
            font-size: clamp(2.6rem, 5vw, 3.6rem);
            font-weight: 700;
            line-height: 1.1;
        }

        .hero__copy p {
            margin-top: 1.25rem;
            font-size: 1.05rem;
            color: rgba(255,255,255,0.78);
            max-width: 560px;
        }

        .record-form {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 0.75rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            padding: 0.75rem;
            backdrop-filter: blur(12px);
        }

        .record-form input[type="text"] {
            padding: 0.85rem 1rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(0,0,0,0.25);
            color: #fff;
            font-size: 1rem;
        }

        .record-form input[type="text"]::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .record-form button {
            padding: 0.85rem 1.8rem;
            border-radius: 12px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            box-shadow: 0 16px 32px rgba(255,45,111,0.3);
            transition: transform 0.2s ease;
        }

        .record-form button:hover {
            transform: translateY(-2px);
        }

        .hero__panel {
            background: rgba(18,18,28,0.76);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 1.5rem;
            box-shadow: 0 28px 60px rgba(0,0,0,0.35);
            backdrop-filter: blur(18px);
        }

        .hero__panel h2 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .hero__panel ul {
            list-style: none;
            display: grid;
            gap: 1rem;
        }

        .hero__panel li {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
        }

        .hero__panel li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: rgba(255,255,255,0.08);
            font-size: 1.1rem;
        }

        .page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
        }

        .section {
            margin-top: 3.5rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .section-header p {
            color: var(--muted);
            max-width: 620px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem;
            box-shadow: 0 22px 40px var(--shadow);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .feature-card .icon {
            font-size: 1.6rem;
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--muted);
        }

        .steps {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .step {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem;
            box-shadow: 0 22px 40px var(--shadow);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255,45,111,0.12);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.15rem;
        }

        .stat-bar {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-between;
            box-shadow: 0 22px 40px var(--shadow);
            margin-top: 2.5rem;
        }

        .stat {
            flex: 1;
            min-width: 180px;
        }

        .stat h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat span {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .cta-banner {
            margin-top: 4rem;
            background: linear-gradient(135deg, #0f0f17, #1b1b2d);
            color: #fff;
            border-radius: 22px;
            padding: 3rem;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 32px 60px rgba(15,15,23,0.45);
        }

        .cta-banner h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        .cta-banner p {
            color: rgba(255,255,255,0.75);
            margin-top: 0.75rem;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .cta-actions .primary {
            padding: 0.95rem 2.5rem;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 700;
            display: inline-flex;
            gap: 0.65rem;
            align-items: center;
            justify-content: center;
            box-shadow: 0 22px 40px rgba(255,45,111,0.3);
            text-decoration: none;
        }

        .cta-actions .secondary {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            text-decoration: underline;
        }

        .faq {
            margin-top: 3rem;
        }

        .faq-item {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 18px 36px var(--shadow);
            margin-top: 1.2rem;
        }

        .faq-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
        }

        .faq-item p {
            margin-top: 0.65rem;
            color: var(--muted);
        }

        footer {
            background: #0f0f17;
            color: rgba(255,255,255,0.68);
            padding: 3.5rem 2rem 3rem;
            margin-top: 4rem;
        }

        .footer__inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
        }

        .footer__top {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.78);
        }

        .footer__meta {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
        }

        .footer__meta a {
            color: rgba(77,208,225,0.9);
            text-decoration: none;
        }

        .footer__meta a:hover {
            text-decoration: underline;
        }

        .legal {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .hero__inner {
                grid-template-columns: 1fr;
            }
            .hero__panel {
                max-width: 520px;
            }
            .cta-banner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav {
                justify-content: center;
                text-align: center;
            }
            .nav-left {
                flex-direction: column;
                gap: 1rem;
            }
            .page {
                padding: 2.5rem 1.25rem 3.5rem;
            }
            .record-form {
                grid-template-columns: 1fr;
            }
            .record-form button {
                width: 100%;
            }
        }

        .white {
            color: white !important;
        }