:root {
    --gze-deep: #1A0E2E;
    --gze-surface: #FDF4ED;
    --gze-vivid: #FF8C42;
    --gze-muted: #456990;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    color: var(--gze-deep);
    background-color: var(--gze-surface);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: var(--gze-vivid);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* NAV — 56px minimal */
.gze-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1.5rem;
    background: var(--gze-deep);
    position: sticky;
    top: 0;
    z-index: 100;
}

.gze-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gze-surface);
    letter-spacing: -0.02em;
}

.gze-signup {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gze-vivid);
    color: var(--gze-deep);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.gze-signup:hover {
    opacity: 0.9;
}

/* 1. HERO — header.gze-splash */
.gze-splash {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
    background: var(--gze-deep);
    color: var(--gze-surface);
    text-align: center;
}

.gze-splash .gze-canvas {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.gze-splash h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.gze-splash > p,
.gze-splash .gze-canvas > p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gze-frame {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gze-btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gze-vivid);
    color: var(--gze-deep);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

.gze-btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--gze-muted);
    color: var(--gze-surface);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* SVG animations positioned */
.gze-anim-orb {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.gze-anim-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.gze-anim-diamond {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

/* 2. CTA — div[role="complementary"].gze-callout */
.gze-callout {
    padding: 3.5rem 1.5rem;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.gze-callout h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 1.25rem;
    color: var(--gze-deep);
}

.gze-callout p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gze-deep);
    opacity: 0.85;
}

/* 3. FEATURES — ul.gze-traits */
.gze-traits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gze-traits li {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--gze-vivid);
}

.gze-traits h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--gze-deep);
}

.gze-traits p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* 4. BLOG/FEED — div[role="feed"].gze-reportes */
.gze-reportes {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gze-reportes > h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.gze-mount {
    margin-bottom: 1.5rem;
}

.gze-mount article {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.gze-plate {
    padding: 1.5rem;
}

.gze-base h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gze-deep);
}

.gze-base p {
    font-size: 0.88rem;
    opacity: 0.75;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.gze-base time {
    display: block;
    font-size: 0.78rem;
    color: var(--gze-muted);
    margin-bottom: 0.5rem;
}

.gze-base a {
    font-size: 0.85rem;
    font-weight: 500;
}

/* 5. STATS — figure.gze-cifras */
.gze-cifras {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--gze-deep);
    color: var(--gze-surface);
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gze-cifras figcaption {
    text-align: center;
    margin-bottom: 2rem;
}

.gze-cifras figcaption h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.gze-cifras dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.gze-cifras dt {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gze-vivid);
}

.gze-cifras dd {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* 6. CITIES — dl.gze-ciudades */
.gze-ciudades {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gze-ciudades dt {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26, 14, 46, 0.1);
}

.gze-ciudades dt:first-child {
    border-top: none;
    padding-top: 0;
}

.gze-ciudades dt a {
    color: var(--gze-vivid);
}

.gze-ciudades dd {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
}

/* EXTENDED CONTENT */
.gze-extended {
    padding: 3rem 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.gze-extended h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gze-extended h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gze-muted);
}

.gze-extended p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* ARTICLE/PAGE template */
.gze-reporte {
    padding: 3rem 1.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.gze-reporte-cabecera {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gze-vivid);
}

.gze-reporte-cabecera h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.gze-reporte-cabecera time {
    font-size: 0.85rem;
    color: var(--gze-muted);
}

.gze-reporte-cuerpo h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.gze-reporte-cuerpo h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--gze-muted);
}

.gze-reporte-cuerpo p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.gze-reporte-cuerpo ul,
.gze-reporte-cuerpo ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.gze-reporte-cuerpo li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.gze-reporte-pie {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26, 14, 46, 0.1);
}

.gze-reporte-pie a {
    font-weight: 500;
    font-size: 0.9rem;
}

/* FOOTER */
.gze-legal {
    margin-top: 4rem;
}

.gze-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--gze-vivid), var(--gze-muted));
}

.gze-legal p {
    text-align: center;
    font-size: 0.7rem;
    padding: 1.5rem;
    opacity: 0.6;
    line-height: 1.5;
}

/* INTERSECTION OBSERVER states */
[data-gze="observed"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-gze="visible"] {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
    .gze-splash {
        padding: 3.5rem 1.25rem 3rem;
    }

    .gze-frame {
        flex-direction: column;
        align-items: center;
    }

    .gze-traits {
        grid-template-columns: 1fr;
    }

    .gze-cifras dl {
        grid-template-columns: repeat(2, 1fr);
    }

    .gze-anim-orb {
        width: 120px;
        height: 120px;
    }

    .gze-anim-diamond {
        width: 60px;
        height: 60px;
    }
}
