/* Follow the Frensy — compact vizitka */

@font-face {
    font-family: "Project Space";
    src:
        url("../fonts/ProjectSpace.otf") format("opentype"),
        url("../fonts/ProjectSpace.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --void: #030308;
    --ink: #c8d4e4;
    --mute: #7a8494;
    --line: rgba(168, 200, 232, 0.22);
    --holo: linear-gradient(
        115deg,
        #8eb0d0 0%,
        #e4eef8 12%,
        #a8d4c4 24%,
        #f2f6fb 36%,
        #c8b8a4 48%,
        #b0c8e8 60%,
        #d8e8f0 72%,
        #9ec4b8 84%,
        #e8f0f8 100%
    );
    --holo-edge: linear-gradient(
        160deg,
        rgba(142, 176, 208, 0.75),
        rgba(168, 212, 196, 0.55),
        rgba(200, 184, 164, 0.7),
        rgba(176, 200, 232, 0.65)
    );
    --font-display: "Project Space", system-ui, sans-serif;
    --font-body: "Cormorant Garamond", Georgia, serif;
    --font-ui: "Manrope", system-ui, sans-serif;
    --pad-x: clamp(1rem, 4vw, 2rem);
    --content: min(720px, 100%);
    --touch: 44px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--void);
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
    color: var(--ink);
    background: var(--void);
    line-height: 1.55;
    overflow-x: visible;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

a { color: inherit; }

.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100%;
    min-height: -webkit-fill-available;
    display: block;
    pointer-events: none;
    background: #030308;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.bg-void {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 50% 28%, rgba(90, 110, 160, 0.1), transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 75%, rgba(40, 90, 120, 0.07), transparent 65%),
        transparent;
}

.bg-dim {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% 18%, rgba(0, 0, 0, 0.2), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.62) 100%);
}

.ocean-haze {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background:
        radial-gradient(ellipse 80% 50% at 50% 110%, rgba(60, 120, 160, 0.16), transparent 55%),
        repeating-linear-gradient(
            -8deg,
            transparent 0,
            transparent 48px,
            rgba(180, 210, 255, 0.012) 48px,
            rgba(180, 210, 255, 0.012) 49px
        );
    animation: haze-drift 28s ease-in-out infinite alternate;
}

@keyframes haze-drift {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-2.5%) scale(1.03); }
}

/* —— Intro: shell open/close —— */
.intro {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    /* Solid void so shell mp4 black plate + screen-blend hide cleanly */
    background: #030308;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}

.intro.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-stage {
    position: relative;
    display: grid;
    place-items: center;
}

.logo-wrap {
    width: min(280px, 62vw, 42vh);
    height: min(280px, 62vw, 42vh);
    display: grid;
    place-items: center;
    z-index: 1;
    overflow: visible;
}

.logo-wrap > * { grid-area: 1 / 1; }

.logo-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 55%,
        rgba(200, 230, 240, 0.28) 0%,
        rgba(160, 200, 190, 0.12) 42%,
        transparent 68%
    );
    filter: blur(18px);
    transform: scale(1.15);
    will-change: opacity, transform;
}

.logo-shell {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border: 0;
    /* Black plate of mp4 disappears against .intro void */
    mix-blend-mode: screen;
    /* Soft circular crop — kills visible mp4/png corners on mobile */
    -webkit-mask-image: radial-gradient(circle at 50% 52%, #000 56%, transparent 76%);
    mask-image: radial-gradient(circle at 50% 52%, #000 56%, transparent 76%);
    /* Never animate filter on media — freezes playback on iOS */
    filter: none;
    animation: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.logo-shell::-webkit-media-controls,
.logo-shell::-webkit-media-controls-enclosure,
.logo-shell::-webkit-media-controls-panel,
.logo-shell::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
    pointer-events: none;
}

/* Soft glow: opacity/scale only — animated filter smears on mobile GPUs */
.logo-wrap .logo-glow {
    animation: shell-glow-breathe 5.5s ease-in-out infinite alternate;
}

@keyframes shell-glow-breathe {
    from { opacity: 0.55; transform: scale(1.08); }
    to { opacity: 0.95; transform: scale(1.22); }
}

@keyframes shell-holo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 22px rgba(160, 200, 230, 0.22))
                drop-shadow(0 0 40px rgba(150, 210, 200, 0.14))
                hue-rotate(0deg) saturate(1.05) brightness(1.02);
    }
    33% {
        filter: drop-shadow(0 0 28px rgba(140, 190, 230, 0.4))
                drop-shadow(0 0 48px rgba(200, 190, 170, 0.18))
                hue-rotate(28deg) saturate(1.35) brightness(1.1);
    }
    66% {
        filter: drop-shadow(0 0 26px rgba(150, 230, 210, 0.34))
                drop-shadow(0 0 44px rgba(210, 180, 170, 0.16))
                hue-rotate(-22deg) saturate(1.3) brightness(1.08);
    }
}

@keyframes holo-shift {
    0% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
    100% { background-position: 0% 40%; }
}

/* Iridescent fill for anything that used to be flat white */
.holo-text,
.mega-line,
.hero-name,
.seo-block-title,
.contacts-title,
.prose strong,
.note-title,
.topic-card h3,
.seo-points h3,
.faq-item summary,
.manifesto-accent,
.btn-line {
    background-image: var(--holo);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: holo-shift 7s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
    .holo-text,
    .mega-line,
    .mega-line--brand,
    .hero-name,
    .seo-block-title,
    .contacts-title,
    .prose strong,
    .note-title,
    .topic-card h3,
    .seo-points h3,
    .faq-item summary,
    .manifesto-accent,
    .btn-line,
    .btn-solid {
        animation: none;
        background-position: 40% 50%;
    }
}

.portal {
    position: relative;
    z-index: 2;
    transition: opacity 0.7s ease;
    overflow-x: clip;
}

.portal.is-waiting {
    opacity: 0;
    pointer-events: none;
}

/* —— Hero —— */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: grid;
    align-content: center;
    gap: clamp(1rem, 3vw, 1.75rem);
    padding:
        max(1.5rem, env(safe-area-inset-top))
        var(--pad-x)
        clamp(2rem, 6vw, 3.5rem);
    overflow: hidden;
}

.hero-stage {
    position: relative;
    width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.hero-mega {
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05em;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 48px rgba(160, 200, 230, 0.2);
    pointer-events: none;
    user-select: none;
    order: 1;
    overflow: hidden;
}

.mega-line {
    display: block;
    max-width: 100%;
    font-size: clamp(1.05rem, 5.2vw, 4.2rem);
    letter-spacing: clamp(0.06em, 1.6vw, 0.14em);
    white-space: nowrap;
}

.mega-line--brand {
    font-size: clamp(1.45rem, 7.5vw, 5.8rem);
    letter-spacing: clamp(0.04em, 1.2vw, 0.1em);
    animation-duration: 6s;
}

.hero-orb {
    position: relative;
    order: 2;
    width: min(280px, 48vw, 36vh);
    height: min(280px, 48vw, 36vh);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-orb > * { grid-area: 1 / 1; }

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(circle at 50% 52%, #000 56%, transparent 76%);
    mask-image: radial-gradient(circle at 50% 52%, #000 56%, transparent 76%);
    /* Desktop-only filter animation; mobile uses static soft shadow below */
    animation: none;
    filter: drop-shadow(0 0 22px rgba(160, 200, 230, 0.2));
}

.hero-orb .logo-glow {
    animation: shell-glow-breathe 5.5s ease-in-out infinite alternate;
}

@media (hover: hover) and (pointer: fine) and (min-width: 821px) {
    .hero-shell {
        animation: shell-holo-glow 8s ease-in-out infinite;
        filter: none;
    }
}

.hero-meta {
    width: min(640px, 100%);
    margin: 0 auto;
    text-align: center;
    padding-inline: 0.15rem;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(0.68rem, 1.8vw, 0.85rem);
    letter-spacing: clamp(0.12em, 2vw, 0.22em);
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 0.55rem;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(0.78rem, 2.2vw, 1.05rem);
    letter-spacing: clamp(0.12em, 2.4vw, 0.28em);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
    word-break: keep-all;
}

.hero-line {
    font-family: var(--font-ui);
    font-size: clamp(0.62rem, 1.6vw, 0.72rem);
    letter-spacing: clamp(0.04em, 1vw, 0.1em);
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 1rem;
    line-height: 1.45;
    max-width: 34rem;
    margin-inline: auto;
}

.hero-desc {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: rgba(180, 200, 220, 0.88);
    margin-bottom: 1.5rem;
    line-height: 1.45;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch);
    font-family: var(--font-ui);
    font-size: clamp(0.68rem, 1.5vw, 0.74rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.35rem;
    border-radius: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-solid {
    background: var(--holo);
    background-size: 220% 220%;
    color: #0a0a10;
    -webkit-text-fill-color: #0a0a10;
    border-color: rgba(180, 210, 230, 0.45);
    box-shadow:
        0 0 28px rgba(140, 190, 220, 0.28),
        inset 0 1px 0 rgba(232, 240, 248, 0.7);
    animation: holo-shift 7s ease infinite;
}

.btn-line {
    background-color: transparent;
    border: 1px solid rgba(168, 200, 232, 0.45);
}

.btn:active {
    transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
    .btn-solid:hover {
        transform: translateY(-2px);
        box-shadow:
            0 0 42px rgba(160, 210, 230, 0.45),
            inset 0 1px 0 rgba(232, 240, 248, 0.85);
    }

    .btn-line:hover {
        background-color: rgba(160, 200, 220, 0.06);
        box-shadow: 0 0 24px rgba(140, 190, 220, 0.22);
    }

    .contact-list a:hover,
    .contact-link:hover,
    .social-row a:hover,
    .foot-nav a:hover {
        background-image: var(--holo);
        background-size: 220% 220%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        animation: holo-shift 5s ease infinite;
    }
}

/* —— Contacts —— */
.contacts {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 1rem var(--pad-x) max(3.5rem, env(safe-area-inset-bottom));
    text-align: center;
    border-top: 1px solid var(--line);
}

.contacts-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 2.5rem 0 0.75rem;
}

.contacts-lead {
    font-size: 1.1rem;
    color: var(--mute);
    margin-bottom: 1.75rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-list li {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
    border-top: 1px solid var(--line);
}

.contact-label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
}

.contact-list a,
.contact-link {
    font-size: 1.15rem;
    text-decoration: none;
    color: rgba(180, 205, 225, 0.92);
    transition: color 0.2s;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.hero-actions .btn {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    justify-content: center;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    min-height: var(--touch);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(168, 196, 220, 0.72);
    transition: color 0.2s;
    padding: 0.2rem 0.15rem;
}

.site-foot p {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mute);
}

.site-foot-seo {
    margin-top: 0.55rem;
    letter-spacing: 0.08em !important;
    text-transform: none !important;
    opacity: 0.75;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--holo);
    background-size: 200% 200%;
    color: #0a0a10;
    -webkit-text-fill-color: #0a0a10;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    text-decoration: none;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.seo-block {
    position: relative;
    z-index: 2;
    width: var(--content);
    margin: 0 auto;
    padding: clamp(2.25rem, 6vw, 3.5rem) var(--pad-x) 1rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.seo-block-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.seo-block-lead {
    font-size: 1.12rem;
    color: var(--mute);
    margin: 0 auto 1.75rem;
    max-width: 36rem;
}

.prose {
    text-align: left;
    max-width: 40rem;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.prose p {
    margin: 0;
    color: rgba(180, 200, 220, 0.86);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.55;
    text-wrap: pretty;
}

.prose strong {
    font-weight: 600;
}

.manifesto-kicker {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    font-style: italic;
    color: rgba(190, 210, 228, 0.9);
    margin: -0.35rem auto 1.75rem;
    max-width: 28rem;
}

.prose--manifesto {
    max-width: 38rem;
}

.manifesto-lines {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0.35rem 0;
    padding: 0.85rem 0 0.85rem 0.95rem;
    border-left: 1px solid transparent;
    border-image: var(--holo-edge) 1;
}

.manifesto-lines li {
    color: rgba(180, 200, 220, 0.86);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.45;
}

.manifesto-accent {
    letter-spacing: 0.04em;
}

.manifesto-quote {
    margin: 0.35rem 0;
    padding: 1rem 0 1rem 1.1rem;
    border-left: 1px solid transparent;
    border-image: var(--holo-edge) 1;
}

.manifesto-quote p {
    font-style: italic;
    color: rgba(190, 210, 228, 0.92);
}

.prose--note {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.note-title {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 0.65rem;
}

.topic-grid {
    display: grid;
    gap: 1.35rem;
    text-align: left;
}

.topic-card h3 {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid transparent;
    border-image: var(--holo-edge) 1;
}

.topic-lead {
    margin: 0;
    color: rgba(170, 195, 218, 0.82);
    font-size: clamp(1.02rem, 2vw, 1.12rem);
    line-height: 1.5;
}

.topic-card ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    margin: 0;
}

.topic-card li {
    position: relative;
    padding-left: 0.9rem;
    color: rgba(170, 195, 218, 0.82);
    font-size: clamp(1rem, 2vw, 1.08rem);
    line-height: 1.4;
}

.topic-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: var(--holo);
    background-size: 200% 200%;
}

.topic-cta {
    margin-top: 2rem;
}

.seo-points {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 1.25rem;
}

.seo-points h3 {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.seo-points p {
    margin: 0;
    color: rgba(170, 195, 218, 0.82);
    font-size: 1.08rem;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    min-height: var(--touch);
    font-family: var(--font-ui);
    font-size: clamp(0.88rem, 2.2vw, 0.98rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    list-style: none;
    line-height: 1.35;
    padding: 0.35rem 0;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--mute);
    -webkit-text-fill-color: var(--mute);
    background: none;
    font-weight: 400;
    line-height: 1;
    margin-top: 0.15em;
    animation: none;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
    margin: 0.55rem 0 0.35rem;
    color: var(--mute);
    font-size: clamp(1rem, 2.2vw, 1.08rem);
    padding-right: 1.5rem;
}

.foot-nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    justify-content: center;
    padding-bottom: env(safe-area-inset-bottom);
}

.foot-nav a {
    display: inline-flex;
    align-items: center;
    min-height: var(--touch);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(150, 180, 205, 0.55);
    padding: 0.2rem 0.15rem;
}

.site-foot {
    padding: 1.5rem var(--pad-x) max(2.25rem, calc(1.25rem + env(safe-area-inset-bottom)));
    text-align: center;
    border-top: 1px solid var(--line);
}

/* —— Breakpoints —— */
@media (max-width: 480px) {
    .mega-line { letter-spacing: 0.05em; }
    .mega-line--brand { letter-spacing: 0.03em; }
    .hero-name { letter-spacing: 0.12em; }
    .hero-brand { letter-spacing: 0.1em; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: none;
    }
    .contact-list li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 0.9rem 0;
    }
    .seo-block-title,
    .contacts-title {
        letter-spacing: 0.12em;
    }
    .seo-points {
        gap: 1.1rem;
    }
    .topic-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .topic-cta .btn {
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .hero-actions .btn { min-width: 11.5rem; }
    .contact-list li {
        grid-template-columns: 8.5rem 1fr;
    }
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .seo-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: left;
    }
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 2rem;
    }
    .hero-actions .btn { min-width: 12rem; }
}

@media (min-width: 1024px) {
    .hero {
        gap: 2rem;
        padding-block: 3rem 4rem;
    }
    .hero-orb {
        width: min(300px, 28vw);
        height: min(300px, 28vw);
    }
    .topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-height: 700px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-block: 1.25rem 2rem;
    }
    .hero-orb,
    .logo-wrap {
        width: min(160px, 28vw, 42vh);
        height: min(160px, 28vw, 42vh);
    }
    .mega-line { font-size: clamp(1rem, 4.5vh, 2rem); }
    .mega-line--brand { font-size: clamp(1.25rem, 6vh, 2.6rem); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .intro { transition: none; }
    .ocean-haze,
    .btn-solid,
    .mega-line--brand,
    .hero-shell,
    .logo-wrap .logo-glow,
    .hero-orb .logo-glow {
        animation: none !important;
    }
    .hero-shell {
        filter: drop-shadow(0 0 22px rgba(160, 210, 230, 0.2));
    }
    .logo-glow {
        opacity: 0.75;
        transform: scale(1.12);
    }
}

/* —— Lead form (consult funnel) —— */
.lead-block {
    max-width: 34rem;
    margin-inline: auto;
}

.lead-form {
    margin-top: 1.5rem;
    padding: 1.35rem 1.25rem 1.5rem;
    border: 1px solid var(--line, rgba(230, 230, 230, 0.28));
    background: rgba(255, 255, 255, 0.015);
    display: grid;
    gap: 1rem;
    text-align: left;
}

.lead-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lead-field {
    display: grid;
    gap: 0.4rem;
}

.lead-field span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute, #9a9a9a);
}

.lead-field span em {
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: none;
    opacity: 0.7;
}

.lead-field input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(230, 230, 230, 0.28);
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--chrome, #f7f7f7);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.15rem;
    outline: none;
    transition: border-color 0.2s;
}

.lead-field input[type="text"]::placeholder {
    color: rgba(154, 154, 154, 0.65);
}

.lead-field input[type="text"]:focus {
    border-color: rgba(255, 255, 255, 0.55);
}

.lead-check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.35;
    color: rgba(228, 228, 228, 0.88);
    cursor: pointer;
}

.lead-check input {
    margin-top: 0.25rem;
    accent-color: #cfcfcf;
    flex-shrink: 0;
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.lead-status {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.05rem;
}

.lead-status.is-ok { color: rgba(200, 220, 210, 0.95); }
.lead-status.is-err { color: #c99; }

.reading-page .lead-block {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
