/* ── Noizy page ── */

.nz-main {
    overflow-x: hidden;
}

/* Hero */
.nz-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.nz-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.nz-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text);
}

.nz-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.nz-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    margin-bottom: 1.75rem;
}

.nz-hero-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nz-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Sections */
.nz-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.nz-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.nz-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--text);
}

.nz-section-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: -1.25rem;
    margin-bottom: 2.5rem;
    font-family: 'Space Mono', monospace;
}

/* Overview */
.nz-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nz-overview-text {
    min-width: 0;
}

.nz-overview-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.nz-overview-text p:last-child { margin-bottom: 0; }

.nz-overview-aside {
    min-width: 0;
}

.nz-overview-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    aspect-ratio: 4/3;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.nz-overview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Feature list - numbered editorial style */
.nz-feature-list {
    display: flex;
    flex-direction: column;
}

.nz-feature-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--border);
    align-items: start;
}

.nz-feature-row:last-child {
    border-bottom: 1px solid var(--border);
}

.nz-feature-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    padding-top: 3px;
}

.nz-feature-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nz-feature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nz-feature-head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.nz-feature-head svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}

.nz-feature-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

/* Screenshots */
.nz-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.nz-ss-box {
    aspect-ratio: 16/10;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.nz-ss-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.nz-ss-box img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
}

/* Pricing / CTA */
.nz-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.nz-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(108,143,255,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.nz-cta-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.75px;
    color: var(--text);
    margin: 0;
}

.nz-cta-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nz-hero { min-height: 60vh; padding: 6rem 1.25rem 3rem; }
    .nz-title { letter-spacing: -1px; }

    .nz-overview-grid { grid-template-columns: 1fr; gap: 2rem; }

    .nz-screenshot-grid { grid-template-columns: 1fr; }

    .nz-section { padding: 3rem 1.25rem; }
}
