:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 13.9px;
  --line-height-base: 1.26;

  --max-w: 1120px;
  --space-x: 0.92rem;
  --space-y: 1.02rem;
  --gap: 0.43rem;

  --radius-xl: 0.8rem;
  --radius-lg: 0.55rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.19rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.09);

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

  --brand: #0047AB;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

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

  --bg-primary: #0047AB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #003580;
  --ring: #0047AB;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #0047AB;
  --link-hover: #003580;

  --gradient-hero: linear-gradient(135deg, #0047AB 0%, #002D6E 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

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

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/159298/pexels-photo-159298.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.profile {

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

    .profile .profile__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Si randomNumber es 2 (par) - el primer hijo obtiene order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-prism-v5{padding:calc(var(--space-y)*3) var(--space-x);background:var(--neutral-800);color:var(--neutral-0)}
.cap-prism-v5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)}
.cap-prism-v5 .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero)}
.cap-prism-v5 h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem)}
.cap-prism-v5 .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--surface-1);color:var(--fg-on-surface);font-weight:700}
.cap-prism-v5 .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none}
.cap-prism-v5 li{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg)}
.cap-prism-v5 h3{margin:0 0 .45rem}
.cap-prism-v5 p{margin:0;opacity:.9}
.cap-prism-v5 small{display:block;margin-top:.5rem;font-weight:700}
@media (max-width:980px){.cap-prism-v5 .cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.cap-prism-v5 .cards{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.profile {

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

    .profile .profile__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Si randomNumber es 2 (par) - el primer hijo obtiene order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

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

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.settings {

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

    .settings .settings__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .settings .settings__accordion {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Si randomNumber es 2 (par) - primer hijo obtiene order: 2 */
    .settings .settings__accordion > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__accordion-item {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-item:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--bg-primary);
    }

    .settings .settings__accordion-item.active {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
    }

    .settings .settings__accordion-header {
        width: 100%;
        padding: clamp(20px, 3vw, 28px);
        border: none;
        background: transparent;
        color: var(--fg-on-page);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: left;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-header:hover {
        background: var(--bg-alt);
    }

    .settings .settings__accordion-title {
        font-size: clamp(18px, 2.4vw, 20px);
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .settings .settings__accordion-icon {
        font-size: 0.875rem;
        color: var(--neutral-600);
        transition: transform var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }

    .settings .settings__accordion-item.active .settings__accordion-icon {
        transform: rotate(180deg);
    }

    .settings .settings__accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__accordion-item.active .settings__accordion-content {
        max-height: 2000px;
    }

    .settings .settings__form {
        padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

    .settings .settings__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: clamp(20px, 3vw, 28px) 0;
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__avatar-btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        border: 1px solid var(--ring);
    }

    .settings .settings__avatar-btn input {
        display: none;
    }

    .settings .settings__avatar-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input[type="text"],
    .settings .settings__form-group input[type="email"] {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .settings .settings__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .settings .settings__form-group label span {
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .settings .settings__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--neutral-900);
    }

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* permanente escaneo */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

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

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--neutral-900);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--neutral-900);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS añadirá resaltado "flotante" de la fila activa */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.activity {

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

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

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

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

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-page);
    }

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

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

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--neutral-900);
    }

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* permanente escaneo */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

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

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--neutral-900);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--neutral-900);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS añadirá resaltado "flotante" de la fila activa */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.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__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.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}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

    .terms-layout-a 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);
        margin-bottom: 12px;
    }

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

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

header {
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 100;
        padding: var(--space-y) var(--space-x);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.02em;
    }
    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    nav a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    nav a:hover {
        background: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .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;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
            z-index: 99;
        }
        nav.open {
            opacity: 1;
            visibility: visible;
        }
        nav ul {
            flex-direction: column;
            align-items: center;
            gap: var(--space-y);
        }
        nav a {
            font-size: 1.25rem;
            padding: 0.75rem 1.5rem;
        }
        .header-inner {
            position: relative;
            z-index: 100;
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d4a;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-style: normal;
    color: #c0c0d0;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .footer-contact a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-policy a {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0.5rem 0;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #707088;
    border-top: 1px solid #2d2d4a;
    padding-top: 1rem;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contact {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }