@font-face {
            font-family: 'Etelka';
            font-weight: 400;
            font-style: normal;
            src: url('https://static.tildacdn.com/tild3532-3238-4330-b432-346137343764/EtelkaMediumPro.woff') format('woff');
        }
        @font-face {
            font-family: 'Etelka';
            font-weight: 500;
            font-style: normal;
            src: url('https://static.tildacdn.com/tild3532-3238-4330-b432-346137343764/EtelkaMediumPro.woff') format('woff');
        }
        @font-face {
            font-family: 'Etelka';
            font-weight: 700;
            font-style: normal;
            src: url('https://static.tildacdn.com/tild3165-6638-4930-b862-626535373337/EtelkaMediumPro-Bold.woff') format('woff');
        }

        :root {
            --color-bg-page: #222222;
            --color-bg-card-dark: rgba(14, 14, 14, 0.96);
            --color-bg-card-light: rgba(251, 252, 250, 0.94);
            --color-accent-yellow: #FDE83F;
            --color-text-dark: #0E0E0E;
            --color-text-light: #FBFCFA;
            --color-text-muted: #A0A0A3;
            --color-border: #8B8D95;
            --color-hover-bg: #E8E8E8;
            --color-form-border: #d5d5d5;
            --color-form-bg: #fff;
            --color-form-focus: #0e62f0;
            --color-form-error: #e53935;
            --font-family: 'Etelka', Arial, sans-serif;
            --card-radius: 30px;
            --glass-blur: blur(20px);
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 48px;
            --space-xl: 64px;
        }

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

        html { scroll-behavior: smooth; }

        [id] { scroll-margin-top: 100px; }

        html.modal-open, body.modal-open { overflow: hidden; }

        body {
            font-family: var(--font-family);
            background-color: var(--color-bg-page);
            color: var(--color-text-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* === NAV === */
        .nav {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1620px;
            height: 80px;
            z-index: 100;
            background: var(--color-bg-card-dark);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-radius: 0 0 var(--card-radius) var(--card-radius);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 500;
            letter-spacing: -0.5px;
            color: var(--color-text-light);
            text-decoration: none;
            cursor: pointer;
        }

        .nav-accent-img {
            height: 28px;
            width: auto;
            margin-left: 8px;
            vertical-align: middle;
            opacity: 0;
            max-width: 0;
            transition: opacity 0.3s ease, max-width 0.3s ease;
            mix-blend-mode: screen;
        }

        .nav-accent-img.visible {
            opacity: 0.6;
            max-width: 60px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.4px;
            transition: color 0.2s;
        }

        .nav-link:hover { color: var(--color-text-light); }

        .nav-link:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--color-accent-yellow);
            outline-offset: 2px;
        }

        .btn {
            display: inline-block;
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 16px;
            letter-spacing: -0.4px;
            text-decoration: none;
            border-radius: 5px;
            padding: 12px 28px;
            transition: background-color 0.2s, color 0.2s, border-color 0.2s;
            cursor: pointer;
            border: 1px solid var(--color-border);
        }

        .btn-primary {
            background-color: var(--color-accent-yellow);
            color: var(--color-text-dark);
            border-color: var(--color-accent-yellow);
            font-weight: 700;
        }

        .btn-primary:hover {
            background-color: #FEF755;
            color: var(--color-text-dark);
            border-color: #FEF755;
        }

        .btn-large {
            font-size: 20px;
            padding: 18px 48px;
            letter-spacing: -0.5px;
        }

        /* === LAYOUT === */
        .page-wrap {
            max-width: 1620px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-spacer { height: 20px; }
        .section-spacer-md { height: 32px; }

        /* === QUOTES "Знакомо?" === */
        .quote-list {
            display: flex;
            flex-direction: column;
        }
        .quote-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 28px 0;
            border-bottom: 1px solid rgba(251, 252, 250, 0.08);
        }
        .quote-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .quote-item:first-child {
            padding-top: 0;
        }
        .quote-mark {
            font-size: 48px;
            font-weight: 700;
            color: var(--color-accent-yellow);
            line-height: 1;
            flex-shrink: 0;
        }
        .quote-text {
            font-size: 20px;
            line-height: 1.5;
            color: var(--color-text-light);
            font-weight: 400;
            padding-top: 8px;
        }

        /* === GLASS CARDS === */
        .glass-dark {
            background: var(--color-bg-card-dark);
            border-radius: var(--card-radius);
        }

        .glass-light {
            background: var(--color-bg-card-light);
            border-radius: var(--card-radius);
            color: var(--color-text-dark);
        }

        .card-inner { padding: 60px; }

        .hero-card .card-inner { position: relative; z-index: 1; }

        /* === HERO === */
        .hero-section {
            padding-top: 120px;
        }

        .hero-card {
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            background: #000000;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 65%;
            height: 100%;
            background: url('hero-bg.png') right center / contain no-repeat;
            pointer-events: none;
        }

        .hero-top-label {
            position: absolute;
            top: 40px;
            left: 60px;
            font-size: 16px;
            font-weight: 500;
            color: var(--color-text-muted);
            letter-spacing: -0.4px;
            text-transform: uppercase;
            z-index: 2;
        }

        .hero-date {
            color: var(--color-text-light);
        }

        .hero-title {
            font-size: 76px;
            font-weight: 700;
            letter-spacing: -0.8px;
            line-height: 1.1;
            color: var(--color-text-light);
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 36px;
            font-weight: 500;
            letter-spacing: -0.2px;
            line-height: 1.1;
            color: var(--color-text-light);
            margin-bottom: 40px;
        }

        .hero-meta {
            font-size: 20px;
            font-weight: 500;
            color: var(--color-text-muted);
            letter-spacing: -0.5px;
        }

        /* === TWO-COL LAYOUT === */
        .two-col {
            display: flex;
            gap: 20px;
            align-items: stretch;
        }

        .col-how {
            flex: 7;
            display: flex;
        }

        .col-how > * {
            flex: 1;
        }

        .col-speaker {
            flex: 3;
            display: flex;
        }

        .col-speaker > * {
            flex: 1;
        }

        /* === SECTION HEADINGS === */
        .section-title {
            font-size: 54px;
            font-weight: 700;
            letter-spacing: -0.8px;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        .signal-accent {
            width: 150px;
            height: auto;
            display: block;
            margin-bottom: 20px;
            mix-blend-mode: screen;
        }

        .glass-light .signal-accent {
            mix-blend-mode: multiply;
        }

        .hero-card .signal-accent {
            position: absolute;
            top: 30px;
            left: 60px;
            width: 120px;
            margin-bottom: 0;
            z-index: 2;
        }

        .section-title.accented::before {
            display: none;
        }

        .section-title-sm {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.4px;
            line-height: 1.1;
            margin-bottom: 32px;
        }

        /* === TEXT === */
        .text-body {
            font-size: 20px;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.4;
        }

        .text-default {
            font-size: 19px;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.4;
        }

        .text-sm {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: -0.4px;
            line-height: 1.55;
        }

        .text-muted { color: var(--color-text-muted); }
        .text-light { color: var(--color-text-light); }
        .text-dark { color: var(--color-text-dark); }

        .desc-right p,
        .feature-list li,
        .faq-a,
        .speaker-bio { max-width: 65ch; }

        /* === DESCRIPTION BLOCK === */
        .desc-two-col {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        .desc-left {
            flex: 4;
        }

        .desc-left .desc-noise {
            font-size: 18px;
            font-weight: 400;
            letter-spacing: -0.4px;
            line-height: 1.5;
            color: var(--color-text-muted);
            margin-bottom: 20px;
        }

        .desc-left .desc-signal {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            color: var(--color-text-light);
            margin-bottom: 0;
        }

        .desc-right {
            flex: 6;
        }

        .desc-right p {
            font-size: 24px;
            font-weight: 500;
            letter-spacing: -0.5px;
            line-height: 1.4;
            color: var(--color-text-light);
            margin-bottom: 20px;
        }

        .desc-right .joke {
            color: var(--color-text-muted);
            font-style: italic;
            font-size: 16px;
        }

        /* === LIST === */
        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-list li {
            font-size: 19px;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.4;
            padding-left: 20px;
            position: relative;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-accent-yellow);
        }

        .feature-list.dark li { color: var(--color-text-dark); }
        .feature-list.dark li::before { background: var(--color-text-dark); }
        .feature-list.light li { color: var(--color-text-light); }

        /* === HOW IT WORKS GROUPS === */
        .how-group { margin-bottom: 28px; }
        .how-group:last-child { margin-bottom: 0; }
        .how-group-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-accent-yellow);
            letter-spacing: -0.3px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        /* === MODULE CARDS === */
        .module-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .module-card {
            border-radius: 20px;
            padding: 36px 40px;
            background: rgba(251, 252, 250, 0.06);
            transition: background 0.2s;
            display: flex;
            gap: 0;
        }

        .module-card:hover {
            background: rgba(255, 247, 5, 0.06);
        }

        .module-card.secret {
            background: rgba(255, 247, 5, 0.06);
            border: 1px solid rgba(255, 247, 5, 0.15);
        }

        .module-card.secret:hover {
            background: rgba(255, 247, 5, 0.1);
        }

        .module-meta {
            width: 160px;
            flex-shrink: 0;
            padding-right: 32px;
        }

        .module-main {
            flex: 1;
            border-left: 1px solid rgba(251, 252, 250, 0.08);
            padding-left: 32px;
        }

        .module-right {
            width: 280px;
            flex-shrink: 0;
            border-left: 1px solid rgba(251, 252, 250, 0.08);
            padding-left: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .module-right-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--color-text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .module-right-item {
            font-size: 15px;
            font-weight: 500;
            letter-spacing: -0.3px;
            line-height: 1.45;
            color: var(--color-text-light);
            padding-left: 16px;
            position: relative;
            margin-bottom: 8px;
        }

        .module-right-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--color-accent-yellow);
        }

        .module-right-item:last-child { margin-bottom: 0; }

        .module-num {
            font-size: 14px;
            font-weight: 700;
            color: var(--color-accent-yellow);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .module-date {
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text-muted);
            letter-spacing: -0.2px;
        }

        .module-name {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: -0.6px;
            line-height: 1.1;
            margin-bottom: 12px;
            color: var(--color-text-light);
        }

        .module-desc {
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.4px;
            line-height: 1.5;
            color: var(--color-text-muted);
        }

        .module-desc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .module-desc-list li {
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.4px;
            line-height: 1.5;
            color: var(--color-text-muted);
            padding-left: 16px;
            position: relative;
        }

        .module-desc-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--color-text-muted);
            opacity: 0.5;
        }

        /* === TAKEAWAY GRID === */
        .takeaway-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .takeaway-item {
            background: rgba(251, 252, 250, 0.06);
            border-radius: 20px;
            padding: 28px 32px;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: -0.5px;
            line-height: 1.4;
            color: var(--color-text-light);
            display: flex;
            gap: 12px;
        }

        .takeaway-item::before {
            content: '✓';
            font-size: 16px;
            font-weight: 700;
            color: var(--color-accent-yellow);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .glass-light .takeaway-item {
            background: rgba(14, 14, 14, 0.05);
            color: var(--color-text-dark);
        }

        .glass-light .takeaway-item::before {
            color: var(--color-text-dark);
        }
        /* === PRICE === */
        .price-card {
            background: #000000;
            border-radius: var(--card-radius);
            overflow: hidden;
        }

        .price-layout {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-top: 32px;
        }

        .price-bg {
            flex: 7;
            min-height: 400px;
            background: url('hero-bg.png') right center / cover no-repeat;
        }

        .price-content {
            flex: 3;
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .price-tag {
            font-size: 56px;
            font-weight: 700;
            color: var(--color-accent-yellow);
            letter-spacing: -0.8px;
            margin-bottom: 16px;
        }

        .price-note {
            font-size: 18px;
            font-weight: 400;
            color: var(--color-text-muted);
            letter-spacing: -0.4px;
            line-height: 1.5;
            margin: 0 0 16px;
            max-width: 420px;
        }

        /* === FAQ === */
        .faq-item {
            border-bottom: 1px solid rgba(251, 252, 250, 0.08);
            padding: 32px 0;
        }

        .faq-item:last-child { border-bottom: none; }

        .faq-q {
            font-size: 22px;
            font-weight: 500;
            letter-spacing: -0.5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-q::after {
            content: '+';
            font-size: 24px;
            color: var(--color-accent-yellow);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item.open .faq-q::after {
            transform: rotate(45deg);
        }

        .faq-a {
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.4px;
            line-height: 1.55;
            color: var(--color-text-muted);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, margin 0.3s ease;
            margin-top: 0;
        }

        .faq-item.open .faq-a {
            max-height: 500px;
            margin-top: 12px;
        }

        /* === SPEAKER === */
        .speaker-name {
            font-size: 30px;
            font-weight: 500;
            letter-spacing: -0.6px;
            margin-bottom: 8px;
        }

        .speaker-role {
            font-size: 17px;
            font-weight: 500;
            color: var(--color-text-muted);
            letter-spacing: -0.4px;
            margin-bottom: 20px;
        }

        .speaker-link {
            color: inherit;
            text-decoration: underline;
            text-underline-offset: 3px;
            cursor: pointer;
        }
        .speaker-link:hover { opacity: 0.7; }

        .bio-modal { max-width: 700px; padding: 48px; }
        .bio-heading {
            font-size: 28px;
            font-weight: 700;
            color: var(--color-text-light);
            margin-bottom: 24px;
        }
        .bio-text p {
            font-size: 17px;
            line-height: 1.6;
            color: var(--color-text-muted);
            margin-bottom: 16px;
        }
        .bio-text p:last-child { margin-bottom: 0; }

        .bio-photo {
            float: left;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 24px 16px 0;
        }

        .speaker-photo {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .speaker-bio {
            font-size: 19px;
            font-weight: 400;
            letter-spacing: -0.5px;
            line-height: 1.5;
            color: var(--color-text-muted);
        }

        /* === FOOTER === */
        .footer {
            text-align: center;
            padding: 60px 0;
            color: var(--color-text-muted);
        }

        .footer a {
            color: var(--color-text-muted);
            text-decoration: none;
            margin: 0 16px;
            transition: color 0.2s;
        }

        .footer a:hover { color: var(--color-text-light); }

        .footer-logo {
            height: 32px;
            width: auto;
            margin-bottom: 20px;
            opacity: 0.5;
            transition: opacity 0.2s;
        }

        .footer-logo:hover { opacity: 0.8; }

        /* === HERO LOGIN BUTTON === */
        .hero-login {
            position: absolute;
            bottom: 40px;
            right: 60px;
            z-index: 2;
            background: rgba(251, 252, 250, 0.1);
            color: var(--color-text-muted);
            border: 1px solid rgba(251, 252, 250, 0.2);
            font-size: 15px;
            padding: 10px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .hero-login:hover {
            background: rgba(251, 252, 250, 0.18);
            color: var(--color-text-light);
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .hero-bg { width: 55%; }
            .nav { padding: 0 24px; border-radius: 0 0 20px 20px; }
            .card-inner { padding: 40px; }
            .hero-title { font-size: 54px; letter-spacing: -0.6px; }
            .hero-subtitle { font-size: 28px; }
            .section-title { font-size: 42px; letter-spacing: -0.6px; }
            .two-col { flex-direction: column; }
            .hero-login { bottom: 40px; right: 40px; }
        }

        @media (max-width: 768px) {
            .signal-accent { width: 100px; }
            .hero-card .signal-accent { width: 80px; top: 20px; left: 28px; }
            .hero-bg {
                position: static;
                width: 100%;
                height: 200px;
                background-size: cover;
                background-position: center;
                margin-bottom: -40px;
            }
            .hero-top-label { top: 24px; left: 28px; font-size: 14px; }
            .page-wrap { padding: 0 10px; }
            .nav { height: 64px; padding: 0 16px; }
            .nav-hide-mobile { display: none; }
            .nav-link { font-size: 14px; }
            .nav-right { gap: 16px; }
            .card-inner { padding: 28px; }
            .hero-section { padding-top: 90px; }
            .hero-card { min-height: 500px; }
            .hero-title { font-size: 40px; letter-spacing: -0.4px; }
            .hero-subtitle { font-size: 22px; letter-spacing: -0.2px; }
            .section-title { font-size: 32px; letter-spacing: -0.4px; }
            .section-title-sm { font-size: 28px; }
            .takeaway-grid { grid-template-columns: 1fr; }
            .module-card { flex-direction: column; gap: 0; padding: 24px 28px; }
            .module-meta { width: 100%; padding-right: 0; padding-bottom: 12px; display: flex; gap: 12px; align-items: baseline; }
            .module-main { border-left: none; padding-left: 0; border-top: 1px solid rgba(251, 252, 250, 0.08); padding-top: 16px; }
            .module-right { width: 100%; border-left: none; padding-left: 0; border-top: 1px solid rgba(251, 252, 250, 0.08); padding-top: 16px; margin-top: 16px; }

            .desc-two-col { flex-direction: column; gap: 24px; }
            .desc-left .desc-signal { font-size: 20px; }
            .desc-right p { font-size: 20px; }
            .module-name { font-size: 24px; }
            .price-layout { flex-direction: column; gap: 24px; }
            .price-bg { display: none; }
            .price-content { text-align: left; align-items: flex-start; }
            .price-tag { font-size: 40px; }
            .faq-q { font-size: 19px; }
            #speaker .card-inner { flex-direction: column; text-align: center; }
            .speaker-photo { width: 120px; height: 120px; margin: 0 auto; }
            .nav-accent-img { display: none; }
            .btn-large { font-size: 17px; padding: 16px 36px; }
            .hero-login {
                position: static;
                display: inline-block;
                margin-top: 24px;
            }
        }

        /* === MODAL === */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 200;
            align-items: center;
            justify-content: center;
            overscroll-behavior: contain;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--color-bg-card-dark);
            color: var(--color-text-light);
            border: 1px solid rgba(251, 252, 250, 0.15);
            box-shadow: 0 0 80px rgba(253, 232, 63, 0.12), 0 0 2px rgba(251, 252, 250, 0.25);
            border-radius: 20px;
            max-width: 700px;
            width: calc(100% - 40px);
            max-height: 90vh;
            overflow-y: auto;
            padding: 56px;
            position: relative;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .modal::-webkit-scrollbar {
            display: none;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--color-text-muted);
            cursor: pointer;
            font-family: var(--font-family);
            line-height: 1;
        }

        .modal-close:hover { color: var(--color-text-light); }

        .modal h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.6px;
            margin-bottom: 12px;
            color: var(--color-text-light);
        }

        .modal-subtitle {
            font-size: 18px;
            color: var(--color-text-muted);
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 17px;
            font-weight: 500;
            letter-spacing: -0.3px;
            margin-bottom: 8px;
            color: var(--color-text-light);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            font-family: var(--font-family);
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.3px;
            padding: 14px 18px;
            border: 1px solid rgba(251, 252, 250, 0.15);
            border-radius: 10px;
            background: rgba(251, 252, 250, 0.06);
            color: var(--color-text-light);
            outline: none;
            transition: border-color 0.2s;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-input::placeholder,
        .form-select::placeholder,
        .form-textarea::placeholder {
            color: var(--color-text-muted);
        }

        .form-select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .form-select option {
            background: #1a1a1a;
            color: var(--color-text-light);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--color-accent-yellow);
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-hint {
            font-size: 13px;
            color: var(--color-text-muted);
            margin-top: 6px;
            line-height: 1.4;
        }

        .form-checkboxes {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: -0.3px;
            color: var(--color-text-light);
            cursor: pointer;
            line-height: 1.4;
        }

        .form-checkbox-label input {
            margin-top: 3px;
            flex-shrink: 0;
        }

        .form-submit {
            width: 100%;
            font-family: var(--font-family);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.4px;
            padding: 18px;
            border: none;
            border-radius: 10px;
            background: var(--color-accent-yellow);
            color: var(--color-text-dark);
            cursor: pointer;
            transition: background 0.2s;
        }

        .form-submit:hover {
            background: #FEF755;
        }

        .form-input.error,
        .form-select.error,
        .form-textarea.error {
            border-color: var(--color-form-error);
        }

        .form-error {
            font-size: 13px;
            color: var(--color-form-error);
            margin-top: 6px;
            display: none;
        }

        .form-error.visible {
            display: block;
        }

        .form-submit.loading {
            opacity: 0.6;
            cursor: wait;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 0;
        }

        .form-success.visible {
            display: block;
        }

        .form-success-icon {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .form-success h3 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: var(--color-text-light);
        }

        .form-success p {
            font-size: 16px;
            color: var(--color-text-muted);
            line-height: 1.5;
        }

        .form-success-actions {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        .form-success-actions .btn {
            width: 100%;
            max-width: 360px;
            text-align: center;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .share-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .btn-ghost {
            background: transparent;
            color: var(--color-text-muted);
            border-color: transparent;
            font-weight: 500;
        }
        .btn-ghost:hover {
            color: var(--color-text-light);
            background: rgba(251, 252, 250, 0.06);
        }

        @media (max-width: 768px) {
            .modal { padding: 28px; border-radius: 16px; }
            .modal h2 { font-size: 24px; }
        }
    

        .offset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
        .offset-block { position: relative; border: 1px solid rgba(251,252,250,0.06); border-radius: 20px; padding: 48px; background: rgba(251,252,250,0.03); transition: border-color 0.3s, background 0.3s; }
        .offset-block:hover { border-color: rgba(253,232,63,0.15); background: rgba(251,252,250,0.05); }
        .offset-block:nth-child(2) { margin-top: 6rem; }
        .offset-accent { width: 80px; height: auto; display: block; margin-bottom: 20px; mix-blend-mode: screen; opacity: 0.4; }
        .offset-title { font-size: 30px; font-weight: 700; color: var(--color-accent-yellow); letter-spacing: -0.6px; margin-bottom: 8px; }
        .offset-sub { font-size: 14px; color: var(--color-text-muted); margin-bottom: 28px; }
        .offset-bullets { list-style: none; border-left: 2px solid rgba(253,232,63,0.2); padding-left: 24px; display: flex; flex-direction: column; gap: 16px; }
        .offset-bullets li { font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--color-text-light); opacity: 0.85; }
        @media (max-width: 768px) { .offset-grid { grid-template-columns: 1fr; } .offset-block:nth-child(2) { margin-top: 0; } .offset-block { padding: 28px; } }

        /* === CONFERENCE BANNERS === */
        .conf-banner-link { display: block; border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
        .conf-banner-link:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
        .conf-block:nth-child(2) { margin-top: 6rem; }
        .conf-banner { width: 100%; height: auto; display: block; }
        .conf-desc { font-size: 20px; line-height: 1.5; color: var(--color-text-muted); margin: 20px 0; }
        .conf-desc a { color: var(--color-text-light); text-decoration: underline; text-underline-offset: 3px; }
        .conf-desc a:hover { color: var(--color-accent-yellow); }
        @media (max-width: 768px) { .conf-block:nth-child(2) { margin-top: 0; } }

        /* === COUNTDOWN BANNER === */
        .countdown-banner {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1620px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 14px 40px;
            background: rgba(14, 14, 14, 0.78);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-radius: var(--card-radius) var(--card-radius) 0 0;
            color: var(--color-text-light);
            text-decoration: none;
            font-family: var(--font-family);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .countdown-banner.hidden {
            transform: translateX(-50%) translateY(110%);
            opacity: 0;
            pointer-events: none;
        }
        .countdown-banner:hover {
            background: rgba(14, 14, 14, 0.88);
        }
        .countdown-label {
            font-size: 16px;
            color: var(--color-text-muted);
            letter-spacing: 0.01em;
            flex: 1;
        }
        .banner-cta {
            display: inline-block;
            background: var(--color-accent-yellow);
            color: var(--color-text-dark);
            padding: 10px 28px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 15px;
            white-space: nowrap;
        }
        @media (max-width: 1024px) {
            .countdown-banner { padding: 10px 24px; gap: 12px; border-radius: 20px 20px 0 0; }
            .countdown-label { font-size: 14px; }
            .banner-cta { padding: 8px 20px; font-size: 14px; }
        }
        @media (max-width: 480px) {
            .countdown-banner { flex-direction: column; text-align: center; gap: 8px; }
            .banner-cta { width: 100%; text-align: center; }
        }
        body.has-countdown .cookie-notice {
            bottom: calc(24px + 76px);
        }
        @media (max-width: 640px) {
            body.has-countdown .cookie-notice {
                bottom: calc(24px + 64px);
            }
        }

        /* === COOKIE NOTICE === */
        .cookie-notice {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: rgba(14, 14, 14, 0.95);
            border: 1px solid rgba(253, 232, 63, 0.25);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 1000;
            font-size: 15px;
            line-height: 1.4;
            color: var(--color-text-light);
            max-width: 400px;
            backdrop-filter: var(--glass-blur);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .cookie-notice a { color: var(--color-text-muted); text-decoration: underline; }
        .cookie-notice a:hover { color: var(--color-text-light); }
        .cookie-ok {
            background: rgba(251, 252, 250, 0.12);
            color: var(--color-text-light);
            border: 1px solid rgba(251, 252, 250, 0.2);
            border-radius: 10px;
            padding: 8px 20px;
            font-size: 15px;
            font-family: var(--font-family);
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
        }
        .cookie-ok:hover { background: rgba(251, 252, 250, 0.2); }

