/* =========================================================================
   Hyperlynker — basic static site
   High-fashion dark theme · Cormorant Garamond + Jost · blue accent
   Animated sheen headings · no boxy bubbles
   ========================================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #060910;
    --bg-alt: #0a0e17;
    --text: #f4f7fb;
    --text-soft: #9fabc2;
    --text-dim: #6b7589;
    --accent: #2d9cff;
    --accent-soft: rgba(45, 156, 255, 0.12);
    --border: rgba(255, 255, 255, 0.14);
    --border-soft: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Shared luxury serif heading + metallic sheen sweep */
.luxe {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-image: linear-gradient(
        110deg,
        var(--text) 0%, var(--text) 40%,
        #d8ecff 47%, #ffffff 50%, var(--accent) 53%,
        var(--text) 60%, var(--text) 100%
    );
    background-size: 280% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes sheen {
    from { background-position: 100% 0; }
    to   { background-position: 0 0; }
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.35s ease;
    padding: 10px 0;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.navbar.scrolled { padding-top: 12px; }
.navbar.scrolled .nav-container {
    max-width: 1040px;
    height: 56px;
    padding: 0 18px 0 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(10, 14, 23, 0.82);
    backdrop-filter: blur(22px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text);
}

.logo-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-link {
    color: var(--text-soft);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text);
    transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { border-color: var(--accent); background: var(--accent-soft); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }

.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(45, 156, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 156, 255, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    animation: gridDrift 24s linear infinite;
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 78%);
}

@keyframes gridDrift {
    from { transform: translateY(0); }
    to { transform: translateY(52px); }
}

.glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 22% 42%, rgba(45, 156, 255, 0.30) 0%, transparent 46%),
        radial-gradient(circle at 78% 58%, rgba(25, 227, 196, 0.18) 0%, transparent 48%);
    opacity: 0.16;
    animation: glowPulse 9s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.10; transform: scale(1); }
    to { opacity: 0.22; transform: scale(1.08); }
}

/* Floating gradient orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}
.orb-1 {
    width: 440px; height: 440px;
    top: -90px; left: -70px;
    background: radial-gradient(circle, rgba(45, 156, 255, 0.55), transparent 70%);
    animation: float1 19s ease-in-out infinite;
}
.orb-2 {
    width: 380px; height: 380px;
    bottom: -120px; right: -60px;
    background: radial-gradient(circle, rgba(25, 227, 196, 0.40), transparent 70%);
    animation: float2 23s ease-in-out infinite;
}
.orb-3 {
    width: 320px; height: 320px;
    top: 38%; left: 52%;
    background: radial-gradient(circle, rgba(123, 116, 240, 0.34), transparent 70%);
    animation: float3 27s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(70px, 50px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, -45px); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 40px) scale(1.12); }
}

/* Slow sweeping light beam */
.beam {
    position: absolute;
    top: -40%;
    left: -30%;
    width: 60%;
    height: 180%;
    background: linear-gradient(105deg, transparent, rgba(45, 156, 255, 0.06), transparent);
    transform: rotate(18deg);
    animation: beamSweep 11s ease-in-out infinite;
    pointer-events: none;
}

@keyframes beamSweep {
    0% { transform: translateX(-30%) rotate(18deg); opacity: 0; }
    35% { opacity: 1; }
    65% { opacity: 1; }
    100% { transform: translateX(230%) rotate(18deg); opacity: 0; }
}

.hero-inner { max-width: 820px; padding: 0 24px; position: relative; z-index: 1; }
.hero-logo { width: 220px; max-width: 60vw; margin-bottom: 32px; animation-delay: 0s; }

/* Hero entrance — staggered rise */
.rise { opacity: 0; transform: translateY(26px); animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.rise-2 { animation-delay: 0.14s; }
.rise-3 { animation-delay: 0.28s; }
.rise-4 { animation-delay: 0.5s; }

@keyframes riseIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-cue span {
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: var(--accent);
    animation: cueDrop 1.6s ease-in-out infinite;
}
@keyframes cueDrop {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

.hero-title {
    font-weight: 700;
    font-size: clamp(3.6rem, 9.5vw, 7.6rem);
    line-height: 1.0;
    letter-spacing: -0.005em;
    margin-bottom: 26px;
    /* entrance rise + one-time metallic sheen */
    animation:
        riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        sheen 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.hero-title em {
    font-style: normal;
    font-weight: 700;
}

.hero-sub {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 300;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 0.01em;
}

.hero-preview-note {
    margin-bottom: 32px;
    line-height: 1.2;
}

.preview-headline {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-style: normal;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.preview-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
}

.hero-stat {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 20px;
}

.hero-stat strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(45, 156, 255, 0.18);
}
.btn-primary::after {
    content: '→';
    transition: transform 0.25s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(45, 156, 255, 0.30);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.btn-block { width: 100%; margin-top: 8px; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section-alt { background: var(--bg-alt); }

/* Ambient drifting glow behind each section */
.section::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 156, 255, 0.10), transparent 68%);
    filter: blur(50px);
    top: -240px;
    right: -160px;
    pointer-events: none;
    z-index: 0;
    animation: ambientDrift 22s ease-in-out infinite alternate;
}
.section-alt::before {
    background: radial-gradient(circle, rgba(25, 227, 196, 0.09), transparent 68%);
    top: auto;
    bottom: -240px;
    right: auto;
    left: -160px;
    animation-duration: 26s;
}

@keyframes ambientDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-70px, 60px); }
}

.container { position: relative; z-index: 1; }

.section-head { max-width: 680px; margin: 0 auto 70px; text-align: center; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-title {
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.005em;
    margin-bottom: 18px;
    text-wrap: balance;
}

/* Sheen sweeps across each section title as it scrolls into view */
.reveal.in-view .section-title {
    animation: sheen 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}

.section-intro {
    color: var(--text-soft);
    font-size: 18px;
    font-weight: 300;
    text-wrap: balance;
}

/* ── Pricing tiers ────────────────────────────────────────── */
.tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tier {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-soft);
    border-top: 3px solid transparent;
    border-radius: 14px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.tier::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at 50% 0%, rgba(45, 156, 255, 0.12), transparent 62%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.tier:hover::after { opacity: 1; }

.tier:hover {
    border-top-color: var(--accent);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 156, 255, 0.25);
    transform: translateY(-6px);
}

.tier-featured {
    border-top-color: var(--accent);
    background: rgba(45, 156, 255, 0.04);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.tier-price {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.tier-price .from { font-size: 16px; font-weight: 500; color: var(--text-soft); margin-right: 4px; }

.tier-monthly {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 22px;
}

.tier-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tier-desc {
    color: var(--text-soft);
    font-size: 15px;
    margin-bottom: 22px;
}

.tier-list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}
.tier-list li {
    color: var(--text-soft);
    font-size: 15px;
    padding: 8px 0 8px 26px;
    position: relative;
    border-top: 1px solid var(--border-soft);
}
.tier-list li:first-child { border-top: none; }
.tier-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Add-ons row */
.addons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 56px;
}
.addon {
    color: var(--text-soft);
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.addon em { color: var(--text-dim); font-style: normal; }
.addon:hover { color: var(--text); border-color: var(--accent); }

/* ── Editorial rows (About) ───────────────────────────────── */
.rows { border-bottom: 1px solid var(--border); }

.row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    padding: 44px 0;
    border-top: 1px solid var(--border);
    transition: border-color 0.25s ease;
}
.row:hover { border-top-color: var(--accent); }

.row-label {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}
.row:hover .row-label { color: var(--accent); }

.row-body {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

/* ── Contact form ─────────────────────────────────────────── */
.contact-form { margin-top: 10px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    padding: 10px 0;
    transition: border-color 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }
.field select option { background: var(--bg-alt); color: var(--text); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field-optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-dim); }

.form-status {
    margin-top: 18px;
    font-size: 15px;
    text-align: center;
    min-height: 22px;
}
.form-status.success { color: #19e3c4; }
.form-status.error { color: #ff6b7a; }

.hidden { display: none; }

.contact-direct {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 15px;
    transition: color 0.25s ease;
}
.contact-item:hover { color: var(--accent); }

/* ── Founders ─────────────────────────────────────────────── */
.founders-head {
    margin-top: 80px;
    margin-bottom: 48px;
    text-align: center;
}
.founders-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.005em;
    margin-top: 10px;
}
.reveal.in-view .founders-title {
    animation: sheen 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}

.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.founder-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.founder-avatar {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0;
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.founder-role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 2px;
}

.founder-bio {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tag {
    font-size: 12px;
    color: var(--text-dim);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 4px 12px;
}

.founder-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 8px 16px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.social-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── Premium Showcase ────────────────────────────────────── */
.section-showcase { background: var(--bg); }

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.showcase-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(45, 156, 255, 0.3);
    border-color: var(--accent);
}

.showcase-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0e17;
}

.showcase-media video,
.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-media video,
.showcase-card:hover .showcase-media img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 16, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-visit {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 10px 24px;
    backdrop-filter: blur(6px);
}

.showcase-info {
    padding: 22px 24px 26px;
    border-top: 1px solid var(--border-soft);
}

.showcase-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.showcase-url {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 6px;
}

.showcase-result {
    font-size: 14px;
    color: var(--text-soft);
    margin-top: 6px;
}

.showcase-result strong {
    color: var(--text);
    font-weight: 700;
}

.showcase-grid .showcase-card:nth-child(2) { transition-delay: 0.1s; }

@media (max-width: 720px) {
    .showcase-grid { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-soft);
    padding: 56px 0;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo-link { display: inline-block; }
.footer-logo { width: 160px; max-width: 50vw; }
.footer-tag { color: var(--text-soft); font-size: 15px; }
.footer-meta { color: var(--text-dim); font-size: 14px; }
.footer-meta a { color: var(--accent); }

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered cascade for grouped items */
.tiers .tier:nth-child(2) { transition-delay: 0.08s; }
.tiers .tier:nth-child(3) { transition-delay: 0.16s; }
.tiers .tier:nth-child(4) { transition-delay: 0.24s; }

.rows .row:nth-child(2) { transition-delay: 0.07s; }
.rows .row:nth-child(3) { transition-delay: 0.14s; }
.rows .row:nth-child(4) { transition-delay: 0.21s; }

.founders .founder:nth-child(2) { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .rise { opacity: 1; transform: none; animation: none; }
    .grid-overlay, .glow, .orb, .beam, .scroll-cue span,
    .section::before { animation: none; }
    html { scroll-behavior: auto; }

    /* Render luxe headings as solid text, no sheen sweep */
    .luxe,
    .hero-title,
    .reveal.in-view .section-title,
    .reveal.in-view .founders-title {
        animation: none;
        background: none;
        color: var(--text);
        -webkit-text-fill-color: var(--text);
    }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
    .row { grid-template-columns: 1fr; gap: 10px; padding: 34px 0; }
    .founders { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
    .nav-toggle { display: flex; position: relative; z-index: 1002; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: min(78vw, 320px);
        z-index: 1001;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 28px;
        padding: 0 40px;
        background: rgba(8, 11, 18, 0.97);
        backdrop-filter: blur(24px);
        border-left: 1px solid var(--border);
        transition: right 0.35s ease;
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 20px; }

    .section { padding: 88px 0; }
    .section-head { margin-bottom: 48px; }
    .form-grid { grid-template-columns: 1fr; gap: 24px; }
}
