:root {
    --bg: #050505;
    --surface: #111111;
    --surface-alt: rgba(24, 24, 24, 0.88);
    --card: rgba(18, 18, 18, 0.9);
    --text: #f8f8f8;
    --muted: #d2d2d2;
    --accent: #f7931a;
    --accent-rgb: 247, 147, 26;
    --accent-soft: rgba(var(--accent-rgb), 0.2);
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 28px 44px rgba(0, 0, 0, 0.5);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #050505;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background-color: #050505;
    background: radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.22), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(var(--accent-rgb), 0.14), transparent 42%),
        linear-gradient(160deg, #040404, var(--bg) 55%, #0b0b0b 100%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

body.advent-page {
    position: relative;
    z-index: 0;
    background:
        radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.22), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(var(--accent-rgb), 0.14), transparent 42%),
        linear-gradient(160deg, #040404, var(--bg) 55%, #0b0b0b 100%);
    background-attachment: fixed;
    color: #fff;
}

body.advent-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('img/kalender/background.png') bottom right/cover no-repeat;
    pointer-events: none;
    will-change: transform;
}

body.nav-open,
body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px dashed var(--accent);
    outline-offset: 4px;
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--animate-delay, 0s);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

main {
    display: flex;
    flex-direction: column;
}

.site-header {
    position: relative;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    min-height: 280px;
}

.header-visual--fullimage {
    padding: 0;
    min-height: clamp(360px, 68vh, 680px);
    align-items: stretch;
}

.header-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.4;
    pointer-events: none;
}

.header-promo-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 120, 120, 0.16), rgba(255, 150, 150, 0.22));
    border: 1px solid rgba(255, 170, 170, 0.35);
    color: #ffe7e7;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 28px rgba(255, 120, 120, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    text-align: center;
}

.header-promo-link:hover,
.header-promo-link:focus-visible {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 134, 134, 0.26), rgba(255, 164, 164, 0.32));
    border-color: rgba(255, 190, 190, 0.5);
}

.header-image-frame {
    position: relative;
    width: 100%;
    max-width: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: none;
}

.header-card-link {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-card-link:focus-visible {
    outline: none;
}

.header-card-link:focus-visible .header-image-frame {
    outline: 2px dashed var(--accent);
    outline-offset: 6px;
}

.header-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.2), transparent 55%, rgba(5, 5, 5, 0.65));
    pointer-events: none;
    z-index: 1;
}

.header-visual--fullimage .header-card-link {
    display: block;
    width: 100%;
}

.header-visual--fullimage .header-image-frame {
    width: 100%;
    max-width: none;
    overflow: hidden;
    flex: 1 1 auto;
    object-fit: cover;
    object-position: bottom;
}

.header-visual--fullimage .header-image-frame::before {
    display: none;
}

.header-visual--fullimage .header-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: bottom;
}

.header-visual--fullimage .header-card-text {
    bottom: clamp(1.4rem, 4vw, 3rem);
    background: rgba(5, 5, 5, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.sale-banner {
    position: relative;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    padding: 0.6rem 8%;
    padding-block-start: calc(0.6rem + var(--safe-top));
    padding-inline-start: calc(8% + var(--safe-left));
    padding-inline-end: calc(8% + var(--safe-right));
    background: linear-gradient(90deg, #ff4242, #b40000);
    color: #fff5f5;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.sale-banner__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.6rem;
    padding: 0.2rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    color: #b40000;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.sale-banner__text {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
}

.header-card-text {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    z-index: 2;
    pointer-events: none;
}

.header-card-link:hover .header-card-text,
.header-card-link:focus-visible .header-card-text {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.header-visual span:not(.header-card-text) {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.8rem 1.6rem;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.1rem;
    padding-inline: 8%;
    padding-inline-start: calc(8% + var(--safe-left));
    padding-inline-end: calc(8% + var(--safe-right));
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
}

.brand img {
    width: 52px;
    height: 52px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.05rem;
}

.brand-subline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list>li {
    position: relative;
}

.nav-list>li>a {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--accent), #f9b35e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-list a[aria-current="page"] {
    color: var(--accent);
}

.has-submenu.is-active>a {
    color: var(--accent);
}

.has-submenu.is-active>a::after {
    transform: scaleX(1);
}

.nav-shop {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    background: rgba(var(--accent-rgb), 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-shop::after {
    display: none;
}

.nav-shop:hover,
.nav-shop:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.25);
}

.has-submenu>a {
    padding-right: 1.4rem;
}

.has-submenu>a::after {
    transform-origin: center;
}

.has-submenu::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.2rem;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.48);
}

.has-submenu:hover::after,
.has-submenu.is-active::after,
.has-submenu:focus-within::after {
    transform: translateY(-50%) rotate(225deg);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-active .submenu {
    display: flex;
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
}

.submenu a:hover,
.submenu a:focus-visible {
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    background: rgba(18, 18, 18, 0.85);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font: inherit;
    line-height: 1;
}

.nav-toggle:hover {
    background: rgba(var(--accent-rgb), 0.2);
    border-color: rgba(var(--accent-rgb), 0.75);
    transform: translateY(-1px);
}

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.35);
}

.nav-toggle-bar {
    position: relative;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: background 0.25s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle-bar::before {
    top: -6px;
}

.nav-toggle-bar::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
    top: 0;
    transform: rotate(-45deg);
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .header-visual {
        min-height: 420px;
    }
}

.hero {
    position: relative;
    padding: 4rem 8% 4rem;
    padding-inline-start: calc(8% + var(--safe-left));
    padding-inline-end: calc(8% + var(--safe-right));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 15%, rgba(var(--accent-rgb), 0.22), transparent 60%),
        radial-gradient(circle at 88% 8%, rgba(var(--accent-rgb), 0.14), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: stretch;
}

.eyebrow {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.72rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    line-height: 1.1;
    margin: 0 0 1.3rem;
}

.hero-quote {
    margin: 0 0 1.5rem;
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--accent);
    background: rgba(20, 20, 20, 0.72);
    border-radius: 1rem;
    font-style: italic;
}

.hero-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    color: var(--muted);
    font-weight: 500;
}

.lead {
    font-size: 1.05rem;
    color: #d9e1f2;
    margin-bottom: 2rem;
}

.intro-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.intro-card {
    background: var(--surface-alt);
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    border-radius: 1.35rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.intro-card::after {
    content: '';
    position: absolute;
    top: -1.8rem;
    right: -1.2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-soft);
    filter: blur(22px);
}

.intro-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid transparent;
}

.intro-card-summary {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    align-items: flex-start;
}

.intro-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.1rem 0.65rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.14);
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(var(--accent-rgb), 0.92);
}

.intro-card summary::-webkit-details-marker {
    display: none;
}

.intro-card summary::marker {
    content: '';
}

.intro-card summary::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    color: var(--accent);
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.intro-card summary:hover::after,
.intro-card summary:focus-visible::after {
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(var(--accent-rgb), 0.2);
}

.intro-card summary:focus-visible {
    outline: 2px dashed var(--accent);
    outline-offset: 4px;
}

.intro-card[open] {
    border-color: rgba(var(--accent-rgb), 0.32);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.55);
}

.intro-card[open] summary::after {
    content: '\2212';
    background: var(--accent);
    color: #050505;
    border-color: rgba(var(--accent-rgb), 0.6);
    transform: rotate(180deg);
}

.intro-card[open] summary {
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
}

.intro-card h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.intro-card-body {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 1.5rem;
    color: rgba(240, 240, 240, 0.88);
    transition: grid-template-rows 0.35s ease, padding 0.35s ease;
}

.intro-card-body>* {
    overflow: hidden;
}

.intro-card[open] .intro-card-body {
    grid-template-rows: 1fr;
    padding: 1.1rem 1.5rem 1.4rem;
}

.intro-card:not([open]) .intro-card-body {
    padding-bottom: 0;
}

.intro-card-body p {
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-card[open] .intro-card-body p {
    opacity: 1;
}

.hero-impressions {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.mosaic {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 960px) {
    .mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.mosaic-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.94), rgba(14, 14, 14, 0.92));
    border-radius: 1.5rem;
    padding: 1.6rem 1.8rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    box-shadow: var(--shadow);
    position: relative;
}

.mosaic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(var(--accent-rgb), 0.08);
    mix-blend-mode: screen;
    pointer-events: none;
}

.mosaic-stat {
    display: inline-flex;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
}

.mosaic-card h4 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
}

.mosaic-note {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(249, 179, 92, 0.85);
}

.principle-banner {
    position: relative;
    margin-top: 3.2rem;
    padding: 2.2rem 2.6rem;
    background: rgba(20, 20, 20, 0.82);
    border-radius: 1.8rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.principle-banner h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.principle-banner p {
    margin: 0;
    color: var(--muted);
}

.section {
    position: relative;
    padding: 5rem 8%;
    padding-inline-start: calc(8% + var(--safe-left));
    padding-inline-end: calc(8% + var(--safe-right));
}

.legacy-teaser {
    padding-bottom: 4.2rem;
}

.legacy-teaser__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
    max-width: 1100px;
    margin: 0 auto;
}

.legacy-teaser__media {
    position: relative;
    border-radius: 2.4rem;
    overflow: hidden;
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.55);
}

.legacy-teaser__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.legacy-teaser__card {
    margin: 0 auto;
    max-width: 780px;
    padding: clamp(2.4rem, 4vw, 3rem);
    border-radius: 2.4rem;
    background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.16), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    text-align: center;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
}

.legacy-teaser__card .section-kicker {
    margin-bottom: 0.6rem;
}

.legacy-teaser__card h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legacy-teaser__card p {
    margin: 0 auto 1.6rem;
    max-width: 54ch;
    color: var(--muted);
}

.legacy-teaser__highlights {
    margin: 0 0 1.8rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    justify-content: center;
}

.legacy-teaser__highlights li {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.16);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.collaborations {
    padding-top: 0;
    padding-bottom: 5rem;
}

.hero-intro>.collaborations {
    margin-top: 3rem;
    padding-bottom: 3.2rem;
}

.collaborations-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.collaborations-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.collaborations-header p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.collaborations-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.collaborations-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, calc((100% - 3rem) / 3));
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--accent-rgb), 0.4) transparent;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    border-radius: 2rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.collaborations-track::-webkit-scrollbar {
    height: 8px;
}

.collaborations-track::-webkit-scrollbar-track {
    background: transparent;
}

.collaborations-track::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-rgb), 0.4);
    border-radius: 999px;
}

.collaboration-card {
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 1.8rem 1.6rem 1.6rem;
    scroll-snap-align: start;
    min-height: 100%;
}

.collaboration-card--discount {
    padding-top: 2.8rem;
}

.collaboration-card--placeholder {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: 2.2rem;
}

.collaboration-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 160px;
    border-radius: 1.2rem;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 2rem 1.4rem;
}

.collaboration-ribbon {
    position: absolute;
    top: 20px;
    right: 1.8rem;
    transform: translateY(-55%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem 0.75rem;
    background: var(--accent);
    color: #050505;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    border-radius: 0.7rem 0.7rem 0.4rem 0.4rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    box-shadow: 0 18px 36px rgba(var(--accent-rgb), 0.35);
}

.collaboration-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.4rem;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    max-width: 100%;
}

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

.collaboration-body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.collaboration-body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.collaboration-body p {
    margin: 0;
    color: var(--muted);
    text-align: left;
}

.collaboration-offer {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.collaboration-offer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.collaboration-offer dt {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(var(--accent-rgb), 0.7);
}

.collaboration-offer dd {
    margin: 0;
    font-weight: 600;
}

.collaboration-code {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.16);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
}

.collaboration-link {
    margin-top: auto;
}

.collaborations-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    background: rgba(12, 12, 12, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.collaborations-nav::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform-origin: center;
    transform: rotate(45deg);
}

.collaborations-nav--prev::before {
    transform: rotate(225deg);
}

.collaborations-nav:hover,
.collaborations-nav:focus-visible {
    background: rgba(var(--accent-rgb), 0.18);
    border-color: rgba(var(--accent-rgb), 0.65);
    transform: translateY(-1px);
}

.collaborations-nav[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1024px) {
    .collaborations-track {
        grid-auto-columns: minmax(240px, calc((100% - 2rem) / 2));
    }
}

@media (max-width: 640px) {
    .collaborations {
        padding-inline-start: calc(6% + var(--safe-left));
        padding-inline-end: calc(6% + var(--safe-right));
    }

    .collaborations-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        align-items: start;
        row-gap: 1.5rem;
        column-gap: 1rem;
    }

    .collaborations-track {
        grid-auto-columns: 100%;
        grid-column: 1 / -1;
        grid-row: 1;
        padding: clamp(0.5rem, 3vw, 0.75rem);
        scroll-padding: clamp(0.5rem, 3vw, 0.75rem);
    }

    .collaborations-nav {
        position: static;
        transform: none;
    }

    .collaborations-nav--prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }

    .collaborations-nav--next {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(var(--accent-rgb), 0.08), transparent 40%),
        radial-gradient(circle at 90% 100%, rgba(var(--accent-rgb), 0.05), transparent 40%);
    opacity: 0.7;
    pointer-events: none;
}

.section>* {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 960px;
    margin-bottom: 2.8rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.75rem;
}

.section-header h2 {
    margin: 1rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.25;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.92), rgba(255, 189, 120, 0.9));
    color: #1b1205;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
    border: 1px solid rgba(var(--accent-rgb), 0.65);
    box-shadow: 0 20px 32px rgba(var(--accent-rgb), 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 36px rgba(var(--accent-rgb), 0.32);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(255, 206, 150, 0.95));
}

.button-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(var(--accent-rgb), 0.35);
    box-shadow: none;
    margin-bottom: 10px;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(var(--accent-rgb), 0.16);
    color: var(--accent);
}

.timeline {
    display: grid;
    gap: 1.8rem;
    margin-bottom: 3.2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.4), transparent 90%);
}

.timeline-step {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 1.6rem 1.8rem 1.6rem 3rem;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    position: relative;
    box-shadow: var(--shadow);
}

.timeline-step::before {
    content: '';
    position: absolute;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: var(--accent);
    left: 0;
    top: 1.9rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.14);
}

.timeline-step h3 {
    margin-top: 0;
}

.principles h3 {
    margin-bottom: 1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.principle-card {
    background: rgba(10, 14, 22, 0.82);
    border-radius: 1.3rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(var(--accent-rgb), 0.12);
    box-shadow: 0 16px 35px rgba(5, 8, 12, 0.5);
}

.advice-points {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.advice-card {
    background: rgba(18, 18, 18, 0.82);
    border-radius: 1.4rem;
    padding: 1.4rem 1.6rem;
    border: 1px dashed rgba(var(--accent-rgb), 0.28);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-bottom: 3.2rem;
}

.product-card {
    background: rgba(19, 19, 19, 0.86);
    border-radius: 1.5rem;
    padding: 1.6rem 1.8rem;
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    box-shadow: var(--shadow);
}

.product-strategy {
    background: rgba(17, 17, 17, 0.85);
    border-radius: 1.8rem;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    margin-bottom: 3rem;
}

.product-strategy h3 {
    margin-top: 0;
    margin-bottom: 1.8rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.portfolio-card {
    background: rgba(16, 16, 16, 0.8);
    border-radius: 1.3rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.product-stack h3 {
    margin-bottom: 1.6rem;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.stack-card {
    background: rgba(18, 18, 18, 0.84);
    border-radius: 1.4rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.company {
    background: rgba(8, 8, 8, 0.65);
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.company-text {
    display: grid;
    gap: 1.1rem;
}

.company-aside {
    display: grid;
    gap: 1.6rem;
}

.company-focus {
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.06));
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    border-radius: 1.5rem;
    padding: 1.6rem 1.8rem;
}

.focus-grid {
    display: grid;
    gap: 1rem;
}

.focus-card {
    background: rgba(18, 18, 18, 0.82);
    border-radius: 1.3rem;
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.history {
    margin-top: 3.4rem;
    background: rgba(16, 16, 16, 0.82);
    border-radius: 1.6rem;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
}

.history h3 {
    margin-top: 0;
    margin-bottom: 1.6rem;
}

.history-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.45), transparent 90%);
}

.history-timeline li {
    position: relative;
    margin-left: 2.2rem;
    background: rgba(18, 18, 18, 0.82);
    border-radius: 1.2rem;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.history-timeline li::before {
    content: '';
    position: absolute;
    left: -1.6rem;
    top: 1.35rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.14);
}

.history-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.12em;
}

.contact {
    padding-bottom: 6rem;
}

.contact-box {
    margin: 0 auto;
    max-width: 640px;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0.08));
    border-radius: 2rem;
    padding: 2.6rem 3rem;
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    text-align: center;
    box-shadow: 0 24px 48px rgba(8, 10, 16, 0.55);
}

.contact-box h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
}

.contact-links {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.contact-link {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    background: rgba(16, 16, 16, 0.6);
}

.floating-contact {
    position: fixed;
    bottom: clamp(1.2rem, 1.6vw + 1rem, 2.4rem);
    right: clamp(1rem, 1.8vw + 0.8rem, 2.4rem);
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0.8rem;
    z-index: 60;
}

.floating-contact__toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.94), rgba(var(--accent-rgb), 0.68));
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    padding: 0;
}

.floating-contact__glyph {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 65%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.24), transparent 66%),
        rgba(26, 18, 5, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 -6px 12px rgba(0, 0, 0, 0.35);
}

.floating-contact__glyph::before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%2032%2032'%20fill%3D'none'%20stroke%3D'%23ffffff'%20stroke-width%3D'2.4'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M6%2010.5h20a2.5%202.5%200%200%201%202.5%202.5v8a2.5%202.5%200%200%201-2.5%202.5H17l-5.5%204.5V23.5H6a2.5%202.5%200%200%201-2.5-2.5v-8A2.5%202.5%200%200%201%206%2010.5Z'/%3E%3Cpath%20d%3D'M9%2015.5h14'/%3E%3Cpath%20d%3D'M9%2019.5h9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.35));
    transform: translateY(-1px);
}

.floating-contact__glyph::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-contact__toggle:hover,
.floating-contact__toggle:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.82));
}

.floating-contact__toggle:hover .floating-contact__glyph,
.floating-contact__toggle:focus-visible .floating-contact__glyph {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 -6px 14px rgba(0, 0, 0, 0.45);
}

.floating-contact__toggle:hover .floating-contact__glyph::after,
.floating-contact__toggle:focus-visible .floating-contact__glyph::after {
    opacity: 1;
    transform: scale(1);
}

.floating-contact__toggle:focus-visible {
    outline: 2px dashed rgba(26, 18, 5, 0.6);
    outline-offset: 4px;
}

.floating-contact__label {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.floating-contact__panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    display: grid;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    border-radius: 1.1rem;
    background: rgba(12, 12, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 46px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(12px, 6px, 0) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-contact__panel::before {
    content: '';
    position: absolute;
    right: 23px;
    bottom: -9px;
    width: 18px;
    height: 18px;
    background: inherit;
    border: inherit;
    transform: rotate(45deg);
    border-left: none;
    border-top: none;
    pointer-events: none;
}

.floating-contact.is-open .floating-contact__panel {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
}

.floating-contact__panel a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.88);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.floating-contact__panel a:hover,
.floating-contact__panel a:focus-visible {
    background: rgba(var(--accent-rgb), 0.18);
    border-color: rgba(var(--accent-rgb), 0.35);
    transform: translateY(-1px);
}

.floating-contact__icon {
    --contact-icon: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.2);
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    background-image: var(--contact-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.floating-contact__action--phone .floating-contact__icon {
    --contact-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5.4%202.8h4l1.7%204.8-2.3%202.1a10%2010%200%200%200%205.5%205.5l2.1-2.3%204.8%201.7v4c0%201-.8%201.8-1.8%201.8-8.8%200-16-7.2-16-16%200-1%20.8-1.8%201.8-1.8z%27/%3E%3C/svg%3E");
}

.floating-contact__action--whatsapp .floating-contact__icon {
    --contact-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M5%204h14a3%203%200%200%201%203%203v7a3%203%200%200%201-3%203h-6l-4%204v-4H5a3%203%200%200%201-3-3V7a3%203%200%200%201%203-3Z%27/%3E%3Cpath%20d%3D%27M8%209h8%27/%3E%3Cpath%20d%3D%27M8%2013h5%27/%3E%3C/svg%3E");
}

.floating-contact__action--mail .floating-contact__icon {
    --contact-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%275%27%20width%3D%2718%27%20height%3D%2714%27%20rx%3D%272%27/%3E%3Cpath%20d%3D%27m3%207%209%206%209-6%27/%3E%3C/svg%3E");
}

.floating-contact__action--instagram .floating-contact__icon {
    --contact-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%274%27%20y%3D%274%27%20width%3D%2716%27%20height%3D%2716%27%20rx%3D%275%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%273.5%27/%3E%3Ccircle%20cx%3D%2717.5%27%20cy%3D%276.5%27%20r%3D%271.2%27%20fill%3D%27%23f7931a%27%20stroke%3D%27none%27/%3E%3C/svg%3E");
}

.floating-contact__action--x .floating-contact__icon {
    --contact-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4.8%204h3l4.2%205.8L16.2%204h3l-5.7%207.5L19.2%2020h-3l-4.2-5.7L7.8%2020h-3l5.7-7.5L4.8%204Z%27/%3E%3C/svg%3E");
}

.floating-contact__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.58);
    text-align: right;
}

.legacy-hero {
    padding-top: 6rem;
}

.legacy-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.legacy-hero-media {
    display: flex;
    justify-content: center;
    position: relative;
}

.legacy-card-mockup {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 3 / 2;
}

.legacy-card {
    position: absolute;
    inset: 0;
    border-radius: 1.6rem;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.legacy-card-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.legacy-card-badge::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #000 0%, #000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%, #ffce00 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.legacy-card-back {
    inset: 10% 8% 8% -6%;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.08));
    opacity: 0.9;
    transform: rotate(-6deg);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.legacy-card-motto {
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(255, 245, 230, 0.9);
}

.legacy-card-front {
    background: linear-gradient(140deg, rgba(28, 28, 28, 0.95), rgba(10, 10, 10, 0.92));
    backdrop-filter: blur(6px);
    z-index: 2;
}

.legacy-card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.2);
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.72rem;
    color: rgba(255, 210, 150, 0.96);
}

.legacy-card-front h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.legacy-card-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.legacy-made-note {
    margin-top: 1.6rem;
    padding: 1.2rem 1.4rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "icon text";
    align-items: start;
    gap: 0.6rem 1rem;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.legacy-made-note__icon {
    grid-area: icon;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(180deg, #000 0%, #000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%, #ffce00 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.legacy-made-note__title {
    grid-area: title;
    display: block;
    font-size: 1.05rem;
}

.legacy-made-note p {
    grid-area: text;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.legal-container h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.legal-container h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

.legal-container p,
.legal-container li {
    color: rgba(255, 255, 255, 0.76);
}

.legal-container ul {
    margin: 0;
    padding-left: 1.3rem;
    display: grid;
    gap: 0.4rem;
    list-style: disc;
}

.legal-container a {
    color: rgba(var(--accent-rgb), 0.9);
}

.legal-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.legacy-card-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.legacy-card-points li {
    position: relative;
    padding-left: 1.4rem;
}

.legacy-card-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
}

.legacy-hero-content {
    max-width: 620px;
}

.legacy-hero-content .lead {
    color: #e9f1ff;
    margin-bottom: 1.6rem;
}

.legacy-app-downloads {
    margin: 1.6rem 0 1.6rem;
    display: grid;
    gap: 0.8rem;
}

.legacy-app-downloads__label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(233, 241, 255, 0.82);
}

.legacy-app-downloads__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.legacy-app-downloads .button {
    min-width: 180px;
    justify-content: center;
    gap: 0.7rem;
}

.legacy-app-downloads .button i {
    font-size: 1.1rem;
}

.legacy-hero-highlights {
    list-style: none;
    margin: 0 0 2.2rem;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.legacy-hero-highlights li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(233, 241, 255, 0.9);
}

.legacy-hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.3rem;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.85), rgba(255, 204, 140, 0.85));
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
}

.legacy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.legacy-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.legacy-feature-card {
    background: rgba(16, 16, 16, 0.86);
    border-radius: 1.5rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    --feature-icon: none;
}

.legacy-feature-card::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: rgba(var(--accent-rgb), 0.2);
    background-image: var(--feature-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 0.6rem;
}

.legacy-feature-card.icon-gift {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%2710%27%20width%3D%2718%27%20height%3D%2711%27%20rx%3D%272%27/%3E%3Cpath%20d%3D%27M12%2010v11%27/%3E%3Cpath%20d%3D%27M3%2014h18%27/%3E%3Cpath%20d%3D%27M12%2010c-1.8%200-3-1.3-3-3s1.2-3%203-3%27/%3E%3Cpath%20d%3D%27M12%204c1.8%200%203%201.3%203%203s-1.2%203-3%203%27/%3E%3Cpath%20d%3D%27M9%207h6%27/%3E%3C/svg%3E");
}

.legacy-feature-card.icon-nfc {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%276.5%27%20y%3D%274%27%20width%3D%2711%27%20height%3D%2716%27%20rx%3D%272.5%27/%3E%3Cpath%20d%3D%27M10%208.5h4%27/%3E%3Cpath%20d%3D%27M12%2012v3.5%27/%3E%3Cpath%20d%3D%27M8.5%209a6.5%206.5%200%200%201%200%206%27/%3E%3Cpath%20d%3D%27M15.5%209a6.5%206.5%200%200%200%200%206%27/%3E%3C/svg%3E");
}

.legacy-feature-card.icon-shield {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203%205%206v6c0%204.3%202.8%206.9%207%209%204.2-2.1%207-4.7%207-9V6l-7-3z%27/%3E%3Cpath%20d%3D%27m9%2012%202%202%204-4%27/%3E%3C/svg%3E");
}

.legacy-feature-card.icon-device {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%277%27%20y%3D%273%27%20width%3D%2710%27%20height%3D%2718%27%20rx%3D%272%27/%3E%3Cpath%20d%3D%27M10%207h4%27/%3E%3Cpath%20d%3D%27M10%2017h4%27/%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2713%27%20r%3D%271.2%27/%3E%3C/svg%3E");
}

.legacy-feature-card.icon-lightning {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27m13%202-8%2011h7l-1%209%208-12h-7l1-8z%27/%3E%3C/svg%3E");
}

.legacy-feature-card.icon-savings {
    --feature-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f7931a%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cellipse%20cx%3D%2712%27%20cy%3D%277%27%20rx%3D%277%27%20ry%3D%273%27/%3E%3Cpath%20d%3D%27M5%207v5c0%201.7%203.1%203%207%203s7-1.3%207-3V7%27/%3E%3Cpath%20d%3D%27M5%2012v5c0%201.7%203.1%203%207%203s7-1.3%207-3v-5%27/%3E%3Cpath%20d%3D%27M12%206.5v1%27/%3E%3C/svg%3E");
}

.legacy-feature-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.legacy-feature-card p {
    margin: 0;
    color: rgba(229, 233, 247, 0.85);
    font-size: 0.98rem;
}

.legacy-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.usecase-card {
    background: rgba(12, 12, 12, 0.85);
    border-radius: 1.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.usecase-visual {
    position: relative;
    min-height: 240px;
    border-radius: 1.4rem;
    margin: 1.1rem 1.1rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.2rem, 7vw, 3.4rem);
    color: rgba(255, 255, 255, 0.92);
    --usecase-icon-size: clamp(7rem, 18vw, 8.6rem);
}

.usecase-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48));
    z-index: 1;
}

.usecase-icon {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    width: var(--usecase-icon-size);
    height: var(--usecase-icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

svg.usecase-icon {
    display: block;
    width: var(--usecase-icon-size);
    height: var(--usecase-icon-size);
}

.usecase-icon:not(svg) {
    width: var(--usecase-icon-size);
    height: var(--usecase-icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.4rem, 2vw, 0.9rem);
    font-size: calc(var(--usecase-icon-size) * 0.6);
    line-height: 1;
}

.usecase-icon:not(svg) i {
    font-size: 1em;
    line-height: 1;
}

.usecase-icon--birth .fa-sparkles {
    font-size: 0.48em;
    margin-left: clamp(0.2rem, 1vw, 0.4rem);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-35%);
}

.usecase-icon--wedding {
    gap: clamp(0.35rem, 1.8vw, 0.8rem);
}

.usecase-visual.is-birthday {
    background: linear-gradient(145deg, rgba(255, 149, 205, 0.82), rgba(99, 41, 124, 0.92));
}

.usecase-visual.is-birth {
    background: linear-gradient(145deg, rgba(132, 210, 255, 0.82), rgba(36, 62, 108, 0.92));
}

.usecase-visual.is-coffee {
    background: linear-gradient(145deg, rgba(203, 164, 124, 0.82), rgba(57, 34, 24, 0.9));
}

.usecase-visual.is-wedding {
    background: linear-gradient(145deg, rgba(255, 207, 143, 0.82), rgba(102, 74, 53, 0.9));
}

.usecase-card figcaption {
    padding: 1.6rem 1.8rem 2rem;
}

.usecase-card h3 {
    margin: 0 0 0.6rem;
}

.usecase-card p {
    margin: 0;
    color: rgba(230, 233, 248, 0.86);
    font-size: 0.98rem;
}

.legacy-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}

.tips-accordion {
    background: rgba(14, 14, 14, 0.88);
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tips-accordion__title {
    margin: 0;
}

.tips-accordion__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.4rem, 2vw, 1.8rem) clamp(1.6rem, 4vw, 2.4rem);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0.08));
    border: none;
    color: var(--text);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.tips-accordion__toggle:focus-visible {
    outline: 2px dashed var(--accent);
    outline-offset: 4px;
}

.tips-accordion__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.01em;
}

.tips-accordion__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    display: grid;
    place-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.tips-accordion__icon::before,
.tips-accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
}

.tips-accordion__icon::before {
    width: 14px;
    height: 2px;
}

.tips-accordion__icon::after {
    width: 2px;
    height: 14px;
    transition: opacity 0.3s ease;
}

.tips-accordion.is-open .tips-accordion__icon {
    transform: rotate(180deg);
}

.tips-accordion.is-open .tips-accordion__icon::after {
    opacity: 0;
}

.tips-accordion__panel {
    padding: clamp(1.6rem, 3vw, 2.4rem);
    display: grid;
    gap: 1.8rem;
    background: rgba(8, 8, 8, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tips-accordion__panel[hidden] {
    display: none !important;
}

.tips-search {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tips-search__input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 20, 0.94);
    color: var(--text);
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tips-search__input::placeholder {
    color: rgba(215, 217, 222, 0.72);
}

.tips-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.tips-card {
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.tips-card:hover,
.tips-card:focus-within {
    border-color: rgba(var(--accent-rgb), 0.4);
    transform: translateY(-2px);
}

.tips-card h3 {
    margin: 0;
    font-size: 1.12rem;
}

.tips-card__lead {
    margin: 0;
    color: rgba(220, 226, 242, 0.82);
}

.tips-card ul,
.tips-card ol {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
    color: rgba(222, 230, 246, 0.85);
}

.tips-card li {
    padding-left: 0.1rem;
}

.tips-card p {
    margin: 0;
    color: rgba(222, 230, 246, 0.85);
}

.tips-card[hidden] {
    display: none !important;
}

.video-card {
    background: rgba(14, 14, 14, 0.85);
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 1.6rem;
    padding: 1.6rem 1.8rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.video-frame {
    position: relative;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-rgb), 0.08));
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 0;
}

.video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

.video-play-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--accent);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.video-card h3 {
    margin: 0;
}

.video-card p {
    margin: 0;
    color: rgba(224, 230, 244, 0.82);
}

.video-tips {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(215, 222, 240, 0.82);
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.legacy-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}

.legacy-slogan-card {
    background: rgba(18, 18, 18, 0.86);
    border-radius: 1.8rem;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    box-shadow: var(--shadow);
}

.legacy-slogan-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.legacy-slogan-card p {
    margin-bottom: 0;
    color: rgba(222, 230, 250, 0.82);
}

.legacy-quote {
    margin: 0;
    background: rgba(12, 12, 12, 0.86);
    border-radius: 1.8rem;
    padding: 2.2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    box-shadow: var(--shadow);
    font-style: italic;
}

.legacy-quote p {
    margin: 0 0 1.4rem;
    font-size: 1.1rem;
}

.legacy-quote cite {
    display: block;
    font-style: normal;
    color: rgba(210, 218, 236, 0.75);
}

.legacy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.legacy-benefit-card {
    background: rgba(14, 14, 14, 0.86);
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    border-radius: 1.6rem;
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.legacy-benefit-card h3 {
    margin: 0;
}

.legacy-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
    color: rgba(222, 230, 246, 0.85);
}

.legacy-list li {
    padding-left: 0.1rem;
}

.site-footer {
    padding: 2.4rem 8% 2.8rem;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 0.9rem;
}

.social-icon {
    --social-icon: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.16);
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    background-image: var(--social-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.social-icon--instagram {
    --social-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%23f7931a'%20stroke-width%3D'1.6'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'3'%20y%3D'3'%20width%3D'18'%20height%3D'18'%20rx%3D'5'%20ry%3D'5'/%3E%3Ccircle%20cx%3D'12'%20cy%3D'12'%20r%3D'3.5'/%3E%3Ccircle%20cx%3D'17.3'%20cy%3D'6.7'%20r%3D'0.8'/%3E%3C/svg%3E");
}

.social-icon--tiktok {
    --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23f7931a'%3E%3Cpath d='M192.67 0H155.6v166.93a26.4 26.4 0 1 1-26.4-26.4 25.8 25.8 0 0 1 5.8.64V104.7a64 64 0 1 0 20.6 124.2 64.1 64.1 0 0 0 20.6-47.8V90.24a73.5 73.5 0 0 0 42.4 13V61.17a43.9 43.9 0 0 1-42.4-43.9Z'/%3E%3C/svg%3E");
}

.social-icon--youtube {
    --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f7931a'%3E%3Cpath d='M23.5 6.2a2.94 2.94 0 0 0-2.07-2.08C19.28 3.6 12 3.6 12 3.6s-7.28 0-9.43.52A2.94 2.94 0 0 0 .5 6.2 30.26 30.26 0 0 0 0 12a30.26 30.26 0 0 0 .5 5.8 2.94 2.94 0 0 0 2.07 2.08C4.72 20.4 12 20.4 12 20.4s7.28 0 9.43-.52a2.94 2.94 0 0 0 2.07-2.08A30.26 30.26 0 0 0 24 12a30.26 30.26 0 0 0-.5-5.8ZM9.75 15.02V8.98L15.5 12Z'/%3E%3C/svg%3E");
}

.social-icon--x {
    --social-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%23f7931a'%20stroke-width%3D'1.8'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M4%204l16%2016'/%3E%3Cpath%20d%3D'M20%205.5%2013.5%2012l6.5%206.5'/%3E%3Cpath%20d%3D'M4%2019%2010.5%2012%204%205.5'/%3E%3C/svg%3E");
}

.social-icon:hover {
    transform: translateY(-3px);
}

.footer-note {
    margin: 0;
    color: var(--muted);
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

@media (max-width: 1080px) {
    .legacy-teaser__grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .legacy-teaser__media {
        border-radius: 1.6rem;
    }

    .top-bar {
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        line-height: 1.6;
    }

    .header-visual--fullimage {
        min-height: auto;
    }

    .header-visual--fullimage .header-image-frame {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        max-height: none;
        flex: none;
        height: auto;
    }

    .header-visual--fullimage .header-image-frame.is-visible {
        width: 100%;
    }

    .header-visual--fullimage .header-image {
        max-height: none;
        height: auto;
    }

    .top-bar {
        padding-block: 1rem;
        padding-inline: 6%;
        padding-inline-start: calc(6% + var(--safe-left));
        padding-inline-end: calc(6% + var(--safe-right));
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: rgba(8, 8, 8, 0.96);
        padding: 1.1rem calc(6% + var(--safe-right)) 1.4rem calc(6% + var(--safe-left));
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 28px 44px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(18px);
        z-index: 9999;
    }

    .main-nav.is-open {
        display: block;
        animation: navReveal 0.3s ease forwards;
    }

    .header-promo-link {
        width: 100%;
    }

    .legacy-hero {
        padding-top: 5rem;
    }

    .legacy-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .legacy-card-mockup {
        width: min(360px, 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list>li {
        width: 100%;
    }

    .nav-list>li>a {
        padding: 0.9rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-list>li:last-child>a {
        border-bottom: none;
    }

    .nav-list>li>a.nav-shop {
        border-bottom: none;
        margin-top: 0.4rem;
        width: auto;
        align-self: flex-start;
    }

    .sale-banner {
        gap: 0.6rem;
        letter-spacing: 0.12em;
        padding-inline: calc(6% + var(--safe-left)) calc(6% + var(--safe-right));
    }

    .sale-banner__text {
        letter-spacing: 0.16em;
        text-align: center;
    }

    .has-submenu::after {
        display: none;
    }

    .submenu {
        position: static;
        transform: none;
        display: flex;
        padding: 0.6rem 0 0.2rem 1rem;
        gap: 0.3rem;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .submenu a {
        padding: 0.5rem 0;
        border-radius: 0.5rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.76);
    }

    .hero {
        padding: 5rem 6% 3.5rem;
        padding-inline-start: calc(6% + var(--safe-left));
        padding-inline-end: calc(6% + var(--safe-right));
    }

    .section {
        padding: 4rem 6%;
        padding-inline-start: calc(6% + var(--safe-left));
        padding-inline-end: calc(6% + var(--safe-right));
    }

    .timeline::before {
        left: 0.4rem;
    }

    .timeline-step {
        padding-left: 2.6rem;
    }

    .timeline-step::before {
        left: -0.2rem;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2.2rem;
    }

    .floating-contact__panel {
        padding: 0.9rem 1rem;
        min-width: 200px;
    }
}

@media (max-width: 540px) {
    .brand {
        gap: 0.6rem;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .header-promo-link {
        font-size: 0.76rem;
        letter-spacing: 0.1em;
    }

    .legacy-card {
        padding: 1.1rem;
    }

    .legacy-card-back {
        inset: 14% 12% 10% -8%;
    }

    .legacy-card-front h2 {
        font-size: 1.7rem;
    }

    .legacy-card-points {
        font-size: 0.84rem;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .intro-card,
    .mosaic-card,
    .product-card,
    .portfolio-card,
    .stack-card,
    .principle-card,
    .advice-card {
        padding: 1.2rem 1.3rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .floating-contact__toggle {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .floating-contact__panel {
        right: 0;
        bottom: calc(100% + 8px);
        margin-right: 0;
        gap: 0.5rem;
        transform: translate3d(0, 10px, 0) scale(0.98);
    }

    .floating-contact__panel::before {
        right: 18px;
        bottom: -10px;
    }

    .floating-contact {
        flex-direction: column;
        align-items: flex-end;
    }

    .floating-contact.is-open .floating-contact__panel {
        transform: translate3d(0, 0, 0) scale(1);
    }

    .legacy-made-note {
        grid-template-areas:
            "icon title"
            "text text";
        align-items: start;
        padding: 1.1rem 1.2rem;
        gap: 0.6rem 0.8rem;
    }

    .legacy-made-note__icon {
        width: 40px;
        height: 40px;
    }

    .legacy-made-note__title {
        align-self: center;
    }

    .sale-banner {
        padding-inline: calc(5% + var(--safe-left)) calc(5% + var(--safe-right));
        letter-spacing: 0.1em;
        gap: 0.5rem;
    }

    .sale-banner__label {
        font-size: 0.66rem;
        letter-spacing: 0.18em;
    }

    .sale-banner__text {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .legacy-teaser__highlights {
        gap: 0.6rem;
    }

    .legacy-teaser__highlights li {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        padding: 0.5rem 1rem;
    }
}

/* Advent calendar landing page */

.advent-page .site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.advent-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 12vw, 8rem) clamp(1.5rem, 6vw, 6rem) clamp(4rem, 11vw, 7rem);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

@keyframes adventParallax {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-4%, -5%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.advent-hero__content {
    position: relative;
    z-index: 2;
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.8rem);
}

.advent-hero__kicker {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.advent-calendar h1 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.75rem);
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 0 40px rgba(255, 211, 105, 0.25);
}

.advent-calendar h2 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 25px;
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 0 40px rgba(255, 211, 105, 0.25);
}

.advent-hero h1 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.75rem);
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 0 40px rgba(255, 211, 105, 0.25);
}

.advent-hero__subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.advent-hero__value {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: rgba(251, 192, 45, 0.18);
    border: 1px solid rgba(251, 192, 45, 0.45);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 36px rgba(123, 31, 31, 0.35);
    max-width: max-content;
    text-shadow: 0 0 18px rgba(251, 192, 45, 0.35);
    align-self: flex-start;
}

.advent-hero__value--centered {
    align-self: center;
    align-items: center;
    text-align: center;
    margin-inline: auto;
}

.advent-hero__value--centered strong,
.advent-hero__value--centered span {
    display: block;
    text-align: center;
    width: 100%;
}

.advent-hero__value strong {
    color: #FBC02D;
}

.advent-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.advent-hero__actions--premium {
    justify-content: center;
}

.advent-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1rem;
    cursor: pointer;
    background: #B87333;
    color: #142819;
    box-shadow: 0 10px 28px rgba(20, 40, 25, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.advent-cta:hover,
.advent-cta:focus-visible {
    transform: translateY(-2px) scale(1.02);
    background: #c1813d;
    box-shadow: 0 16px 32px rgba(20, 40, 25, 0.32);
}

.advent-cta--ghost {
    background: transparent;
    color: #B87333;
    border: 1px solid rgba(184, 115, 51, 0.65);
    box-shadow: none;
}

.advent-cta--ghost:hover,
.advent-cta--ghost:focus-visible {
    background: rgba(184, 115, 51, 0.08);
    box-shadow: none;
}

.advent-cta--secondary {
    background: #B87333;
    color: #142819;
    border-color: #142819;
    box-shadow: 0 10px 28px rgba(20, 40, 25, 0.28);
}

.advent-cta--secondary:hover,
.advent-cta--secondary:focus-visible {
    background: #c1813d;
}

.advent-cta--disabled,
.advent-cta[aria-disabled="true"] {
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(184, 115, 51, 0.28);
    color: rgba(20, 40, 25, 0.7);
    border-color: rgba(184, 115, 51, 0.4);
    box-shadow: none;
    opacity: 0.65;
    transform: none;
}

.advent-cta--disabled:hover,
.advent-cta--disabled:focus-visible,
.advent-cta[aria-disabled="true"]:hover,
.advent-cta[aria-disabled="true"]:focus-visible {
    background: rgba(184, 115, 51, 0.28);
    transform: none;
    box-shadow: none;
}

.advent-hero__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.advent-hero__meta>div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.advent-hero__meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    color: #FBC02D;
    box-shadow: inset 0 0 0 1px rgba(251, 192, 45, 0.25);
}

.advent-hero__visual {
    position: relative;
    grid-column: span 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advent-hero__showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.4rem, 4vw, 2.6rem);
    width: min(100%, 460px);
}

.advent-hero__visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.advent-calendar-card {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4), 0 0 120px rgba(255, 211, 105, 0.18);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.advent-calendar-card::before {
    content: '';
    position: absolute;
    inset: 12% 16%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 32px rgba(255, 211, 105, 0.18);
    filter: blur(0.5px);
}

.advent-calendar-card__title {
    position: relative;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.advent-calendar-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.45rem;
    padding: 0.5rem;
}

.advent-calendar-grid span {
    display: grid;
    place-items: center;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advent-calendar-grid span:nth-child(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.advent-calendar-grid span:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(255, 211, 105, 0.18);
}

.advent-calendar-card__footer {
    position: relative;
    text-align: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.18em;
}

.advent-section {
    position: relative;
    padding: clamp(3rem, 8vw, 4.5rem) clamp(1.5rem, 6vw, 5rem);
}

.advent-section__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1.4rem, 3vw, 2rem);
}

.advent-section__header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.advent-section__kicker {
    font-size: 0.82rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.advent-section__title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0;
}

.advent-section__lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.advent-section__intro {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 860px;
    line-height: 1.7;
    margin: 0;
}

.advent-section__intro a {
    color: #ffd480;
    font-weight: 600;
    text-decoration: none;
}

.advent-section__intro a:hover,
.advent-section__intro a:focus-visible {
    text-decoration: underline;
}

.advent-section__intro+.advent-steps {
    margin-top: clamp(1.2rem, 3vw, 1.8rem);
}

.advent-note {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-block: 1.4rem;
}

.advent-note__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background-color: #B87333;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 214, 126, 0.32), transparent 65%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 220, 141, 0.4);
    color: #fff6da;
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(255, 180, 80, 0.25), 0 0 32px rgba(255, 215, 128, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.advent-note__link:focus-visible {
    outline: none;
    border-color: rgba(255, 240, 180, 0.85);
    box-shadow: 0 18px 36px rgba(255, 200, 120, 0.3), 0 0 40px rgba(255, 240, 190, 0.5);
}

.advent-note__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 200, 120, 0.38), 0 0 44px rgba(255, 240, 190, 0.56);
}

.advent-note__link:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 12px 24px rgba(255, 180, 80, 0.28);
}

.advent-note__link-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.advent-premium-button {
    width: min(100%, 340px);
    flex: 1 1 240px;
    margin-inline: auto;
}

.advent-premium-button .advent-note__link-content {
    gap: 0.6rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.advent-premium-button .advent-note__link-text {
    letter-spacing: 0.18em;
    white-space: normal;
    line-height: 1.4;
}

.advent-premium-button .advent-note__link-icon {
    flex-shrink: 0;
}

.advent-note__link-text {
    font-size: 0.88rem;
    letter-spacing: 0.24em;
}

.advent-note__link-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 198, 109, 0.3), rgba(255, 154, 58, 0.5));
    border: 1px solid rgba(255, 210, 140, 0.6);
    display: grid;
    place-items: center;
    color: inherit;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.advent-note__link-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.advent-note__link-glow {
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle, rgba(255, 248, 220, 0.6) 0%, rgba(255, 203, 107, 0.25) 35%, transparent 60%);
    filter: blur(18px);
    opacity: 0.35;
    transform: scale(0.8);
    animation: advent-link-glow 2.8s ease-in-out infinite;
    animation-play-state: paused;
}

.advent-note__link:hover .advent-note__link-glow,
.advent-note__link:focus-visible .advent-note__link-glow {
    animation-play-state: running;
}

@keyframes advent-link-glow {

    0%,
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.32;
    }

    50% {
        transform: scale(1.05) rotate(12deg);
        opacity: 0.6;
    }
}

.advent-note__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.55), rgba(230, 81, 0, 0.55));
    display: grid;
    place-items: center;
    color: #7B1F1F;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.advent-note__text {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #FBC02D;
    text-align: center;
}

.advent-note__text strong {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: #FBC02D;
}

.advent-calendar__sponsors {
    margin-top: clamp(2.5rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.advent-calendar__sponsors-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.6rem);
}

.advent-calendar__sponsors-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0;
    letter-spacing: 0.06em;
    text-align: center;
}

.advent-calendar__sponsors-nav {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    color: #fff6da;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
    flex: 0 0 auto;
}

.advent-calendar__sponsors-nav:hover,
.advent-calendar__sponsors-nav:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 240, 200, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    outline: none;
}

.advent-calendar__sponsors-nav:active {
    transform: translateY(0) scale(0.96);
}

.advent-calendar__sponsors-nav:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.advent-calendar__sponsors-viewport {
    position: relative;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 4%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0.85) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 4%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0.85) 96%, transparent 100%);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    touch-action: pan-x;
}

.advent-calendar__sponsors-viewport::-webkit-scrollbar {
    height: 6px;
}

.advent-calendar__sponsors-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.advent-calendar__sponsors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.2rem;
}

.advent-calendar__sponsors-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.advent-calendar__sponsors-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 192, 45, 0.28);
}

.advent-calendar__sponsors-item img {
    width: min(100%, 180px);
    height: auto;
}

@media (min-width: 960px) {
    .advent-calendar__sponsors {
        margin-top: clamp(3rem, 6vw, 5rem);
    }

    .advent-calendar__sponsors-viewport {
        scroll-padding-inline: 2.5rem;
    }

    .advent-calendar__sponsors-item {
        flex-basis: 240px;
    }
}

.advent-steps {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.advent-step {
    position: relative;
    padding: 2.2rem 2rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advent-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 192, 45, 0.28);
}

.advent-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    color: #FBC02D;
}

.advent-step__title {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Poppins', 'Manrope', sans-serif;
}

.advent-step__actions {
    margin-top: auto;
}

.advent-step__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #FBC02D;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.advent-step__link:hover,
.advent-step__link:focus-visible {
    transform: translateX(4px);
}

.advent-step__socials {
    display: flex;
    gap: 0.6rem;
}

.advent-social {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    color: #FBC02D;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advent-social:hover,
.advent-social:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.advent-partner-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.advent-partner-card {
    position: relative;
    padding: 1.6rem 1.4rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.advent-partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.28), rgba(230, 81, 0, 0.18));
    opacity: 0;
    transition: opacity 0.25s ease;
    mix-blend-mode: screen;
    pointer-events: none;
}

.advent-partner-card:hover,
.advent-partner-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.38), 0 0 32px rgba(251, 192, 45, 0.26);
    border-color: rgba(251, 192, 45, 0.55);
}

.advent-partner-card:hover::after,
.advent-partner-card:focus-visible::after {
    opacity: 1;
}

.advent-partner-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    color: #FBC02D;
    font-weight: 700;
    font-size: 1.05rem;
}

.advent-partner-card__name {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 1.05rem;
    margin: 0;
}

.advent-partner-card__value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.advent-partner-card__cta {
    margin-top: auto;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    font-weight: 600;
    color: #FBC02D;
}

.advent-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(8px);
    z-index: 90;
}

.advent-modal.is-open {
    display: flex;
}

.advent-modal__dialog {
    max-width: 520px;
    width: min(92vw, 520px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
    position: relative;
}

.advent-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
}

.advent-modal__title {
    margin: 0;
    font-size: 1.6rem;
    font-family: 'Poppins', 'Manrope', sans-serif;
    margin-bottom: 0.5rem;
}

.advent-modal__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.6;
}

.advent-modal__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    color: #FBC02D;
    font-weight: 600;
}

.advent-progress {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1.6rem;
}

.advent-progress__headline {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.advent-progress__value {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: #FBC02D;
}

.advent-progress__bar {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.advent-progress__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, #FBC02D 0%, #E65100 100%);
    width: 0;
    border-radius: inherit;
    box-shadow: 0 0 18px rgba(251, 192, 45, 0.45);
}

.advent-progress__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.advent-progress__stat {
    padding: 1.2rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advent-progress__stat strong {
    font-size: 1.2rem;
}

.advent-faq {
    display: grid;
    gap: 1rem;
}

.advent-faq details {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.4rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.advent-faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: 'Poppins', 'Manrope', sans-serif;
}

.advent-faq p {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.76);
}

.advent-footer {
    padding: 3rem clamp(1.5rem, 6vw, 6rem) 3.5rem;
    background: rgba(0, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advent-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 2.2rem;
}

.advent-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
}

.advent-footer__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.advent-footer__partner {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.advent-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.advent-footer__links {
    display: flex;
    gap: 1rem;
}

.advent-sticky-cta {
    position: fixed;
    inset-inline: 0;
    bottom: max(12px, var(--safe-bottom));
    display: none;
    justify-content: center;
    z-index: 80;
}

.advent-sticky-cta__inner {
    display: inline-flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
}

.advent-floating-badge {
    position: absolute;
    top: 12%;
    right: 5%;
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
    text-align: center;
    animation: adventFloat 6s ease-in-out infinite;
}

@keyframes adventFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.advent-floating-badge strong {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #FBC02D;
}

.advent-floating-badge span {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.advent-hero__sentinel {
    position: relative;
    width: 100%;
    height: 1px;
}


.advent-calendar-stage {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: clamp(2rem, 6vw, 3.5rem);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.advent-calendar {
    width: min(1040px, 100%);
    background: #142819;
    border-radius: 32px;
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 214, 146, 0.22);
    padding: clamp(2rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.8rem, 4vw, 2.6rem);
    position: relative;
    min-height: min(840px, 100%);
}

.advent-calendar::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 214, 146, 0.25);
    pointer-events: none;
}

.advent-calendar__header {
    text-align: center;
    display: grid;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.86);
}

.advent-calendar__header h2 {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    color: #142819;
}

.advent-calendar__header p {
    max-width: 640px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.78);
}

.advent-calendar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.advent-calendar__day {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    padding: 0.8rem;
    background: #B87333;
    border-radius: 22px;
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.advent-calendar__day:hover,
.advent-calendar__day:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.55);
}

.advent-calendar__day-visual {
    width: 88%;
    max-width: 160px;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
}

.advent-calendar__day-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.advent-calendar__day-number {
    position: absolute;
    inset: auto 0 0 0;
    text-align: center;
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 4vw, 1.8rem);
    color: #FFEACC;
    padding: 0.4rem 0 0.6rem;
    letter-spacing: 0.08em;
    background: linear-gradient(180deg, rgba(255, 214, 146, 0.18), rgba(40, 6, 6, 0.85));
}

.advent-calendar__hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.advent-calendar__day.is-shaking {
    animation: calendar-shake 0.6s ease;
}

@keyframes calendar-shake {

    10%,
    90% {
        transform: translate3d(-2px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(3px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.floating-calendar-button {
    position: fixed;
    bottom: max(1.4rem, var(--safe-bottom));
    right: max(1.4rem, var(--safe-right));
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 214, 146, 0.45);
    background: linear-gradient(135deg, rgba(255, 214, 146, 0.92), rgba(255, 248, 231, 0.86));
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 214, 146, 0.26);
    display: grid;
    place-items: center;
    color: #7B1F1F;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 140;
}

@media (max-height: 780px) {
    .advent-calendar-stage {
        justify-content: flex-start;
        padding-block: clamp(1.5rem, 6vh, 2.5rem);
    }

    .advent-calendar {
        margin-top: clamp(1rem, 5vh, 2rem);
    }
}

@media (max-width: 720px) {
    .advent-calendar-stage {
        padding: clamp(1.8rem, 6vw, 2.5rem);
    }

    .advent-calendar__grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
}

@media (max-width: 520px) {
    .advent-calendar-stage {
        padding: clamp(1.1rem, 6vw, 1.5rem);
    }

    .advent-calendar {
        border-radius: 26px;
        padding: clamp(1.1rem, 5.5vw, 1.5rem);
        width: 100%;
    }

    .advent-calendar::before {
        inset: 8px;
        border-radius: 20px;
    }

    .advent-calendar__grid {
        grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
        gap: 0.9rem;
    }

    .advent-calendar__day {
        border-radius: 20px;
        padding: 0.7rem;
    }

    .advent-calendar__day-number {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
    }
}

@media (max-width: 420px) {
    .advent-calendar-stage {
        padding: clamp(0.9rem, 5vw, 1.2rem);
    }

    .advent-calendar {
        padding: clamp(1rem, 6vw, 1.35rem);
    }

    .advent-calendar::before {
        inset: 6px;
        border-radius: 18px;
    }

    .advent-calendar__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .advent-calendar__header h2 {
        font-size: clamp(1.8rem, 8vw, 2.1rem);
    }

    .advent-calendar__header p {
        font-size: 0.95rem;
    }

    .advent-calendar__day-visual {
        width: 84%;
    }
}

.floating-calendar-button svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: currentColor;
}

.floating-calendar-button.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-calendar-button__icon {
    display: inline-flex;
}

@media (max-width: 1200px) {
    .advent-hero {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        text-align: center;
    }

    .advent-hero__content,
    .advent-hero__visual {
        grid-column: auto;
    }

    .advent-hero__actions {
        justify-content: center;
    }

    .advent-hero__value {
        align-self: center;
    }

    .advent-hero__showcase {
        width: min(100%, 380px);
    }

    .advent-floating-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto 0;
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .advent-hero {
        padding-inline: clamp(1.2rem, 5vw, 1.6rem);
    }

    .advent-hero__showcase {
        width: min(100%, 320px);
        gap: 1.8rem;
    }

    .advent-note__link {
        width: 100%;
    }

    .advent-note__link-content {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.6rem;
        text-align: center;
    }

    .advent-note__link-text {
        width: 100%;
    }

    .advent-calendar-card {
        width: min(320px, 90vw);
    }

    .advent-calendar-grid span {
        height: 44px;
        font-size: 0.85rem;
    }

    .advent-calendar {
        padding: clamp(1.6rem, 6vw, 2.1rem);
    }

    .advent-calendar__grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .floating-calendar-button {
        width: 3.2rem;
        height: 3.2rem;
    }

    .advent-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advent-progress__stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .advent-footer__top {
        flex-direction: column;
        text-align: center;
    }

    .advent-footer__bottom {
        justify-content: center;
        text-align: center;
    }

    .advent-sticky-cta {
        display: flex;
    }
}

@media (max-width: 540px) {
    .advent-hero h1 {
        font-size: clamp(2.2rem, 9vw, 2.6rem);
    }

    .advent-hero__subtitle {
        font-size: 1.05rem;
    }

    .advent-calendar-card {
        border-radius: 26px;
        padding: 1.6rem;
    }

    .advent-calendar-card::before {
        inset: 15% 12%;
    }

    .advent-section {
        padding-inline: clamp(1rem, 4vw, 1.4rem);
    }

    .advent-step {
        padding-inline: 1.5rem;
    }

    .advent-sticky-cta__inner {
        flex-direction: column;
        padding: 0.85rem 1rem;
        gap: 0.6rem;
    }

    .advent-calendar__grid {
        grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
        gap: 0.8rem;
    }

    .floating-calendar-button {
        bottom: max(1rem, var(--safe-bottom));
        right: max(1rem, var(--safe-right));
    }
}

@media (prefers-reduced-motion: reduce) {

    .advent-hero::after,
    .advent-floating-badge,
    .advent-partner-card,
    .advent-step,
    .advent-calendar-grid span,
    .advent-sticky-cta__inner,
    .advent-cta,
    .advent-calendar__day,
    .floating-calendar-button {
        animation: none !important;
        transition: none !important;
    }

    .advent-calendar__day.is-shaking {
        animation: none !important;
    }

    .advent-modal {
        backdrop-filter: none;
    }
}


body.advent-page {
    position: relative;
}

body.advent-page .site-header,
body.advent-page main {
    z-index: auto;
}

/* oder Regel entfernen */
body.advent-page .site-header {
    z-index: 100;
}

.snow-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    mix-blend-mode: screen;
}

.snow-layer span {
    position: absolute;
    top: -12px;
    left: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    animation: snowfall 12s linear infinite;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

@keyframes snowfall {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(var(--x, 0), 110vh, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .snow-layer span {
        animation: none;
        display: none;
    }
}

.advent-hero__figure {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
}

.advent-hero__figure img {
    width: 100%;
    height: auto;
    display: block;
}

.advent-hero__headline {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.advent-hero__badge {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(123, 31, 31, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 0 0 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
}

.advent-hero__badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(251, 192, 45, 0.18);
    border: 1px solid rgba(251, 192, 45, 0.35);
    color: #ffe8a5;
}

.advent-hero__value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.advent-hero__value span {
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    font-weight: 700;
    color: #fff;
}

.advent-hero__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.advent-hero__highlights li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 255, 255, 0.82);
}

.advent-hero__highlights li::before {
    content: '\2022';
    position: absolute;
    left: 0.4rem;
    color: #FBC02D;
    font-size: 1.1rem;
}

.advent-section--two-column .advent-section__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    gap: clamp(2rem, 5vw, 3rem);
}

.advent-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.advent-feature-list {
    display: grid;
    gap: 1.4rem;
}

.advent-section__grid {
    display: grid;
    gap: clamp(1.4rem, 4vw, 2.2rem);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.advent-section__grid--triple {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.advent-section__grid article {
    position: relative;
    --advent-card-radius: 24px;
    background: #142819;
    border-radius: var(--advent-card-radius);
    padding: 1.8rem;
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.advent-feature-list article {
    position: relative;
    --advent-card-radius: 22px;
    background: #142819;
    border-radius: var(--advent-card-radius);
    padding: 1.6rem;
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.advent-feature-list h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-family: 'Poppins', 'Manrope', sans-serif;
}

.advent-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advent-section__card {
    position: relative;
    --advent-card-radius: 26px;
    max-width: 360px;
    background: #142819;
    border-radius: var(--advent-card-radius);
    padding: 2.2rem;
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.35);
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.advent-section__figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.32);
}

.advent-section__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.advent-section__cta {
    display: inline-flex;
    margin-top: 1.4rem;
}

.advent-section__card span {
    font-size: 0.95rem;
    color: rgba(255, 230, 204, 0.75);
}

.advent-feature-list article::before,
.advent-section__grid article::before,
.advent-section__card::before {
    content: '';
    position: absolute;
    inset: clamp(0.8rem, 3vw, 1rem);
    border-radius: calc(var(--advent-card-radius, 24px) - 12px);
    border: 1px dashed rgba(255, 214, 146, 0.32);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.advent-feature-list article::after,
.advent-section__grid article::after,
.advent-section__card::after {
    content: none;
}

.advent-steps--numbered>li::after {
    content: '';
    position: absolute;
    inset: clamp(0.85rem, 3vw, 1.1rem);
    border-radius: calc(var(--advent-card-radius, 26px) - 12px);
    border: 1px dashed rgba(255, 214, 146, 0.32);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.advent-feature-list article>*,
.advent-section__grid article>*,
.advent-steps--numbered>li>*,
.advent-section__card>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 720px) {

    .advent-feature-list article::before,
    .advent-section__grid article::before,
    .advent-section__card::before {
        inset: clamp(0.7rem, 3vw, 0.9rem);
    }

    .advent-steps--numbered>li::after {
        inset: clamp(0.75rem, 3vw, 0.95rem);
    }

    .advent-section__figure {
        max-width: none;
        width: 100%;
    }
}

.advent-steps--numbered {
    counter-reset: advent-step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(1.2rem, 3vw, 1.8rem);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.advent-steps--numbered>li {
    position: relative;
    --advent-card-radius: 26px;
    padding: 2.2rem 1.8rem 1.8rem;
    background: #142819;
    border-radius: var(--advent-card-radius);
    border: 1px solid rgba(255, 214, 146, 0.45);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.advent-steps--numbered>li::before {
    counter-increment: advent-step;
    content: counter(advent-step, decimal-leading-zero);
    position: absolute;
    top: 1.2rem;
    left: 1.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(184, 115, 51, 0.85);
    text-shadow: 0 0 12px rgba(184, 115, 51, 0.45);
}

.advent-steps--numbered h3 {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', 'Manrope', sans-serif;
}

.advent-section--spotlight {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0));
}

.advent-section--donation {
    background: linear-gradient(180deg, rgba(123, 31, 31, 0.75), rgba(62, 15, 15, 0.85));
    border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.advent-donation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    text-align: center;
}

.advent-donation blockquote,
.advent-section__grid article blockquote {
    margin: 0;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-family: 'Poppins', 'Manrope', sans-serif;
    color: #B87333;
}

.advent-section__grid article blockquote {
    margin-top: 1.1rem;
    margin-bottom: 1.2rem;
}

.advent-partners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    align-items: center;
    justify-items: center;
}

.advent-partners__logo {
    display: block;
    max-width: 220px;
    width: 100%;
}

.advent-partners__logo:hover,
.advent-partners__logo:focus-visible {
    transform: none;
}

.advent-partners__logo img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.advent-partners__logo--static {
    cursor: default;
}

.advent-partners__note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.advent-progress-figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.advent-progress-figure img {
    max-width: min(560px, 100%);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38);
}

.advent-progress-figure figcaption {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 1200px) {
    .advent-partners {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 960px) {
    .advent-hero {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .advent-hero__content {
        grid-column: span 12;
    }

    .advent-hero__visual {
        grid-column: span 12;
    }

    .advent-hero__badge {
        position: static;
        border-radius: 24px;
        margin-top: 1.2rem;
    }
}

@media (max-width: 640px) {

    .advent-feature-list article,
    .advent-steps--numbered>li {
        padding: 1.6rem 1.4rem;
    }

    .advent-steps--numbered>li::before {
        left: 1.4rem;
    }
}