:root {
  --font-family: "Philosopher", sans-serif;
  --font-size-base: 13.4px;
  --line-height-base: 1.35;

  --max-w: 1140px;
  --space-x: 0.71rem;
  --space-y: 0.72rem;
  --gap: 0.44rem;

  --radius-xl: 0.96rem;
  --radius-lg: 0.64rem;
  --radius-md: 0.35rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.12);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.14);

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

  --brand: #00e5ff;
  --brand-contrast: #0a0a0f;
  --accent: #00bcd4;
  --accent-contrast: #0a0a0f;

  --neutral-0: #0a0a0f;
  --neutral-100: #14141a;
  --neutral-300: #2a2a33;
  --neutral-600: #6b6b7a;
  --neutral-800: #b0b0bf;
  --neutral-900: #e8e8f0;

  --bg-page: #0a0a0f;
  --fg-on-page: #e8e8f0;

  --bg-alt: #14141a;
  --fg-on-alt: #e8e8f0;

  --surface-1: #1a1a24;
  --surface-2: #242430;
  --fg-on-surface: #e8e8f0;
  --border-on-surface: #2a2a33;

  --surface-light: #2a2a33;
  --fg-on-surface-light: #e8e8f0;
  --border-on-surface-light: #3a3a45;

  --bg-primary: #00e5ff;
  --fg-on-primary: #0a0a0f;
  --bg-primary-hover: #00bcd4;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #0a0a0f;
  --bg-accent-hover: #0097a7;

  --link: #00e5ff;
  --link-hover: #00bcd4;

  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #14141a 50%, #0a0a0f 100%);
  --gradient-accent: linear-gradient(135deg, #00e5ff 0%, #00bcd4 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000000;
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

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

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

    .cta-struct-v4 h2, .cta-struct-v4 h3, .cta-struct-v4 p {
        margin: 0
    }

    .cta-struct-v4 a {
        text-decoration: none
    }

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

    .cta-struct-v4 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .cta-struct-v4 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v4 .actions a, .cta-struct-v4 .center a, .cta-struct-v4 .banner > a, .cta-struct-v4 .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)
    }

    .cta-struct-v4 .banner {
        display: grid;
        gap: .6rem
    }

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

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

    .cta-struct-v4 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v4 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v4 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v4 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

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

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

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

        .cta-struct-v4 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v4 .numbers {
            grid-template-columns:1fr
        }
    }

.rec-lx4{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.rec-lx4 .rec-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.7rem}
.rec-lx4 h2{margin:0;font-size:clamp(1.73rem,3vw,2.4rem)}
.rec-lx4 .rec-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx4 .rec-lines{list-style:none;margin:0;padding:0;display:grid;gap:.55rem}
.rec-lx4 li{display:flex;justify-content:space-between;align-items:flex-start;gap:.8rem;padding:.9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx4 h3{margin:0 0 .22rem;font-size:1rem}
.rec-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.rec-lx4 a{text-decoration:none;color:var(--link);font-weight:700;white-space:nowrap}
@media (max-width:760px){.rec-lx4 li{display:grid}}

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

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

    .nftouch-v7__head {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .nftouch-v7__head p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

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

    .nftouch-v7__grid article {
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nftouch-v7__grid h3 {
        margin: 0 0 7px;
    }

    .nftouch-v7__grid p {
        margin: 0;
    }

    .nftouch-v7__grid a {
        display: inline-block;
        margin-top: 8px;
        color: var(--accent-contrast);
        text-decoration: underline;
    }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.mis-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.mis-lx4 .mis-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.mis-lx4 h2{margin:0;font-size:clamp(1.75rem,3vw,2.4rem)}
.mis-lx4 .mis-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx4 .mis-line{margin:0;padding:0;list-style:none;display:grid;gap:.6rem;counter-reset:step}
.mis-lx4 .mis-line li{counter-increment:step;display:grid;grid-template-columns:50px 1fr;gap:.8rem;padding:.9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.mis-lx4 .mis-line li::before{content:counter(step);display:grid;place-items:center;width:2rem;height:2rem;border-radius:50%;background:var(--bg-accent);color:var(--fg-on-accent);font-weight:700}
.mis-lx4 h3{margin:0 0 .25rem}
.mis-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.mis-lx4 small{display:block;margin-top:.45rem;color:var(--fg-on-surface)}

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

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

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

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

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

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

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

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

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

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

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

    .identity-ux13__list h3 {
        margin: 0;
    }

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

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

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

.tml-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.tml-lx10 .tml-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.tml-lx10 .tml-banner{padding:.95rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.tml-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.43rem)}
.tml-lx10 .tml-banner p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.tml-lx10 .tml-row{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(230px,1fr);gap:.58rem;overflow:auto;padding-bottom:.25rem}
.tml-lx10 article{padding:.84rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.tml-lx10 small{display:block;margin-bottom:.2rem;font-weight:700;color:var(--link)}
.tml-lx10 h3{margin:0 0 .22rem;font-size:1rem}
.tml-lx10 article p{margin:0;color:var(--fg-on-surface-light)}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.feedback-ux4 {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux4__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .feedback-ux4__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .feedback-ux4__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .feedback-ux4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .feedback-ux4__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .feedback-ux4__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .feedback-ux4__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .feedback-ux4__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .feedback-ux4__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux4__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .feedback-ux4__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .feedback-ux4__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .feedback-ux4__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .feedback-ux4__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux4__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.cap-lx5{padding:calc(var(--space-y)*2.8) var(--space-x)}
.cap-lx5 .cap-shell{max-width:var(--max-w);margin:0 auto}
.cap-lx5 h2{margin:0;font-size:clamp(1.8rem,3.3vw,2.6rem)}
.cap-lx5 .cap-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light)}
.cap-lx5 .cap-points{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.7rem}
.cap-lx5 .cap-points article{grid-column:span 4;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface);box-shadow:var(--shadow-sm);transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.cap-lx5 .cap-points article:nth-child(2n){grid-column:span 5}
.cap-lx5 .cap-points article:nth-child(3n){grid-column:span 3}
.cap-lx5 .cap-points article:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.cap-lx5 h3{margin:0 0 .35rem}
.cap-lx5 article p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx5 .cap-bottom{margin-top:.6rem;font-weight:700;color:var(--fg-on-surface)}
@media (max-width:920px){.cap-lx5 .cap-points article,.cap-lx5 .cap-points article:nth-child(2n),.cap-lx5 .cap-points article:nth-child(3n){grid-column:span 6}}@media (max-width:620px){.cap-lx5 .cap-points article,.cap-lx5 .cap-points article:nth-child(2n),.cap-lx5 .cap-points article:nth-child(3n){grid-column:1/-1}}

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

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

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

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

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

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

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

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

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

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

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

.social-l1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.con-lx6{padding:calc(var(--space-y)*2.6) var(--space-x)}
.con-lx6 .con-max{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 320px;gap:var(--gap)}
.con-lx6 .con-card{padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface);box-shadow:var(--shadow-sm)}
.con-lx6 h2{margin:0;font-size:clamp(1.7rem,3vw,2.4rem)}
.con-lx6 .con-card>p{margin:.4rem 0 .9rem;color:var(--fg-on-surface-light)}
.con-lx6 dl{margin:0;display:grid;gap:.65rem}
.con-lx6 dl div{display:grid;grid-template-columns:170px 1fr;gap:.7rem;padding-bottom:.5rem;border-bottom:1px solid var(--border-on-surface-light)}
.con-lx6 dl div:last-child{border-bottom:0;padding-bottom:0}
.con-lx6 dt{font-weight:700;color:var(--fg-on-surface-light)}
.con-lx6 dd{margin:0}
.con-lx6 .con-rail{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.con-lx6 .con-rail li{padding:.85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.con-lx6 .con-rail h3{margin:0 0 .2rem;font-size:1rem}
.con-lx6 a{text-decoration:none;color:var(--link)}
@media (max-width:900px){.con-lx6 .con-max,.con-lx6 dl div{grid-template-columns:1fr}}

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

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

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

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

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

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

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

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

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

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

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

.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--space-y) 0;
    min-height: 64px;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand);
    opacity: 0.85;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 0.6);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    line-height: var(--line-height-base);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: 0 0 0 2px var(--ring);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      pointer-events: none;
    }
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-link {
      display: block;
      padding: 0.6rem 0.8rem;
      text-align: center;
    }
    .cta-secondary {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 280px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .footer-contact p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--fg-on-page);
    text-decoration: none;
}