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

  --max-w: 1140px;
  --space-x: 0.55rem;
  --space-y: 0.94rem;
  --gap: 0.77rem;

  --radius-xl: 0.93rem;
  --radius-lg: 0.49rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 26px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 170ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #E85D3A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #1F2937;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #1F2937;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2B6CB0;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1E4E8C;
  --ring: #2B6CB0;

  --bg-accent: #E85D3A;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D04A2A;

  --link: #2B6CB0;
  --link-hover: #1E4E8C;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #2B6CB0 100%);
  --gradient-accent: linear-gradient(135deg, #E85D3A 0%, #D04A2A 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;}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

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

    .next-ux20 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

    .next-ux20 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux20 h2, .next-ux20 h3, .next-ux20 p {
        margin: 0
    }

    .next-ux20 a {
        text-decoration: none
    }

    .next-ux20 .center, .next-ux20 .banner, .next-ux20 .stack, .next-ux20 .bar, .next-ux20 .split, .next-ux20 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux20 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux20 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux20 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux20 .actions a, .next-ux20 .center a, .next-ux20 .banner > a, .next-ux20 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux20 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux20 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux20 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux20 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux20 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux20 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux20 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux20 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux20 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux20 .split, .next-ux20 .bar, .next-ux20 .duo {
            grid-template-columns:1fr
        }

        .next-ux20 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux20 .numbers {
            grid-template-columns:1fr
        }
    }

.education-struct-light-v13 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.education-struct-light-v13__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

.education-struct-light-v13__table {
    display: grid;
    gap: .55rem;
}

.education-struct-light-v13__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem;
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
    color: var(--neutral-800);
}

.education-struct-light-v13__row span {
    min-width: 0;
    word-break: break-word;
}

.education-struct-light-v13__row--head {
    background: var(--neutral-0);
    color: var(--neutral-900);
    font-weight: 700;
}

@media (max-width: 680px) {
    .education-struct-light-v13__row {
        grid-template-columns: 1fr;
    }
}

.about-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v3 .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-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

.social-l1 {

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-l1__card {
            transition: none;
        }
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.story-metrics-c3 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-metrics-c3__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .story-metrics-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-metrics-c3__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-metrics-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .story-metrics-c3__panel {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-metrics-c3__text p {
        margin: 0 0 .75rem;

    }

    .story-metrics-c3__stats {
        display: grid;
        gap: .75rem;
    }

    .story-metrics-c3__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .story-metrics-c3__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-metrics-c3__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .story-metrics-c3__panel {
            grid-template-columns: 1fr;
        }
    }

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

    .identity-nv10 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

    .identity-nv10__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-nv10__head span {
        color: var(--neutral-600);
    }

    .identity-nv10__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

    .identity-nv10__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-nv10__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

    .identity-nv10__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__row {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux8{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux8__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux8__head p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux8__stack{display:grid;gap:10px}.plans-ux8__stack article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux8__line{display:flex;justify-content:space-between;gap:8px}.plans-ux8__line span{font-size:.84rem;color:var(--brand)}.plans-ux8__stack p{margin:7px 0;color:var(--neutral-800)}.plans-ux8__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux8__chips i{font-style:normal;border:1px solid var(--neutral-300);border-radius:999px;padding:4px 8px;background:var(--neutral-100)}.plans-ux8 button{margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}

.features-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .features-struct-v3 h2, .features-struct-v3 h3, .features-struct-v3 p {
        margin: 0
    }

    .features-struct-v3 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v3 article {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v3 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v3 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v3 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v3 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v3 .side img, .features-struct-v3 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v3 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v3 .grid, .features-struct-v3 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v3 .layout, .features-struct-v3 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v3 .grid, .features-struct-v3 .cards, .features-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

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

    .hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

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

.nfcontacts-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfcontacts-v9__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfcontacts-v9 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .nfcontacts-v9__subtitle {
        margin: 0;
        opacity: .92;
    }

    .nfcontacts-v9__list {
        display: grid;
        gap: 10px;
    }

    .nfcontacts-v9__list article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
    }

    .nfcontacts-v9__label {
        margin: 0;
        opacity: .86;
    }

    .nfcontacts-v9__value {
        margin: 4px 0 0;
        font-weight: 700;
    }

    .nfcontacts-v9__list a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        white-space: nowrap;
    }

    @media (max-width: 700px) {
        .nfcontacts-v9__list article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.nfthank-v12 {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfthank-v12__shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: clamp(30px, 4vw, 46px);
    }

    .nfthank-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
    }

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

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) var(--space-x);
  }

  .site-header.scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

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

  .nav-link:hover::after {
    width: 100%;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 1001;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }

    .nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f39c12;
  }
  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f39c12;
  }
  .footer-policy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
    text-align: right;
  }
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 10px 0 0;
    max-width: 500px;
    text-align: right;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-right {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
    .footer-disclaimer {
      text-align: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .nf404-v10__box {
        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);
    }

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }