/* --- Layout & Typography --- */
.hero {
    font-family: var(--font-sans);
    /* mapped via global */
    background-color: var(--color-bg);
    color: var(--color-text-main);
    position: relative;
    height: 134vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    position: relative;
    z-index: 20;
}

/* --- Background Layers --- */
.bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: overlay;
    filter: grayscale(20%);
}

.bg-gradient-vert {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg), rgba(15, 23, 42, 0.6), transparent);
    z-index: 10;
}

.bg-gradient-horz {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-bg), transparent, transparent);
    z-index: 10;
    opacity: 0.8;
}

/* Abstract blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(128px);
    z-index: 0;
}

.blob-1 {
    top: 25%;
    right: 0;
    width: 384px;
    height: 384px;
    background-color: rgba(79, 70, 229, 0.2);
    /* Brand color */
}

.blob-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background-color: rgba(163, 230, 53, 0.1);
    /* Neon color */
}

/* --- Content Styles --- */
.meta-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 5px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.meta-line {
    height: 2px;
    width: 48px;
    background-color: var(--color-primary);
}

.meta-text {
    color: var(--color-primary);
    font-family: var(--font-mono);
    /* Now uses Inter Mono fallback */
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 60px;
    /* Mobile */
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin: 10px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    color: transparent;
}

.hero-desc {
    max-width: 576px;
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

/* --- Countdown --- */
.countdown {
    display: inline-flex;
    gap: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.time-unit {
    display: flex;
    align-items: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
}

.time-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 8px;
}

.time-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    display: none;
}

/* --- Buttons --- */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 18px;
    border-radius: 9999px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 10;
}

.btn-primary .hover-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-text-main);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.btn-primary:hover .hover-bg {
    transform: translateY(0);
}

.btn-primary:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    background: transparent;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 110;
}

.modal-close:hover {
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.1);
}

.video-container {
    width: 100%;
    max-width: 1150px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay.open .video-container {
    transform: scale(1);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Media Queries --- */
@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
    }

    .hero {
        height: 100vh;
    }

    .countdown {
        gap: 16px
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 96px;
        /* md */
    }

    .hero-desc {
        font-size: 20px;
    }

    .time-box {
        width: 96px;
    }

    .time-value {
        font-size: 48px;
    }

    .time-label {
        font-size: 12px;
    }

    .countdown {
        gap: 32px;
    }

    .time-divider {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 128px;
        /* lg */
    }
}


/*--- details --- */
/* Container Section */
.st-section {
    padding: 6rem 0;
    background-color: var(--dark-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid Layout */
.st-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 cols on mobile */
    width: 100%;
}

/* The Stat Item */
.st-item {
    padding: 1rem;
    text-align: center;
    cursor: default;
    border-right: 1px solid rgba(255, 255, 255, 0.1);

    /* Animation Setup */
    opacity: 0;
    animation: st-reveal 0.8s ease-out forwards;
}

/* Typography & Content */
.st-value-wrapper {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    display: block;
}

.st-suffix {
    font-size: 1.5rem;
    color: #64748b;
    margin-left: 0.25rem;
}

.st-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    /* text-sm */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    transition: color 0.3s ease;
    display: block;
}

/* Hover Effects (Group Hover logic) */
.st-item:hover .st-value-wrapper {
    color: var(--color-primary);
}

.st-item:hover .st-label {
    color: #ffffff;
}

/* Responsive Logic (Mobile to Desktop) */

/* Mobile Borders: Remove border on every 2nd item (right side items) */
.st-item:nth-child(2n) {
    border-right: none;
}

/* Desktop Breakpoint */
@media (min-width: 768px) {
    .st-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .st-value-wrapper {
        font-size: 3.75rem;
    }

    .st-suffix {
        font-size: 1.875rem;
    }

    /* Reset Mobile Border Logic */
    .st-item:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Desktop Borders: Only remove border on the very last item */
    .st-item:last-child {
        border-right: none;
    }
}


/* --- map --- */

/* Local variables for this component only */
.cd-wrapper {
    --cd-card-bg: #151515;
    /* Slightly lighter than your dark-900 */
    --cd-brand-blue: #0284c7;
    --cd-brand-blue-light: #818cf8;
    --cd-text-muted: #94a3b8;
    --cd-text-dim: #64748b;
    --cd-border: rgba(255, 255, 255, 0.08);

    padding: 6rem 1.5rem;
    /* py-32 equivalent */
    width: 100%;
    position: relative;
    background-color: #0f172a;
}

.cd-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Header Section --- */
.cd-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.cd-eyebrow {
    color: var(--color-primary);
    /* Using your variable */
    font-family: var(--font-sans);
    /* Using your variable */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.cd-title {
    font-family: var(--font-display);
    /* Using your variable */
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    color: white;
}

.cd-title span {
    color: var(--cd-text-dim);
}

.cd-description {
    margin-top: 1rem;
    color: var(--cd-text-muted);
    max-width: 320px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cd-header {
        flex-direction: row;
        align-items: flex-end;
    }

    .cd-title {
        font-size: 3.5rem;
    }

    .cd-description {
        margin-top: 0;
        text-align: right;
    }
}

/* --- Grid Layout --- */
.cd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
}

@media (min-width: 768px) {
    .cd-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 300px);
        /* Fixed height rows on desktop */
        height: 616px;
        /* 300 + 300 + 16 gap */
    }
}

/* --- Cards Shared Styles --- */
.cd-card {
    border-radius: 1.5rem;
    border: 1px solid var(--cd-border);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease;
}

/* --- Map Card (Large) --- */
.cd-card-map {
    background-color: var(--dark-900);
    /* Span logic */
    grid-column: 1;
    min-height: 400px;
}

@media (min-width: 768px) {
    .cd-card-map {
        grid-column: span 2;
        grid-row: span 2;
        height: 100%;
    }
}

.cd-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

/* Hover Effect for Map */
.cd-card-map:hover .cd-map-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.cd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--dark-900) 90%);
    z-index: 3;
    pointer-events: none;
}

.cd-map-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 4;
}

.cd-badge {
    display: inline-block;
    background-color: var(--color-primary);
    /* Your yellow */
    color: var(--dark-900);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.cd-map-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.cd-map-text {
    color: #cbd5e1;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- Stat Cards --- */
.cd-card-stat {
    background-color: var(--cd-card-bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.cd-card-stat:hover {
    border-color: rgba(250, 204, 21, 0.3);
    /* Yellow trace on hover */
}

.cd-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s, color 0.3s;
}

.cd-card-stat:hover .cd-icon-box {
    background-color: var(--color-primary);
    color: var(--dark-900);
}

.cd-stat-label {
    color: var(--cd-text-dim);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.cd-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.cd-stat-desc {
    color: var(--cd-text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* --- Blue/Brand Card --- */
.cd-card-blue {
    background-color: var(--cd-brand-blue);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 2rem;
}

.cd-blue-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: white;
    opacity: 0.1;
    filter: blur(40px);
    border-radius: 50%;
}

.cd-icon-box-blue {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cd-content-z {
    position: relative;
    z-index: 10;
}

.cd-label-blue {
    color: var(--cd-brand-blue-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.cd-desc-blue {
    color: #e0e7ff;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* --- Button --- */
.cd-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.cd-btn {
    background: none;
    border: none;
    color: var(--cd-text-muted);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.cd-btn:hover {
    color: var(--color-primary);
}

/* --- Gallerie --- */
.gal-section {
    padding: 8rem 0;
    /* py-32 */
    background-color: var(--dark-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Decorative Background Gradient */
.gal-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 16rem;
    /* h-64 */
    background: linear-gradient(to bottom, var(--dark-800), transparent);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.gal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* --- Header --- */
.gal-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* Align to bottom */
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.gal-title-wrapper {
    width: 100%;
}

.gal-eyebrow {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.gal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    /* text-4xl */
    color: white;
    line-height: 1.1;
}

/* Text Stroke Effect */
.gal-text-stroke {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

/* --- Buttons --- */
.gal-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.gal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gal-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: none;
    /* Hidden on mobile per design */
}

.gal-btn-ghost:hover {
    background: white;
    color: var(--dark-900);
}

/* Instagram icon color change on hover */
.gal-btn-ghost:hover .gal-icon-insta {
    color: #db2777;
    /* pink-600 */
}

.gal-btn-solid {
    background: white;
    color: var(--dark-900);
    border: 1px solid white;
    width: 100%;
    /* Full width on mobile */
}

.gal-btn-solid:hover {
    background-color: #e2e8f0;
    /* slate-200 */
}

@media (min-width: 768px) {
    .gal-header {
        flex-direction: row;
    }

    .gal-title {
        font-size: 3rem;
    }

    /* text-5xl */
    .gal-title-wrapper {
        width: auto;
    }

    .gal-actions {
        width: auto;
    }

    .gal-btn-ghost {
        display: flex;
    }

    .gal-btn-solid {
        width: auto;
    }
}

/* --- Grid Layout --- */
.gal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
}

@media (min-width: 768px) {
    .gal-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 600px;
    }
}

/* --- Grid Items (Cards) --- */
.gal-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 250px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gal-item {
        min-height: 0;
    }

    .gal-span-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gal-span-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* --- Image & Hover Effects --- */
.gal-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gal-img-overlay-dark {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 11, 11, 0.1);
    z-index: 2;
    transition: background-color 0.3s;
}

.gal-item:hover .gal-img-overlay-dark {
    background-color: transparent;
}

.gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Grayscale 30% default */
    filter: grayscale(30%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.gal-item:hover .gal-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Gradient at bottom for text readability */
.gal-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.9), transparent, transparent);
    opacity: 0.6;
    transition: opacity 0.3s;
    z-index: 3;
}

.gal-item:hover .gal-gradient-bottom {
    opacity: 0.8;
}

/* Content Positioning */
.gal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 4;
    /* Slide Up Animation Logic */
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.gal-item:hover .gal-content {
    transform: translateY(0);
}

.gal-category {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    /* text-xs */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;

    /* Reveal Logic */
    opacity: 0;
    transition: opacity 0.3s ease 0.075s;
    /* slight delay */
}

.gal-item:hover .gal-category {
    opacity: 1;
}

.gal-img-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    /* text-xl */
}

/* --- Simple Entrance Animation (Reveal) --- */

.gal-delay-100 {
    animation-delay: 100ms;
}

.gal-delay-200 {
    animation-delay: 200ms;
}

.gal-delay-300 {
    animation-delay: 300ms;
}

.gal-delay-400 {
    animation-delay: 400ms;
}

@keyframes gal-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* --- Race day --- */

.sch-section {
    padding: 6rem 0;
    background-color: var(--dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.sch-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* --- Header --- */
.sch-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sch-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1rem;
}

.sch-divider {
    height: 4px;
    width: 5rem;
    background-color: var(--color-primary);
    margin: 0 auto;
    border-radius: 9999px;
}

.sch-instruction {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* --- Timeline Wrapper --- */
.sch-timeline-wrapper {
    position: relative;
    /* Add padding bottom to ensure line doesn't look cut off */
    padding-bottom: 2rem;
}

/* The Vertical Line */
.sch-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);

    /* MOBILE FIX: Fixed left position */
    left: 19px;
}

/* DESKTOP: Center the line */
@media (min-width: 768px) {
    .sch-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.sch-events-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* --- Event Item --- */
.sch-item {
    position: relative;
    display: flex;
    cursor: pointer;

    /* MOBILE FIX: Always row, align top */
    flex-direction: row;
    align-items: flex-start;
}

/* --- Layout Columns --- */

/* Time Column (Hidden on Mobile) */
.sch-side-time {
    display: none;
}

/* Content Column */
.sch-side-content {
    flex: 1;
    /* MOBILE FIX: Push content right to clear the dot */
    padding-left: 4rem;
    text-align: left;
}

/* --- DESKTOP LAYOUT --- */
@media (min-width: 768px) {
    .sch-item {
        align-items: center;
        /* Center vertically on desktop */
        gap: 0;
        justify-content: space-between;
    }

    .sch-side-time {
        display: block;
        width: 45%;
    }

    .sch-side-content {
        width: 45%;
        flex: none;
        padding-left: 0;
        /* Reset mobile padding */
    }

    /* Even Items (Normal Flow) */
    .sch-item.sch-even {
        flex-direction: row;
    }

    .sch-item.sch-even .sch-side-time {
        text-align: right;
        padding-right: 3rem;
    }

    .sch-item.sch-even .sch-side-content {
        text-align: left;
        padding-left: 3rem;
    }

    /* Odd Items (Reverse Flow) */
    .sch-item.sch-odd {
        flex-direction: row-reverse;
    }

    .sch-item.sch-odd .sch-side-time {
        text-align: left;
        padding-left: 3rem;
    }

    .sch-item.sch-odd .sch-side-content {
        text-align: right;
        padding-right: 3rem;
    }
}

/* --- Timeline Dot --- */
.sch-dot-wrapper {
    position: absolute;
    z-index: 10;
    width: 40px;
    /* Fixed width container for centering */
    display: flex;
    justify-content: center;
    top: 0;
    /* Align with top of content on mobile */

    /* MOBILE FIX: Anchor to left line */
    left: 0;
}

@media (min-width: 768px) {
    .sch-dot-wrapper {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        /* Let flexbox handle vertical alignment on desktop */
    }
}

.sch-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid #475569;
    background-color: var(--dark-900);
    transition: all 0.3s ease;
    margin-top: 4px;
    /* Slight offset to align with text cap-height */
}

@media (min-width: 768px) {
    .sch-dot {
        margin-top: 0;
    }
}

/* Highlight variant */
.sch-dot.sch-highlight {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.sch-item:hover .sch-dot {
    transform: scale(1.25);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* --- Typography --- */
.sch-time-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: #64748b;
    transition: color 0.3s;
}

.sch-time-text.sch-highlight {
    color: var(--color-primary);
}

.sch-item:hover .sch-time-text {
    color: var(--color-primary);
}

.sch-time-mobile {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #64748b;
    transition: color 0.3s;
}

.sch-time-mobile.sch-highlight {
    color: var(--color-primary);
}

/* On hover, light up the mobile time too */
.sch-item:hover .sch-time-mobile {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .sch-time-mobile {
        display: none;
    }
}

.sch-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s;
    line-height: 1.2;
}

.sch-item-title.sch-highlight {
    font-size: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .sch-item-title.sch-highlight {
        font-size: 1.875rem;
    }
}

.sch-item:hover .sch-item-title {
    color: var(--color-primary);
}

.sch-item-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.sch-item:hover .sch-item-desc {
    color: #e2e8f0;
}

/* --- Modal CSS --- */
.sch-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sch-modal-overlay.sch-open {
    opacity: 1;
    pointer-events: auto;
}

.sch-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(4px);
}

.sch-modal-card {
    position: relative;
    width: 100%;
    max-width: 32rem;
    background-color: var(--dark-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1000;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.sch-modal-overlay.sch-open .sch-modal-card {
    transform: translateY(0);
}

.sch-glow-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background-color: rgba(250, 204, 21, 0.1);
    border-radius: 50%;
    margin-right: -2.5rem;
    margin-top: -2.5rem;
    filter: blur(50px);
}

.sch-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.sch-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.sch-modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.sch-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.sch-modal-loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.sch-modal-text {
    margin-top: 1.5rem;
    color: #cbd5e1;
    line-height: 1.625;
    font-size: 0.95rem;
}

.sch-modal-sub {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

.sch-modal-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.sch-btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--dark-900);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sch-btn-primary:hover {
    background-color: var(--neon-500);
}

/* Animation utilities */
.sch-reveal {
    opacity: 0;
    animation: sch-fade-up 0.8s ease-out forwards;
}

.sch-delay-100 {
    animation-delay: 100ms;
}

.sch-delay-200 {
    animation-delay: 200ms;
}

.sch-delay-300 {
    animation-delay: 300ms;
}

.sch-delay-400 {
    animation-delay: 400ms;
}

@keyframes sch-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* --- pricing --- */
.prc-section {
    padding: 8rem 0;
    /* py-32 */
    background-color: #0f172a;
}

.prc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Grid Layout --- */
.prc-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Single column */
    gap: 2rem;
    /* gap-8 */
    max-width: 1024px;
    /* max-w-6xl */
    margin: 0 auto;
    align-items: flex-start;
    /* Important for alignment when scale changes */
}

@media (min-width: 768px) {
    .prc-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop: Three columns */
        gap: 2rem;
    }
}

/* --- Card Base Style --- */
.prc-card {
    position: relative;
    padding: 2rem;
    /* p-8 */
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* General Hover Effect (lift) */
.prc-card:hover {
    transform: translateY(-8px);
    /* -translate-y-2 */
}

/* --- Standard Tier Styles --- */
.prc-standard {
    background-color: var(--dark-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

/* Hover lift for standard tier */
.prc-standard:hover {
    transform: translateY(-8px);
}

/* --- Popular Tier Styles --- */
.prc-popular {
    background-color: white;
    color: var(--dark-900);
    /* Scale and Z-index for emphasis */
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* Combined transformation for popular tier hover */
.prc-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

/* --- Best Value Badge --- */
.prc-badge {
    position: absolute;
    top: -1rem;
    /* -top-4 */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--dark-900);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

/* --- Price Display --- */
.prc-price-group {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.prc-currency {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    margin-top: 0.5rem;
}

.prc-price {
    font-size: 3.75rem;
    /* text-6xl */
    font-family: var(--font-display);
    font-weight: 700;
}

/* --- Title --- */
.prc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    /* text-lg */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* --- Features List --- */
.prc-features {
    flex: 1;
    margin-bottom: 2rem;
    /* mb-8 */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* space-y-4 */
}

.prc-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.prc-feature-text {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    opacity: 0.8;
}

/* Checkmark Circle Styling */
.prc-check-circle {
    width: 1.25rem;
    /* w-5 */
    height: 1.25rem;
    /* h-5 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents shrinking */
}

/* Standard Tier Checkmark */
.prc-standard .prc-check-circle {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Popular Tier Checkmark */
.prc-popular .prc-check-circle {
    background-color: var(--dark-900);
    color: white;
}

/* --- Button --- */
.prc-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    /* py-4 */
    border-radius: 0.75rem;
    /* rounded-xl */
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

/* Standard Tier Button */
.prc-standard .prc-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.prc-standard .prc-btn:hover {
    background-color: white;
    color: var(--dark-900);
}

/* Popular Tier Button */
.prc-popular .prc-btn {
    background-color: var(--dark-900);
    color: white;
}

.prc-popular .prc-btn:hover {
    background-color: black;
}

/* --- Partners --- */

.ptn-section {
    padding: 6rem 0;
    /* py-24 */
    background-color: var(--dark-900);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ptn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header --- */
.ptn-header {
    margin-bottom: 4rem;
    /* mb-16 */
    text-align: center;
}

.ptn-subtitle {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ptn-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.875rem;
    /* 3xl */
    line-height: 1.2;
    color: white;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .ptn-title {
        font-size: 2.25rem;
        /* 4xl */
    }
}

/* --- Diamond Tier --- */
.ptn-diamond-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    /* mb-20 */
}

.ptn-diamond-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 204, 21, 0.8);
    /* neon-400/80 */
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    /* mb-8 */
}

.ptn-diamond-star {
    /* Ensures the fill is correctly inherited from the parent color */
    fill: currentColor;
}

.ptn-diamond-name-container {
    position: relative;
    cursor: default;
    transition: transform 0.3s ease;
}

.ptn-diamond-glow {
    position: absolute;
    inset: 0;
    background-color: rgba(250, 204, 21, 0.2);
    filter: blur(80px);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.ptn-diamond-name-container:hover .ptn-diamond-glow {
    opacity: 1;
}

.ptn-diamond-name {
    position: relative;
    z-index: 10;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    /* 5xl */
    color: white;
    letter-spacing: -0.05em;
    transition: transform 0.5s ease;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* drop-shadow-2xl */
    white-space: nowrap;
}

.ptn-diamond-name-container:hover .ptn-diamond-name {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .ptn-diamond-name {
        font-size: 4.5rem;
        /* 7xl */
    }
}

@media (min-width: 1024px) {
    .ptn-diamond-name {
        font-size: 6rem;
        /* 8xl */
    }
}

/* --- Gold Tier --- */
.ptn-gold-wrapper {
    margin-bottom: 5rem;
    /* mb-20 */
    max-width: 900px;
    /* max-w-5xl */
    margin-left: auto;
    margin-right: auto;
}

/* Divider with Text */
.ptn-divider-header {
    text-align: center;
    margin-bottom: 2.5rem;
    /* mb-10 */
    position: relative;
}

.ptn-divider-line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.ptn-divider-line>div {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ptn-divider-text-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.ptn-divider-text {
    background-color: var(--dark-900);
    padding: 0 1rem;
    color: rgba(252, 211, 77, 0.8);
    /* amber-400/80 */
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.ptn-gold-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* gap-8 */
    align-items: center;
}

@media (min-width: 768px) {
    .ptn-gold-grid {
        gap: 5rem;
        /* md:gap-20 */
    }
}

.ptn-gold-item {
    cursor: default;
}

.ptn-gold-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.875rem;
    /* 3xl */
    color: #475569;
    /* slate-600 */
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .ptn-gold-name {
        font-size: 2.25rem;
        /* 4xl */
    }
}

.ptn-gold-item:hover .ptn-gold-name {
    color: white;
}


/* --- Silver Tier (Marquee) --- */
.ptn-silver-container {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(31, 41, 55, 0.3);
    /* dark-800/30 */
    padding: 2.5rem 0;
    /* py-10 */
}

.ptn-silver-tag-wrapper {
    position: absolute;
    top: -12px;
    /* -top-3 */
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1rem;
    background-color: var(--dark-900);
    color: #64748b;
    /* slate-500 */
    font-size: 0.625rem;
    /* 10px */
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.ptn-marquee-track {
    position: relative;
    display: flex;
    overflow: hidden;
}

/* Fade Masks */
.ptn-fade-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6rem;
    /* w-24 */
    z-index: 10;
    pointer-events: none;
}

@media (min-width: 768px) {
    .ptn-fade-mask {
        width: 12rem;
        /* md:w-48 */
    }
}

.ptn-fade-mask-left {
    left: 0;
    background: linear-gradient(to right, var(--dark-900), transparent);
}

.ptn-fade-mask-right {
    right: 0;
    background: linear-gradient(to left, var(--dark-900), transparent);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half the content width */
}

.ptn-marquee-content {
    display: flex;
    white-space: nowrap;
    align-items: center;
    /* Animation applied to the container holding the repeated content */
    animation: marquee 40s linear infinite;
    width: max-content;
}

.ptn-silver-item {
    margin: 0 2rem;
    /* mx-8 */
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .ptn-silver-item {
        margin: 0 3rem;
        /* md:mx-12 */
    }
}

.ptn-silver-item:hover {
    opacity: 1;
}

.ptn-silver-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    /* xl */
    color: white;
}

@media (min-width: 768px) {
    .ptn-silver-name {
        font-size: 1.5rem;
        /* 2xl */
    }
}

/* Animation utilities */
.ptn-reveal {
    opacity: 0;
    animation: ptn-fade-up 0.8s ease-out forwards;
}

.ptn-delay-100 {
    animation-delay: 100ms;
}

.ptn-delay-200 {
    animation-delay: 200ms;
}

.ptn-delay-300 {
    animation-delay: 300ms;
}

.ptn-delay-400 {
    animation-delay: 400ms;
}

.ptn-delay-500 {
    animation-delay: 500ms;
}

@keyframes ptn-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* --- CTA--- */
.cta-section {
    padding: 6rem 0;
    /* py-24 */
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

/* --- Background Texture Layer --- */
.cta-texture-overlay {
    position: absolute;
    inset: 0;
    /* URL from the original code */
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    /* opacity-10 */
    mix-blend-mode: multiply;
    /* mix-blend-multiply */
}

/* --- Content Wrapper --- */
.cta-content-wrapper {
    max-width: 64rem;
    /* max-w-4xl */
    margin: 0 auto;
    padding: 0 1rem;
    /* px-4 */
    text-align: center;
    position: relative;
    z-index: 10;
}

/* --- Typography --- */
.cta-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.25rem;
    /* text-4xl */
    line-height: 1.1;
    color: var(--dark-900);
    margin-bottom: 1.5rem;
    /* mb-6 */
    text-transform: uppercase;
    letter-spacing: -0.05em;
    /* tracking-tighter */
}

.cta-title .cta-italic {
    font-style: italic;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
        /* md:text-6xl */
    }
}

.cta-description {
    color: rgba(11, 11, 11, 0.8);
    /* dark-900/80 */
    margin-bottom: 2rem;
    /* mb-8 */
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 500;
    max-width: 42rem;
    /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}

/* --- Form Layout --- */
.cta-form {
    display: flex;
    flex-direction: column;
    /* Mobile: Stacked */
    gap: 1rem;
    /* gap-4 */
    justify-content: center;
    max-width: 32rem;
    /* max-w-lg */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
        /* Small screens (sm): Row layout */
    }
}

/* --- Input Field --- */
.cta-input {
    padding: 1rem 1.5rem;
    /* px-6 py-4 */
    border-radius: 9999px;
    /* rounded-full */
    background-color: rgba(255, 255, 255, 0.2);
    /* bg-white/20 */
    /* Backdrop blur effect */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(11, 11, 11, 0.1);
    /* border-dark-900/10 */
    color: var(--dark-900);
    font-weight: 500;
    flex: 1;
    /* flex-1 */

    /* Placeholder color and focus styles */
    outline: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
    transition: box-shadow 0.3s, border-color 0.3s;
}

.cta-input::placeholder {
    color: rgba(11, 11, 11, 0.5);
    /* placeholder:text-dark-900/50 */
}

.cta-input:focus {
    border-color: white;
    box-shadow: 0 0 0 2px white;
    /* focus:ring-2 focus:ring-white */
}

/* --- Button --- */
.cta-button {
    padding: 1rem 2rem;
    /* px-8 py-4 */
    background-color: var(--dark-900);
    color: white;
    border-radius: 9999px;
    /* rounded-full */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wide */
    font-size: 0.875rem;
    /* text-sm */
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    background-color: var(--dark-800);
    /* hover:bg-dark-800 */
    transform: scale(1.05);
    /* hover:scale-105 */
}