@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-void: #FBFBFD;
    --surface: #F5F5F7;
    --surface-raised: #FFFFFF;
    --border: #D2D2D7;
    --border-subtle: #E8E8ED;
    --primary: #0071E3;
    --primary-hover: #0077ED;
    --primary-glow: rgba(0, 113, 227, 0.08);
    --text-main: #1D1D1F;
    --text-sec: #6E6E73;
    --text-muted: #86868B;
    --success: #34C759;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    background-color: var(--bg-void);
    color: var(--text-sec);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ── */
.bg-orbs {
    display: none;
    /* Clean Apple look – no orbs */
}

.wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(251, 251, 253, 0.82);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.status-pill {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 7px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.8);
    }
}

/* ── Hero ── */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: var(--bg-void);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-glow);
    border: 1px solid rgba(0, 113, 227, 0.2);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 36px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, #0071E3 0%, #40A9FF 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-sec);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 56px;
    font-weight: 400;
}

/* ── Divider ── */
.divider {
    width: 60px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 64px;
}

/* ── Quotes section ── */
.quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1100px;
    width: 100%;
    padding: 0 48px;
    margin: 0 auto 100px;
}

.quote-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at top left, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.quote-card:hover::before {
    opacity: 1;
}

.quote-mark {
    font-size: 36px;
    line-height: 1;
    color: var(--primary);
    font-family: Georgia, serif;
    margin-bottom: 10px;
    opacity: 0.5;
}

.quote-text {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.75;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.quote-author::before {
    content: '— ';
}

/* ── Footer ── */
.site-footer {
    padding: 28px 48px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg-void);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-domain {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .quotes {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 18px 20px;
    }

    .hero {
        padding: 72px 20px 36px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .site-footer {
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}