/* =============================================
   pages.css — About & Contact
   Landing-styled content pages.
   Requires styles.css + landing.css + landing-light.css first.
   (No CSS blur filters — soft looks come from radial gradients.)
   ============================================= */

/* ── Page hero ─────────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 148px 24px 92px;
    /* Top-centred blue glow — soft via gradient falloff, no blur filter */
    background:
        radial-gradient(70% 90% at 50% -20%, rgba(75, 150, 207, 0.30) 0%, rgba(75, 150, 207, 0.10) 38%, transparent 72%),
        #07101F;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero .section-tag { margin-bottom: 22px; }

/* Tighter hero when content follows immediately (no section header) */
.page-hero-tight { padding-bottom: 40px; }
.section-tight-top { padding-top: 48px; }

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.page-hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

/* ── Prose (story blocks) ──────────────────── */
.prose {
    max-width: 720px;
    margin: 0 auto;
}
.prose p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 22px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-primary); font-weight: 600; }

/* ── Card grid (values / contact methods) ──── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-grid.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 22px;
    padding: 34px 30px;
    transition: border-color var(--transition-smooth), background var(--transition-smooth);
}
.info-card:hover {
    border-color: var(--border-active);
    background: rgba(75, 150, 207, 0.04);
}

.info-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 150, 207, 0.12);
    border: 1px solid rgba(75, 150, 207, 0.25);
    color: var(--accent-primary);
    margin-bottom: 20px;
}
.info-card-icon svg { width: 22px; height: 22px; }

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.info-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 16px;
}
.info-card p:last-child { margin-bottom: 0; }

/* ── Click-to-copy email (paired with legal.js) ── */
.info-card .lg-email,
.info-card a[href^="mailto:"] {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(75, 150, 207, 0.35);
}
.info-card .lg-email:hover { border-bottom-color: var(--accent-primary); }
.info-card .lg-email.copied::after {
    content: 'Copied';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: var(--text-primary);
    color: #0C0B10;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 4px 9px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
}

/* ── Small print under a section ────────────── */
.section-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 40px;
}
.section-note a { color: var(--accent-primary); text-decoration: none; }
.section-note a:hover { text-decoration: underline; }

/* ── Alternating section tint so blocks read apart ── */
.section-alt { background: #050C18; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 860px) {
    .card-grid,
    .card-grid.card-grid-2 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .page-hero { padding: 120px 20px 68px; }
    .prose p { font-size: 1rem; }
    .info-card { padding: 28px 24px; }
}
