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

  --max-w: 1440px;
  --space-x: 2.68rem;
  --space-y: 1.5rem;
  --gap: 1.75rem;

  --radius-xl: 1.25rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.16);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.21);
  --shadow-lg: 0 22px 50px rgba(0,0,0,0.25);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 490ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #E53935;
  --brand-contrast: #FFFFFF;
  --accent: #FF1744;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #BDBDBD;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #121212;
  --fg-on-page: #E0E0E0;

  --bg-alt: #1E1E1E;
  --fg-on-alt: #B0B0B0;

  --surface-1: #1C1C1C;
  --surface-2: #262626;
  --fg-on-surface: #E0E0E0;
  --border-on-surface: #333333;

  --surface-light: #F5F5F5;
  --fg-on-surface-light: #212121;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #E53935;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #C62828;
  --ring: #FF1744;

  --bg-accent: #FF1744;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D50000;

  --link: #FF5252;
  --link-hover: #FF1744;

  --gradient-hero: linear-gradient(135deg, #121212 0%, #1E1E1E 50%, #2A2A2A 100%);
  --gradient-accent: linear-gradient(135deg, #E53935 0%, #FF1744 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);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

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

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

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

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

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

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

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

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

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

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

    .visual-column-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/257775/pexels-photo-257775.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.post-list--light-v6 {

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

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

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .touch-panorama .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

.articles--light-v6 {

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

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

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

.articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.post-item--light-v6 {

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.post-item--light-v6 {

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

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

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

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

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

.clarifications-c2 {

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

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

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

    .clarifications-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.4vw, 42px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .clarifications-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.article-list--light-v6 {

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

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

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

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

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

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

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

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .faq-fresh-v5 .shell {
        max-width: 840px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

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

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

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

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

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

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .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-v1 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

.form-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.contact-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-page), var(--surface-2));
        color: var(--fg-on-page);
    }

    .contact-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .touch-panorama .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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;}
    }

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    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(--neutral-900);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
    }
    .nav-menu.open {
      display: flex;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-tagline {
    margin: 0.3rem 0 0.8rem;
    color: #b0b0b0;
    font-size: 0.85rem;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 200px;
  }
  .footer-contact a {
    color: #cccccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    width: 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.5rem;
  }
  .copyright {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav {
      justify-content: center;
    }
    .footer-links {
      flex-direction: row;
      gap: 1rem;
    }
    .footer-contact {
      align-items: 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-v8 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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