:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 18.9px;
  --line-height-base: 1.77;

  --max-w: 1520px;
  --space-x: 2.67rem;
  --space-y: 1.5rem;
  --gap: 1.37rem;

  --radius-xl: 1.07rem;
  --radius-lg: 0.89rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.15);
  --shadow-md: 0 12px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 24px 30px rgba(0,0,0,0.24);

  --overlay: rgba(30, 30, 30, 0.6);
  --anim-duration: 340ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #2C3E50;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #374151;
  --neutral-900: #111827;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F3F4F6;
  --fg-on-surface: #1F2937;
  --border-on-surface: #D1D5DB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #E67E22;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #D35400;
  --ring: #E67E22;

  --bg-accent: #F39C12;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #E67E22;
  --link-hover: #D35400;

  --gradient-hero: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 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 semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-buttons-c7 { padding: clamp(3.9rem,9vw,7rem) var(--space-x); background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 25%), var(--gradient-accent); color: var(--fg-on-primary); }
.intro-buttons-c7__wrap { max-width: 58rem; margin: 0 auto; text-align: center; }
.intro-buttons-c7__copy p { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.intro-buttons-c7__copy h1 { margin: .6rem 0 0; font-size: clamp(2.5rem,5vw,4.6rem); line-height: 1; }
.intro-buttons-c7__copy span { display: block; margin-top: .9rem; color: rgba(255,255,255,.88); }
.intro-buttons-c7__actions { margin-top: 1.2rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.intro-buttons-c7__btn { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.14); color: var(--fg-on-primary); border: 1px solid rgba(255,255,255,.18); }
.intro-buttons-c7__btn--primary { background: var(--surface-1); color: var(--fg-on-page); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

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

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

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

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
    }

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

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

.team-panorama {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 48px);
    }

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

    .team-panorama__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 60px);

        transform: translateY(-14px);
    }

    .team-panorama__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(10, 42, 102, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.8rem;
    }

    .team-panorama__h h2 {
        margin: 0.75rem 0 0.4rem;
        font-size: clamp(32px, 4.5vw, 56px);
    }

    .team-panorama__h p {
        margin: 0 auto;
        max-width: 680px;
        color: rgba(15, 27, 51, 0.7);
    }

    .team-panorama__rows {
        display: flex;
        flex-direction: column;
        gap: clamp(18px, 3vw, 28px);
    }

    .team-panorama__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(18px, 4vw, 32px);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: clamp(18px, 3vw, 32px);
        border: 1px solid rgba(10, 42, 102, 0.08);
        box-shadow: 0 20px 45px rgba(11, 19, 39, 0.08);

        transform: translateY(22px);
    }

    @media (max-width: 720px) {
        .team-panorama__row {
            grid-template-columns: 1fr;
        }
    }

    .team-panorama__portrait {
        position: relative;
        width: 140px;
        height: 140px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(5, 11, 32, 0.25);
    }

    .team-panorama__portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .team-panorama__role {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0.3rem 0;
        background: rgba(255, 255, 255, 0.75);
        color: var(--bg-primary);
        font-size: 0.65rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        border-radius: inherit !important;
    }

    .team-panorama__body h3 {
        margin: 0 0 0.35rem;
        font-size: 1.45rem;
    }

    .team-panorama__body p {
        margin: 0 0 0.85rem;
        color: rgba(15, 27, 51, 0.75);
    }

    .team-panorama__quote {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        border-left: 4px solid var(--bg-accent);
        color: var(--fg-on-primary);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .team-panorama__tag {
        display: inline-flex;
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        background: rgba(10, 42, 102, 0.08);
        color: rgba(10, 42, 102, 0.9);
        font-weight: 700;
    }

.mission-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .mission-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .mission-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .mission-u5 .sub{margin:.35rem 0 0;opacity:.9;} .mission-u5 article,.mission-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .mission-u5 p{margin:0} .mission-u5 a{text-decoration:none;color:inherit;font-weight:700} .mission-u5 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .mission-u5 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .mission-u5 .grid{display:grid;gap:.5rem;margin-top:.55rem} @media (max-width:860px){.mission-u5 .split,.mission-u5 .media,.mission-u5 .grid,.mission-u5 .cards,.mission-u5 .bento,.mission-u5 .foot{grid-template-columns:1fr}}

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.plans-ux6{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-hero);color:var(--fg-on-primary)}.plans-ux6__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux6__top p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux6__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux6__matrix article{grid-column:span 4;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux6__matrix article:nth-child(1){grid-column:span 6}.plans-ux6__matrix article:nth-child(2){grid-column:span 6}.plans-ux6 h3{margin:0}.plans-ux6 p{margin:7px 0}.plans-ux6 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.3)}.plans-ux6 button{width:100%;margin-top:8px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-accent);color:var(--fg-on-accent)}@media(max-width:900px){.plans-ux6__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux6__matrix article{grid-column:span 12}}

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

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

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

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

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

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

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

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

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

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

.cap-noir-v2{padding:calc(var(--space-y)*2.6) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)}
.cap-noir-v2 .shell{max-width:960px;margin:0 auto;display:grid;gap:var(--gap)}
.cap-noir-v2 h2{margin:.2rem 0 0;font-size:clamp(1.8rem,3.6vw,2.7rem)}
.cap-noir-v2 .rails{display:grid;gap:.75rem}
.cap-noir-v2 article{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg);border-left:3px solid var(--accent)}
.cap-noir-v2 .top{display:flex;justify-content:space-between;gap:var(--gap);align-items:center}
.cap-noir-v2 h3{margin:0}
.cap-noir-v2 span{font-size:.8rem;opacity:.82}
.cap-noir-v2 p{margin:.45rem 0 .5rem;opacity:.9}
.cap-noir-v2 a{color:var(--accent);font-weight:700;text-decoration:none}

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.frm-lx8{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.frm-lx8 .frm-shell{max-width:var(--max-w);margin:0 auto}
.frm-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.8rem,3.4vw,2.6rem)}
.frm-lx8 .frm-sheet{padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);display:grid;gap:.75rem}
.frm-lx8 .frm-inline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.6rem}
.frm-lx8 label{display:grid;gap:.24rem}
.frm-lx8 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx8 input,.frm-lx8 textarea{width:100%;padding:.74rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx8 input:focus,.frm-lx8 textarea:focus{outline:2px solid color-mix(in srgb,var(--ring) 32%, transparent);outline-offset:1px}
.frm-lx8 textarea{min-height:120px;resize:vertical}
.frm-lx8 .frm-actions{display:flex;justify-content:space-between;gap:.8rem;align-items:center}
.frm-lx8 .frm-actions p{margin:0;color:var(--fg-on-surface-light)}
.frm-lx8 button{padding:.78rem 1.2rem;border:0;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx8 button:hover{background:var(--bg-primary-hover)}
@media (max-width:900px){.frm-lx8 .frm-inline{grid-template-columns:1fr 1fr}}@media (max-width:620px){.frm-lx8 .frm-inline,.frm-lx8 .frm-actions{grid-template-columns:1fr;display:grid}}

.support-ux7 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-ux7__head {
        margin-bottom: 14px;
    }

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

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

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.con-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.con-lx2 .con-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.9rem}
.con-lx2 h2{margin:0;font-size:clamp(1.8rem,3.5vw,2.6rem)}
.con-lx2 .con-title p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.con-lx2 .con-main{display:grid;grid-template-columns:1.2fr .8fr;gap:var(--gap)}
.con-lx2 .con-core{display:grid;gap:.55rem;padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1)}
.con-lx2 .con-core p{margin:0;display:grid;grid-template-columns:170px 1fr;gap:.7rem;align-items:start}
.con-lx2 .con-core strong{color:var(--fg-on-surface-light)}
.con-lx2 a{color:var(--link);text-decoration:none}
.con-lx2 a:hover{color:var(--link-hover)}
.con-lx2 .con-channels{list-style:none;margin:0;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-2);display:grid;gap:.5rem}
.con-lx2 .con-channels li{display:flex;justify-content:space-between;gap:.7rem;padding-bottom:.45rem;border-bottom:1px solid var(--border-on-surface-light)}
.con-lx2 .con-channels li:last-child{border-bottom:0;padding-bottom:0}
@media (max-width:860px){.con-lx2 .con-main,.con-lx2 .con-core p{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;
        }
    }

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.policyitems-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .policyitems-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u7 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u7 article,.policyitems-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u7 p{margin:0} .policyitems-u7 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u7 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .policyitems-u7 .bento article:nth-child(1){grid-column:span 6} .policyitems-u7 .bento article:nth-child(2){grid-column:span 3} .policyitems-u7 .bento article:nth-child(3){grid-column:span 3} .policyitems-u7 .bento article:nth-child(4){grid-column:span 4} .policyitems-u7 .bento article:nth-child(5){grid-column:span 4} .policyitems-u7 .bento article:nth-child(6){grid-column:span 4} .policyitems-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u7 .split,.policyitems-u7 .media,.policyitems-u7 .grid,.policyitems-u7 .cards,.policyitems-u7 .bento,.policyitems-u7 .foot{grid-template-columns:1fr}}

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

/* Header semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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 semi-transparent initial */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) var(--space-x);
}

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

.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.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav a {
    font-size: calc(var(--font-size-base) * 1.2);
    padding: 0.6rem 1.2rem;
  }

  header {
    padding: var(--space-y) var(--space-x);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
  }
  .copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

    .cookie-lv6__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nf404-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

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