/**
 * A.R.C Technology — Main Stylesheet
 * "Resilient Orbit" Design System v6.0
 * Retro-Futurist Neubrutalist: navy cosmos, teal energy, coral warmth, yellow highlights
 */

/* Base + components load via parallel <link> tags in HTML (no @import waterfall). */

/* ========================
   UTILITY CLASSES
   ======================== */

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.container--narrow {
    max-width: 720px;
}

/* Section spacing */
.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    position: relative;
}

.section--sm {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Section — Dark (navy bg) */
.section--dark {
    background-color: var(--color-navy);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Data-flow radial gradient overlay */
.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.08) 0%,
        rgba(255, 107, 107, 0.04) 35%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.section--dark > * {
    position: relative;
    z-index: 1;
}

.section--dark p {
    color: var(--color-text-on-dark-secondary);
}

/* Section — Gray (subtle alternate bg + sitewide data-flow wash) */
.section--gray {
    position: relative;
    overflow: hidden;
    background-color: var(--color-off-white);
    color: var(--color-navy);
}

.section--gray::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.04) 0%,
        rgba(255, 214, 10, 0.02) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.section--gray > .container {
    position: relative;
    z-index: 1;
}

/* Section — White (subtle cursor-follow wash) */
.section--white {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
    color: var(--color-navy);
}

.section--white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.028) 0%,
        rgba(255, 214, 10, 0.016) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.section--white > .container {
    position: relative;
    z-index: 1;
}

/* Section Header — Centered with label, heading, subtitle */
.section__header,
.section-header {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--section-header-mb);
}

.section__header .section-label,
.section-header .section-label {
    display: block;
    margin-bottom: var(--space-4);
}

.section__header h2,
.section-header h2 {
    margin-bottom: var(--space-4);
}

.section__header p,
.section-header p {
    font-size: var(--fs-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.section__header .section__subtitle,
.section-header .section__subtitle {
    font-size: var(--fs-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.section--dark .section__header .section__subtitle,
.section--dark .section-header .section__subtitle,
.section--dark .section__header p,
.section--dark .section-header p {
    color: var(--color-text-on-dark-secondary);
}

/* ========================
   GRID LAYOUTS
   ======================== */
.grid {
    display: grid;
    gap: var(--gap-grid);
}

.grid > * { min-width: 0; }

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1023px) {
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ========================
   FLEX UTILITIES
   ======================== */
.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.flex-wrap  { flex-wrap: wrap; }
.items-center   { align-items: center; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-4      { gap: 1rem; }
.gap-6      { gap: 1.5rem; }
.gap-8      { gap: 2rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Screen-reader only — visually hidden, accessible to assistive tech */
.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;
}

/* ========================
   BADGE — Neubrutalist label
   ======================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.875rem;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    border: var(--border-medium) solid transparent;
}

.badge--primary {
    background: var(--color-teal-subtle);
    color: var(--color-on-light-teal);
    border-color: rgba(0, 212, 255, 0.2);
}

.badge--accent {
    background: var(--color-coral-subtle);
    color: var(--color-on-light-coral-deep);
    border-color: rgba(255, 107, 107, 0.2);
}

.badge--highlight {
    background: var(--color-yellow-subtle);
    color: var(--color-on-light-yellow);
    border-color: rgba(255, 214, 10, 0.2);
}

.badge--dark {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ========================
   ICON WRAPPER
   ======================== */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-teal-subtle);
    color: var(--color-on-light-teal);
    flex-shrink: 0;
    border: var(--border-medium) solid rgba(0, 212, 255, 0.15);
    transition: transform var(--transition-base) var(--ease-bounce),
                background var(--transition-base),
                color var(--transition-base);
}

.icon-wrapper--sm {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.icon-wrapper--lg {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
}

/* ========================
   DIVIDER
   ======================== */
.divider {
    height: var(--border-medium);
    background: var(--color-border);
    border: none;
    margin: var(--space-12) 0;
}

/* ========================
   PROSE (for content pages)
   ======================== */
.prose {
    max-width: 72ch;
    line-height: var(--leading-relaxed);
}

.prose h2 {
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    font-weight: var(--font-bold);
    letter-spacing: -0.03em;
}

.prose h3 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: var(--font-bold);
}

.prose p {
    margin-bottom: var(--space-5);
    color: var(--color-text-secondary);
}

/* ========================
   BREADCRUMB BAR — sits on the light hero wash (no frosted seam vs .page-hero--light)
   ======================== */
.breadcrumb-bar {
    --breadcrumb-stack-h: calc(0.625rem + 1.3 * var(--fs-sm));
    position: relative;
    z-index: 2;
    padding: 0.3125rem 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
    /* Identical chrome to .header (see --chrome-* in variables.css) */
    background-image: var(--chrome-radial-glow), var(--chrome-tint);
    background-attachment: fixed, scroll;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* When page is scrolled, match .header--scrolled tint (class on <html> from animations.js) */
html.site-header-scrolled .breadcrumb-bar {
    background-image: var(--chrome-radial-glow), var(--chrome-tint-scrolled);
    background-attachment: fixed, scroll;
}

/* Pull hero under crumbs so gradient shows through transparent bar (no bar/hero edge) */
.breadcrumb-bar + .page-hero {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--breadcrumb-stack-h));
    padding-top: calc(4rem + var(--breadcrumb-stack-h));
}

/* Scrolled header shadow reads as a rule over the crumb strip */
body:has(.breadcrumb-bar) .header.header--scrolled {
    box-shadow: none;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem 0.5rem;
    font-size: var(--fs-sm);
    line-height: 1.3;
    color: rgba(10, 37, 64, 0.55);
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    color: rgba(10, 37, 64, 0.3);
    opacity: 1;
}

.breadcrumb__link {
    color: rgba(10, 37, 64, 0.78);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
    /* pad the hit area to ~44px without moving the visual layout */
    padding: 0.8rem 0.25rem;
    margin: -0.8rem -0.25rem;
}

.breadcrumb__link:hover {
    color: var(--color-on-light-teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumb__link:focus-visible {
    outline: 2px solid var(--color-teal-a11y);
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumb__item--current {
    color: var(--color-navy);
    font-weight: var(--font-semibold);
}

/* ========================
   PAGE HERO — Inner page headers
   Light wash with data-flow glow, gradient title (v7 light-first)
   ======================== */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 4rem) var(--container-px) 4rem;
    text-align: center;
    overflow: hidden;
}

.page-hero--light {
    background: var(--gradient-hero-light);
    color: var(--color-text);
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

/* Data-flow radial glow follows cursor (auto-added via CSS) */
.page-hero--light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0,212,255,0.08) 0%,
        rgba(255,214,10,0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: min(800px, 75ch);
    margin: 0 auto;
}

.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: rgba(10, 37, 64, 0.55);
    margin-bottom: var(--space-4);
}

.page-hero__breadcrumb a {
    color: var(--color-on-light-teal);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.page-hero__breadcrumb a:hover {
    color: var(--color-navy);
}

.page-hero__breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(10, 37, 64, 0.35);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 1.85rem + 2.2vw, 4rem);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    letter-spacing: -0.04em;
    color: var(--color-navy);
    margin-bottom: var(--space-4);
}

.page-hero__title .text-gradient {
    display: inline;
}

.page-hero__subtitle {
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    max-width: min(600px, 65ch);
    margin: 0 auto;
}

.page-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.page-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-5);
    font-size: var(--fs-sm);
    color: rgba(10, 37, 64, 0.55);
}

@media (max-width: 767px) {
    .page-hero {
        padding: calc(var(--header-height) + 2rem) var(--container-px) 3rem;
    }
    .page-hero__title {
        font-size: clamp(2rem, 1.45rem + 1.8vw, 2.75rem);
    }
}

/* ========================
   SCROLL REVEAL ANIMATIONS
   Bouncy, energetic motion
   ======================== */

/* Fade in from below */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms var(--ease-bounce),
                transform 600ms var(--ease-bounce);
}

/* Slide up */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms var(--ease-bounce),
                transform 600ms var(--ease-bounce);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 600ms var(--ease-bounce),
                transform 600ms var(--ease-bounce);
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 600ms var(--ease-bounce),
                transform 600ms var(--ease-bounce);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 600ms var(--ease-bounce),
                transform 600ms var(--ease-bounce);
}

.fade-in.is-visible,
.slide-up.is-visible,
.scale-in.is-visible,
.slide-left.is-visible,
.slide-right.is-visible {
    opacity: 1;
    transform: none;
}

/* Staggered children — 120ms bounce wave */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 120ms; }
.stagger > *:nth-child(3) { transition-delay: 240ms; }
.stagger > *:nth-child(4) { transition-delay: 360ms; }
.stagger > *:nth-child(5) { transition-delay: 480ms; }
.stagger > *:nth-child(6) { transition-delay: 600ms; }
.stagger > *:nth-child(7) { transition-delay: 720ms; }
.stagger > *:nth-child(8) { transition-delay: 840ms; }

/* Page wrapper — offset for fixed header */
.page-wrapper {
    padding-top: var(--header-height);
    overflow-x: hidden;
}

/* Inner pages: padding sat on body’s white bg → thin “lines” under header / around crumbs */
.page-wrapper:has(.breadcrumb-bar) {
    background-color: var(--color-off-white);
}

/* ========================
   STATS BAR — Navy strip with teal numbers
   ======================== */
.stats-bar {
    background: var(--color-navy);
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

/* Cursor-follow radial glow (same --mouse-x/y as hero; no motion when reduced-motion: JS skips updates) */
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.1) 0%,
        rgba(255, 214, 10, 0.04) 38%,
        transparent 65%
    );
    pointer-events: none;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stats-bar__item {
    text-align: center;
    padding: var(--space-4) var(--space-6);
    position: relative;
}

/* Teal dividers between stats */
.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 2px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
}

.stats-bar__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
    font-weight: var(--font-bold);
    color: var(--color-teal);
    line-height: var(--leading-none);
    letter-spacing: -0.04em;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.stats-bar__label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-on-dark-muted);
    font-weight: var(--font-semibold);
    margin-top: var(--space-2);
}

@media (max-width: 767px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar__item:nth-child(2)::after {
        display: none;
    }
}

/* ========================
   PROCESS STEPS — Numbered teal circles, thick connector
   ======================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
}

/* Thick connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-coral), var(--color-yellow));
    border-radius: var(--radius-full);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    position: relative;
}

/* Teal numbered circle */
.process-step__number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-navy);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: var(--font-bold);
    position: relative;
    z-index: 1;
    border: var(--border-thick) solid var(--color-teal);
    transition: transform var(--transition-base) var(--ease-bounce),
                background var(--transition-base),
                color var(--transition-base),
                box-shadow var(--transition-base);
}

.process-step:hover .process-step__number {
    transform: scale(1.1);
    background: var(--color-teal);
    color: var(--color-navy);
    box-shadow: var(--shadow-teal);
}

.process-step__title {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: var(--font-bold);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.process-step__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

@media (max-width: 1023px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .process-step__number {
        flex-shrink: 0;
    }
}

/* ========================
   RELATED SERVICES
   ======================== */
.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

@media (max-width: 767px) {
    .related-services {
        grid-template-columns: 1fr;
    }
}

/* ========================
   BACK TO TOP BUTTON
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--color-teal);
    color: var(--color-navy);
    /* no CSS border — the injected SVG ring (navy track + teal arc + satellite)
       IS the border, so track and progress can never drift out of alignment */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition-base) var(--ease-bounce),
                visibility var(--transition-base),
                transform var(--transition-base) var(--ease-bounce),
                background var(--transition-fast),
                border-color var(--transition-fast),
                box-shadow var(--transition-fast);
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.4),
                0 0 12px rgba(0, 212, 255, 0.2);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll-progress ring — navy track doubles as the button border; teal-gradient
   arc tracks scroll depth on the same circle, with the Orbyt-style cyan
   satellite riding the arc head (injected by animations.js) */
.back-to-top__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    transform: rotate(-90deg);
    /* the satellite halo orbits past the 52px viewBox — don't clip it */
    overflow: visible;
}

.back-to-top__ring-track {
    fill: none;
    stroke: var(--color-navy);
    /* 5 wide (vs the arc's 4): the outer half-pixel overdraws past the button
       edge so no teal rim shows, and the arc gets a crisp navy outline */
    stroke-width: 5;
}

.back-to-top__ring-bar {
    fill: none;
    stroke: url(#btt-ring-grad);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 120ms linear;
}

/* Fully read: close the ring with a soft cyan glow (satellite's halo color) */
.back-to-top.is-complete {
    box-shadow: 0 4px 24px rgba(23, 233, 220, 0.45),
                0 0 12px rgba(23, 233, 220, 0.25);
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top__ring-bar {
        transition: none;
    }
}

.back-to-top:hover {
    background: var(--color-yellow);
    color: var(--color-navy);
    box-shadow: 0 4px 30px rgba(255, 214, 10, 0.5),
                0 0 15px rgba(255, 214, 10, 0.3);
    transform: translateY(-4px) scale(1.1);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

@media (max-width: 767px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: var(--space-6);
        right: var(--space-4);
    }
}

/* ========================
   COOKIE BANNER
   ======================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy);
    color: var(--color-text-on-dark);
    padding-top: var(--space-5);
    padding-bottom: max(var(--space-5), env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--container-px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--container-px), env(safe-area-inset-right, 0px));
    z-index: 9999;
    border-top: var(--border-thick) solid var(--color-teal);
    box-shadow: 0 -4px 30px rgba(10, 37, 64, 0.3);
    transform: translateY(100%);
    transition: transform var(--transition-slow) var(--ease-bounce);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner__text {
    font-size: var(--fs-sm);
    color: var(--color-text-on-dark-secondary);
    line-height: var(--leading-relaxed);
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.cookie-banner__text a {
    color: var(--color-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
    align-items: center;
}

.cookie-banner__accept {
    padding: 0.625rem 1.5rem;
    background: var(--color-teal);
    color: var(--color-navy);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--font-bold);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: background var(--transition-fast),
                transform var(--transition-base) var(--ease-bounce),
                box-shadow var(--transition-fast);
}

.cookie-banner__accept:hover {
    background: var(--color-teal-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-teal);
}

.cookie-banner__decline {
    padding: 0.625rem 1.5rem;
    background: transparent;
    color: var(--color-text-on-dark-secondary);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--font-medium);
    border: var(--border-medium) solid var(--color-border-on-dark);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: border-color var(--transition-fast),
                color var(--transition-fast);
}

.cookie-banner__decline:hover {
    border-color: var(--color-text-on-dark-secondary);
    color: var(--color-text-on-dark);
}

@media (max-width: 767px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: var(--space-4);
    }

    .cookie-banner__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}
