/* ============================================================
   GS-V — Brand System v2
   Modern retro print lab. Mint + hot pink + electric cyan.
   ============================================================ */

:root {
    /* Surfaces */
    --bg: #08080F;
    --surface: #13131F;
    --surface-2: #1C1C2E;
    --surface-3: #25253B;

    /* Text */
    --text: #F0EFFA;
    --text-dim: #8A89A0;
    --text-muted: #5A5A75;

    /* Borders */
    --border: #2A2A3E;
    --border-bright: #3F3F5C;

    /* Accents */
    --mint: #7BFF8E;
    --mint-soft: rgba(123, 255, 142, 0.15);
    --pink: #FF4FA8;
    --pink-soft: rgba(255, 79, 168, 0.15);
    --cyan: #5EEAFF;
    --cyan-soft: rgba(94, 234, 255, 0.15);
    --orange: #FF8C42;
    --orange-soft: rgba(255, 140, 66, 0.15);
    --yellow: #FFD93D;
    --yellow-soft: rgba(255, 217, 61, 0.15);
    --red: #FF6B6B;
    --red-soft: rgba(255, 107, 107, 0.15);
    --purple: #B18CFF;
    --purple-soft: rgba(177, 140, 255, 0.15);

    /* Glows */
    --glow-mint: 0 0 20px rgba(123, 255, 142, 0.5);
    --glow-pink: 0 0 20px rgba(255, 79, 168, 0.5);
    --glow-cyan: 0 0 20px rgba(94, 234, 255, 0.5);

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    --font-retro: 'VT323', monospace;

    /* Spacing scale */
    --s1: 0.25rem;   /* 4 */
    --s2: 0.5rem;    /* 8 */
    --s3: 0.75rem;   /* 12 */
    --s4: 1rem;      /* 16 */
    --s5: 1.5rem;    /* 24 */
    --s6: 2rem;      /* 32 */
    --s7: 3rem;      /* 48 */
    --s8: 4rem;      /* 64 */
    --s9: 6rem;      /* 96 */

    /* Radii */
    --r-sm: 4px;
    --r: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
    --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.04);

    /* Layout */
    --container: 1280px;
    --container-narrow: 880px;
    --header-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(177, 140, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 88% 82%, rgba(94, 234, 255, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: var(--cyan); text-decoration: none; transition: color 0.15s; }
a:hover, a:focus-visible { color: var(--mint); }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; border-radius: var(--r-sm); }
::selection { background: var(--mint); color: var(--bg); }

/* === LAYOUT WRAPPERS === */
.shell {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s5);
}
.shell-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--s5);
}
.section { padding: var(--s8) 0; }
.section-tight { padding: var(--s7) 0; }

/* === TOP NAV === */
.topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 8, 15, 0.78);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
.topnav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s5);
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--s5);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.brand:hover { color: var(--mint); }
.brand-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.brand-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
    margin-left: 0.5rem;
}
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
    animation: dot-pulse 2s ease-in-out infinite;
}
.dot-yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.dot-cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dot-pink { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.dot-orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.dot-red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.dot-purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.dot-dim { background: var(--text-muted); box-shadow: none; animation: none; }
@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s4);
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.nav-link {
    color: var(--text-dim);
    padding: 0.5rem 0.75rem;
    border-radius: var(--r-sm);
    transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--text); background: var(--surface); }
.nav-link.is-active { color: var(--mint); }
.nav-link.is-cta {
    color: var(--bg);
    background: var(--mint);
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: var(--r);
}
.nav-link.is-cta:hover { background: #95ffa6; box-shadow: var(--glow-mint); color: var(--bg); }

.nav-toggle { display: none; }

/* === HERO === */
.hero {
    position: relative;
    overflow: hidden;
    padding: var(--s8) 0 var(--s7);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-bg canvas { width: 100%; height: 100%; opacity: 0.22; }
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, transparent 0%, var(--bg) 75%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s5);
    text-align: center;
}
.hero-logo {
    width: clamp(140px, 22vw, 220px);
    height: auto;
    margin: 0 auto var(--s4);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 24px rgba(123, 255, 142, 0.18));
    animation: hero-logo-float 6s ease-in-out infinite;
}
@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--mint);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--mint);
    border-radius: var(--r-pill);
    background: var(--mint-soft);
    margin-bottom: var(--s5);
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 11vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: var(--s4);
    background: linear-gradient(180deg, var(--text) 0%, #b8b6d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero h1 .glitch-word {
    display: inline-block;
    background: linear-gradient(180deg, var(--mint) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}
.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto var(--s6);
    min-height: 1.5em;
}
.hero-tagline .typewriter { color: var(--text); }
.hero-tagline .cursor {
    display: inline-block;
    width: 0.5em;
    height: 1em;
    background: var(--mint);
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

.hero-cta-row {
    display: flex;
    gap: var(--s3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--s5);
}

.hero-meta-strip {
    display: inline-flex;
    align-items: center;
    gap: var(--s4);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem var(--s4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 100%;
}
.hero-meta-strip .meta-sep { color: var(--text-muted); }
@media (max-width: 600px) {
    .hero-meta-strip {
        flex-direction: column;
        gap: 0.3rem;
        border-radius: var(--r-lg);
        padding: var(--s3) var(--s4);
    }
    .hero-meta-strip .meta-sep { display: none; }
}
.hero-meta-strip strong { color: var(--text); font-weight: 500; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--r);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.05s, box-shadow 0.2s, border-color 0.15s;
    border: 1px solid transparent;
    min-height: 44px;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn .btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
    background: var(--mint);
    color: var(--bg);
    font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: #95ffa6;
    box-shadow: var(--glow-mint);
    color: var(--bg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-bright);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border-color: transparent;
}
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--text); background: var(--surface); }

.btn-pink {
    background: var(--pink);
    color: var(--bg);
    font-weight: 600;
}
.btn-pink:hover, .btn-pink:focus-visible { background: #ff6fb8; box-shadow: var(--glow-pink); color: var(--bg); }

.btn-cyan {
    background: var(--cyan);
    color: var(--bg);
    font-weight: 600;
}
.btn-cyan:hover, .btn-cyan:focus-visible { background: #7fefff; box-shadow: var(--glow-cyan); color: var(--bg); }

.btn-danger {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-danger:hover, .btn-danger:focus-visible { background: var(--red); color: var(--bg); }

.btn-lg { padding: 1.05rem 1.7rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 0.9rem; font-size: 0.75rem; min-height: 36px; }
.btn-icon { padding: 0.6rem; min-width: 44px; min-height: 44px; }
.btn-full { width: 100%; }

/* === SECTION HEADER === */
.section-head {
    margin-bottom: var(--s6);
    text-align: center;
}
.section-head.is-left { text-align: left; }
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--mint);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--s3);
    padding: 0.3rem 0.7rem;
    background: var(--mint-soft);
    border-radius: var(--r-sm);
}
.section-tag.is-pink { color: var(--pink); background: var(--pink-soft); }
.section-tag.is-cyan { color: var(--cyan); background: var(--cyan-soft); }
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: var(--s3);
}
.section-sub {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
}
.section-head.is-left .section-sub { margin: 0; }

/* === CARDS === */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s5);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.card-elev { background: var(--surface-2); box-shadow: var(--shadow-inner); }
.card-link { display: block; cursor: pointer; }
.card-link:hover, .card-link:focus-within {
    border-color: var(--mint);
    transform: translateY(-2px);
    box-shadow: var(--shadow), 0 0 0 1px var(--mint-soft);
}

/* === HOW-IT-WORKS GRID === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
    counter-reset: step;
}
.step-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s5);
    counter-increment: step;
}
.step-card::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: var(--s4);
    right: var(--s4);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r);
    display: grid;
    place-items: center;
    margin-bottom: var(--s4);
    background: var(--mint-soft);
    color: var(--mint);
}
.step-card:nth-child(2) .step-icon { background: var(--pink-soft); color: var(--pink); }
.step-card:nth-child(3) .step-icon { background: var(--cyan-soft); color: var(--cyan); }
.step-icon svg { width: 28px; height: 28px; }
.step-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: var(--s2);
    letter-spacing: -0.01em;
}
.step-desc { color: var(--text-dim); font-size: 0.92rem; line-height: 1.5; }

/* === CAROUSEL (single-card slideshow) === */
.carousel {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.carousel-viewport {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #000;
    position: relative;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: zoom-in;
    border: 0;
    padding: 0;
    display: block;
    position: relative;
}
.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.2s;
}
.carousel-slide:hover img,
.carousel-slide:hover video {
    filter: brightness(1.05);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(8, 8, 15, 0.7);
    color: var(--text);
    border: 1px solid var(--border-bright);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
    z-index: 3;
    opacity: 0;
}
.carousel:hover .carousel-arrow,
.carousel:focus-within .carousel-arrow { opacity: 1; }
.carousel-arrow:hover, .carousel-arrow:focus-visible {
    background: var(--mint);
    color: var(--bg);
    border-color: var(--mint);
    opacity: 1;
}
.carousel-prev { left: var(--s3); }
.carousel-next { right: var(--s3); }
.carousel-counter {
    position: absolute;
    top: var(--s3);
    right: var(--s3);
    background: rgba(8, 8, 15, 0.7);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-pill);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3;
    pointer-events: none;
}
.carousel-counter .carousel-current { color: var(--mint); font-weight: 600; }
.carousel-dots {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    padding: var(--s3);
    background: var(--surface-2);
    border-top: 1px solid var(--border);
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-bright);
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, width 0.25s;
    border: 0;
    padding: 0;
    flex-shrink: 0;
}
.carousel-dot:hover { background: var(--text-dim); }
.carousel-dot.is-active { background: var(--mint); width: 22px; border-radius: var(--r-pill); }

@media (max-width: 720px) {
    .carousel-arrow { opacity: 1; width: 40px; height: 40px; }
    .carousel-prev { left: var(--s2); }
    .carousel-next { right: var(--s2); }
}

/* === STATUS BADGES === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: var(--r-sm);
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}
.badge .dot { width: 6px; height: 6px; }
.badge[data-status="submitted"]   { color: var(--yellow); background: var(--yellow-soft); }
.badge[data-status="quoted"]      { color: var(--cyan); background: var(--cyan-soft); }
.badge[data-status="approved"]    { color: var(--purple); background: var(--purple-soft); }
.badge[data-status="declined"]    { color: var(--text-muted); background: rgba(0,0,0,0.2); }
.badge[data-status="printing"]    { color: var(--orange); background: var(--orange-soft); }
.badge[data-status="ready"]       { color: var(--mint); background: var(--mint-soft); }
.badge[data-status="delivered"]   { color: var(--mint); background: var(--mint-soft); }
.badge[data-status="cancelled"]   { color: var(--red); background: var(--red-soft); }
.badge[data-status="pending"]     { color: var(--yellow); background: var(--yellow-soft); }
.badge[data-status="in-progress"] { color: var(--orange); background: var(--orange-soft); }

.rush-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pink);
    padding: 0.2rem 0.5rem;
    background: var(--pink-soft);
    border-radius: var(--r-sm);
    letter-spacing: 0.05em;
}

/* === FORM ELEMENTS === */
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.field-label .req { color: var(--pink); }
.field-help {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.input,
.textarea,
.select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    border-radius: var(--r);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
}
.textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><polygon points='0,0 12,0 6,8' fill='%237BFF8E'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
    cursor: pointer;
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--mint);
    box-shadow: 0 0 0 4px var(--mint-soft);
    background: var(--surface-2);
}
.input.is-error, .textarea.is-error, .select.is-error { border-color: var(--red); }

.input-group {
    position: relative;
}
.input-group .input { padding-left: 2.5rem; }
.input-group-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s4);
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--border);
    padding: var(--s6) 0 var(--s5);
    margin-top: var(--s9);
    background: var(--surface);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s3);
}
.footer-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.footer-meta a { color: var(--text); }
.footer-meta a:hover { color: var(--mint); }
.footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-family: var(--font-retro);
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 8, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: var(--s4);
    align-items: center;
    justify-content: center;
    animation: modal-fade 0.2s ease-out;
}
.modal[open] { display: flex; }
.modal-card {
    background: var(--surface-2);
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg);
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    padding: var(--s5);
    box-shadow: var(--shadow-lg);
    animation: modal-pop 0.25s cubic-bezier(0.2, 1.2, 0.4, 1);
}
.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s3);
    margin-bottom: var(--s4);
}
.modal-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.modal-close {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    color: var(--text-dim);
    border-radius: var(--r-sm);
    transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--surface); color: var(--text); }

.modal-media {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--r);
    margin: 0 auto;
    background: #000;
}

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === TOAST === */
.toast-stack {
    position: fixed;
    top: calc(var(--header-h) + var(--s3));
    right: var(--s4);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    pointer-events: none;
}
.toast {
    background: var(--surface-2);
    border: 1px solid var(--border-bright);
    border-left: 3px solid var(--mint);
    border-radius: var(--r);
    padding: 0.85rem 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: var(--shadow);
    pointer-events: auto;
    animation: toast-in 0.25s cubic-bezier(0.2, 1.2, 0.4, 1);
    max-width: 380px;
}
.toast.is-error { border-left-color: var(--red); }
.toast.is-warn { border-left-color: var(--yellow); }
@keyframes toast-in {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === STATUS LINE === */
.status-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* === SUBTLE SCANLINES (opt-in via class) === */
.scanlines {
    position: relative;
}
.scanlines::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 3px,
        rgba(255, 255, 255, 0.006) 3px,
        rgba(255, 255, 255, 0.006) 4px
    );
    z-index: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 720px) {
    .topnav-inner { padding: 0 var(--s4); gap: var(--s3); }
    .nav-links { display: none; gap: var(--s2); }
    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border);
        padding: var(--s3);
        flex-direction: column;
        align-items: stretch;
    }
    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
        width: 44px;
        height: 44px;
        color: var(--text);
        border-radius: var(--r-sm);
    }
    .nav-toggle:hover { background: var(--surface); }
    .brand-status { display: none; }
    .shell, .shell-narrow { padding: 0 var(--s4); }
    .section { padding: var(--s7) 0; }
    .field-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; }
}

/* ============================================================
   QUEUE — homepage preview + full queue page
   ============================================================ */
.queue-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--s3);
}
.queue-loading, .queue-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--s6);
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--r-lg);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s3);
}
.queue-loading .dot { display: inline-block; margin-right: 0.4rem; vertical-align: middle; }

.queue-card-mini {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s4);
    transition: border-color 0.15s, transform 0.15s;
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.queue-card-mini:hover { border-color: var(--cyan); transform: translateY(-2px); }
.qcm-head {
    display: flex;
    align-items: center;
    gap: var(--s2);
    flex-wrap: wrap;
}
.qcm-id {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.qcm-head .badge { margin-left: auto; }
.qcm-body {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
}
.qcm-desc {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}
.qcm-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s3);
    padding-top: var(--s2);
    border-top: 1px dashed var(--border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === COLOR CHIP (used in queue cards & wherever) === */
.color-chip {
    display: inline-block;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15), inset 0 -3px 8px rgba(0,0,0,0.35);
    text-align: center;
    line-height: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}
.color-chip.is-sm { width: 16px; height: 16px; line-height: 16px; font-size: 0.7rem; }

/* === FULL QUEUE PAGE === */
.queue-shell { padding: var(--s7) 0; }
.queue-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s3);
    margin-bottom: var(--s5);
    padding-bottom: var(--s4);
    border-bottom: 1px solid var(--border);
}
.filter-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.filter-chip {
    padding: 0.5rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.filter-chip:hover { color: var(--text); border-color: var(--border-bright); }
.filter-chip.is-active { color: var(--bg); background: var(--mint); border-color: var(--mint); font-weight: 600; }
.filter-chip .chip-count {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.05rem 0.35rem;
    border-radius: var(--r-sm);
    font-size: 0.7rem;
}
.filter-chip.is-active .chip-count { background: rgba(0, 0, 0, 0.3); }

.queue-list {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.queue-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s4) var(--s5);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: var(--s4);
    align-items: center;
    transition: border-color 0.15s, transform 0.1s;
}
.queue-card:hover { border-color: var(--cyan); }
.queue-card[data-status="ready"] { border-left: 3px solid var(--mint); }
.queue-card[data-status="printing"] { border-left: 3px solid var(--orange); }
.queue-card[data-status="quoted"] { border-left: 3px solid var(--cyan); }
.queue-card[data-status="approved"] { border-left: 3px solid var(--purple); }
.queue-card[data-status="submitted"] { border-left: 3px solid var(--yellow); }
.queue-card[data-status="delivered"] {
    border-left: 3px solid var(--mint);
    background: linear-gradient(90deg, var(--mint-soft), transparent 60%);
}
.queue-card[data-status="delivered"]:hover { border-color: var(--mint); }
.qc-id-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.qc-agent {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    letter-spacing: -0.01em;
}
.qc-time {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}
.qc-main { min-width: 0; }
.qc-desc {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.qc-meta {
    display: flex;
    gap: var(--s3);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
}
.qc-meta .color-chip { vertical-align: middle; }

@media (max-width: 720px) {
    .queue-card {
        grid-template-columns: 1fr auto;
        gap: var(--s3);
    }
    .queue-card .qc-id-block { grid-row: 1; }
    .queue-card .qc-main { grid-column: 1 / -1; grid-row: 2; }
    .queue-card .badge { grid-row: 1; grid-column: 2; }
    .queue-card .rush-flag { grid-row: 1; }
}

/* ============================================================
   ORDER STATUS PAGE — quote display + timeline + accept/decline
   ============================================================ */
.status-shell { padding: var(--s7) 0; }
.lookup-card { max-width: 480px; margin: 0 auto; }
.lookup-input {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.4em;
    padding: 1rem;
    color: var(--mint);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s5);
    align-items: start;
}
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-summary { display: flex; flex-direction: column; gap: var(--s4); }
.detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s3);
    margin-bottom: var(--s4);
}
.detail-id {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    letter-spacing: -0.01em;
    color: var(--text);
}
.detail-id .id-mark {
    color: var(--mint);
    font-family: var(--font-mono);
    font-weight: 500;
    margin-right: 0.3rem;
}

.dlist {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.6rem var(--s4);
    font-family: var(--font-mono);
    font-size: 0.92rem;
}
.dlist dt { color: var(--text-muted); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; align-self: center; }
.dlist dd { color: var(--text); word-break: break-word; }

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: var(--s2);
}
.tl-step {
    display: flex;
    gap: var(--s3);
    padding: var(--s2) 0;
    position: relative;
}
.tl-step::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: -8px;
    width: 1px;
    background: var(--border);
}
.tl-step:last-child::before { display: none; }
.tl-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-bright);
    flex-shrink: 0;
    margin-top: 4px;
    z-index: 1;
}
.tl-step.is-done .tl-marker { background: var(--mint); border-color: var(--mint); box-shadow: 0 0 6px var(--mint); }
.tl-step.is-current .tl-marker {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: dot-pulse 1.5s ease-in-out infinite;
}
.tl-body { display: flex; flex-direction: column; gap: 0.15rem; }
.tl-name {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}
.tl-step.is-done .tl-name, .tl-step.is-current .tl-name { color: var(--text); }
.tl-time { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }

.quote-card {
    background: linear-gradient(135deg, var(--cyan-soft) 0%, transparent 50%), var(--surface-2);
    border: 1px solid var(--cyan);
    border-radius: var(--r-lg);
    padding: var(--s5);
    box-shadow: 0 0 24px rgba(94, 234, 255, 0.15);
}
.quote-card[data-state="approved"] { border-color: var(--purple); background: linear-gradient(135deg, var(--purple-soft) 0%, transparent 50%), var(--surface-2); box-shadow: 0 0 24px rgba(177, 140, 255, 0.15); }
.quote-card[data-state="declined"] { border-color: var(--text-muted); opacity: 0.7; }
.quote-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s3);
    margin-bottom: var(--s4);
}
.quote-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.quote-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--mint);
    letter-spacing: -0.02em;
    line-height: 1;
}
.quote-preview-wrap {
    margin: var(--s4) calc(-1 * var(--s5)) var(--s4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #000;
    padding: var(--s3);
    text-align: center;
}
.quote-preview {
    max-width: 100%;
    max-height: 380px;
    margin: 0 auto;
    border-radius: var(--r);
}
.quote-message {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--s3);
    border-left: 3px solid var(--cyan);
    border-radius: var(--r-sm);
    margin-bottom: var(--s4);
    white-space: pre-wrap;
}
.quote-actions { display: flex; gap: var(--s3); flex-wrap: wrap; }
.quote-actions .btn { flex: 1; min-width: 140px; }
.quote-decided {
    text-align: center;
    padding: var(--s4) 0 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ============================================================
   ADMIN — tabs, rows, modals
   ============================================================ */
.admin-shell { padding: var(--s5) 0; }
.admin-tabs {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--s5);
    padding-bottom: 0;
}
.admin-tab {
    padding: 0.85rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.is-active { color: var(--mint); border-bottom-color: var(--mint); }
.admin-tab .chip-count {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.05rem 0.4rem;
    border-radius: var(--r-sm);
    font-size: 0.7rem;
}
.admin-tab.is-active .chip-count { background: var(--mint); color: var(--bg); border-color: var(--mint); }

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    margin-bottom: var(--s4);
    flex-wrap: wrap;
}
.admin-status-line {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.admin-rows { display: flex; flex-direction: column; gap: var(--s2); }
.admin-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.15s;
}
.admin-row:hover { border-color: var(--border-bright); }
.admin-row[data-status="submitted"] { border-left: 3px solid var(--yellow); }
.admin-row[data-status="quoted"] { border-left: 3px solid var(--cyan); }
.admin-row[data-status="approved"] { border-left: 3px solid var(--purple); }
.admin-row[data-status="printing"] { border-left: 3px solid var(--orange); }
.admin-row[data-status="ready"] { border-left: 3px solid var(--mint); }
.admin-row[data-status="delivered"] { border-left: 3px solid var(--mint); }
.admin-row[data-status="cancelled"], .admin-row[data-status="declined"] {
    border-left: 3px solid var(--text-muted);
    opacity: 0.75;
}

.ar-summary {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: var(--s3);
    align-items: center;
    padding: var(--s3) var(--s4);
    cursor: pointer;
}
.ar-id-block { display: flex; flex-direction: column; gap: 0.1rem; }
.ar-id { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.ar-time { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); }
.ar-main { min-width: 0; }
.ar-name { font-size: 0.95rem; color: var(--text); }
.ar-desc {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-dim);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ar-toggle {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    color: var(--text-dim);
    border-radius: var(--r-sm);
    transition: background 0.15s, transform 0.2s;
}
.ar-toggle:hover { background: var(--surface-2); color: var(--text); }
.ar-summary[aria-expanded="true"] .ar-toggle { transform: rotate(90deg); }

.ar-detail {
    border-top: 1px dashed var(--border);
    padding: var(--s4);
    display: none;
    flex-direction: column;
    gap: var(--s4);
}
.admin-row.is-open .ar-detail { display: flex; }

.ar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s4);
}
@media (max-width: 720px) {
    .ar-summary { grid-template-columns: 1fr auto; }
    .ar-summary .ar-id-block { grid-column: 1; grid-row: 1; }
    .ar-summary .badge { grid-column: 2; grid-row: 1; }
    .ar-summary .ar-main { grid-column: 1 / -1; grid-row: 2; }
    .ar-summary .ar-toggle { grid-column: 2; grid-row: 1; align-self: start; }
    .ar-grid { grid-template-columns: 1fr; }
}

.ar-section {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.ar-sec-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ar-actions {
    display: flex;
    gap: var(--s2);
    flex-wrap: wrap;
    padding-top: var(--s3);
    border-top: 1px dashed var(--border);
    align-items: center;
}
.ar-save-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-left: auto;
}
.ar-save-status.is-success { color: var(--mint); }
.ar-save-status.is-error { color: var(--red); }

.ar-preview {
    max-width: 100%;
    max-height: 220px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: #000;
}

/* === COUNTS STRIP (admin top stats) === */
.admin-counts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--s3);
    margin-bottom: var(--s5);
}
.count-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.count-tile:hover { border-color: var(--border-bright); }
.count-tile.is-active { border-color: var(--mint); background: var(--mint-soft); }
.count-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text);
}
.count-tile.is-active .count-num { color: var(--mint); }
.count-lbl {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === DROPZONE (image upload in modal) === */
.dropzone {
    border: 2px dashed var(--border-bright);
    border-radius: var(--r);
    padding: var(--s5);
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    cursor: pointer;
    background: var(--surface);
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--mint); background: var(--mint-soft); }
.dropzone-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
}
.dropzone-label strong { color: var(--mint); }
.dropzone-preview { margin-top: var(--s3); }
.dropzone-preview img {
    max-width: 100%;
    max-height: 240px;
    margin: 0 auto;
    border-radius: var(--r);
    border: 1px solid var(--border);
}

/* ============================================================
   ABOUT US — image-as-cinematic-backdrop with overlay text card
   ============================================================ */
.about-section {
    position: relative;
    padding: var(--s9) 0;
    overflow: hidden;
    isolation: isolate;
}
.about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.about-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(250deg, rgba(8, 8, 15, 0.92) 0%, rgba(8, 8, 15, 0.7) 45%, rgba(8, 8, 15, 0.2) 100%),
        linear-gradient(0deg, rgba(8, 8, 15, 0.8) 0%, transparent 30%);
    z-index: -1;
}
.about-shell {
    position: relative;
    z-index: 1;
}
.about-card {
    max-width: 580px;
    margin-left: auto;
    background: rgba(19, 19, 31, 0.55);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg);
    padding: var(--s6) var(--s5);
    box-shadow: var(--shadow-lg);
}
.about-card .section-tag { margin-bottom: var(--s3); }
.about-card .section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: var(--s4);
}
.about-lead {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: var(--s3);
}
.about-lead strong { color: var(--mint); font-weight: 600; }
.about-cta {
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
    margin-top: var(--s5);
}

@media (max-width: 720px) {
    .about-section { padding: var(--s7) 0; }
    .about-card {
        background: rgba(8, 8, 15, 0.78);
        padding: var(--s5) var(--s4);
    }
    .about-overlay {
        background: linear-gradient(0deg, rgba(8, 8, 15, 0.9) 0%, rgba(8, 8, 15, 0.55) 100%);
    }
}

/* === HOMEPAGE CTA BANNER (replaces old contact form) === */
.cta-strip { padding: var(--s7) 0; }
.cta-banner {
    background:
        radial-gradient(circle at 0% 100%, rgba(123, 255, 142, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(255, 79, 168, 0.08) 0%, transparent 50%),
        var(--surface-2);
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg);
    padding: var(--s6) var(--s5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s5);
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-text .section-tag { margin-bottom: var(--s3); }
.cta-banner-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: var(--s2);
    line-height: 1.15;
}
.cta-banner-sub {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.cta-banner-btn { flex-shrink: 0; }

@media (max-width: 720px) {
    .cta-banner { flex-direction: column; align-items: flex-start; gap: var(--s4); padding: var(--s5) var(--s4); }
    .cta-banner-btn { width: 100%; }
}

/* === Vibe Coded Games card (links to the Play app) === */
.games-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: var(--s5);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(94,234,255,0.10), transparent 55%),
        radial-gradient(120% 140% at 100% 100%, rgba(255,79,168,0.10), transparent 55%),
        var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg, 18px);
    padding: var(--s5);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.games-card:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 0 18px 50px -20px rgba(94,234,255,0.45);
}
.games-card-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 220px;
}
.games-card-art img {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 14px 36px rgba(94,234,255,0.35));
    z-index: 1;
}
.games-card-glow {
    position: absolute;
    width: 70%; aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle, rgba(94,234,255,0.35), rgba(255,79,168,0.18) 50%, transparent 70%);
    filter: blur(18px);
    animation: gamesPulse 4.5s ease-in-out infinite;
}
@keyframes gamesPulse { 0%,100% { opacity: 0.6; transform: scale(0.92); } 50% { opacity: 1; transform: scale(1.05); } }
.games-card-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(1.5rem, 3.4vw, 2.2rem);
    line-height: 1.05;
    margin: var(--s4) 0 var(--s4);
}
.games-card-sub {
    color: var(--muted, #9a9ab5);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--s5);
    max-width: 46ch;
}
.games-card-btn { pointer-events: none; }   /* whole card is the link */
@media (max-width: 720px) {
    .games-card { grid-template-columns: 1fr; text-align: center; }
    .games-card-art { min-height: 0; }
    .games-card-art img { max-width: 240px; }
    .games-card-sub { margin-inline: auto; }
}

/* === KEEP REDUCED MOTION LAST === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}
