:root {
    --gc-black: #050505;
    --gc-ink: #0c0d0d;
    --gc-panel: #111312;
    --gc-panel-2: #181818;
    --gc-line: rgba(255, 255, 255, 0.14);
    --gc-text: #f4f4ef;
    --gc-muted: rgba(244, 244, 239, 0.68);
    --gc-dim: rgba(244, 244, 239, 0.46);
    --gc-green: #b3cb16;
    --gc-yellow: #f4e640;
    --gc-cyan: #21d7e8;
    --gc-red: #ff3158;
    --gc-magenta: #ff4fb8;
    --gc-orange: #ff8a22;
    --gc-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gc-black);
    color: var(--gc-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body.admin-bar .gc-nav {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
}

figure {
    margin: 0;
}

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

.wp-site-blocks,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-media-text {
    box-sizing: border-box;
}

.wp-block-columns {
    margin-bottom: 0;
}

.gc-site {
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(179, 203, 22, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        var(--gc-black);
    background-size: 80px 80px;
}

.gc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--gc-max), calc(100% - 40px));
    margin: 18px auto 0;
    padding: 10px 12px;
    border: 1px solid var(--gc-line);
    border-radius: 14px;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.58),
        0 0 0 9999px rgba(5, 5, 5, 0);
}

.gc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.gc-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.gc-nav-links {
    display: flex;
    gap: 18px;
    color: var(--gc-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.gc-nav-links a:hover {
    color: var(--gc-green);
}

.gc-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 120px 20px 68px;
    isolation: isolate;
}

.gc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    z-index: -1;
    background: linear-gradient(0deg, var(--gc-black), transparent);
}

.gc-hero-stage {
    position: absolute;
    inset: 0;
    z-index: -2;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.90)),
        linear-gradient(115deg, #171717, #070707 45%, #10120b 100%);
    overflow: hidden;
}

.gc-building-grid {
    position: absolute;
    inset: 8% 3% 3% 43%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    transform: perspective(900px) rotateY(-14deg) rotateX(2deg);
    opacity: 0.78;
}

.gc-building-grid span {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
        rgba(255, 255, 255, 0.025);
}

.gc-building-grid span:nth-child(3n) {
    border-color: rgba(33, 215, 232, 0.24);
}

.gc-building-grid span:nth-child(4n) {
    border-color: rgba(179, 203, 22, 0.24);
}

.gc-projection-frame {
    position: absolute;
    left: 50%;
    top: 26%;
    width: min(660px, 48vw);
    aspect-ratio: 1.55;
    border: 2px solid rgba(244, 230, 64, 0.76);
    background: rgba(8, 8, 8, 0.26);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16) inset,
        0 0 90px rgba(179, 203, 22, 0.19),
        0 0 120px rgba(33, 215, 232, 0.12);
    transform: perspective(900px) rotateY(-13deg);
}

.gc-wall-tag {
    position: absolute;
    left: 32px;
    top: 28px;
    max-width: 360px;
    color: rgba(244, 244, 239, 0.28);
    font-size: 2rem;
    font-weight: 1000;
    line-height: 0.95;
}

.gc-laser-line {
    position: absolute;
    left: 7%;
    top: 58%;
    width: 52%;
    height: 2px;
    z-index: 4;
    background: linear-gradient(90deg, rgba(179, 203, 22, 0.98), rgba(244, 230, 64, 0.88), transparent);
    box-shadow:
        0 0 18px rgba(179, 203, 22, 0.74),
        0 0 34px rgba(179, 203, 22, 0.28);
    transform: rotate(-12deg);
    transform-origin: left center;
    pointer-events: none;
}

.gc-laser-dot {
    position: absolute;
    left: 58%;
    top: 52%;
    width: 16px;
    height: 16px;
    z-index: 5;
    border-radius: 999px;
    background: var(--gc-green);
    box-shadow:
        0 0 18px var(--gc-green),
        0 0 36px rgba(179, 203, 22, 0.62);
    animation: gc-pulse 1.5s ease-in-out infinite;
}

.gc-paint-trail {
    position: absolute;
    border-radius: 999px;
    transform: rotate(-8deg);
    filter: drop-shadow(0 0 16px rgba(179, 203, 22, 0.32));
}

.trail-a {
    left: 19%;
    top: 46%;
    width: 42%;
    height: 24px;
    background: var(--gc-green);
}

.trail-b {
    left: 33%;
    top: 57%;
    width: 34%;
    height: 18px;
    background: var(--gc-cyan);
    transform: rotate(11deg);
}

.trail-c {
    left: 46%;
    top: 36%;
    width: 22%;
    height: 22px;
    background: var(--gc-magenta);
    transform: rotate(-28deg);
}

.gc-drip {
    position: absolute;
    width: 8px;
    border-radius: 999px;
    background: var(--gc-green);
    animation: gc-drip 3.5s ease-in-out infinite;
}

.drip-a {
    left: 31%;
    top: 50%;
    height: 76px;
}

.drip-b {
    left: 62%;
    top: 61%;
    height: 54px;
    background: var(--gc-cyan);
    animation-delay: 0.6s;
}

.gc-hero-copy {
    width: min(780px, 100%);
    margin: 0 auto;
    transform: translateX(-190px);
}

.gc-kicker {
    margin: 0 0 14px;
    color: var(--gc-green);
    font-size: 0.82rem;
    font-weight: 1000;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.gc-hero h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: 5rem;
    line-height: 0.92;
    font-weight: 1000;
}

.gc-lede {
    max-width: 640px;
    color: var(--gc-muted);
    font-size: 1.22rem;
}

.gc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.gc-button,
.gc-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-weight: 1000;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gc-button .wp-block-button__link {
    padding: 0 18px;
    border: 0;
    line-height: 1;
}

.gc-button:hover,
.gc-button .wp-block-button__link:hover {
    transform: translateY(-2px);
}

.gc-button.primary .wp-block-button__link,
.gc-button.primary > a {
    color: #050505;
    background: var(--gc-green);
}

.gc-button.secondary .wp-block-button__link,
.gc-button.secondary > a {
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: var(--gc-text);
    background: rgba(255, 255, 255, 0.08);
}

.gc-section {
    width: min(var(--gc-max), calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0;
}

.gc-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.gc-section-heading h2,
.gc-tools-copy h2,
.gc-calibration-panel h2,
.gc-final h2 {
    margin-bottom: 16px;
    font-size: 3rem;
    line-height: 1;
    font-weight: 1000;
}

.gc-section-heading p:not(.gc-kicker),
.gc-tools-copy p,
.gc-calibration-panel p,
.gc-final p {
    color: var(--gc-muted);
    font-size: 1.05rem;
}

.gc-gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gc-setup-visual,
.gc-capture-visual,
.gc-setup-visual img,
.gc-capture-visual img {
    width: 100%;
}

.gc-setup-visual,
.gc-capture-visual {
    margin: 0 0 18px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: #070707;
    overflow: hidden;
}

.gc-gear-card,
.gc-capture-card {
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.gc-gear-card .gc-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 34px;
    border-radius: 999px;
    color: #050505;
    background: var(--gc-green);
    font-weight: 1000;
}

.gc-gear-card h3,
.gc-capture-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.gc-gear-card p,
.gc-capture-card p {
    color: var(--gc-muted);
}

.gc-modes {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100% - var(--gc-max)) / 2));
    padding-right: max(20px, calc((100% - var(--gc-max)) / 2));
    background: #0a0a0a;
}

.gc-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gc-mode-card {
    overflow: hidden;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: var(--gc-panel);
}

.gc-mode-card figure,
.gc-mode-card img {
    width: 100%;
}

.gc-mode-card img {
    aspect-ratio: 1.45;
    object-fit: cover;
    border-bottom: 1px solid var(--gc-line);
}

.gc-mode-card .gc-mode-content {
    padding: 20px;
}

.gc-mode-card .gc-mode-content p {
    margin-bottom: 0;
    color: var(--gc-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
}

.gc-mode-card .gc-mode-content > p:first-child {
    margin-bottom: 6px;
    color: var(--gc-green);
    font-size: 0.78rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.gc-mode-card h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.gc-tools,
.gc-calibration {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: center;
}

.gc-feature-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.gc-feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--gc-text);
    font-weight: 800;
}

.gc-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 12px;
    height: 12px;
    background: var(--gc-green);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.gc-brush-board {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(179, 203, 22, 0.07) 1px, transparent 1px),
        var(--gc-panel);
    background-size: 34px 34px;
}

.gc-brush-row {
    display: grid;
    grid-template-columns: 48px 130px 1fr !important;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--gc-text);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 1000;
}

.gc-brush-row .wp-block-media-text__media {
    grid-column: 1;
    margin: 0;
}

.gc-brush-row .wp-block-media-text__content {
    grid-column: 2;
    padding: 0;
}

.gc-brush-row p {
    margin: 0;
}

.gc-brush-row::after {
    content: "";
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gc-yellow), var(--gc-red), var(--gc-cyan));
}

.gc-brush-row:nth-child(2n)::after {
    background: linear-gradient(90deg, var(--gc-green), var(--gc-cyan), var(--gc-magenta));
}

.gc-brush-row img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(244, 230, 64, 0.45));
}

.gc-calibration {
    padding-top: 64px;
}

.gc-calibration-panel {
    padding: 34px;
    border-left: 4px solid var(--gc-green);
    background: rgba(255, 255, 255, 0.045);
}

.gc-calibration-visual {
    position: relative;
    min-height: 460px;
    border: 2px solid rgba(244, 244, 239, 0.72);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        #090909;
    background-size: 72px 72px;
    box-shadow: 0 0 70px rgba(33, 215, 232, 0.08);
}

.gc-calibration-visual::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 2px dashed rgba(244, 230, 64, 0.7);
}

.corner,
.target {
    position: absolute;
    z-index: 2;
}

.corner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #050505;
    background: var(--gc-green);
    font-weight: 1000;
}

.tl { left: 12px; top: 12px; }
.tr { right: 12px; top: 12px; }
.br { right: 12px; bottom: 12px; }
.bl { left: 12px; bottom: 12px; }

.target {
    width: 34px;
    height: 34px;
    border: 2px solid var(--gc-text);
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(179, 203, 22, 0.12);
}

.target::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 999px;
    background: var(--gc-green);
}

.t1 { left: 50%; top: 50%; }
.t2 { left: 18%; top: 20%; }
.t3 { right: 18%; top: 20%; }
.t4 { left: 18%; bottom: 20%; }
.t5 { right: 18%; bottom: 20%; }

.gc-capture {
    background:
        linear-gradient(180deg, rgba(255, 49, 88, 0.08), transparent 46%),
        transparent;
}

.gc-capture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gc-capture-card:nth-child(1) {
    border-top: 4px solid var(--gc-yellow);
}

.gc-capture-card:nth-child(2) {
    border-top: 4px solid var(--gc-red);
}

.gc-capture-card:nth-child(3) {
    border-top: 4px solid var(--gc-cyan);
}

.gc-about {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.gc-about-card {
    padding: 34px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 12%, rgba(179, 203, 22, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.gc-about-card h2 {
    margin-bottom: 18px;
    font-size: 3rem;
    line-height: 1;
    font-weight: 1000;
}

.gc-about-card h1 {
    margin-bottom: 18px;
    font-size: 3rem;
    line-height: 1;
    font-weight: 1000;
}

.gc-about-card p:not(.gc-kicker) {
    max-width: 780px;
    color: var(--gc-muted);
    font-size: 1.05rem;
}

.gc-page {
    padding-top: 104px;
}

.gc-about-page {
    min-height: 62vh;
    align-items: start;
}

.gc-about-notes {
    display: grid;
    gap: 12px;
}

.gc-about-notes > .wp-block-column {
    padding: 22px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: var(--gc-panel);
}

.gc-about-notes strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gc-green);
    font-size: 0.78rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.gc-about-notes p {
    margin: 0;
    color: var(--gc-muted);
}

.gc-faq {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100% - var(--gc-max)) / 2));
    padding-right: max(20px, calc((100% - var(--gc-max)) / 2));
    background: #0a0a0a;
}

.gc-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gc-faq-group {
    padding: 18px;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.gc-faq-group h3 {
    margin-bottom: 14px;
    color: var(--gc-green);
    font-size: 1rem;
    text-transform: uppercase;
}

.gc-faq details {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-faq details:first-of-type {
    border-top: 0;
}

.gc-faq summary {
    cursor: pointer;
    padding: 16px 0;
    color: var(--gc-text);
    font-weight: 900;
    list-style: none;
}

.gc-faq summary::-webkit-details-marker {
    display: none;
}

.gc-faq summary::after {
    content: "+";
    float: right;
    color: var(--gc-green);
    font-weight: 1000;
}

.gc-faq details[open] summary::after {
    content: "-";
}

.gc-faq details p {
    margin: -4px 0 16px;
    color: var(--gc-muted);
    font-size: 0.96rem;
}

.gc-final {
    padding: 96px 20px;
    background:
        linear-gradient(180deg, transparent, rgba(179, 203, 22, 0.10)),
        #070707;
}

.gc-final-inner {
    width: min(820px, 100%);
    margin: 0 auto;
    text-align: center;
}

.gc-final p:not(.gc-kicker) {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.gc-final .gc-button {
    margin-top: 20px;
}

.gc-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.gc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gc-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.82;
    }
    50% {
        transform: scale(1.45);
        opacity: 1;
    }
}

@keyframes gc-drip {
    0%, 100% {
        transform: scaleY(0.72);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1.12);
        transform-origin: top;
    }
}

@media (max-width: 1040px) {
    .gc-hero-copy {
        transform: none;
    }

    .gc-hero h1 {
        font-size: 4rem;
    }

    .gc-projection-frame {
        left: 40%;
        width: 58vw;
        opacity: 0.82;
    }

    .gc-gear-grid,
    .gc-capture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-mode-grid,
    .gc-tools,
    .gc-calibration,
    .gc-about,
    .gc-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.admin-bar .gc-nav {
        top: 46px;
    }

    .gc-nav {
        position: fixed;
        width: calc(100% - 24px);
        margin-top: 12px;
        background: rgba(5, 5, 5, 0.98);
    }

    .gc-nav-links {
        display: none;
    }

    .gc-hero {
        min-height: 900px;
        padding: 104px 20px 56px;
        align-items: end;
    }

    .gc-hero h1 {
        font-size: 3rem;
    }

    .gc-lede {
        font-size: 1.05rem;
    }

    .gc-building-grid {
        inset: 7% -18% 36% 16%;
    }

    .gc-projection-frame {
        left: 8%;
        top: 16%;
        width: 92vw;
    }

    .gc-wall-tag {
        font-size: 1.35rem;
    }

    .gc-section {
        width: calc(100% - 28px);
        padding: 70px 0;
    }

    .gc-section-heading h2,
    .gc-tools-copy h2,
    .gc-calibration-panel h2,
    .gc-about-card h2,
    .gc-about-card h1,
    .gc-final h2 {
        font-size: 2.2rem;
    }

    .gc-gear-grid,
    .gc-mode-grid,
    .gc-capture-grid {
        grid-template-columns: 1fr;
    }

    .gc-gear-card {
        min-height: auto;
    }

    .gc-tools,
    .gc-calibration {
        gap: 26px;
    }

    .gc-brush-row {
        grid-template-columns: 40px 1fr;
    }

    .gc-brush-row::after {
        grid-column: 1 / -1;
        width: 100%;
    }

    .gc-calibration-visual {
        min-height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
