/* =========================================================
   GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #131313;
    color: #e5e2e1;
    font-family: "Hanken Grotesk", sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    z-index: 100;

    background: transparent;

    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(19, 19, 19, 0.9);
    backdrop-filter: blur(20px);

    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.5);
}


.header-container {
    width: 100%;
    max-width: 1280px;

    height: 100%;

    margin: auto;
    padding: 0 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo-container {
    display: flex;
    align-items: center;

    gap: 8px;

}


.logo-container img {
    width: 50px;
    height: auto;

    object-fit: contain;
    object-position: center;

    display: block;

    flex-shrink: 0;
    border-radius: 50%;
}


.logo-text {
    font-family: "Sora", sans-serif;

    font-size: 24px;
    font-weight: 600;

    color: #e5e2e1;

    letter-spacing: -0.02em;
}


.logo-text span {
    color: #bcc2ff;
}

/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(20px, 3vw, 48px);

    flex-shrink: 1;
}

.nav-link {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    font-family: "Geist", sans-serif;

    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: #c4c5da;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}


/* =========================================================
   DESKTOP HOVER EFFECT
========================================================= */

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        #bcc2ff,
        #00a5fe
    );

    border-radius: 10px;

    transform: translateX(-50%);

    transition:
        width 0.35s ease,
        box-shadow 0.35s ease;
}


.nav-link:hover {
    color: #ffffff;

    transform: translateY(-2px);

    text-shadow:
        0 0 12px rgba(188, 194, 255, 0.45);
}


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

    box-shadow:
        0 0 10px rgba(0, 165, 254, 0.7);
}


/* =========================================================
   ACTIVE NAV LINK
========================================================= */

.nav-link.active {
    color: #bcc2ff;

    font-weight: 700;

    text-shadow:
        0 0 10px rgba(188, 194, 255, 0.25);
}


.nav-link.active::after {
    width: 100%;

    background: #bcc2ff;

    box-shadow:
        0 0 10px rgba(188, 194, 255, 0.6);
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: rgba(32, 32, 31, 0.7);

    border: 1px solid rgba(142, 143, 163, 0.25);

    border-radius: 10px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #e5e2e1;

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}


.menu-toggle:hover {
    background: #20201f;

    border-color: #bcc2ff;

    box-shadow:
        0 0 15px rgba(188, 194, 255, 0.2);
}


.menu-toggle:hover span {
    background: #bcc2ff;
}


/* =========================================================
   TABLET + MOBILE
   Hamburger starts at 850px
========================================================= */

@media (max-width: 850px) {

    /* Hide desktop navigation */

    .navigation {
        position: fixed;

        top: 80px;

        left: 16px;
        right: 16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 12px;

        background: rgba(19, 19, 19, 0.96);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border: 1px solid rgba(142, 143, 163, 0.2);

        border-radius: 16px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.5);

        /*
         * IMPORTANT:
         * Start hidden
         */

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-15px)
            scale(0.98);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    /* =====================================================
       OPEN MENU
    ===================================================== */

    .navigation.open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }


    /* =====================================================
       MOBILE NAV LINKS
    ===================================================== */

    .nav-link {
        width: 100%;

        padding: 14px 16px;

        font-size: 13px;

        border-radius: 10px;

        transform: none;

        transition:
            background 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease;
    }


    .nav-link:hover {
        background:
            rgba(188, 194, 255, 0.08);

        transform:
            translateX(5px);

        text-shadow: none;
    }


    /* Remove desktop underline */

    .nav-link::after {
        left: 16px;

        bottom: 8px;

        transform: none;

        width: 0;

        height: 2px;
    }


    .nav-link:hover::after {
        width: 30px;

        box-shadow:
            0 0 8px rgba(0, 165, 254, 0.6);
    }


    .nav-link.active::after {
        width: 30px;
    }


    /* =====================================================
       SHOW HAMBURGER
    ===================================================== */

    .menu-toggle {
        display: flex;
    }

}


/* =========================================================
   HAMBURGER → X
========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .navigation {
        top: 70px;

        left: 12px;
        right: 12px;
    }

}

/* =========================================================
   PROFILE
========================================================= */

.profile-icon {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #bcc2ff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon span {
    font-size: 18px;
    color: #00189a;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 819px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   WEBGL SHADER
========================================================= */

.shader-container {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0.6;

    mix-blend-mode: screen;

    pointer-events: none;

    transition: opacity 1s ease;

    z-index: 0;
}

.hero:hover .shader-container {
    opacity: 0.8;
}

#shader-canvas {
    display: block;

    width: 100%;
    height: 100%;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(19, 19, 19, 0.4),
            rgba(19, 19, 19, 0.1),
            #131313
        );

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1280px;

    min-height: 819px;

    margin: auto;

    padding: 64px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* =========================================================
   VERSION BADGE
========================================================= */

.version-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 4px 12px;

    margin-bottom: 24px;

    background: #2a2a2a;

    border-radius: 999px;

    animation:
        fadeInUp 0.8s ease-out 0.2s both;
}

.status-dot {
    width: 8px;
    height: 8px;

    background: #bcc2ff;

    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(188, 194, 255, 0.8);

    animation: pulse 2s infinite;
}

.version-badge span:last-child {
    font-family: "Geist", sans-serif;

    font-size: 12px;

    color: #bcc2ff;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    max-width: 900px;

    margin-bottom: 24px;

    font-family: "Sora", sans-serif;

    font-size: 72px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.02em;

    color: #e5e2e1;

    animation:
        fadeInUp 0.8s ease-out 0.4s both;
}

.gradient-text {
    display: inline-block;

    color: transparent;

    background:
        linear-gradient(
            to right,
            #bcc2ff,
            #96ccff,
            #002fff
        );

    background-clip: text;
    -webkit-background-clip: text;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 700px;

    margin: 0 auto 48px;

    font-family: "Hanken Grotesk", sans-serif;

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;

    color: #c4c5da;

    opacity: 0.9;

    animation:
        fadeInUp 0.8s ease-out 0.6s both;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    animation:
        fadeInUp 0.8s ease-out 0.8s both;
}


/* Primary */

.primary-button {
    position: relative;

    overflow: hidden;

    padding: 12px 80px;

    background: #bcc2ff;

    color: #00189a;

    border-radius: 999px;

    font-family: "Geist", sans-serif;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    box-shadow:
        0 4px 20px rgba(0, 47, 255, 0.4);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.primary-button:hover {
    background: #dfe0ff;

    transform: translateY(-4px);

    box-shadow:
        0 4px 30px rgba(0, 165, 254, 0.6);
}

.primary-button::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
}

.primary-button:hover::after {
    animation: shimmer 1.5s infinite;
}


/* Secondary */

.secondary-button {
    position: relative;

    padding: 12px 40px;

    background: transparent;

    color: #e5e2e1;

    border-radius: 999px;

    font-family: "Geist", sans-serif;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
}

.secondary-button::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 999px;

    border: 1px solid rgba(142, 143, 163, 0.3);

    transition:
        border-color 0.3s ease;
}

.secondary-button:hover {
    background: #20201f;

    transform: translateY(-4px);
}

.secondary-button:hover::before {
    border-color: rgba(188, 194, 255, 0.5);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    width: 100%;

    background: #1c1b1b;

    padding-top: 80px;
    padding-bottom: 24px;

    border-top:
        1px solid rgba(68, 70, 87, 0.1);
}

.footer-container {
    width: 100%;

    max-width: 1280px;

    margin: auto;

    padding: 0 64px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 48px;

    margin-bottom: 80px;
}


/* Company */

.footer-logo {
    margin-bottom: 24px;

    font-family: "Sora", sans-serif;

    font-size: 32px;

    font-weight: 600;

    color: #e5e2e1;
}

.footer-company p {
    max-width: 420px;

    font-size: 16px;

    line-height: 1.5;

    color: #c4c5da;
}


/* Footer columns */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-title {
    margin-bottom: 8px;

    font-family: "Geist", sans-serif;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: #bcc2ff;
}

.footer-column a {
    color: #c4c5da;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #bcc2ff;
}


/* Bottom */

.footer-bottom {
    padding-top: 24px;

    border-top:
        1px solid rgba(68, 70, 87, 0.1);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.footer-bottom p {
    font-family: "Geist", sans-serif;

    font-size: 14px;

    color: #c4c5da;
}

.footer-icons {
    display: flex;

    align-items: center;

    gap: 24px;
}

.footer-icons span {
    color: #c4c5da;

    cursor: pointer;

    transition: color 0.3s ease;
}

.footer-icons span:hover {
    color: #bcc2ff;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeInUp {

    0% {
        opacity: 0;

        transform:
            translateY(30px)
            scale(0.98);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


@keyframes shimmer {

    100% {
        transform: translateX(200%);
    }

}


@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .header-container {
        padding: 0 32px;
    }

    .navigation {
        gap: 24px;
    }

    .hero-content {
        padding: 32px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .footer-container {
        padding: 0 32px;
    }

}


@media (max-width: 768px) {

    header {
        height: 70px;
    }

    .header-container {
        padding: 0 20px;
    }


    .logo-text {
        font-size: 20px;
    }

    .hero {
        min-height: 750px;
    }

    .hero-content {
        min-height: 750px;

        padding:
            100px
            20px
            40px;
    }

    .hero h1 {
        font-size: 42px;

        line-height: 1.15;
    }

    .hero-description {
        font-size: 16px;

        max-width: 90%;

        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 16px;
    }

    .primary-button,
    .secondary-button {
        width: 220px;
    }

    .footer-container {
        padding: 0 20px;
    }

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

        gap: 40px;

        margin-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 480px) {

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .version-badge {
        font-size: 10px;
    }

    .hero-description {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 26px;
    }

}


/* =========================================================
   Our Services
========================================================= */
/* =====================================================================
   OUR SERVICES SECTION — CSS
   Paste this into style.css
   Uses your existing palette: primary #bcc2ff, primary-container #002fff,
   secondary #96ccff, secondary-container #00a5fe, on-surface #e5e2e1,
   on-surface-variant #c4c5da, surface-container-low #1c1b1b
===================================================================== */
 
@property --angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
 
.services {
    position: relative;
    overflow: hidden;
 
    width: 100%;
    padding: 120px 64px;
 
    background: #0b0b0d; /* deliberately darker/cooler than the hero's #131313 */
}
 
/* ---------- ambient drifting orbs ---------- */
 
.services__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.35;
}
 
.services__orb--1 {
    top: -120px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #002fff, transparent 70%);
    animation: driftA 22s ease-in-out infinite;
}
 
.services__orb--2 {
    top: 30%;
    right: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #00a5fe, transparent 70%);
    animation: driftB 26s ease-in-out infinite;
}
 
.services__orb--3 {
    bottom: -160px;
    left: 35%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, #bcc2ff, transparent 72%);
    opacity: 0.18;
    animation: driftC 30s ease-in-out infinite;
}
 
@keyframes driftA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, 60px) scale(1.1); }
}
 
@keyframes driftB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-50px, 30px) scale(0.9); }
}
 
@keyframes driftC {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -40px) scale(1.05); }
}
 
/* faint grain texture for a premium, non-flat surface */
.services__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
}
 
 
/* ---------- layout ---------- */
 
.services__inner {
    position: relative;
    z-index: 1;
 
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
 
.services__header {
    margin-bottom: 64px;
    text-align: left;
}
 
.services__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
 
    font-family: "Geist", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
 
    color: #bcc2ff;
}
 
.services__title {
    margin-bottom: 16px;
 
    font-family: "Sora", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
 
    color: #e5e2e1;
}
 
.services__subtitle {
    max-width: 560px;
 
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 17px;
    line-height: 1.6;
 
    color: #c4c5da;
    opacity: 0.9;
}
 
 
/* ---------- grid ---------- */
 
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
 
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 640px) {
    .services__grid { grid-template-columns: 1fr; }
    .services { padding: 80px 24px; }
    .services__title { font-size: 34px; }
}
 
 
/* ---------- cards ---------- */
 
.service-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
 
    padding: 36px 32px;
    border-radius: 20px;
 
    background: rgba(28, 27, 27, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
 
    border: 1px solid rgba(196, 197, 218, 0.08);
 
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.5s ease;
}
 
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(188, 194, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 47, 255, 0.12);
}
 
/* rotating gradient "light border" — pure CSS via animated @property angle */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
 
    background: conic-gradient(
        from var(--angle),
        transparent 0%,
        rgba(188, 194, 255, 0.7) 12%,
        rgba(0, 165, 254, 0.6) 24%,
        transparent 40%
    );
 
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
 
    opacity: 0.4;
    transition: opacity 0.5s ease;
    animation: rotateBorder 7s linear infinite;
}
 
.service-card:hover::before {
    opacity: 1;
}
 
@keyframes rotateBorder {
    to { --angle: 360deg; }
}
 
/* soft glow that blooms on hover, centered behind the icon */
.service-card::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
 
    background: radial-gradient(circle, rgba(188, 194, 255, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}
 
.service-card:hover::after {
    opacity: 1;
}
 
 
/* ---------- icon ---------- */
 
.service-card__icon {
    position: relative;
 
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    border-radius: 14px;
 
    background: linear-gradient(160deg, rgba(188, 194, 255, 0.16), rgba(0, 47, 255, 0.10));
    border: 1px solid rgba(188, 194, 255, 0.15);
 
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                background 0.5s ease,
                box-shadow 0.5s ease;
}
 
.service-card:hover .service-card__icon {
    transform: scale(1.08) rotate(-6deg);
    background: linear-gradient(160deg, rgba(188, 194, 255, 0.28), rgba(0, 47, 255, 0.18));
    box-shadow: 0 0 30px rgba(188, 194, 255, 0.25);
}
 
.service-card__icon-glyph {
    font-size: 22px;
    line-height: 1;
    color: #dfe0ff;
}
 
 
/* ---------- text ---------- */
 
.service-card__title {
    margin-bottom: 10px;
 
    font-family: "Sora", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
 
    color: #e5e2e1;
}
 
.service-card__desc {
    max-width: 32ch;
 
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    line-height: 1.6;
 
    color: #c4c5da;
}
 
 
/* ---------- arrow affordance ---------- */
 
.service-card__arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
 
    font-size: 16px;
    color: #bcc2ff;
 
    opacity: 0;
    transform: translate(-6px, 6px);
 
    transition: opacity 0.4s ease, transform 0.4s ease;
}
 
.service-card:hover .service-card__arrow {
    opacity: 1;
    transform: translate(0, 0);
}
 
 
/* ---------- scroll reveal ---------- */
 
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: calc(var(--d, 0) * 100ms);
}
 
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
 
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
 
    .services__orb,
    .service-card::before {
        animation: none;
    }
 
    .service-card,
    .service-card__icon,
    .service-card__arrow {
        transition: none;
    }
}

/* =====================================================================
   ABOUT US SECTION — CSS
   Paste this into style.css
   Same palette as the rest of the site: primary #bcc2ff, primary-container
   #002fff, secondary #96ccff, secondary-container #00a5fe, on-surface
   #e5e2e1, on-surface-variant #c4c5da
===================================================================== */

.about {
    position: relative;
    overflow: hidden;

    width: 100%;
    padding: 120px 64px;

    background: #101013; /* distinct dark tone, sits between hero (#131313) and services (#0b0b0d) */
    border-top: 1px solid rgba(196, 197, 218, 0.06);
}

/* ---------- ambient background ---------- */

.about__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.about__orb--1 {
    top: -100px;
    right: -120px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, #00a5fe, transparent 70%);
    opacity: 0.16;
}

.about__orb--2 {
    bottom: -140px;
    left: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #bcc2ff, transparent 70%);
    opacity: 0.12;
}

.about__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
}


/* ---------- layout ---------- */

.about__inner {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.about__header {
    margin-bottom: 56px;
}

.about__eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    font-family: "Geist", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #96ccff;
}

.about__title {
    margin-bottom: 20px;

    font-family: "Sora", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;

    color: #e5e2e1;
}

.about__title-accent {
    color: transparent;
    background: linear-gradient(to right, #bcc2ff, #96ccff, #002fff);
    background-clip: text;
    -webkit-background-clip: text;
}

.about__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 16px;
    border-radius: 999px;

    background: rgba(0, 165, 254, 0.08);
    border: 1px solid rgba(150, 204, 255, 0.2);

    font-family: "Geist", sans-serif;
    font-size: 13px;
    color: #c4c5da;
}

.about__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #96ccff;
    box-shadow: 0 0 8px rgba(150, 204, 255, 0.8);
    animation: aboutPulse 2s infinite;
}

@keyframes aboutPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}


/* ---------- story + offer ---------- */

.about__content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;

    margin-bottom: 96px;
}

.about__block-title {
    margin-bottom: 20px;

    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 600;

    color: #e5e2e1;
}

.about__text {
    margin-bottom: 16px;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #c4c5da;
}

.about__text:last-child { margin-bottom: 0; }

.about__divider {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.about__divider-line {
    width: 1px;
    height: 100%;
    min-height: 200px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(188, 194, 255, 0.35),
        transparent
    );
}

.about__list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about__list-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(160deg, rgba(188, 194, 255, 0.12), rgba(0, 165, 254, 0.10));
    border: 1px solid rgba(188, 194, 255, 0.14);

    font-size: 17px;
}

.about__list-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__list-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    color: #e5e2e1;
}

.about__list-desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #c4c5da;
    opacity: 0.85;
}


/* ---------- founders ---------- */

.about__team-header {
    margin-bottom: 36px;
    text-align: center;
}

.about__team-header .about__text {
    max-width: 480px;
    margin: 0 auto;
}

.about__founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;

    margin-bottom: 96px;
}

.founder-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 40px 36px;
    border-radius: 20px;
    text-align: center;

    background: rgba(28, 27, 27, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 197, 218, 0.08);

    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.5s ease,
                box-shadow 0.5s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    border-color: rgba(150, 204, 255, 0.28);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45),
                0 0 40px rgba(0, 165, 254, 0.10);
}

.founder-card__avatar {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(160deg, rgba(188, 194, 255, 0.18), rgba(0, 165, 254, 0.14));
    border: 1px solid rgba(188, 194, 255, 0.2);

    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.founder-card:hover .founder-card__avatar {
    transform: scale(1.06) rotate(-4deg);
}

.founder-card__avatar-icon { font-size: 30px; }

.founder-card__name {
    margin-bottom: 4px;
    font-family: "Sora", sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #e5e2e1;
}

.founder-card__role {
    display: block;
    margin-bottom: 16px;

    font-family: "Geist", sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #96ccff;
}

.founder-card__bio {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #c4c5da;
}


/* ---------- pillars ---------- */

.about__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar {
    padding: 28px 24px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 197, 218, 0.07);

    transition: border-color 0.4s ease, transform 0.4s ease;
}

.pillar:hover {
    border-color: rgba(150, 204, 255, 0.2);
    transform: translateY(-3px);
}

.pillar__icon {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 22px;
}

.pillar__title {
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #e5e2e1;
}

.pillar__desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #c4c5da;
    opacity: 0.85;
}


/* ---------- responsive ---------- */

@media (max-width: 900px) {
    .about__content {
        grid-template-columns: 1fr;
    }

    .about__divider { display: none; }

    .about__founders,
    .about__pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about { padding: 80px 24px; }
    .about__title { font-size: 32px; }
}


/* ---------- signature motion: slide in from sides ---------- */

.about-reveal {
    opacity: 0;
    transform: translateX(var(--start-x, -60px));
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: calc(var(--d, 0) * 130ms);
}

.about-reveal[data-dir="left"]  { --start-x: -70px; }
.about-reveal[data-dir="right"] { --start-x: 70px; }

.about-reveal.in-view {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .founder-card,
    .founder-card__avatar,
    .pillar,
    .about__badge-dot {
        transition: none;
        animation: none;
    }
}

/* =====================================================================
   OUR PROCESS SECTION — CSS
   Matching SiteReel design system: #0c0c0f base, orbs, glassmorphism cards
===================================================================== */

.process {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 120px 64px;
    background: #0c0c0f;
    border-top: 1px solid rgba(196, 197, 218, 0.06);
}

.process__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.process__orb--1 {
    top: -80px;
    left: 20%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, #002fff, transparent 70%);
    opacity: 0.2;
}

.process__orb--2 {
    bottom: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00a5fe, transparent 70%);
    opacity: 0.15;
}

.process__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
}

.process__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.process__header {
    margin-bottom: 64px;
    text-align: left;
}

.process__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: "Geist", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #96ccff;
}

.process__title {
    margin-bottom: 16px;
    font-family: "Sora", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #e5e2e1;
}

.process__title-accent {
    color: transparent;
    background: linear-gradient(to right, #bcc2ff, #96ccff, #002fff);
    background-clip: text;
    -webkit-background-clip: text;
}

.process__subtitle {
    max-width: 580px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #c4c5da;
    opacity: 0.9;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(28, 27, 27, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 197, 218, 0.08);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.5s ease,
                box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(188, 194, 255, 0.28);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45),
                0 0 30px rgba(0, 165, 254, 0.12);
}

.process-card__step {
    font-family: "Sora", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: transparent;
    background: linear-gradient(135deg, #bcc2ff 0%, #00a5fe 100%);
    background-clip: text;
    -webkit-background-clip: text;
    opacity: 0.9;
}

.process-card__title {
    margin-bottom: 12px;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #e5e2e1;
}

.process-card__desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #c4c5da;
    opacity: 0.85;
    margin-bottom: 20px;
    flex-grow: 1;
}

.process-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(188, 194, 255, 0.08);
    border: 1px solid rgba(188, 194, 255, 0.12);
    font-family: "Geist", sans-serif;
    font-size: 11.5px;
    color: #bcc2ff;
    letter-spacing: 0.02em;
    width: fit-content;
}

/* =====================================================================
   CONTACT US SECTION — CSS
   Interactive consultation form & studio contact info
===================================================================== */

.contact {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 120px 64px;
    background: #131313;
    border-top: 1px solid rgba(196, 197, 218, 0.06);
}

.contact__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.contact__orb--1 {
    top: 10%;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #002fff, transparent 70%);
    opacity: 0.18;
}

.contact__orb--2 {
    bottom: -100px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #96ccff, transparent 70%);
    opacity: 0.12;
}

.contact__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
}

.contact__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.contact__header {
    margin-bottom: 56px;
    text-align: left;
}

.contact__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: "Geist", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bcc2ff;
}

.contact__title {
    margin-bottom: 16px;
    font-family: "Sora", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #e5e2e1;
}

.contact__title-accent {
    color: transparent;
    background: linear-gradient(to right, #bcc2ff, #96ccff, #00a5fe);
    background-clip: text;
    -webkit-background-clip: text;
}

.contact__subtitle {
    max-width: 600px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #c4c5da;
    opacity: 0.9;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.contact__info-card {
    padding: 40px 36px;
    border-radius: 20px;
    background: rgba(28, 27, 27, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 197, 218, 0.08);
}

.contact__info-title {
    margin-bottom: 12px;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #e5e2e1;
}

.contact__info-desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #c4c5da;
    margin-bottom: 32px;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 197, 218, 0.06);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-channel:hover {
    border-color: rgba(188, 194, 255, 0.25);
    background: rgba(188, 194, 255, 0.04);
}

.contact-channel__icon {
    font-size: 22px;
    color: #bcc2ff;
    flex-shrink: 0;
}

.contact-channel__label {
    display: block;
    font-family: "Geist", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #96ccff;
    margin-bottom: 2px;
}

.contact-channel__val {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #e5e2e1;
}

.contact__direct-chat {
    padding-top: 24px;
    border-top: 1px solid rgba(196, 197, 218, 0.08);
}

.contact__direct-title {
    font-family: "Geist", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bcc2ff;
    margin-bottom: 8px;
}

.contact__direct-desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13.5px;
    color: #c4c5da;
    line-height: 1.5;
}

/* Contact Form */
.contact__form-card {
    padding: 40px 36px;
    border-radius: 20px;
    background: rgba(28, 27, 27, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 197, 218, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-family: "Geist", sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c4c5da;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    color: #e5e2e1;
    background: rgba(19, 19, 22, 0.7);
    border: 1px solid rgba(142, 143, 163, 0.25);
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-select {
    cursor: pointer;
    background-color: #19191d;
}

.form-select option {
    background: #19191d;
    color: #e5e2e1;
    padding: 10px;
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #bcc2ff;
    background: rgba(26, 26, 32, 0.85);
    box-shadow: 0 0 16px rgba(188, 194, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(196, 197, 218, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px 28px;
}

.form-status {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 4px;
}

.form-status.is-success {
    display: block;
    background: rgba(188, 194, 255, 0.1);
    border: 1px solid rgba(188, 194, 255, 0.3);
    color: #bcc2ff;
}

.form-status.is-error {
    display: block;
    background: rgba(255, 99, 99, 0.1);
    border: 1px solid rgba(255, 99, 99, 0.3);
    color: #ff9e9e;
}

/* =====================================================================
   SUBPAGE SHARED LAYOUT & HERO
   For services.html, about.html, contact.html
===================================================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 160px 64px 80px;
    background: #131313;
    border-bottom: 1px solid rgba(196, 197, 218, 0.06);
    text-align: center;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #2a2a2a;
    margin-bottom: 24px;
}

.page-hero__badge span:first-child {
    width: 8px;
    height: 8px;
    background: #bcc2ff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(188, 194, 255, 0.8);
    animation: pulse 2s infinite;
}

.page-hero__badge span:last-child {
    font-family: "Geist", sans-serif;
    font-size: 12px;
    color: #bcc2ff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.page-hero__title {
    margin-bottom: 20px;
    font-family: "Sora", sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #e5e2e1;
}

.page-hero__subtitle {
    max-width: 680px;
    margin: 0 auto 32px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #c4c5da;
    opacity: 0.9;
}

/* Service Detail Block */
.service-detail {
    position: relative;
    padding: 80px 0;
    border-bottom: 1px solid rgba(196, 197, 218, 0.06);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.service-detail__grid--reversed {
    direction: rtl;
}

.service-detail__grid--reversed > * {
    direction: ltr;
}

.service-detail__icon-box {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(160deg, rgba(188, 194, 255, 0.18), rgba(0, 47, 255, 0.12));
    border: 1px solid rgba(188, 194, 255, 0.2);
    margin-bottom: 24px;
}

.service-detail__title {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e5e2e1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-detail__desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #c4c5da;
    margin-bottom: 24px;
}

.service-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tech-tag {
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 197, 218, 0.1);
    font-family: "Geist", sans-serif;
    font-size: 13px;
    color: #bcc2ff;
}

.service-detail__visual {
    padding: 40px;
    border-radius: 24px;
    background: rgba(28, 27, 27, 0.45);
    border: 1px solid rgba(196, 197, 218, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.code-preview {
    font-family: "Geist", monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #c4c5da;
    background: rgba(14, 14, 17, 0.8);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(188, 194, 255, 0.1);
    overflow-x: auto;
}

.code-preview .keyword { color: #bcc2ff; font-weight: 600; }
.code-preview .string { color: #96ccff; }
.code-preview .comment { color: rgba(196, 197, 218, 0.45); font-style: italic; }

/* Clickable card affordance */
.service-card {
    cursor: pointer;
}

/* Media queries for new sections */
@media (max-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-detail__grid--reversed {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .process { padding: 80px 24px; }
    .process__title { font-size: 32px; }
    .contact { padding: 80px 24px; }
    .contact__title { font-size: 32px; }
    .contact__info-card,
    .contact__form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 24px 60px; }
    .page-hero__title { font-size: 36px; }
}