:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.4px;
  --line-height-base: 1.38;

  --max-w: 1140px;
  --space-x: 0.64rem;
  --space-y: 0.76rem;
  --gap: 0.67rem;

  --radius-xl: 0.92rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.08);

  --overlay: rgba(10, 12, 18, 0.75);
  --anim-duration: 120ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #00e5ff;
  --brand-contrast: #0a0c12;
  --accent: #00bcd4;
  --accent-contrast: #0a0c12;

  --neutral-0: #0a0c12;
  --neutral-100: #141820;
  --neutral-300: #2a2f3a;
  --neutral-600: #6b7280;
  --neutral-800: #d1d5db;
  --neutral-900: #f3f4f6;

  --bg-page: #0a0c12;
  --fg-on-page: #e5e7eb;

  --bg-alt: #141820;
  --fg-on-alt: #d1d5db;

  --surface-1: #1a1e28;
  --surface-2: #242836;
  --fg-on-surface: #e5e7eb;
  --border-on-surface: #2a2f3a;

  --surface-light: #1e2230;
  --fg-on-surface-light: #d1d5db;
  --border-on-surface-light: #374151;

  --bg-primary: #00bcd4;
  --fg-on-primary: #0a0c12;
  --bg-primary-hover: #00e5ff;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #0a0c12;
  --bg-accent-hover: #00e5ff;

  --link: #00bcd4;
  --link-hover: #00e5ff;

  --gradient-hero: linear-gradient(135deg, #0a0c12 0%, #141820 50%, #1a1e28 100%);
  --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #00e5ff 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

.values-board-l8 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-board-l8__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-board-l8__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

    .values-board-l8__board p {
        margin: 0;
        color: var(--neutral-600);
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.next-ux27{padding:clamp(56px,8vw,96px) clamp(16px,4vw,40px);background:var(--neutral-100);color:var(--neutral-900)}
.next-ux27__wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:12px}
.next-ux27__head h2{margin:0;font-size:clamp(28px,4vw,42px)}
.next-ux27__head p{margin:8px 0 0;color:var(--neutral-600)}
.next-ux27__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}
.next-ux27__grid article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}
.next-ux27__grid h3{margin:0 0 6px}
.next-ux27__grid a{color:var(--link);text-decoration:none}
.next-ux27__stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px}
.next-ux27__stats div{border:1px solid var(--neutral-300);border-radius:var(--radius-md);padding:10px;background:var(--neutral-0)}
.next-ux27__stats strong{display:block;font-size:1.05rem}
.next-ux27__stats span{color:var(--neutral-600)}

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .visual-film-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.post-list {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-list .post-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

    .post-list p {
        color: var(--neutral-600);
        margin: 0;
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.post-item--light-v6 {
        padding: 48px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .post-item__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .post-item__inner h1 {
        margin: 0 0 4px;
        font-size: clamp(24px,4vw,32px);
    }

    .post-item__meta {
        margin: 0 0 8px;
        font-size: 0.85rem;
        color: var(--neutral-600);
    }

    .post-item__lead {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.author {

        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .author .author__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .author .author__content {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: flex-start;
    }

    .author .author__image {
        flex-shrink: 0;
        width: clamp(120px, 18vw, 180px);
        height: clamp(120px, 18vw, 180px);
        border-radius: 50%;
        overflow: hidden;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    .author .author__contacts a {
        color: var(--link);
        text-decoration: none;
        font-size: clamp(14px, 2vw, 16px);
    }

    .author .author__contacts a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 768px) {
        .author .author__content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.post-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.post-item {

        color: var(--fg-on-page);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

    .clarifications-l1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .clarifications-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--neutral-900);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--neutral-900);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.article-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.article-list__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.article-list__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.article-list__list {
    display: grid;
    gap: 12px;
}

.article-list__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.article-list__row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.article-list__row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.faq-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

    .faq-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .faq-layout-e .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.connect {
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u3 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u3 article,.contacts-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u3 p{margin:0} .contacts-u3 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u3 .acc{display:grid;gap:.5rem} .contacts-u3 details{padding:.82rem .9rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .contacts-u3 summary{cursor:pointer;font-weight:700} .contacts-u3 details p{margin:.35rem 0 0} .contacts-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u3 .split,.contacts-u3 .media,.contacts-u3 .grid,.contacts-u3 .cards,.contacts-u3 .bento,.contacts-u3 .foot{grid-template-columns:1fr}}

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-lv4__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .support-lv4__wrap a {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .support-lv4__wrap a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .form-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u7 .sub{margin:.35rem 0 0;opacity:.9;} .form-u7 .panel,.form-u7 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u7 form{display:grid;gap:.75rem} .form-u7 .field{display:grid;gap:.28rem} .form-u7 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u7 input,.form-u7 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u7 input:focus,.form-u7 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u7 textarea{min-height:120px;resize:vertical} .form-u7 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u7 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u7 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u7 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u7 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u7 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u7 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u7 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u7 .media img,.form-u7 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u7 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u7 .full{grid-column:1/-1} @media (max-width:860px){.form-u7 .split,.form-u7 .media,.form-u7 .frame{grid-template-columns:1fr} .form-u7 .grid,.form-u7 .bar{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .policyitems-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u1 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u1 article,.policyitems-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u1 p{margin:0} .policyitems-u1 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u1 .table{display:grid;gap:.5rem} .policyitems-u1 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .policyitems-u1 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.policyitems-u1 .split,.policyitems-u1 .media,.policyitems-u1 .grid,.policyitems-u1 .cards,.policyitems-u1 .bento,.policyitems-u1 .foot{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.policy-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .policy-layout-a .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

    .policy-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-a .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 72ch;
    }

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 0 var(--space-x);
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        padding: var(--space-y) 0;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 0.6);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--neutral-900);
    }
    .nav-link.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }
    .cta-btn {
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: var(--font-size-base);
        font-weight: 600;
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-btn:hover {
        background: var(--bg-accent-hover);
        transform: translateY(-1px);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--neutral-800);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            padding: 0 var(--space-x) var(--space-y);
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            max-height: 400px;
            padding: var(--space-y) var(--space-x);
        }
        .nav-menu ul {
            flex-direction: column;
            gap: calc(var(--gap) * 0.4);
        }
        .nav-link {
            padding: 0.7rem 1rem;
            text-align: center;
        }
        .cta-btn {
            display: none;
        }
        .burger {
            display: flex;
        }
    }
    @media (min-width: 768px) {
        .nav-menu {
            display: flex !important;
            max-height: none !important;
            padding: 0 !important;
            position: static;
            box-shadow: none;
            background: transparent;
        }
        .nav-menu ul {
            flex-direction: row;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .brand {
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #a0c4ff;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav li {
    margin: 0;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .legal-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: unset;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.nf404-v8 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf404-v8__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(28px, 4vw, 46px);
        box-shadow: var(--shadow-md);
    }

    .nf404-v8 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .nf404-v8 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }