/* Root theme tokens */
:root {
    --color-bg: #05020e;
    --color-card: rgba(12, 8, 28, 0.75);
    --color-card-alt: rgba(20, 14, 45, 0.7);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-accent: #ff6200;
    --color-accent-secondary: #008cff;
    --color-text: #f4f7ff;
    --color-muted: #c4c8d4;
    --font-heading: 'Black Ops One', 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max-width: 1180px;
    --transition-base: 0.3s ease;
    --shadow-soft: 0 25px 50px -25px rgba(8, 12, 40, 0.5);
    --bg-gradient: radial-gradient(circle at 10% 20%, rgba(32, 19, 65, 0.9), transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(80, 12, 24, 0.75), transparent 45%),
        var(--color-bg);
    --roller-depth: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    touch-action: pan-y;
    overscroll-behavior-x: none;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
}

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

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

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

p {
    margin-top: 0;
    margin-bottom: 0.85rem;
    color: rgba(244, 247, 255, 0.85);
}

main {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 2rem);
    padding: clamp(0.25rem, 1.5vw, 0.75rem) clamp(1.5rem, 4vw, 3rem) clamp(3.5rem, 8vw, 5rem);
}

.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.6rem, 3vw, 2.4rem);
    margin: clamp(1.4rem, 3vw, 2rem) auto clamp(0.2rem, 1vw, 0.6rem);
}

.site-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.2rem 0;
    margin: 0;
}

.site-banner__image {
    width: min(780px, 92%);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.08), 0 18px 35px rgba(5, 5, 25, 0.45);
    filter: none;
}

.cta-bar {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 clamp(1.2rem, 2.4vw, 2rem);
}

.cta-bar .btn--telegram-outline {
    margin: 0 auto;
}

.hero {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    width: min(100%, var(--max-width));
}

.hero__mascot {
    position: relative;
    width: clamp(240px, 26vw, 420px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: mascot-float 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 45px rgba(8, 12, 40, 0.55));
    --tilt-rotate-x: 0deg;
    --tilt-rotate-y: 0deg;
    transform-style: preserve-3d;
}

.hero__mascot-glow {
    position: absolute;
    inset: -18%;
    background: radial-gradient(circle, rgba(255, 98, 0, 0.4), rgba(0, 140, 255, 0.15) 48%, rgba(5, 2, 14, 0) 70%);
    filter: blur(12px);
    animation: glow-pulse 6s ease-in-out infinite;
    z-index: 0;
}

.hero__mascot-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 28px 45px rgba(5, 5, 25, 0.4);
    z-index: 1;
    animation: mascot-zoom 10s ease-in-out infinite;
}

.hero__mascot-shadow {
    position: absolute;
    bottom: -6%;
    width: 70%;
    height: 18%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    filter: blur(12px);
    z-index: -1;
}

.hero__sparks span {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.4), transparent 65%);
    filter: blur(45px);
    animation: spark-spin 14s linear infinite;
}

.hero__sparks span:nth-child(2) {
    animation-duration: 20s;
    animation-direction: reverse;
    opacity: 0.5;
}

.hero__sparks span:nth-child(3) {
    animation-duration: 26s;
    opacity: 0.35;
}

@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.8;
        transform: translate(-6%, -4%) scale(1);
    }
    50% {
        opacity: 0.45;
        transform: translate(4%, 6%) scale(1.05);
    }
}

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

@keyframes mascot-float {
    0%,
    100% {
        transform: rotateX(var(--tilt-rotate-x)) rotateY(var(--tilt-rotate-y)) translateY(0) rotate(-2deg);
    }
    50% {
        transform: rotateX(var(--tilt-rotate-x)) rotateY(var(--tilt-rotate-y)) translateY(-12px) rotate(2deg);
    }
}

@keyframes mascot-zoom {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero__countdown {
    width: 100%;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 2vw, 1.8rem);
    background: rgba(12, 8, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: clamp(1.6rem, 2.4vw, 2.6rem);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: none;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.6vw, 3.6rem);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: #d76f67;
    line-height: 1;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    word-break: normal;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

h1 {
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.2;
}

.hero__lead {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.6;
}

.hero__summary {
    margin: 0 0 1.25rem;
    color: rgba(244, 247, 255, 0.82);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.65;
    max-width: 52ch;
}

.hero__headline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.countdown-dock {
margin: 0.75rem auto 1.5rem; /* oben kleiner, unten kannst du lassen */
    width: min(94%, 920px);
    position: sticky;
    top: 12px;
    z-index: 80;
}

.countdown-panel {
    background: linear-gradient(140deg, rgba(8, 14, 38, 0.95), rgba(8, 18, 55, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: clamp(1.4rem, 3vw, 2.1rem);
    box-shadow: 0 25px 55px rgba(2, 0, 20, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    align-items: center;
    text-align: center;
}

.countdown-panel::before {
    content: '';
    position: absolute;
    inset: -20% -40%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 50%);
    opacity: 0.75;
    pointer-events: none;
}

.countdown-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0.35;
    pointer-events: none;
}

.countdown-panel__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.countdown-panel__title {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #ffcd00;
    margin: 0;
}

.countdown-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    margin: 0.75rem auto 0;
    max-width: 760px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1 1 0;
    min-width: 0;
}

.label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(203, 213, 255, 0.95);
}

.roller-group {
    display: flex;
    justify-content: center;
    gap: clamp(0.45rem, 1vw, 0.75rem);
}

.roller {
    position: relative;
    width: clamp(24px, 2.8vw, 36px);
    height: clamp(38px, 4.6vw, 66px);
    perspective: 1200px;
}

.roller::before,
.roller::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 35%, rgba(255, 255, 255, 0.1) 65%, rgba(0, 0, 0, 0.6));
    z-index: 0;
    transform: translateZ(calc(var(--roller-depth) * -0.4));
    pointer-events: none;
}

.roller::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.35));
    mix-blend-mode: soft-light;
}

.roller-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(calc(var(--roller-depth) / 2));
    z-index: 1;
    will-change: transform;
}

.roller .card {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(255, 252, 242, 0.95), #daceb1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 22px 40px rgba(0, 0, 0, 0.35);
    font-family: 'Roboto', var(--font-heading), sans-serif;
    font-size: clamp(1.35rem, 3.6vw, 2.3rem);
    font-weight: 600;
    color: #1f1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    transform-origin: center bottom calc(-1 * var(--roller-depth));
    will-change: transform, opacity, filter;
}

.roller .card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.45), transparent);
    transform: translateY(-50%);
}

.roller .card.current {
    transform: rotateX(0deg);
    z-index: 2;
}

.roller .card.next {
    transform: rotateX(-90deg);
    transform-origin: center top calc(-1 * var(--roller-depth));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 16px rgba(0, 0, 0, 0.35);
}

.roller.is-flipping .card.current {
    animation: countdown-flip-out 0.32s cubic-bezier(0.25, 0.8, 0.35, 1) forwards;
}

.roller.is-flipping .card.next {
    animation: countdown-flip-in 0.32s cubic-bezier(0.25, 0.8, 0.35, 1) forwards;
}

@keyframes countdown-flip-out {
    0% {
        transform: rotateX(0deg);
        filter: blur(0);
        opacity: 1;
    }
    50% {
        transform: rotateX(-75deg);
        filter: blur(3px);
        opacity: 0.6;
    }
    100% {
        transform: rotateX(-120deg);
        filter: blur(4px);
        opacity: 0;
    }
}

@keyframes countdown-flip-in {
    0% {
        transform: rotateX(90deg);
        filter: blur(4px);
        opacity: 0;
    }
    45% {
        transform: rotateX(20deg);
        filter: blur(2px);
        opacity: 0.85;
    }
    100% {
        transform: rotateX(0deg);
        filter: blur(0);
        opacity: 1;
    }
}

.countdown-panel__status {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
}

.hero__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.hero__actions-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.hero__actions--primary {
    margin-top: 0;
}

.hero__actions--secondary {
    margin-top: 0;
    opacity: 0.85;
}

.hero__actions--secondary .btn {
    font-size: 0.9rem;
}

.btn--telegram {
    box-shadow: white;
    background-color: #54d390;
}

/* Outline-style Telegram button to match Pump style */
.btn--telegram-outline {
    color: #2294e6;
    border-color: #2294e6;
    background: linear-gradient(135deg, rgba(34, 148, 230, 0.22), rgba(34, 148, 230, 0.12));
    box-shadow: 0 10px 30px rgba(34, 148, 230, 0.28), 0 0 18px rgba(34, 148, 230, 0.42);
    text-shadow: 0 0 8px rgba(34, 148, 230, 0.65);
}

.btn--pump {
    color: #54d28e;
    border-color: #54d28e;
    background: rgba(84, 210, 142, 0.08);
}

/* Dedicated pump button skin to avoid other variants overriding the color */
.btn--pump-green {
    color: #54d28e;
    border-color: #54d28e;
    background: rgba(84, 210, 142, 0.14);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

.btn--primary {
    background: linear-gradient(135deg, #ff7a18 0%, #af002d 100%);
    color: #fff;
}

.btn--outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

/* Ensure pump buttons keep their palette when combined with outline */
.btn--outline.btn--pump,
.btn--outline.btn--pump-green {
    color: #54d28e;
    border-color: #54d28e;
    background: rgba(84, 210, 142, 0.14);
}

.btn--telegram-primary {
    background: linear-gradient(135deg, #3cb5ff 0%, #0f6dc4 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(15, 109, 196, 0.35);
}

.btn--outline.btn--telegram-outline {
    color: #2294e6;
    border-color: #2294e6;
    background: rgba(34, 148, 230, 0.12);
    box-shadow: 0 10px 30px rgba(34, 148, 230, 0.24);
}

@media (min-width: 960px) {
    .hero__actions-group {
        align-items: center;
        gap: 0.85rem;
    }

    .hero {
        margin: 12px auto 0;
    }

    .countdown-dock {
        margin: 12px auto clamp(1.25rem, 3vw, 2.5rem);
    }
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn--com {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fdac9c;
}

.hero__meta {
    display: flex;
    gap: clamp(0.9rem, 2.4vw, 1.4rem);
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}

.hero__meta-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
}

.hero__meta-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
}

.hero__meta div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 2.6vw, 1.8rem);
}

.section--dark {
    background: rgba(12, 8, 28, 0.7);
    padding: clamp(1.9rem, 3.5vw, 2.4rem) clamp(1.2rem, 3vw, 2.2rem);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.section--dark > *:not(.hashtag-rain) {
    position: relative;
    z-index: 1;
}

.section--wide {
    width: min(100%, 1280px);
}

.section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
}

.section__header p {
    margin: 0;
    color: var(--color-muted);
    max-width: 620px;
}

.section__content--two-column {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(1.5rem, 2vw, 2.5rem);
}

.embed-card {
    background: rgba(12, 10, 40, 0.65);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.embed-card iframe {
    width: 100%;
    min-height: 520px;
    border: none;
}

.embed-card--chart {
    min-height: 420px;
}

 

 

.news-section {
    position: relative;
}

.news-section__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.news-section__header button {
    margin-top: 0.25rem;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1.1rem);
    padding: clamp(1.5rem, 2.5vw, 2.4rem);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 38, 0.7);
    box-shadow: var(--shadow-soft);
}

.news-feed__body {
    display: grid;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    position: relative;
    min-height: 180px;
}

.news-feed__body[aria-busy="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        rgba(20, 18, 48, 0.75) 0%,
        rgba(35, 30, 70, 0.45) 45%,
        rgba(20, 18, 48, 0.75) 90%
    );
    background-size: 200% 100%;
    animation: news-shimmer 1.8s ease-in-out infinite;
    pointer-events: none;
}

.news-feed__item {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 10, 32, 0.65);
    box-shadow: 0 16px 32px rgba(9, 11, 30, 0.35);
    opacity: 0;
    transform: translateY(10px);
    animation: news-fade-in 0.45s ease forwards;
}

.news-feed__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.4;
}

.news-feed__title a {
    color: #fff;
    transition: color var(--transition-base);
}

.news-feed__title a:hover,
.news-feed__title a:focus-visible {
    color: var(--color-accent-secondary);
}

.news-feed__meta {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.news-feed__summary {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.news-feed__empty {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

@keyframes news-fade-in {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-feed__body[aria-busy="true"] > * {
    opacity: 0;
}

@keyframes news-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.25rem);
}

.token-card {
    background: var(--color-card);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    padding: clamp(1.35rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.token-card--primary {
    background: linear-gradient(160deg, rgba(255, 98, 0, 0.22), rgba(8, 20, 80, 0.75));
}

.token-card__value {
    font-family: var(--font-heading);
    word-break: break-all;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.token-card__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.token-card__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text);
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.token-card__links a:hover,
.token-card__links a:focus-visible {
    opacity: 1;
}

.token-metrics {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.token-metrics span {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.token-metrics strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1rem, 2.8vw, 1.4rem);
}

.chart-grid--blurred {
    position: relative;
}

.chart-grid--blurred > *:not(.chart-grid__overlay) {
    filter: blur(2px);
    pointer-events: none;
}

.chart-grid__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(6, 4, 18, 0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: all;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.chart-card {
    background: var(--color-card-alt);
    border-radius: 24px;
    padding: clamp(1.5rem, 2vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.chart-card canvas {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 0.5rem;
}

.chart-card__caption {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.footer {
    padding: 3rem 1.5rem 4rem;
    text-align: center;
    background: rgba(6, 4, 18, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 5rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer__links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer__links a {
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.footer__links a:hover,
.footer__links a:focus-visible {
    opacity: 1;
}

.footer__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translate(-50%, 120%);
    background: rgba(8, 12, 40, 0.92);
    color: #fff;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(5, 8, 26, 0.4);
    font-size: 0.95rem;
    line-height: 1.2;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.confetti-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1200;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 16px;
    border-radius: 2px;
    opacity: 0;
    animation: confetti-fall 900ms ease forwards;
}

.mobile-dock {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: none;
    width: min(92%, 420px);
    margin: 0 auto;
    padding: 0.65rem 0.85rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(8, 12, 40, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(5, 5, 25, 0.45);
    z-index: 1050;
    backdrop-filter: blur(14px);
    justify-content: space-between;
    gap: 0.75rem;
}

.mobile-dock__link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 98, 0, 0.9), rgba(0, 140, 255, 0.85));
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mobile-dock__icon {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-dock__link:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.9), rgba(0, 215, 255, 0.85));
}

.mobile-dock__link:nth-child(3) {
    background: linear-gradient(135deg, rgba(36, 46, 68, 0.95), rgba(112, 128, 177, 0.85));
}

.mobile-dock__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.mobile-dock__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

@keyframes countdown-bounce {
    0% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-18%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes confetti-fall {
    0% {
        opacity: 0;
        transform: translate3d(var(--x-offset, 0), -20px, 0) rotate(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--x-offset, 0), calc(120px + var(--y-offset, 0)), 0) rotate(280deg);
    }
}

.countdown__block.is-updated .countdown__value {
    animation: countdown-pop 0.65s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 16px 28px rgba(0, 0, 0, 0.35);
    color: #111;
}

@keyframes countdown-pop {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 16px 28px rgba(0, 0, 0, 0.35);
    }
    35% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35), 0 22px 35px rgba(0, 0, 0, 0.4);
    }
    70% {
        transform: scale(0.98);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18), 0 18px 30px rgba(0, 0, 0, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.22), 0 16px 28px rgba(0, 0, 0, 0.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    .countdown__block.is-updated .countdown__value {
        animation: none;
    }

    .roller.is-flipping .card {
        animation: none;
        filter: none;
        opacity: 1;
        transform: rotateX(0deg);
    }

    .confetti-piece {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .hero {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-banner {
        padding: 0.8rem 0;
    }

    .site-banner__image {
        width: min(92%, 520px);
    }

    .hero {
        margin-top: clamp(1rem, 2vw, 1.8rem);
        gap: 1.5rem;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        max-width: 100%;
    }

    .hero__content p,
    .hero__meta,
    .hero__meta div {
        text-align: center;
    }

    .eyebrow {
        font-size: clamp(1.7rem, 5.4vw, 2.6rem);
        letter-spacing: 0.06em;
    }

    .hero__content h1 {
        font-size: clamp(1.6rem, 4.8vw, 2.5rem);
        line-height: 1.12;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(138px, 1fr));
    }

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

    .hero__actions .btn {
        flex: 1 1 45%;
        min-width: 160px;
    }

    .hero__interactive {
        width: 100%;
    }

    .hero__interactive > * {
        width: 100%;
    }

    .hero__meta {
        justify-content: center;
    }

    .mobile-dock {
        display: flex;
    }

    .news-feed {
        padding: 1.3rem;
    }

    .news-section__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-bar {
        justify-content: center;
    }

    .cta-bar .btn--telegram-outline {
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .hero__content {
        padding: 1.5rem;
        gap: 1.4rem;
    }

    .eyebrow {
        font-size: clamp(1.55rem, 7.2vw, 2.2rem);
        letter-spacing: 0.05em;
    }

    .hero__content h1 {
        font-size: clamp(1.45rem, 6.2vw, 2.1rem);
    }

    .hero__content .btn,
    .hero__actions .btn {
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(138px, 1fr));
        gap: 0.75rem;
    }

    .section--dark {
        padding: 2.2rem 1.5rem;
    }

    .hero__content,
    .hero__interactive,
    .hero__content p,
    .hero__actions,
    .hero__meta,
    .hero__meta div,
    .hero__meta-label,
    .hero__meta-value,
    .section__header,
    .section__header p,
    .contract-brief,
    .contract-brief__actions,
    .token-card,
    .chart-card,
    .token-card h3,
    .token-metrics span,
    .token-metrics strong,
    .footer__links,
    .footer__note {
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }
    .contract-brief__actions {
        justify-content: center;
    }

}

.hero__mascot {
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
}

.hero__interactive {
    margin-top: 1.2rem;
}

.contract-brief {
    width: 100%;
    display: grid;
    gap: 1rem;
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 11, 32, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(5, 5, 25, 0.4);
}

.contract-brief__header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.contract-brief__label {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.contract-brief__chain {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
}

.contract-brief__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    word-break: break-all;
    width: 100%;
}

.contract-brief__note {
    margin: 0.4rem 0 0.6rem;
    font-size: 0.85rem;
    color: rgba(244, 247, 255, 0.7);
}

.contract-brief__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contract-brief__actions .btn {
    flex: 1 1 160px;
}

.contract-brief__copy {
    min-width: 180px;
}

@media (min-width: 960px) {
    .contract-brief {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
}

.yard-progress {
    position: fixed;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70vh;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 900;
    pointer-events: none;
    overflow: hidden;
}

.yard-progress__fill {
    display: block;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-secondary));
    opacity: 0.25;
    transition: opacity 0.25s ease;
}

.live-ticker {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 950;
    background: rgba(8, 10, 32, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding: 0.45rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.live-ticker__track {
    display: inline-block;
    min-width: 100%;
    white-space: nowrap;
    animation: ticker-scroll 24s linear infinite;
}

.live-ticker:hover .live-ticker__track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.token-card,
.chart-card {
    position: relative;
    overflow: hidden;
    --glare-x: 50%;
    --glare-y: 50%;
}

.token-card::after,
.chart-card::after {
    content: "";
    position: absolute;
    inset: -120%;
    background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.22), transparent 45%);
    opacity: 0.15;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.token-card:hover::after,
.token-card:focus-within::after,
.chart-card:hover::after,
.chart-card:focus-within::after {
    opacity: 0.32;
}

body {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    --spotlight-opacity: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.16), transparent 55%);
    opacity: var(--spotlight-opacity);
    transition: opacity 0.3s ease;
    z-index: 100;
    mix-blend-mode: screen;
}

.hashtag-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hashtag-rain__item {
    position: absolute;
    top: -10%;
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.35);
    filter: blur(0.5px);
    animation: hashtag-fall var(--fall-duration, 6s) linear forwards;
    opacity: 0;
}

@keyframes hashtag-fall {
    0% {
        transform: translateY(-10%) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translateY(120%) translateX(var(--drift, 20px));
        opacity: 0;
    }
}

.yard-progress {
    display: none;
}

@media (min-width: 768px) {
    .yard-progress {
        display: block;
    }
}

@media (max-width: 768px) {
    .news-section__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news-feed__item {
        text-align: center;
    }

    .news-feed__meta {
        justify-content: center;
    }
}

body.time-morning {
    --bg-gradient: radial-gradient(circle at 15% 20%, rgba(255, 179, 71, 0.6), transparent 35%),
        radial-gradient(circle at 80% 15%, rgba(255, 102, 196, 0.45), transparent 48%),
        radial-gradient(circle at 50% 85%, rgba(255, 244, 194, 0.4), transparent 60%),
        var(--color-bg);
}

body.time-day {
    --bg-gradient: radial-gradient(circle at 10% 20%, rgba(34, 100, 255, 0.45), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(0, 244, 255, 0.35), transparent 48%),
        radial-gradient(circle at 40% 80%, rgba(255, 176, 73, 0.35), transparent 60%),
        var(--color-bg);
}

body.time-night {
    --bg-gradient: radial-gradient(circle at 10% 20%, rgba(32, 19, 65, 0.9), transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(80, 12, 24, 0.75), transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(12, 24, 78, 0.55), transparent 60%),
        var(--color-bg);
}

/* CoinGecko sideline banner */
.sideline {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.sideline-banner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #050812;
    width: 100%;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}

.sideline-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.4rem;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.sideline-led-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #22c55e22 0, #22c55e55 10%, #facc1544 20%, #22c55e55 30%, #22c55e22 45%, #22c55e22 55%, #22c55e55 65%, #f97316aa 75%, #22c55e55 85%, #22c55e22 100%),
        radial-gradient(circle at top, #16a34a11 0, transparent 50%);
    background-size: 220% 100%;
    opacity: 0.75;
    animation: sideline-pan 7s linear infinite;
    pointer-events: none;
}

@keyframes sideline-pan {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.sideline-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.7) 1px, transparent 1px, transparent 5px);
    opacity: 0.65;
    pointer-events: none;
}

.sideline-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease-out;
}

.sideline-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.sideline-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sideline-top {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    opacity: 0.8;
}

.sideline-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.sideline-main span.highlight {
    color: #22c55e;
    text-shadow: 0 0 10px #22c55e;
}

.sideline-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sideline-bottom {
    font-size: 0.9rem;
    color: #d1d5db;
    opacity: 0.9;
}

.sideline-banner__inner:hover .sideline-icon,
.sideline-banner__inner:focus-visible .sideline-icon {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .sideline-banner__inner {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .sideline-text {
        gap: 0.1rem;
    }

    .sideline-top {
        font-size: 0.72rem;
    }

    .sideline-main {
        flex-wrap: nowrap;
        gap: 0.35rem;
        font-size: 0.95rem;
    }

    .sideline-badge {
        font-size: 0.6rem;
        padding: 0.18rem 0.45rem;
    }

    .sideline-bottom {
        font-size: 0.8rem;
    }
}

/* Superbowl Cat AI section */
.ai-mascot-section {
    margin: 0 auto;
    width: min(100%, var(--max-width));
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 28px;
    background: radial-gradient(circle at top, #321533, #091213);
    color:  #fff1f0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-body);
}
.ai-chat {
    width: 100%;
    background: rgba(4, 5, 10, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
}
.ai-chat__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}
.ai-chat__identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ai-chat__avatar {
    width: 58px;
    height: 58px;
    margin: 0;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f27f27, #dd1f1c);
    box-shadow: 0 10px 22px rgba(221, 31, 28, 0.4);
}
.ai-chat__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ai-chat__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.ai-chat__status {
    margin: 0;
    font-size: 0.78rem;
    color: #fdbfb1;
}
.ai-chat__header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff1f0;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.ai-chat__header-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.ai-chat__header-cta:hover::before,
.ai-chat__header-cta:focus-visible::before {
    opacity: 1;
    transform: translateX(50%);
}
.ai-chat__header-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.ai-chat__screen {
    background: rgba(3, 3, 6, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(1rem, 2.2vw, 1.4rem);
}
.ai-chat__messages {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ai-chat__bubble {
    max-width: 86%;
    padding: 0.75rem 0.95rem;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.ai-chat__bubble--user {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-top-left-radius: 4px;
}
.ai-chat__bubble--tom {
    align-self: flex-end;
    background: linear-gradient(135deg, #f27f27, #dd1f1c);
    border-top-right-radius: 4px;
    color: #290805;
    font-weight: 600;
}
.ai-chat__bubble p {
    margin: 0.25rem 0 0.35rem;
    line-height: 1.4;
    font-size: 0.95rem;
}
.ai-chat__bubble time {
    font-size: 0.7rem;
    opacity: 0.6;
}
.ai-chat__tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}
.ai-chat__typing {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    color: #fdbfb1;
    font-size: 0.8rem;
}
.ai-chat__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: ai-typing 1.2s ease-in-out infinite;
}
.ai-chat__dot:nth-child(2) { animation-delay: 0.15s; }
.ai-chat__dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes ai-typing {
    0%, 80%, 100% { opacity: 0.2; }
    40% { opacity: 1; }
}

.ai-chat__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(2, 3, 7, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-chat__placeholder {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.ai-chat__cta {
    background: linear-gradient(135deg, #f27f27, #dd1f1c);
    color: #fff1f0;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}
.ai-mascot__content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1.2rem);
}
.ai-mascot__eyebrow {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #f5e3b5;
}
.ai-mascot__headline {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.ai-mascot__subhead {
    color: #f5e3b5;
    line-height: 1.5;
}
.ai-mascot__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}
.ai-mascot__benefits li {
    background: rgba(10, 34, 20, 0.7);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    font-weight: 500;
}
.ai-card {
    --card-bg: hsla(240, 15%, 9%, 1);
    --card-primary: #ff6200;
    position: relative;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background-image: radial-gradient(at 88% 40%, rgba(12, 25, 49, 0.65) 0px, transparent 80%),
        radial-gradient(at 20% 10%, rgba(255, 255, 255, 0.08) 0px, transparent 70%),
        radial-gradient(at 0% 64%, rgba(13, 84, 104, 0.65) 0px, transparent 70%),
        radial-gradient(at 100% 99%, rgba(9, 33, 42, 0.9) 0px, transparent 65%),
        var(--card-bg);
    box-shadow: 0 -14px 24px 0 rgba(255, 255, 255, 0.1) inset, 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.ai-card__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}
.ai-card__border::before {
    content: none;
}
@keyframes ai-card-sheen {
    to {
        transform: translateY(300%);
    }
}
.ai-card__title span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.ai-card__title p {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
}
.ai-card hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
}
.ai-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.9rem;
}
.ai-card__list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #f7fbff;
}
.ai-card__check {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: var(--card-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ai-card__check svg {
    width: 0.85rem;
    height: 0.85rem;
    fill: #0b1d1c;
}
.ai-card__button {
    margin-top: 0.4rem;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    text-align: center;
    background-image: linear-gradient(0deg, var(--card-primary), hsl(189, 99%, 26%) 100%);
    box-shadow: inset 0 -2px 25px -6px rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ai-mascot-section {
        padding: 1.4rem 1rem;
        border-radius: 24px;
    }
    .ai-chat {
        padding: 1.1rem;
        gap: 0.85rem;
    }
    .ai-chat__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ai-chat__header-cta {
        width: 100%;
        justify-content: center;
    }
    .ai-chat__screen {
        padding: 0.95rem;
    }
    .ai-chat__messages {
        gap: 0.65rem;
    }
    .ai-chat__bubble {
        max-width: 100%;
        font-size: 0.95rem;
    }
    .ai-chat__input {
        flex-direction: column;
        align-items: stretch;
    }
    .ai-chat__cta {
        width: 100%;
        text-align: center;
    }
    .ai-card {
        padding: 1rem;
    }
    .ai-mascot__content {
        gap: 0.6rem;
    }
    .ai-mascot__teaser {
        order: 3;
        aspect-ratio: 4 / 3;
    }
}
.ai-mascot__cta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.ai-mascot__primary {
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    background: linear-gradient(135deg, v, #dd1f1c);
    color: white;
    text-transform: none;
}
.ai-mascot__primary:hover,
.ai-mascot__primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px #f27f27;
    
}
.ai-mascot__cta-note {
    font-size: 0.9rem;
    color: #9fb9a9;
}
.ai-mascot__teaser {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #07110a;
    aspect-ratio: 16 / 9;
}
.ai-mascot__teaser video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.ai-mascot__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}
.ai-mascot__caption {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    font-size: 0.9rem;
    color: #f9faf8;
}
.ai-mascot__floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #ff6200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    z-index: 60;
}
.ai-mascot__floating img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid rgba(6, 14, 10, 0.7);
}
.ai-mascot__floating-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(6, 14, 9, 0.95);
    color: #f5f7f4;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.ai-mascot__floating:hover .ai-mascot__floating-tooltip,
.ai-mascot__floating:focus-visible .ai-mascot__floating-tooltip {
    opacity: 1;
}

@media (min-width: 960px) {
    .ai-mascot-section {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
        padding: 3rem;
    }
    .ai-mascot__field-column {
        align-items: flex-start;
    }
}

@media (min-width: 1440px) {
    :root {
        --max-width: 1400px;
    }

    .hero {
        padding-top: 6rem;
        gap: 4rem;
    }

    .hero__headline {
        font-size: clamp(3rem, 3.6vw, 4rem);
    }

    .hero__lead {
        font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    }

    .hero__mascot {
        width: clamp(320px, 25vw, 500px);
    }
}

@media (min-width: 1720px) {
    :root {
        --max-width: 1500px;
    }

    body {
        font-size: 17px;
    }

    .hero__headline {
        font-size: clamp(3.2rem, 3.2vw, 4.2rem);
    }

    .hero__lead {
        font-size: clamp(1.25rem, 1.2vw, 1.65rem);
    }
}
