        :root {
            --bg: #f4f7fb;
            --card: #ffffff;
            --text: #0f172a;
            --muted: #475569;
            --line: #dbe6f3;
            --accent: #0f766e;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: linear-gradient(180deg, #eef5ff 0%, var(--bg) 44%);
            color: var(--text);
            font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.58;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 28px 18px 56px;
        }

        .hero, .section, .links {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 20px;
        }

        .section, .links {
            margin-top: 14px;
        }

        .badge {
            display: inline-block;
            border-radius: 999px;
            background: #d1fae5;
            color: #065f46;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 6px 10px;
            margin-bottom: 10px;
        }

        .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .stage-badge {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 10px;
        }

        .stage-badge--tofu {
            color: #155e75;
            background: #cffafe;
            border: 1px solid #67e8f9;
        }

        .stage-badge--mofu {
            color: #92400e;
            background: #fef3c7;
            border: 1px solid #fde68a;
        }

        .stage-badge--bofu {
            color: #14532d;
            background: #dcfce7;
            border: 1px solid #86efac;
        }

        h1 {
            margin: 0 0 10px;
            font-size: clamp(1.55rem, 4vw, 2.2rem);
            line-height: 1.2;
        }

        h2 {
            margin: 0 0 10px;
            font-size: 1.22rem;
        }

        p {
            margin: 0;
            color: var(--muted);
        }

        .query-list {
            margin: 10px 0 0;
            padding-left: 18px;
            color: var(--muted);
        }

        .meta-line {
            margin-top: 8px;
            font-size: 0.82rem;
            color: #64748b;
        }

        .section p {
            margin-bottom: 10px;
        }

        .section ul {
            margin: 0;
            padding-left: 18px;
            color: var(--muted);
        }

        .section-cta {
            border: 1px solid #99f6e4;
            background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
        }

        .primary-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 12px;
            border-radius: 10px;
            padding: 10px 16px;
            text-decoration: none;
            font-weight: 700;
            color: #ffffff;
            background: #0f766e;
            border: 1px solid #0f766e;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .primary-cta:hover {
            transform: translateY(-1px);
            background: #115e59;
            border-color: #115e59;
        }

        .links ul {
            margin: 0;
            padding-left: 18px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 10px;
        }

        .nav-button {
            display: block;
            border: 1px solid #9bd3ca;
            border-radius: 12px;
            padding: 12px;
            text-decoration: none;
            color: #0f172a;
            background: linear-gradient(135deg, #f0fdfa 0%, #d1fae5 100%);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .nav-button:hover {
            transform: translateY(-1px);
            border-color: #0f766e;
        }

        .nav-button strong {
            display: block;
            margin-bottom: 4px;
            font-size: 0.98rem;
        }

        .nav-button small {
            color: #334155;
        }

        .share-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 10px;
            margin-top: 12px;
        }

        .share-button {
            display: block;
            border: 1px solid #8ecfc4;
            border-radius: 12px;
            padding: 12px;
            text-decoration: none;
            color: #0f172a;
            background: linear-gradient(135deg, #e8fffb 0%, #d6f4ee 100%);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .share-button:hover {
            transform: translateY(-1px);
            border-color: #0f766e;
        }

        .share-button strong {
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        .share-button small {
            color: #334155;
        }

        .share-button--telegram {
            border-color: #7dd3fc;
            background: linear-gradient(135deg, #ecfeff 0%, #e0f2fe 100%);
        }

        .share-button--x {
            border-color: #cbd5e1;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .share-button--vk {
            border-color: #93c5fd;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        }

        .steps {
            margin: 0;
            padding-left: 20px;
            display: grid;
            gap: 10px;
        }

        .steps li h3 {
            margin: 0 0 4px;
            font-size: 1rem;
        }

        .steps li p {
            margin: 0;
            color: var(--muted);
        }

        .faq details {
            border-top: 1px solid var(--line);
            padding: 10px 0;
        }

        .faq details:first-child {
            border-top: 0;
            padding-top: 0;
        }

        .faq summary {
            cursor: pointer;
            font-weight: 700;
            list-style: none;
        }

        .faq summary::-webkit-details-marker {
            display: none;
        }

        .faq p {
            margin: 8px 0 0;
            color: var(--muted);
        }

        a {
            color: var(--accent);
        }
