:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 16.9px;
  --line-height-base: 1.85;

  --max-w: 960px;
  --space-x: 1.09rem;
  --space-y: 1.5rem;
  --gap: 0.68rem;

  --radius-xl: 0.74rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 22px rgba(0,0,0,0.09);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 290ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #00B4D8;
  --brand-contrast: #FFFFFF;
  --accent: #0077B6;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F0F4F8;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #CBD5E1;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #1E293B;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #00B4D8;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0096B0;
  --ring: #00B4D8;

  --bg-accent: #0077B6;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #005F8A;

  --link: #0077B6;
  --link-hover: #005F8A;

  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0077B6 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);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 860px) {
        .intro-flag-c11__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .next-ux25 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

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

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

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

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

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

    .next-ux25 .actions a, .next-ux25 .center a, .next-ux25 .banner > a, .next-ux25 .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-ux25 .banner {
        display: grid;
        gap: .6rem
    }

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

    .next-ux25 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

    .next-ux25 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .education-struct-v5 h2, .education-struct-v5 h3, .education-struct-v5 p {
        margin: 0
    }

    .education-struct-v5 a {
        text-decoration: none
    }

    .education-struct-v5 article, .education-struct-v5 .row, .education-struct-v5 details, .education-struct-v5 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v5 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v5 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v5 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v5 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v5 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v5 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo, .education-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

.touch-gridline {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.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;
        }
    }

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

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

    .identity-nv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-nv8__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--neutral-100);
    }

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

    .identity-nv8__body h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .identity-nv8__body h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        color: var(--brand);
    }

    .identity-nv8__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .identity-nv8__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 860px) {
        .identity-nv8__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            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
        }
    }

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

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

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

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

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

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

    .hiw-ribbon-c1__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-ribbon-c1__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-ribbon-c1__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-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

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

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

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

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

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

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

    .features-struct-v1 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-v1 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux4{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--bg-primary);color:var(--fg-on-primary)}.plans-ux4__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux4__head p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.plans-ux4__stack{display:grid;gap:10px}.plans-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux4__line{display:flex;justify-content:space-between;gap:8px}.plans-ux4__line span{font-size:.84rem}.plans-ux4__stack p{margin:7px 0}.plans-ux4__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux4__chips i{font-style:normal;border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:4px 8px}.plans-ux4 button{margin-top:8px;background:var(--bg-accent);color:var(--fg-on-accent);border:0;border-radius:var(--radius-sm);padding:8px 10px}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

    .form-layout-a .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
    }

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

    .form-layout-a label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.nfcontacts-v10 {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nfcontacts-v10__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nfcontacts-v10__rows {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v10__row {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: grid;
        gap: 4px;
    }

    .nfcontacts-v10__social {
        margin-top: 12px;
    }

    .nfcontacts-v10__social p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .nfcontacts-v10__social div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfcontacts-v10__social a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 6px 10px;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-b .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--space-x) var(--space-y);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface);
  }
  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
    .logo {
      order: 0;
    }
    .burger {
      order: 1;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo .logo-text:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
    max-width: 500px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      text-align: center;
      max-width: 100%;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.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;
    }