/* ==========================================================================
   SplitStep.ai Main Styles
   ========================================================================== */

:root {
    --primary-dark: #001221;
    --primary-blue: #183b7e;
    --accent-aqua: #72d2ff;
    --accent-yellow: #ffd040;
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 18, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(114, 210, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 18, 33, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-aqua);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-aqua);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-aqua), var(--primary-blue));
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(114, 210, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    object-fit: contain;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 18, 33, 0.1), rgba(0, 18, 33, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
    margin-left: auto;
    margin-right: 10%;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(114, 210, 255, 0.1);
    border: 1px solid rgba(114, 210, 255, 0.3);
    border-radius: 50px;
    color: var(--accent-aqua);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Varela Round', sans-serif;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-aqua), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-aqua), var(--primary-blue));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(114, 210, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 210, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-aqua);
}

.btn-secondary:hover {
    background: rgba(114, 210, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section-overview {
    padding: var(--spacing-xl) 0;
    background: var(--primary-dark);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.team-credentials {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--accent-aqua);
    font-weight: 500;
    font-style: italic;
}

/* ==========================================================================
   Product Sections
   ========================================================================== */

.product-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.product-dark {
    background: linear-gradient(180deg, var(--primary-dark), rgba(24, 59, 126, 0.2));
}

.product-light {
    background: rgba(24, 59, 126, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse>* {
    direction: ltr;
}

.product-label {
    display: inline-block;
    color: var(--accent-aqua);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Varela Round', sans-serif;
}

.product-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(114, 210, 255, 0.1);
    border: 1px solid rgba(114, 210, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-aqua);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.use-cases {
    background: rgba(114, 210, 255, 0.05);
    border-left: 3px solid var(--accent-aqua);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.use-cases h4 {
    margin-bottom: 1rem;
    color: var(--accent-aqua);
}

.use-cases ul {
    list-style: none;
    padding: 0;
}

.use-cases li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.use-cases li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-aqua);
}

/* ==========================================================================
   Tennis Court Animation
   ========================================================================== */

.product-visual {
    position: relative;
}

.tennis-court-container {
    background: rgba(0, 18, 33, 0.5);
    border: 1px solid rgba(114, 210, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.tennis-court {
    width: 100%;
    height: auto;
}

.player-dot {
    animation: pulse 2s ease-in-out infinite;
}

.player-1 {
    animation-delay: 0s;
}

.player-2 {
    animation-delay: 0.5s;
}

.ball-dot {
    animation: ballMove 4s ease-in-out infinite;
}

.ball-trajectory {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.data-point {
    animation: dataAppear 1s ease forwards;
}

.data-point:nth-child(5) {
    animation-delay: 0.5s;
}

.data-point:nth-child(6) {
    animation-delay: 1s;
}

.data-point:nth-child(7) {
    animation-delay: 1.5s;
}

.data-popup,
.bounce-popup,
.returner-popup {
    animation: popupAppear 0.5s ease forwards 0.5s;
    transform-origin: center;
}

@keyframes popupAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        r: 8;
    }

    50% {
        opacity: 0.6;
        r: 10;
    }
}

@keyframes ballMove {
    0% {
        offset-distance: 0%;
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 500;
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes dataAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Video Container
   ========================================================================== */

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 18, 33, 0.8);
    border: 1px solid rgba(114, 210, 255, 0.2);
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(24, 59, 126, 0.3), rgba(0, 18, 33, 0.8));
    position: relative;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 18, 33, 0.9), transparent);
}

.video-overlay p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ==========================================================================
   Demo Videos Grid
   ========================================================================== */

.product-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-content-centered {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.product-content-centered .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product-content-centered .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.demo-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.demo-video-item {
    background: rgba(0, 18, 33, 0.5);
    border: 1px solid rgba(114, 210, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.demo-video-item:hover {
    border-color: var(--accent-aqua);
}

.demo-video-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.demo-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-aqua), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Varela Round', sans-serif;
}

.demo-video-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.demo-video-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgba(24, 59, 126, 0.1), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stats-grid-compact {
    margin-top: 3rem;
    gap: 2rem;
    max-width: 700px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(114, 210, 255, 0.05);
    border: 1px solid rgba(114, 210, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stats-grid-compact .stat-item {
    padding: 1.5rem 1rem;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-aqua);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-aqua);
    margin-bottom: 0.5rem;
    font-family: 'Varela Round', sans-serif;
}

.stat-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stats-grid-compact .stat-icon {
    height: 45px;
    margin-bottom: 0.75rem;
}

.stat-svg {
    height: 60px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(74%) sepia(51%) saturate(478%) hue-rotate(162deg) brightness(103%) contrast(101%);
}

.stats-grid-compact .stat-svg {
    height: 45px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.stats-grid-compact .stat-label {
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at 50% 50%, rgba(114, 210, 255, 0.1), var(--primary-dark));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(180deg, var(--primary-dark), rgba(24, 59, 126, 0.2));
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(114, 210, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.aqua {
    color: var(--accent-aqua);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-aqua);
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-aqua);
}

.footer-partners {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(114, 210, 255, 0.1);
    border-bottom: 1px solid rgba(114, 210, 255, 0.1);
}

.partners-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.partners-logos a {
    display: inline-block;
    text-decoration: none;
}

.partner-logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: block;
}

.partners-logos a:hover .partner-logo {
    opacity: 1;
    transform: translateY(-3px);
}

.partner-sep {
    width: 1px;
    height: 40px;
    background: rgba(114, 210, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--accent-aqua);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-yellow);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .hero-section {
        align-items: flex-start;
        padding-top: 140px;
    }

    .hero-video {
        left: 50%;
        opacity: 0.4;
    }

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

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

    .section-title,
    .product-title {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-grid.reverse {
        direction: ltr;
    }

    .demo-videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-content-centered .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid-compact {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 85vh;
        padding-top: 120px;
        align-items: flex-start;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .section-title,
    .product-title {
        font-size: 2rem;
    }

    .demo-video-item {
        padding: 1.5rem;
    }

    .demo-video-header {
        gap: 1rem;
    }

    .demo-video-header h3 {
        font-size: 1.2rem;
    }

    .demo-video-header p {
        font-size: 0.9rem;
    }

    .demo-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid-compact {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partners-logos {
        flex-direction: column;
        gap: 2rem;
    }

    .partner-sep {
        width: 40px;
        height: 1px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
        align-items: flex-start;
    }

    .hero-video {
        height: 60vh;
        width: auto;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20vh;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title,
    .product-title {
        font-size: 1.75rem;
    }

    .product-description,
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--accent-aqua);
    color: var(--primary-dark);
}