/* =====================================================
   irakli.beer — YC startup style
   Black + electric blue. Poppins. Vercel/Linear vibes.
   ===================================================== */

:root {
    /* Black + blue palette */
    --bg: #07080C;
    --bg-2: #0B0D14;
    --surface: #0F121C;
    --surface-2: #141824;
    --surface-3: #1A1F2E;
    --line: #1F2535;
    --line-2: #2A3147;

    /* Blue accent */
    --blue: #4F8FFF;
    --blue-bright: #6BA5FF;
    --blue-dim: #2563D9;
    --blue-glow: rgba(79, 143, 255, .35);

    /* Secondary purple-ish for gradients */
    --violet: #8B7BFF;

    /* Text */
    --white: #FFFFFF;
    --text: #E4E7EE;
    --text-dim: #A0A6B8;
    --text-mute: #6B7388;

    --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --max: 1200px;
    --radius: 14px;
    --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: var(--white); }

/* ========== BACKGROUND ORBS ========== */
.orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), transparent 60%);
    top: -200px;
    left: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--violet), transparent 60%);
    top: 40%;
    right: -150px;
    opacity: .25;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--blue), transparent 60%);
    bottom: -300px;
    left: 30%;
    opacity: .2;
}

/* ========== NAV ========== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 8, 12, .7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -.01em;
    color: var(--white);
}

.logo-mark {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 0 20px var(--blue-glow);
    flex-shrink: 0;
}

.logo-dot { color: var(--blue); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 400;
    transition: color .15s;
}

.nav-links a:hover { color: var(--white); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .75rem 1.3rem;
    font-family: var(--font);
    font-weight: 500;
    font-size: .92rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .18s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

.btn-primary {
    background: var(--white);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px var(--blue-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
}
.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--white);
    background: rgba(79, 143, 255, .08);
}

/* ========== HERO ========== */
.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem 1.75rem 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 1rem .45rem .55rem;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: 100px;
    font-size: .82rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, var(--blue), transparent 50%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .6;
    pointer-events: none;
}

.badge:hover { border-color: var(--blue); color: var(--white); }

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.badge-tag {
    background: var(--blue);
    color: var(--white);
    padding: .12rem .5rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.badge-arrow {
    color: var(--text-mute);
    transition: transform .2s;
}

.badge:hover .badge-arrow { transform: translateX(3px); color: var(--blue); }

.hero-h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.grad {
    background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.65;
}

.hero-sub code {
    background: var(--surface-2);
    color: var(--blue-bright);
    padding: .12rem .5rem;
    border-radius: 5px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: .85em;
    border: 1px solid var(--line);
}

.hero-cta {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: .78rem;
    color: var(--text-mute);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logos span {
    font-size: .8rem;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: .1em;
}

.trust-divider {
    color: var(--line-2) !important;
    font-weight: 400 !important;
}

/* ========== STATS ========== */
.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.stats-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 1.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat { text-align: center; }

.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .5rem;
}

.stat-num span { color: var(--blue); }

.stat-label {
    font-size: .85rem;
    color: var(--text-dim);
    font-weight: 400;
}

/* ========== SECTION HEADERS ========== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    color: var(--blue);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: .35rem .9rem;
    background: rgba(79, 143, 255, .08);
    border: 1px solid rgba(79, 143, 255, .2);
    border-radius: 100px;
}

.section-h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.section-h2 .muted {
    color: var(--text-mute);
    font-weight: 700;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    font-weight: 300;
    line-height: 1.6;
}

/* ========== FEATURES ========== */
.features {
    max-width: var(--max);
    margin: 0 auto;
    padding: 7rem 1.75rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transition: width .3s;
}

.feature:hover {
    background: var(--surface-2);
    border-color: var(--line-2);
    transform: translateY(-3px);
}

.feature:hover::before { width: 80%; }

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 143, 255, .15), rgba(139, 123, 255, .08));
    border: 1px solid rgba(79, 143, 255, .2);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}

.feature p {
    color: var(--text-dim);
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.65;
}

/* ========== STORY / ORIGIN ========== */
.story {
    max-width: var(--max);
    margin: 0 auto;
    padding: 4rem 1.75rem 7rem;
    position: relative;
    z-index: 1;
}

.story-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
}

.story-route { position: relative; }

.route-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0;
    position: relative;
    z-index: 2;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--surface-3);
    border: 2px solid var(--line-2);
    flex-shrink: 0;
}

.node-dot-active {
    width: 26px;
    height: 26px;
    background: var(--blue);
    border-color: var(--blue-bright);
    box-shadow: 0 0 24px var(--blue-glow);
    margin-left: -7px;
}

.route-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, var(--line-2), var(--blue));
    margin-left: 5px;
}

.node-text { display: flex; flex-direction: column; }

.node-text strong {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.node-text span {
    color: var(--text-mute);
    font-size: .82rem;
    font-weight: 300;
}

.node-active { color: var(--blue) !important; font-size: 1.1rem !important; }

.story-text p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.story-text p strong { color: var(--white); font-weight: 600; }
.story-text p em { color: var(--blue-bright); font-style: italic; }

/* ========== QUOTES ========== */
.quotes {
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 1.75rem;
    position: relative;
    z-index: 1;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quote {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .2s;
}

.quote:hover {
    border-color: var(--line-2);
    background: var(--surface-2);
}

.quote-stars {
    color: var(--blue);
    font-size: .85rem;
    letter-spacing: .15em;
    margin-bottom: 1rem;
}

.quote p {
    color: var(--text);
    font-size: .98rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.quote-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    flex-shrink: 0;
}

.quote-author strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
}

.quote-author span {
    display: block;
    color: var(--text-mute);
    font-size: .78rem;
    font-weight: 300;
}

/* ========== METRICS / COUNTER ========== */
.metrics {
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 1.75rem;
    position: relative;
    z-index: 1;
}

.metrics-card {
    background:
        radial-gradient(ellipse at center top, rgba(79, 143, 255, .15), transparent 60%),
        var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.metrics-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin: 1rem 0 2.5rem;
    letter-spacing: -.02em;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.ccell {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
}

.cnum {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}

.clab {
    font-size: .7rem;
    color: var(--text-mute);
    font-weight: 600;
    letter-spacing: .1em;
}

.metrics-foot {
    color: var(--text-dim);
    font-size: .92rem;
    font-weight: 300;
}

.metrics-foot code {
    background: var(--surface-3);
    color: var(--blue-bright);
    padding: .1rem .45rem;
    border-radius: 4px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: .85em;
}

/* ========== GALLERY / PRESS ========== */
.gallery {
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 1.75rem;
    position: relative;
    z-index: 1;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.press-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    cursor: pointer;
}

.press-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.4), 0 0 30px rgba(79, 143, 255, .12);
}

.press-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg);
}

.press-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.95);
    transition: transform .4s ease;
}

.press-card:hover .press-img img { transform: scale(1.05); filter: saturate(1.1); }

.press-card figcaption {
    padding: .75rem 1rem;
    font-size: .72rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: .08em;
    border-top: 1px solid var(--line);
}

/* ========== LETTER ========== */
.letter {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 1.75rem;
    position: relative;
    z-index: 1;
}

.letter-card {
    background:
        radial-gradient(ellipse at top right, rgba(139, 123, 255, .1), transparent 60%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
}

.letter-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0 1.5rem;
    letter-spacing: -.02em;
}

.letter-card > p {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.letter-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    border-top: 1px solid var(--line);
}

.letter-list li {
    padding: .9rem 0 .9rem 1.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: .98rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

.letter-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 8px var(--blue-glow);
}

.letter-list li em { color: var(--blue-bright); font-style: italic; }

.letter-sign {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.sign-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.letter-sign strong { display: block; color: var(--white); font-weight: 600; font-size: .95rem; }
.letter-sign span { display: block; color: var(--text-mute); font-size: .8rem; font-weight: 300; }

/* ========== CTA ========== */
.cta {
    max-width: var(--max);
    margin: 0 auto;
    padding: 6rem 1.75rem;
    position: relative;
    z-index: 1;
}

.cta-inner {
    background:
        radial-gradient(ellipse at center, rgba(79, 143, 255, .15), transparent 60%),
        var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 4.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), transparent 70%);
    opacity: .15;
    filter: blur(80px);
    pointer-events: none;
}

.cta-h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    position: relative;
}

.cta-inner > p {
    color: var(--text-dim);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    position: relative;
}

.cta-inner > p em { color: var(--blue-bright); font-style: italic; }

.cta-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 4rem 1.75rem 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-col { display: flex; flex-direction: column; gap: .75rem; }

.fcol-h {
    font-size: .78rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}

.footer-col a {
    color: var(--text-dim);
    font-size: .88rem;
    font-weight: 300;
    transition: color .15s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: var(--text-mute);
    font-weight: 300;
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 8, 12, .88);
    backdrop-filter: blur(12px);
    display: none;
    place-items: center;
    z-index: 1000;
    padding: 2rem;
}

.modal.active {
    display: grid;
    animation: fadeIn .2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background:
        radial-gradient(ellipse at top, rgba(79, 143, 255, .15), transparent 60%),
        var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(79, 143, 255, .15);
    animation: pop .3s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes pop {
    from { transform: scale(.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    font-family: var(--font);
}

.modal-close:hover { color: var(--blue); }

.modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 143, 255, .2), rgba(139, 123, 255, .1));
    border: 1px solid rgba(79, 143, 255, .3);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
}

.modal-icon svg { width: 26px; height: 26px; }

.modal-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.modal-card p {
    color: var(--text-dim);
    font-size: .98rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-sign {
    color: var(--blue);
    font-weight: 500;
    margin-top: 1.25rem;
    font-size: .95rem;
}

/* ========== FLOATING ON CLICK ========== */
.floating-heart {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 1.6s ease-out forwards;
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(.6); opacity: 1; }
    100% { transform: translateY(-130px) scale(1.3); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .quotes-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .story-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero { padding: 3.5rem 1.25rem 3rem; }
    .features, .story, .quotes, .metrics, .gallery, .letter, .cta { padding-left: 1.25rem; padding-right: 1.25rem; }
    .features-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .letter-card, .cta-inner { padding: 2rem 1.5rem; }
}
