:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.48;

  --max-w: 1200px;
  --space-x: 0.93rem;
  --space-y: 1.5rem;
  --gap: 1.17rem;

  --radius-xl: 1.01rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 36px rgba(0,0,0,0.13);

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

  --brand: #1a2a3a;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f9fafb;
  --fg-on-page: #1f2937;

  --bg-alt: #e5e7eb;
  --fg-on-alt: #374151;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #fef3c7;
  --fg-on-accent: #1a2a3a;
  --bg-accent-hover: #b45309;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a2a3a 0%, #2d4a6e 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #b45309 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: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

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

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

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

.next-ux19 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    @media (max-width: 620px) {
        .next-ux19 .numbers {
            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: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .card:nth-child(4) {
        animation-delay: 270ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.post-item--colored-v5 {

    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

.post-item__header h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.post-item--light-v6 {

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

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

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

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

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

.author--colored-v5 {

    padding: 40px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

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

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.post-item--colored-v5 {

    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

.post-item__header h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

    .plans-lv2__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 44px);
    }

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

    .plans-lv2__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__desc {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.article-list {

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

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

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

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

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

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

    .article-list .article-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .article-list .article-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .article-list .article-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .article-list .article-list__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

    .article-list h3 a {
        text-decoration: none;
    }

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

    .article-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .article-list .article-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .article-list .article-list__read-more:hover {
        text-decoration: underline;
    }

.faq-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

    .faq-fresh-v3 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.support-ux6 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-ux6__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-ux6__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-ux6__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux6__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-ux6__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.frm-lx6{padding:calc(var(--space-y)*2.85) var(--space-x)}
.frm-lx6 .frm-max{max-width:var(--max-w);margin:0 auto}
.frm-lx6 .frm-head{margin-bottom:.9rem}
.frm-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem)}
.frm-lx6 .frm-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx6 .frm-columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--surface-2);border-radius:var(--radius-xl);border:1px solid var(--border-on-surface)}
.frm-lx6 .frm-col{padding:.8rem;border-radius:var(--radius-lg);background:var(--surface-1);display:grid;gap:.62rem}
.frm-lx6 label{display:grid;gap:.25rem}
.frm-lx6 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx6 input,.frm-lx6 textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--border-on-surface-light);font:inherit;color:var(--fg-on-surface);background:var(--surface-1)}
.frm-lx6 textarea{min-height:170px;resize:vertical}
.frm-lx6 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero);color:var(--brand-contrast);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease)}
.frm-lx6 button:hover{transform:translateY(-2px)}
@media (max-width:860px){.frm-lx6 .frm-columns{grid-template-columns:1fr}}

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .card:nth-child(4) {
        animation-delay: 270ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{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: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.thank-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .thank-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u5 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u5 article,.thank-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u5 p{margin:0} .thank-u5 a{text-decoration:none;color:inherit;font-weight:700} .thank-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .thank-u5 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u5 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.thank-u5 .split,.thank-u5 .media,.thank-u5 .grid,.thank-u5 .cards,.thank-u5 .bento,.thank-u5 .foot{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: relative;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--btn-ghost-bg);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        padding: 8px;
        transition: background var(--anim-duration) var(--anim-ease);
    }
    .burger:hover {
        background: var(--btn-ghost-bg-hover);
    }
    .burger-line {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .nav-list a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    @media (max-width: 767px) {
        .burger {
            display: flex;
        }
        .nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--surface-1);
            box-shadow: var(--shadow-lg);
            padding: var(--space-y) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 200;
            overflow-y: auto;
        }
        .nav.open {
            right: 0;
        }
        .nav-list {
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .nav-list a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: calc(var(--font-size-base) * 1.1);
            border-radius: var(--radius-md);
        }
        .nav-list a:hover {
            background: var(--btn-ghost-bg-hover);
        }
        /* overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay);
            z-index: 150;
        }
        .nav-overlay.active {
            display: block;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #ccc;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #ffc107;
    text-decoration: underline;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-disclaimer {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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