/* ============================================
   NJLIGames — site styles
   Dark "night sky" theme, light mode available.
   Fonts: Oswald (headings) + Source Sans 3 (body)
   ============================================ */

:root {
    /* Palette drawn from the NJLIGames mascot icon:
       purple body, cyan flag, near-black outlines */
    --primary: #a856f0;
    --primaryLight: #cf9dff;
    --primaryDark: #7a2fc4;
    --accent: #35b6f5;
    --bg: #0c0616;
    --bgPanel: #160b26;
    --bgPanelSoft: rgba(255, 255, 255, 0.04);
    --headerColor: #fbfafd;
    --bodyTextColor: #c2b8d2;
    --bodyTextColorDim: #94879f;
    --footerBg: #060310;
    --cardBorder: rgba(168, 86, 240, 0.22);
    --glow: 0 0 24px rgba(168, 86, 240, 0.38);

    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body.light-mode {
    --bg: #f8f4fc;
    --bgPanel: #ffffff;
    --bgPanelSoft: rgba(18, 6, 32, 0.04);
    --headerColor: #1c0f2e;
    --bodyTextColor: #4d4060;
    --bodyTextColorDim: #6f6382;
    --footerBg: #1c0f2e;
    --cardBorder: rgba(122, 47, 196, 0.25);
    --glow: 0 0 24px rgba(168, 86, 240, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", Arial, sans-serif;
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    background-color: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Starfield: layered radial-gradient dots, hidden in light mode */
.starfield {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.8) 50%, transparent 51%),
        radial-gradient(1px 1px at 120px 90px, rgba(255,255,255,0.5) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 220px 40px, rgba(255,255,255,0.7) 50%, transparent 51%),
        radial-gradient(1px 1px at 320px 140px, rgba(255,255,255,0.4) 50%, transparent 51%),
        radial-gradient(1px 1px at 70px 190px, rgba(255,255,255,0.6) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 260px 220px, rgba(255,255,255,0.5) 50%, transparent 51%),
        radial-gradient(1px 1px at 170px 260px, rgba(255,255,255,0.35) 50%, transparent 51%);
    background-size: 380px 300px;
    opacity: 0.8;
}
body.light-mode .starfield { opacity: 0; }

h1, h2, h3, h4 {
    font-family: "Oswald", Arial, sans-serif;
    color: var(--headerColor);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

.cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}

/* --- shared text patterns --- */
.cs-topper {
    font-family: "Oswald", Arial, sans-serif;
    font-size: var(--topperFontSize);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 45rem;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    max-width: 40.625rem;
}

/* --- buttons --- */
.cs-button-solid {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    color: #140724;
    background-color: #fafbfc;
    display: inline-block;
    padding: 0 2.5rem;
    line-height: 3.125rem;
    border-radius: 3.125rem;
    box-shadow: var(--glow);
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cs-button-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(168, 86, 240, 0.55);
}
body.light-mode .cs-button-solid {
    background-color: var(--primaryDark);
    color: #ffffff;
}
.cs-button-transparent {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--headerColor);
    display: inline-block;
    padding: 0 2rem;
    line-height: 3.125rem;
    border-radius: 3.125rem;
    border: 1px solid var(--cardBorder);
    transition: border-color 0.2s, color 0.2s;
}
.cs-button-transparent:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   Navigation
   ============================================ */
#cs-navigation {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 84rem;
    z-index: 100;
    background: rgba(16, 7, 28, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4rem;
    border: 1px solid rgba(168, 86, 240, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
body.light-mode #cs-navigation {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 32px rgba(11, 31, 46, 0.12);
}

#cs-navigation .cs-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
}

.cs-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.cs-logo .cs-logo-main {
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: 0.04em;
    color: var(--headerColor);
    text-transform: uppercase;
}
.cs-logo .cs-logo-main span { color: var(--primary); }
.cs-logo .cs-logo-sub {
    font-family: "Caveat", cursive;
    font-size: 1rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(53, 182, 245, 0.8);
    margin-top: 0.125rem;
}

.cs-ul {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.cs-li-link {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--headerColor);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.cs-li-link:hover { color: var(--primary); }
.cs-li-link.cs-active { color: var(--primary); }

.cs-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.375rem;
    color: var(--headerColor);
}

/* mobile nav */
#mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}
#mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--headerColor);
    transition: transform 0.25s, opacity 0.25s;
}

@media only screen and (max-width: 63.9rem) {
    #cs-navigation .cs-ul-wrapper {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: rgba(16, 7, 28, 0.97);
        border-radius: 1.5rem;
        border: 1px solid rgba(168, 86, 240, 0.12);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }
    body.light-mode #cs-navigation .cs-ul-wrapper { background: rgba(255,255,255,0.98); }
    #cs-navigation.cs-open .cs-ul-wrapper { max-height: 30rem; }
    .cs-ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.75rem;
        gap: 1rem;
    }
    #mobile-toggle { display: flex; }
    #cs-navigation.cs-open #mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #cs-navigation.cs-open #mobile-toggle span:nth-child(2) { opacity: 0; }
    #cs-navigation.cs-open #mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .cs-nav-actions .cs-button-solid { display: none; }
}

/* ============================================
   Hero
   ============================================ */
#hero {
    padding: clamp(9rem, 16vw, 13rem) 1rem clamp(4rem, 8vw, 7rem);
    position: relative;
}
#hero .cs-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
#hero .cs-content { flex: 1 1 24rem; }
#hero h1 {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 34rem;
}
#hero .cs-text { margin-bottom: 2rem; }
#hero .cs-button-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

/* CSS device mockup */
#hero .cs-mockup { flex: 1 1 24rem; display: flex; justify-content: center; }
.laptop {
    width: min(100%, 34rem);
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}

/* ============================================
   Services card grid
   ============================================ */
.cs-section { padding: var(--sectionPadding); }
.cs-section-center { text-align: center; }
.cs-section-center .cs-title,
.cs-section-center .cs-text { margin-left: auto; margin-right: auto; }

.cs-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    text-align: left;
}
.cs-card {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}
.cs-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}
.cs-card .cs-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(168, 86, 240, 0.12);
    margin-bottom: 1.25rem;
}
.cs-card .cs-icon svg { width: 1.625rem; height: 1.625rem; stroke: var(--primary); }
.cs-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}
.cs-card p { line-height: 1.6; }

/* ============================================
   Side-by-side sections
   ============================================ */
.cs-sbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.cs-sbs > * { flex: 1 1 24rem; }
.cs-sbs .cs-flex-art { display: flex; justify-content: center; }
.cs-sbs .cs-flex-art svg { width: min(100%, 30rem); height: auto; }

.cs-check-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem 1.5rem;
    margin: 1.75rem 0 2rem;
}
.cs-check-group li {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    line-height: 1.5;
}
.cs-check-group li strong {
    color: var(--headerColor);
    display: block;
    font-family: "Oswald", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
}
.cs-check {
    flex: none;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background: rgba(168, 86, 240, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}
.cs-check svg { width: 0.8125rem; height: 0.8125rem; stroke: var(--primary); }

.cs-darken { background: rgba(0, 0, 0, 0.25); }
body.light-mode .cs-darken { background: rgba(11, 31, 46, 0.05); }

/* ============================================
   Portfolio
   ============================================ */
.cs-portfolio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.cs-portfolio-card {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
}
.cs-portfolio-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.cs-portfolio-thumb {
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
}
.cs-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cs-thumb-1 { background: linear-gradient(135deg, #1a75b5, #0b3552); }
.cs-thumb-2 { background: linear-gradient(135deg, #3e2f86, #131b4d); }
.cs-thumb-3 { background: linear-gradient(135deg, #0e6a5c, #05302c); }
.cs-thumb-4 { background: linear-gradient(135deg, #8a4f1d, #3d2008); }
.cs-thumb-5 { background: linear-gradient(135deg, #7c2d5e, #35112a); }
.cs-thumb-6 { background: linear-gradient(135deg, #7a2fc4, #2a1747); }
.cs-thumb-7 { background: linear-gradient(135deg, #4f5a1d, #20260a); }
.cs-portfolio-card .cs-card-body { padding: 1.5rem; }
.cs-portfolio-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.cs-portfolio-card p { line-height: 1.6; margin-bottom: 1rem; }
.cs-portfolio-card .cs-link {
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

/* ============================================
   Pricing
   ============================================ */
.cs-pricing-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}
.cs-price-card {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    padding: 2.25rem 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.cs-price-card.cs-popular {
    border-color: var(--primary);
    box-shadow: var(--glow);
    position: relative;
}
.cs-price-card .cs-flag {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #140724;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
}
.cs-price-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.cs-price {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 2.625rem;
    font-weight: 900;
    color: var(--headerColor);
    line-height: 1.1;
}
.cs-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bodyTextColorDim);
    font-family: "Source Sans 3", Arial, sans-serif;
    text-transform: none;
}
.cs-price-sub { color: var(--bodyTextColorDim); margin-bottom: 1.5rem; }
.cs-price-features { margin: 0 0 2rem; flex-grow: 1; }
.cs-price-features li {
    display: flex;
    gap: 0.625rem;
    align-items: center;
    padding: 0.4375rem 0;
    line-height: 1.5;
}
.cs-price-features .cs-x svg { stroke: var(--bodyTextColorDim); }
.cs-price-features .cs-x { background: rgba(133, 149, 163, 0.12); }
.cs-price-features .cs-muted { color: var(--bodyTextColorDim); }
.cs-price-card .cs-button-solid { width: 100%; padding: 0; }

/* ============================================
   Testimonials
   ============================================ */
.cs-review-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.cs-review-card {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    text-align: left;
}
.cs-review-card .cs-stars { color: var(--primary); letter-spacing: 0.2em; margin-bottom: 1rem; }
.cs-review-card blockquote { line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }
.cs-review-card .cs-name {
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--headerColor);
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
}
.cs-review-card .cs-place { font-size: 0.875rem; color: var(--bodyTextColorDim); }

/* ============================================
   Final CTA
   ============================================ */
#cta {
    padding: var(--sectionPadding);
    text-align: center;
    position: relative;
}
#cta .cs-title { max-width: 38rem; margin: 0 auto 1rem; }
#cta .cs-text { margin: 0 auto 2rem; }

/* ============================================
   Footer
   ============================================ */
#cs-footer {
    background: var(--footerBg);
    padding: clamp(3rem, 6vw, 5rem) 1rem 1.5rem;
    color: #aebcc7;
}
#cs-footer .cs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 2.5rem;
}
#cs-footer h4 {
    color: #fafbfc;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.125rem;
}
#cs-footer .cs-footer-logo .cs-logo-main { font-size: 1.5rem; }
#cs-footer .cs-mission { margin-top: 1rem; line-height: 1.6; max-width: 20rem; }
#cs-footer ul li { padding: 0.3125rem 0; }
#cs-footer a { color: #aebcc7; transition: color 0.2s; }
#cs-footer a:hover { color: var(--primary); }
#cs-footer .cs-bottom {
    max-width: 80rem;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: #7d8b96;
}
#cs-footer .cs-bottom a { color: #7d8b96; }

/* ============================================
   Interior page banner
   ============================================ */
#page-banner {
    padding: clamp(9rem, 14vw, 12rem) 1rem clamp(3rem, 6vw, 5rem);
    text-align: center;
}
#page-banner h1 {
    font-size: clamp(2.4375rem, 6vw, 3.5rem);
    font-weight: 900;
}
#page-banner p { max-width: 38rem; margin: 1rem auto 0; line-height: 1.6; }

/* ============================================
   FAQ accordion
   ============================================ */
.cs-faq-group { max-width: 47rem; margin: 2.5rem auto 0; text-align: left; }
.cs-faq-group h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.cs-faq-item {
    border: 1px solid var(--cardBorder);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    background: var(--bgPanelSoft);
    overflow: hidden;
}
.cs-faq-item summary {
    cursor: pointer;
    padding: 1.125rem 1.375rem;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 600;
    color: var(--headerColor);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.cs-faq-item summary::-webkit-details-marker { display: none; }
.cs-faq-item summary::after {
    content: "+";
    font-size: 1.375rem;
    color: var(--primary);
    flex: none;
    transition: transform 0.2s;
}
.cs-faq-item[open] summary::after { transform: rotate(45deg); }
.cs-faq-item .cs-answer { padding: 0 1.375rem 1.25rem; line-height: 1.65; }

/* ============================================
   Process steps (About)
   ============================================ */
.cs-step-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
    counter-reset: step;
}
.cs-step {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    counter-increment: step;
}
.cs-step::before {
    content: "0" counter(step);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}
.cs-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.cs-step p { line-height: 1.6; }

/* ============================================
   Contact
   ============================================ */
.cs-contact-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}
.cs-contact-wrap > * { flex: 1 1 22rem; }
.cs-contact-info li {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 0.875rem 0;
}
.cs-contact-info .cs-check { margin-top: 0.1875rem; }
.cs-contact-info strong {
    display: block;
    color: var(--headerColor);
    font-family: "Oswald", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
}
.cs-contact-info a { color: var(--bodyTextColor); }
.cs-contact-info a:hover { color: var(--primary); }

#contact-form {
    background: var(--bgPanelSoft);
    border: 1px solid var(--cardBorder);
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}
#contact-form label {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--headerColor);
    display: grid;
    gap: 0.375rem;
}
#contact-form input,
#contact-form textarea {
    font-family: "Source Sans 3", Arial, sans-serif;
    font-size: 1rem;
    color: var(--headerColor);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--cardBorder);
    border-radius: 0.5rem;
    padding: 0.75rem 0.875rem;
}
body.light-mode #contact-form input,
body.light-mode #contact-form textarea { background: #fff; }
#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
#contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* ============================================
   Legal pages
   ============================================ */
.cs-legal { max-width: 47rem; margin: auto; }
.cs-legal h2 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.cs-legal p { line-height: 1.7; margin-bottom: 1rem; }

/* fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
