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

  --max-w: 1180px;
  --space-x: 1.15rem;
  --space-y: 1.12rem;
  --gap: 0.88rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.1);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.12);

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

  --brand: #1a73e8;
  --brand-contrast: #ffffff;
  --accent: #ff6b35;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #1a73e8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0d62d9;
  --ring: #1a73e8;

  --bg-accent: #ff6b35;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e55a2a;

  --link: #1a73e8;
  --link-hover: #0d62d9;

  --gradient-hero: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
  --gradient-accent: linear-gradient(90deg, #ff6b35 0%, #ffa726 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;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

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

.index-recommendations-steps {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations-steps__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations-steps__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

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

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

    .index-recommendations-steps__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        color: var(--surface-1);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

    .index-recommendations-steps__desc {
        margin: 0 0 14px;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-steps__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-steps__cta::after {
        content: '->';
    }

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.partners--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.partners__header {
    text-align: center;
    margin-bottom: 20px;
}

.partners__header h2 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.partners__header p {
    margin: 0;
    color: var(--neutral-300);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 12px;
}

.partners__logo {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo--gold {
    border-color: var(--accent);
}
.partners__logo--prime {
    border-color: var(--bg-primary);
}
.partners__logo--trusted {
    border-color: var(--accent);
}

.partners__logo-text {
    font-size: 0.9rem;
    color: var(--neutral-0);
}

.identity-lv2 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

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

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

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

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

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

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

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

    .capabilities-alt .capabilities-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

    .capabilities-alt .capabilities-alt__bubble p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .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(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        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);
    }

.values-cloud-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

.nfform-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfform-v9__form {
        max-width: 860px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v9__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nfform-v9 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v9 input,
    .nfform-v9 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v9 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

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

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

.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-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: var(--space-y) calc(var(--space-x) * 1.5);
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
    margin-left: calc(var(--gap) * 0.5);
}

.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: 3px;
    transition: all var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .btn-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

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

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0077cc;
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-top: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.25rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  address a {
    color: #333;
    text-decoration: none;
  }
  address a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact {
      text-align: center;
      margin-top: 1rem;
    }
  }

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

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }