/* GlobalZen Minimalist White Landing Styles */

.gz-page {
    background-color: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--text);
}

.gz-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 160px 24px 100px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.gz-hero-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    background: var(--bg-alt);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.gz-hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.04em;
    font-weight: 900;
}

.gz-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.gz-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.gz-section {
    padding: 60px 24px 120px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.gz-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.gz-row:nth-child(even) {
    flex-direction: row-reverse;
}

.gz-row-content {
    flex: 1;
}

.gz-row-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.gz-row-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.gz-row-content p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gz-row-visual {
    flex: 1;
    position: relative;
    width: 100%;
}

.gz-mock-frame {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
}

.gz-mock-header {
    background: var(--bg-alt);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

.gz-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db; /* neutral gray dots for clean minimal look */
}

.gz-mock-title {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
}

.gz-mock-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    white-space: pre;
    overflow-x: auto;
    background: var(--bg);
}

/* Subtle syntax highlighting for light mode */
.gz-keyword { color: #2563eb; font-weight: 600; }
.gz-string { color: #059669; }
.gz-function { color: #7c3aed; }
.gz-comment { color: #9ca3af; font-style: italic; }

.gz-iframe-preview {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 0 0 12px 12px;
    display: block;
    background: #ffffff;
}

@media (max-width: 900px) {
    .gz-row, .gz-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    .gz-hero {
        padding: 120px 24px 60px;
    }
}
