```css
:root {
    --background-dark: #030506;
    --background-mid: #070b0e;
    --background-light: #0c1418;

    --surface: rgba(255, 255, 255, 0.035);
    --surface-hover: rgba(255, 255, 255, 0.055);

    --border: rgba(174, 224, 218, 0.18);
    --border-strong: rgba(174, 224, 218, 0.45);

    --text-main: #e9edf2;
    --text-secondary: #aeb8c0;
    --text-muted: #77828a;

    --accent: #a9d7d3;
    --accent-bright: #d9f8f4;
    --accent-dark: #44817c;

    --maximum-width: 1180px;
}


/* --------------------------------------------------
   Global
-------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-main);
    background:
        radial-gradient(
            circle at top,
            #17232b 0%,
            #080c10 48%,
            #030506 100%
        );
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}


/* --------------------------------------------------
   Hero
-------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 70px 24px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 28%,
            rgba(68, 129, 124, 0.19),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(5, 12, 15, 0.48),
            rgba(3, 5, 6, 0.96)
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(72, 137, 131, 0.11);
    filter: blur(115px);
    transform: translateY(-100px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            var(--background-dark) 100%
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(780px, 100%);
}

.studio-logo {
    width: min(440px, 88%);
    height: auto;
    margin-bottom: 26px;
    filter:
        drop-shadow(0 0 22px rgba(117, 205, 196, 0.12));
}

.hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.7rem, 8vw, 5.4rem);
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.05;
}

.tagline {
    margin-bottom: 22px;
    color: var(--accent);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 0.04em;
}

.hero-description {
    max-width: 690px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.8;
}


/* --------------------------------------------------
   Shared sections
-------------------------------------------------- */

.section {
    width: min(var(--maximum-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-label {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.85;
    text-align: center;
}


/* --------------------------------------------------
   About
-------------------------------------------------- */

.about-section {
    padding-top: 70px;
    padding-bottom: 110px;
}


/* --------------------------------------------------
   GlassCoreUI project
-------------------------------------------------- */

.project-section {
    position: relative;
    padding: 72px 54px;
    border: 1px solid rgba(174, 224, 218, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.016)
        );
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.project-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(113, 202, 193, 0.08),
            transparent 35%
        );
    pointer-events: none;
}

.project-header,
.project-intro,
.feature-grid,
.gallery-header,
.gallery {
    position: relative;
    z-index: 1;
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.project-title-group h2 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.status-badge {
    flex-shrink: 0;
    margin-top: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(174, 224, 218, 0.35);
    border-radius: 999px;
    color: var(--accent-bright);
    background: rgba(68, 129, 124, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-intro {
    max-width: 920px;
    margin-bottom: 52px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
}


/* --------------------------------------------------
   Feature cards
-------------------------------------------------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(174, 224, 218, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(174, 224, 218, 0.42);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--accent-bright);
    font-size: 1.2rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}


/* --------------------------------------------------
   Gallery
-------------------------------------------------- */

.gallery-header {
    max-width: 760px;
    margin: 90px auto 38px;
    text-align: center;
}

.gallery-header h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.gallery-header p:last-child {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 26px;
}

.screenshot-card {
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(174, 224, 218, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(174, 224, 218, 0.07),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(174, 224, 218, 0.48);
    box-shadow:
        0 25px 52px rgba(0, 0, 0, 0.38),
        0 0 22px rgba(92, 174, 166, 0.08);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: #030506;
}

.screenshot-card figcaption {
    padding: 14px 10px 5px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    text-align: center;
}


/* --------------------------------------------------
   Vision
-------------------------------------------------- */

.vision-section {
    padding-top: 120px;
    padding-bottom: 120px;
}


/* --------------------------------------------------
   Footer
-------------------------------------------------- */

.site-footer {
    padding: 38px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    color: var(--text-muted);
    background: #020304;
    text-align: center;
}

.site-footer p {
    margin-bottom: 6px;
}

.footer-note {
    margin-bottom: 0;
    font-size: 0.88rem;
}


/* --------------------------------------------------
   Tablet
-------------------------------------------------- */

@media (max-width: 950px) {

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-section {
        padding: 60px 34px;
    }

}


/* --------------------------------------------------
   Mobile
-------------------------------------------------- */

@media (max-width: 680px) {

    .hero {
        min-height: 90vh;
        padding: 55px 20px;
    }

    .studio-logo {
        width: min(340px, 92%);
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        width: min(100% - 28px, var(--maximum-width));
        padding: 78px 0;
    }

    .project-section {
        width: calc(100% - 24px);
        padding: 44px 20px;
        border-radius: 22px;
    }

    .project-header {
        flex-direction: column;
        gap: 14px;
    }

    .status-badge {
        margin-top: 0;
    }

    .feature-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .gallery-header {
        margin-top: 70px;
    }

}


/* --------------------------------------------------
   Reduced motion
-------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .feature-card,
    .screenshot-card {
        transition: none;
    }

}
/* ======================================================
   Force Light Theme Text
   Add this to the VERY END of styles.css
====================================================== */

body {
    color: #edf3f4;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #edf3f4;
}

/* Paragraphs and captions */
p,
figcaption,
li,
span {
    color: #c5d0d6;
}

/* Hero */
.hero h1 {
    color: #ffffff;
}

.tagline {
    color: #a9d7d3;
}

.hero-description {
    color: #c7d0d6;
}

/* Section headings */
.section h2,
.project-title-group h2,
.gallery-header h2 {
    color: #edf3f4;
}

.section-label {
    color: #a9d7d3;
}

/* Body text */
.section-description,
.project-intro,
.gallery-header p,
.feature-card p {
    color: #c5d0d6;
}

/* Cards */
.feature-card h3 {
    color: #d9f8f4;
}

/* Gallery */
.screenshot-card figcaption {
    color: #d6dee3;
}

/* Footer */
.site-footer,
.footer-note {
    color: #9ca8af;
}

/* Links */
a {
    color: #9ddbd5;
}

a:hover {
    color: #d9f8f4;
}
