:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 17.6px;
  --line-height-base: 1.34;

  --max-w: 1080px;
  --space-x: 1.28rem;
  --space-y: 1.5rem;
  --gap: 1.56rem;

  --radius-xl: 1.17rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 3px 8px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 22px rgba(0,0,0,0.17);
  --shadow-lg: 0 30px 64px rgba(0,0,0,0.21);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 110ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #1a3c6e;
  --brand-contrast: #ffffff;
  --accent: #d94f14;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f4f6f9;
  --neutral-300: #c8cdd3;
  --neutral-600: #6b7280;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

  --bg-page: #f4f6f9;
  --fg-on-page: #1a202c;

  --bg-alt: #e8edf2;
  --fg-on-alt: #2d3748;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1a202c;
  --border-on-surface: #d1d5db;

  --surface-light: #ffffff;
  --fg-on-surface-light: #2d3748;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a3c6e;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142e54;
  --ring: #d94f14;

  --bg-accent: #d94f14;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b33d0f;

  --link: #1a3c6e;
  --link-hover: #d94f14;

  --gradient-hero: linear-gradient(135deg, #1a3c6e 0%, #2b5a8a 100%);
  --gradient-accent: linear-gradient(135deg, #d94f14 0%, #e6732a 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: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.wp-lang-switcher-v6 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

.nfintro-v9 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfintro-v9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .nfintro-v9__hero {flex: 1 1 24rem;}
    .nfintro-v9__side {flex: 1 1 18rem;}

    .nfintro-v9__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .nfintro-v9__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .nfintro-v9__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .nfintro-v9__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v9__buttons a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .nfintro-v9__stats article {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats strong,
    .nfintro-v9__stats span {display: block;}

    .nfintro-v9__stats span {margin-top: .25rem; color: rgba(255, 255, 255, .82);}

    @media (max-width: 780px) {
        .nfintro-v9__stats {
            grid-template-columns: 1fr;
        }
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/262353/pexels-photo-262353.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

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

.about-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

    .about-struct-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .about-struct-v1 h2, .about-struct-v1 h3, .about-struct-v1 p {
        margin: 0
    }

    .about-struct-v1 .split, .about-struct-v1 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v1 .split img, .about-struct-v1 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v1 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v1 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v1 article, .about-struct-v1 .values div, .about-struct-v1 .facts div, .about-struct-v1 .quote, .about-struct-v1 .statement {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v1 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v1 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v1 .values, .about-struct-v1 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v1 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v1 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v1 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v1 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr
        }
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.mission-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .mission-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .mission-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .mission-u5 .sub{margin:.35rem 0 0;opacity:.9;} .mission-u5 article,.mission-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .mission-u5 p{margin:0} .mission-u5 a{text-decoration:none;color:inherit;font-weight:700} .mission-u5 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .mission-u5 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .mission-u5 .grid{display:grid;gap:.5rem;margin-top:.55rem} @media (max-width:860px){.mission-u5 .split,.mission-u5 .media,.mission-u5 .grid,.mission-u5 .cards,.mission-u5 .bento,.mission-u5 .foot{grid-template-columns:1fr}}

.partners {

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

    .partners .partners__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

.identity-ux13 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .identity-ux13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .identity-ux13__head {
        margin-bottom: 16px;
    }

    .identity-ux13__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

    .identity-ux13__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-ux13__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-ux13__list {
        display: grid;
        gap: 12px;
    }

    .identity-ux13__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-ux13__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-ux13__meta b {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-ux13__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-ux13__list h3 {
        margin: 0;
    }

    .identity-ux13__list p {
        margin: 7px 0;
        color: var(--neutral-800);
    }

    .identity-ux13__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

    @media (max-width: 640px) {
        .identity-ux13__list article {
            grid-template-columns: 1fr;
        }
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-cobalt-v1{padding:calc(var(--space-y)*3) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)}
.cap-cobalt-v1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.92fr 1.08fr;gap:calc(var(--gap)*1.3)}
.cap-cobalt-v1 .lead h2{margin:.3rem 0;font-size:clamp(1.9rem,4vw,3rem);line-height:1.1}
.cap-cobalt-v1 .sub{max-width:42ch;opacity:.9}
.cap-cobalt-v1 .cta{display:inline-block;margin-top:.7rem;padding:.62rem .95rem;border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);text-decoration:none;font-weight:700}
.cap-cobalt-v1 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap)}
.cap-cobalt-v1 article{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)}
.cap-cobalt-v1 .tag{margin:0 0 .35rem;font-size:.78rem;opacity:.85}
.cap-cobalt-v1 h3{margin:0 0 .45rem}
.cap-cobalt-v1 p{margin:0}
.cap-cobalt-v1 .benefit{margin-top:.55rem;font-weight:700}
@media (max-width:920px){.cap-cobalt-v1 .shell{grid-template-columns:1fr}.cap-cobalt-v1 .grid{grid-template-columns:1fr}}

.about-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

    .about-struct-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .about-struct-v1 h2, .about-struct-v1 h3, .about-struct-v1 p {
        margin: 0
    }

    .about-struct-v1 .split, .about-struct-v1 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v1 .split img, .about-struct-v1 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v1 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v1 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v1 article, .about-struct-v1 .values div, .about-struct-v1 .facts div, .about-struct-v1 .quote, .about-struct-v1 .statement {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v1 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v1 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v1 .values, .about-struct-v1 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v1 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v1 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v1 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v1 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v1 .split, .about-struct-v1 .duo, .about-struct-v1 .cards, .about-struct-v1 .gallery {
            grid-template-columns:1fr
        }
    }

.hiw-ux8 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .hiw-ux8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ux8__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ux8__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ux8__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ux8__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ux8__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ux8__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx8{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.frm-lx8 .frm-shell{max-width:var(--max-w);margin:0 auto}
.frm-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.8rem,3.4vw,2.6rem)}
.frm-lx8 .frm-sheet{padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);display:grid;gap:.75rem}
.frm-lx8 .frm-inline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.6rem}
.frm-lx8 label{display:grid;gap:.24rem}
.frm-lx8 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx8 input,.frm-lx8 textarea{width:100%;padding:.74rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx8 input:focus,.frm-lx8 textarea:focus{outline:2px solid color-mix(in srgb,var(--ring) 32%, transparent);outline-offset:1px}
.frm-lx8 textarea{min-height:120px;resize:vertical}
.frm-lx8 .frm-actions{display:flex;justify-content:space-between;gap:.8rem;align-items:center}
.frm-lx8 .frm-actions p{margin:0;color:var(--fg-on-surface-light)}
.frm-lx8 button{padding:.78rem 1.2rem;border:0;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx8 button:hover{background:var(--bg-primary-hover)}
@media (max-width:900px){.frm-lx8 .frm-inline{grid-template-columns:1fr 1fr}}@media (max-width:620px){.frm-lx8 .frm-inline,.frm-lx8 .frm-actions{grid-template-columns:1fr;display:grid}}

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

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .policyitems-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u7 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u7 article,.policyitems-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u7 p{margin:0} .policyitems-u7 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u7 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .policyitems-u7 .bento article:nth-child(1){grid-column:span 6} .policyitems-u7 .bento article:nth-child(2){grid-column:span 3} .policyitems-u7 .bento article:nth-child(3){grid-column:span 3} .policyitems-u7 .bento article:nth-child(4){grid-column:span 4} .policyitems-u7 .bento article:nth-child(5){grid-column:span 4} .policyitems-u7 .bento article:nth-child(6){grid-column:span 4} .policyitems-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u7 .split,.policyitems-u7 .media,.policyitems-u7 .grid,.policyitems-u7 .cards,.policyitems-u7 .bento,.policyitems-u7 .foot{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-100);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav-menu a.active {
        background: var(--brand);
        color: var(--brand-contrast);
        font-weight: 600;
    }
    .cta-button {
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-accent-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--overlay);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }
        .nav-menu.open {
            opacity: 1;
            pointer-events: auto;
        }
        .nav-menu ul {
            flex-direction: column;
            background: var(--surface-1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            gap: var(--space-y);
            min-width: 250px;
            text-align: center;
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.2);
            padding: 0.75rem 1.5rem;
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
    min-width: 150px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo:hover {
    color: #ffd966;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer-nav {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #c0c0d0;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    width: 100%;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    max-width: 600px;
    margin: 0;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v11 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

    .err-slab-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .err-slab-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-f 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;
    }