/* 
 * domain - Main Stylesheet
 * Neon-Noir Buchhaltung Theme
 */

/* ============================
   1. CSS Variables
   ============================ */
:root {
    /* Color Palette */
    --ink-900: #0D0B1E;
    --lime-500: #C6FF00;
    --coral-500: #FF6B6B;
    --iris-400: #7C7CFF;
    --lilac-200: #E2D9F3;
    --sand-50: #F7F5F0;
    --graphite-700: #2E2E3A;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, var(--ink-900), #1A1033 60%, #24184B);
    --gradient-glow: linear-gradient(90deg, rgba(198, 255, 0, 0.7), rgba(124, 124, 255, 0.7));
    
    /* Typography */
    --font-base: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-circle: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-neon: 0 0 15px rgba(198, 255, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================
   2. Base Styles
   ============================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-base);
    line-height: 1.6;
    color: var(--sand-50);
    background: radial-gradient(circle at 20% 10%, rgba(198,255,0,.18), transparent 40%),
                 radial-gradient(circle at 80% 80%, rgba(124,124,255,.22), transparent 45%),
                 var(--ink-900);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 70px; /* Compensate for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
    line-height: 1.3;
    color: var(--sand-50);
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--lime-500);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover, 
a:focus {
    color: var(--iris-400);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================
   3. Layout
   ============================ */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-lg {
    padding: var(--space-xxl) 0;
}

.section-dark {
    background: var(--gradient-dark);
}

.section-angled {
    position: relative;
}

.section-angled::before,
.section-angled::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    background: inherit;
    z-index: -1;
}

.section-angled::before {
    top: -60px;
    transform: skewY(-3deg);
}

.section-angled::after {
    bottom: -60px;
    transform: skewY(3deg);
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================
   4. Typography
   ============================ */
.text-center {
    text-align: center;
}

.text-lime {
    color: var(--lime-500);
}

.text-coral {
    color: var(--coral-500);
}

.text-iris {
    color: var(--iris-400);
}

.lead {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: calc(-1 * var(--space-md)) 0 var(--space-lg);
}

.section-title {
    position: relative;
    margin-bottom: var(--space-xl);
}



.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   5. Buttons
   ============================ */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

.btn:focus {
    outline: 3px solid rgba(124, 124, 255, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--lime-500);
    color: var(--ink-900);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--iris-400);
    color: var(--sand-50);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--sand-50);
    border: 1px solid var(--sand-50);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(247, 245, 240, 0.1);
    color: var(--lime-500);
    border-color: var(--lime-500);
    text-decoration: none;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================
   6. Cards
   ============================ */
.card {
    background-color: var(--lilac-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: var(--graphite-700);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    color: var(--graphite-700);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-circle);
    color: var(--ink-900);
    background-color: var(--lime-500);
}

/* Glassmorphism card variant */
.card-glass {
    background-color: rgba(226, 217, 243, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--sand-50);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glass .card-title {
    color: var(--lime-500);
}

/* Timeline cards */
.timeline-card {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-glow);
    border-radius: 2px;
}

.timeline-card::after {
    content: attr(data-step);
    position: absolute;
    left: -12px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--lime-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--ink-900);
}

/* Price cards */
.price-card {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.price-header {
    background-color: rgba(13, 11, 30, 0.7);
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    margin: var(--space-md) 0;
    color: var(--coral-500);
}

.price-popular {
    position: relative;
}

.price-popular::before {
    content: 'Beliebt';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--coral-500);
    color: var(--ink-900);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    transform: translateY(-50%);
    border-radius: var(--radius-md);
}

.price-features {
    list-style: none;
    padding: var(--space-lg);
    margin: 0;
}

.price-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

/* ============================
   7. Header & Navigation
   ============================ */
/* Header styles are in critical CSS (header.php) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 11, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Padding added to body in main body style */

/* ============================
   8. Footer
   ============================ */
.footer {
    background-color: var(--ink-900);
    color: var(--sand-50);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sand-50);
    margin-bottom: var(--space-md);
    text-decoration: none;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.footer-info p {
    opacity: 0.8;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-list a {
    color: var(--sand-50);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--sand-50);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--lime-500);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================
   9. Hero Section
   ============================ */
.hero {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--ink-900), #1A1033 60%, #24184B);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--lime-500);
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    justify-content: center;
}

/* ============================
   10. Features Section
   ============================ */
.feature-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--lime-500);
    margin-bottom: var(--space-md);
}

.features-grid {
    text-align: center;
}

/* ============================
   11. Services Section
   ============================ */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .btn {
    margin-top: auto;
}

.service-card-image {
    width: 100%;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.service-image:hover {
    transform: scale(1.05);
}

/* ============================
   12. Process Section
   ============================ */
.process-steps {
    counter-reset: step;
}

.process-step {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-xl);
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--lime-500);
    color: var(--ink-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.5);
}

/* ============================
   13. Testimonials Section
   ============================ */
.testimonial {
    background: var(--gradient-dark);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    line-height: 1;
    height: 50px;
    color: var(--lime-500);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--lime-500);
}

/* ============================
   14. FAQ Section
   ============================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: rgba(226, 217, 243, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

summary {
    padding: var(--space-md);
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

summary::marker,
summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--lime-500);
    transition: transform var(--transition-base);
}

details[open] summary::after {
    content: '-';
}

details[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-content {
    padding: var(--space-md);
}

/* ============================
   15. Contact Section
   ============================ */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background-color: rgba(13, 11, 30, 0.5);
    color: var(--sand-50);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--lime-500);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.2);
}

.form-control::placeholder {
    color: rgba(247, 245, 240, 0.5);
}

select.form-control {
    appearance: none;
    padding-right: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F7F5F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(13, 11, 30, 0.5);
    border-radius: var(--radius-sm);
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--lime-500);
    border-color: var(--lime-500);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230D0B1E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center center / cover;
}

.checkbox-group input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.2);
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Honeypot field (anti-spam) */
.company-website-field {
    display: none !important;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.form-error {
    color: var(--coral-500);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

/* ============================
   16. Legal Pages
   ============================ */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(226, 217, 243, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page h1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-xl);
}

.legal-toc {
    background: rgba(13, 11, 30, 0.5);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.legal-toc h3 {
    margin-bottom: var(--space-md);
}

.legal-toc ul {
    padding-left: var(--space-md);
}

.legal-toc a {
    color: var(--sand-50);
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--lime-500);
}

.legal-section {
    margin-bottom: var(--space-xl);
}

.legal-section h2 {
    margin-bottom: var(--space-md);
    color: var(--lime-500);
    font-size: 1.5rem;
}

.legal-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

/* ============================
   17. Cookie Banner
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1220px;
    margin: 0 auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.cookie-content h3 {
    margin-bottom: var(--space-sm);
}

.cookie-content p {
    margin-bottom: var(--space-md);
    max-width: 80ch;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================
   18. Animations
   ============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(198, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 255, 0, 0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .animate-fade-in {
        animation: fadeIn 0.6s ease forwards;
        opacity: 0;
    }
    
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) 1;
    }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }
}

/* ============================
   19. Utilities
   ============================ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pt-sm { padding-top: var(--space-sm); }
.pb-sm { padding-bottom: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pb-md { padding-bottom: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pb-lg { padding-bottom: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pb-xl { padding-bottom: var(--space-xl); }

.hidden {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: var(--lime-500);
    opacity: 0.3;
    z-index: -1;
    border-radius: var(--radius-sm);
}
