/* ============================================================
   LUMERA PROTOCOL — Landing Page
   Brand kit: Navy #001432 · Green #47C78A · Teal #078A8A
   Gray #F5F5FA · Typeface: Geist (+ Geist Mono for labels)
   Direction: "Light that persists" — deep navy field, brand
   green as the single accent, golden temple footage under a
   light navy veil.
   ============================================================ */

/* === BASE TOKENS === */
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; margin: 0; padding: 0 }
.lp {
    --bg: #001432;            /* brand navy */
    --bg-deep: #000b1f;       /* deeper navy band */
    --bg-card: rgba(245,245,250,0.03);
    --bg-card-hover: rgba(71,199,138,0.06);
    --white: #ffffff;
    --gray: #f5f5fa;          /* brand gray */
    --text: rgba(245,245,250,0.78);
    --text-muted: rgba(245,245,250,0.45);
    --text-dim: rgba(245,245,250,0.22);
    --accent: #47c78a;        /* brand green */
    --accent-2: #078a8a;      /* brand teal */
    --accent-dim: rgba(71,199,138,0.12);
    --accent-glow: rgba(71,199,138,0.35);
    --border: rgba(245,245,250,0.08);
    --border-light: rgba(71,199,138,0.14);
    --font-sans: 'Geist', -apple-system, 'Helvetica Neue', sans-serif;
    --font-mono: 'Geist Mono', 'SF Mono', ui-monospace, monospace;
    --font-sub: 'Manrope', 'Geist', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
    background: #001432;
    color: #f5f5fa;
    font-family: 'Geist', -apple-system, 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain — barely-there texture over the flat navy */
.lp::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: #47c78a; color: #001432 }

html { scrollbar-width: thin; scrollbar-color: rgba(71,199,138,.35) #000b1f }
body::-webkit-scrollbar { width: 10px }
body::-webkit-scrollbar-track { background: #000b1f }
body::-webkit-scrollbar-thumb { background: rgba(71,199,138,.3); border-radius: 5px }

.lp a { color: inherit; text-decoration: none }
.lp ul { list-style: none }
.lp img { max-width: 100%; display: block }
.lp .container { max-width: 1200px; margin: 0 auto; padding: 0 24px }
@media(min-width:640px) { .lp .container { padding: 0 40px } }

.lp :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px }

/* === SHARED ACCENTS === */
.lp .accent-text { color: var(--accent) }
.lp .eyebrow-dash {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--accent);
}

/* === BUTTONS === */
.lp .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .25s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-mono);
}
.lp .btn-primary {
    background: var(--accent);
    color: var(--bg);
}
.lp .btn-primary:hover {
    background: #5ed69a;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(71,199,138,0.35);
}
.lp .btn-ghost {
    color: rgba(245,245,250,.88);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: rgba(71,199,138,.5);
    padding: 12px 0;
    font-weight: 500;
}
.lp .btn-ghost:hover {
    color: var(--white);
    text-decoration-color: var(--accent);
}
.lp .btn-white {
    background: var(--gray);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}
.lp .btn-white:hover {
    background: var(--white);
    transform: translateY(-1px);
}
.lp .btn-glow {
    animation: lp-pulse-glow 2.5s ease-in-out infinite 1.5s;
}
@keyframes lp-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(71,199,138,0) }
    50% { box-shadow: 0 0 28px 4px rgba(71,199,138,.25) }
}

/* === TOP BANNER === */
.lp .top-banner {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
}
.lp .top-banner-inner {
    width: min(1000px, calc(100vw - 24px));
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    background: rgba(0,20,50,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(71,199,138,0.14);
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 12px;
    font-family: var(--font-mono);
}
.lp .top-banner-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: lp-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes lp-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(71,199,138,0.4) }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(71,199,138,0) }
}
.lp .top-banner-text { color: rgba(245,245,250,.72) }
.lp .top-banner-link {
    font-weight: 600;
    color: var(--accent);
    transition: opacity .2s;
    cursor: pointer;
    white-space: nowrap;
}
.lp .top-banner-link:hover { opacity: .8 }
@media(min-width:640px) {
    .lp .top-banner-inner { padding: 13px 32px; font-size: 13px }
}

/* === HEADER === */
.lp .header {
    position: absolute;
    top: 10px; left: 0; right: 0;
    z-index: 40;
}
.lp .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
}
@media(min-width:640px) { .lp .nav-container { padding: 20px 32px } }
@media(min-width:1024px) { .lp .nav-container { padding: 20px 40px } }

.lp .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lp .logo-wordmark {
    height: 28px;
    width: auto;
}
.lp .logo--small .logo-wordmark { height: 22px }
.lp .logo-wordmark--footer { height: 30px }

.lp .nav-links {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.lp .nav-links a {
    font-size: 15px;
    color: rgba(245,245,250,.75);
    transition: color .2s;
    padding: 8px 0;
    position: relative;
}
.lp .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: 2px;
    height: 1px;
    background: var(--accent);
    transition: right .3s var(--ease-out);
}
.lp .nav-links a:hover { color: var(--white) }
.lp .nav-links a:hover::after { right: 0 }
@media(min-width:768px) { .lp .nav-links { display: flex; gap: 40px } }

.lp .nav-cta {
    display: none;
    border-radius: 8px;
    background: transparent;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(71,199,138,.55);
    transition: all .25s var(--ease-out);
    font-family: var(--font-mono);
}
.lp .nav-cta:hover { background: var(--accent); color: var(--bg); box-shadow: 0 2px 20px rgba(71,199,138,0.3); border-color: var(--accent) }
@media(min-width:768px) { .lp .nav-cta { display: inline-block } }
.lp .nav-cta--small {
    display: inline-block;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
}

/* === STICKY NAV === */
.lp .sticky-nav {
    position: fixed;
    top: 12px; left: 12px; right: 12px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: all .5s var(--ease-out);
}
.lp .sticky-nav.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lp .sticky-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,11,31,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,.55), 0 0 0 1px rgba(71,199,138,0.1);
}
.lp .sticky-nav-links {
    display: none;
    flex: 1;
    justify-content: center;
    gap: 32px;
}
.lp .sticky-nav-links a {
    font-size: 14px;
    color: var(--gray);
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .2s;
}
.lp .sticky-nav-links a:hover { background: rgba(245,245,250,.08) }
@media(min-width:768px) {
    .lp .sticky-nav-inner { width: 780px; margin: 0 auto }
    .lp .sticky-nav-links { display: flex }
    .lp .sticky-nav { left: 50%; right: auto; transform: translateX(-50%) translateY(-16px) }
    .lp .sticky-nav.visible { transform: translateX(-50%) translateY(0) }
}

/* === HERO === */
.lp .hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}
.lp .hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88) brightness(.93);
}
/* Navy veil — soft, slightly heavier left (text) and bottom (marquee hand-off) */
.lp .hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,20,50,.70) 0%, rgba(0,20,50,.46) 42%, rgba(0,16,42,.18) 100%),
        linear-gradient(180deg, rgba(0,20,50,.48) 0%, rgba(0,20,50,.12) 38%, rgba(0,20,50,.55) 74%, #001432 97%);
}
.lp .hero-content {
    position: relative; z-index: 10;
    display: flex; align-items: center;
    width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 0 24px;
    min-height: 100dvh;
}
@media(min-width:640px) { .lp .hero-content { padding: 0 40px } }
.lp .hero-text-block {
    max-width: 680px;
    min-width: 0; /* keep the nowrap rotating line from inflating this flex item */
    padding-bottom: 140px;
}
@media(max-height:760px) { .lp .hero-text-block { padding-bottom: 110px } }

.lp .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: var(--accent);
    margin-bottom: 24px;
}
.lp .hero-title {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: clamp(2.3rem, 5.2vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--white);
}
.lp .hero-rotating-wrapper {
    display: flex;
    align-items: flex-end;
    height: 1.18em;
    overflow: hidden;
    perspective: 600px;
    width: 100%;
    text-align: left;
}
.lp .hero-rotating-text {
    display: inline-block;
    color: var(--white);
    font-weight: 300;
    white-space: nowrap;
    transform-origin: left bottom;
    transition: all .4s var(--ease-out);
    width: 100%;
}
.lp .hero-static-text { display: block; color: var(--white) }
.lp .hero-static-text .accent-text { font-weight: 400 }

.lp .hero-subtitle {
    margin-top: 30px;
    max-width: 660px;
    font-family: var(--font-sub);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.7;
    color: rgba(245,245,250,.85);
    text-shadow: 0 1px 24px rgba(0,11,31,.6);
}
.lp .hero-subtitle strong {
    color: #fff;
    font-weight: 600;
}
.lp .hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* === HERO MARQUEE === */
.lp .hero-marquee {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    z-index: 10;
}
.lp .marquee-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.lp .hero-marquee::before {
    content: '';
    display: block;
    height: 1px;
    margin: 0 auto 0;
    width: min(560px, 70vw);
    background: linear-gradient(90deg, transparent, rgba(71,199,138,.4), transparent);
}
.lp .marquee {
    overflow: hidden;
    padding: 20px 0 8px;
    mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%);
}
.lp .marquee-track {
    display: flex;
    gap: 56px;
    align-items: center;
    width: max-content;
    animation: lp-scroll 32s linear infinite;
}
.lp .marquee:hover .marquee-track { animation-play-state: paused }
@media(min-width:640px) { .lp .marquee-track { gap: 76px } }

/* Full-colour partner logos — no grayscale, no white-out filter */
.lp .marquee-track .marquee-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    white-space: nowrap;
    opacity: .92;
    transition: opacity .3s, transform .3s var(--ease-out);
    height: 30px;
}
.lp .marquee-track .marquee-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.lp .marquee-track .marquee-logo img {
    height: 26px;
    width: auto;
    object-fit: contain;
}
/* JPG logos ship on the brand navy — lighten blend erases the box over any backdrop */
.lp .marquee-track .marquee-logo--blend img {
    mix-blend-mode: lighten;
    height: 28px;
}
.lp .marquee-track .marquee-logo img.marquee-icon { height: 24px }
.lp .marquee-name {
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.01em;
    color: var(--gray);
    line-height: 1;
}
.lp .marquee-name--caps {
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: .14em;
}
@keyframes lp-scroll {
    0% { transform: translateX(0) }
    100% { transform: translateX(-50%) }
}

/* === STATS SECTION === */
.lp .stats-section {
    background: var(--bg);
    padding: 112px 0;
    scroll-margin-top: 48px;
    position: relative;
}
.lp .stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 90vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(71,199,138,.18), transparent);
}
.lp .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
}
@media(min-width:1024px) { .lp .stats-grid { grid-template-columns: 1fr 1fr; gap: 48px } }

.lp .stat-block { position: relative; text-align: center }
.lp .stat-bg-text {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: rgba(245,245,250,.025);
    pointer-events: none;
    user-select: none;
}
.lp .stat-block .stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.lp .stat-value {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: var(--white);
    position: relative;
}
.lp .stat-accent { color: var(--accent) }
.lp .stat-desc {
    margin-top: 16px;
    font-size: 15px;
    color: var(--text-muted);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Pillars */
.lp .pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(245,245,250,.07);
    border-radius: 16px;
    overflow: hidden;
}
@media(min-width:768px) { .lp .pillars { grid-template-columns: repeat(3, 1fr) } }
.lp .pillar-card {
    background: #021834;
    padding: 40px;
    transition: background .3s;
}
.lp .pillar-card:hover { background: #02203f }
.lp .pillar-fig {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: rgba(71,199,138,.55);
    margin-bottom: 32px;
}
.lp .pillar-icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 32px;
}
.lp .pillar-icon-area svg { width: 64px; height: 64px; transition: transform .4s var(--ease-out); filter: drop-shadow(0 0 14px rgba(71,199,138,.18)) }
.lp .pillar-card:hover .pillar-icon-area svg { transform: translateY(-3px) scale(1.04) }
.lp .pillar-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--white);
    margin-bottom: 8px;
}
.lp .pillar-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bridge */
.lp .section-bridge {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp .bridge-line {
    height: 1px;
    width: 128px;
    background: var(--accent);
    opacity: .5;
}
.lp .bridge-text {
    margin-top: 24px;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -.01em;
    color: var(--white);
    text-align: center;
}

/* === PRODUCT SECTION === */
.lp .product-section {
    background: var(--bg);
    padding: 0 0 32px;
    scroll-margin-top: 48px;
}
.lp .product-header {
    max-width: 640px;
    margin-bottom: 64px;
}
.lp .section-tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: var(--accent);
    margin-bottom: 18px;
}
.lp .section-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 24px;
}
.lp .section-desc {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px;
}

.lp .product-cards {
    display: grid;
    gap: 1px;
    background: rgba(245,245,250,.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}
@media(min-width:768px) { .lp .product-cards { grid-template-columns: repeat(3, 1fr) } }
.lp .product-card {
    background: #021834;
    padding: 40px;
    transition: background .3s;
    position: relative;
}
.lp .product-card::after {
    content: '';
    position: absolute;
    left: 40px; right: 40px; top: 0;
    height: 1px;
    background: var(--accent);
    opacity: 0;
    transition: opacity .3s;
}
.lp .product-card:hover { background: #02203f }
.lp .product-card:hover::after { opacity: .6 }
.lp .product-card h3 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--white);
    margin-bottom: 12px;
}
.lp .product-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Architecture ("vault") card */
.lp .vault-card { margin-top: 48px }
.lp .vault-card-inner {
    border-radius: 24px;
    border: 1px solid rgba(71,199,138,.22);
    background: linear-gradient(180deg, #02203f 0%, #001432 100%);
    overflow: hidden;
}
.lp .vault-header {
    padding: 32px 40px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.lp .vault-name {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -.01em;
}
.lp .vault-subtitle {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}
.lp .vault-mark {
    height: 44px;
    width: auto;
    opacity: .8;
    flex-shrink: 0;
}
.lp .vault-divider {
    margin: 0 40px;
    height: 1px;
    background: rgba(245,245,250,.08);
}
.lp .vault-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 40px;
}
@media(min-width:640px) { .lp .vault-params { grid-template-columns: repeat(4, 1fr) } }
.lp .vault-param-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(71,199,138,.65);
    margin-bottom: 6px;
}
.lp .vault-param-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}
.lp .vault-param-value .check { color: var(--accent) }
.lp .vault-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    text-align: center;
    gap: 16px;
}
.lp .vault-metric-value {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 3.0vw, 2.2rem);
    font-weight: 300;
    letter-spacing: -.01em;
    color: var(--accent);
}
.lp .vault-metric-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-muted);
    margin-top: 8px;
}

/* === FEATURES SECTION === */
.lp .features-section {
    background: var(--bg);
    padding: 112px 0;
    scroll-margin-top: 48px;
}
.lp .features-header {
    text-align: left;
    margin-bottom: 48px;
    max-width: 640px;
}
.lp .features-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
@media(min-width:640px) { .lp .features-stats { grid-template-columns: repeat(4, 1fr); gap: 48px } }
.lp .feature-stat { text-align: center }
.lp .feature-stat-value {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: var(--white);
}
.lp .feature-stat-label {
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}
@media(min-width:640px) {
    .lp .feature-stat + .feature-stat { border-left: 1px solid var(--border) }
}

/* CTA Block — the temple, veiled in navy */
.lp .cta-block {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 88px 32px;
    isolation: isolate;
}
.lp .cta-bg-image {
    position: absolute; inset: 0; z-index: 0;
    background: url('hero-poster.jpg') center 38% / cover no-repeat;
    filter: saturate(.75) brightness(.7);
}
.lp .cta-bg-gradient {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 70% at 50% 105%, rgba(71,199,138,0.22) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0,20,50,.88) 0%, rgba(0,20,50,.55) 55%, rgba(0,11,31,.92) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
}
.lp .cta-content { position: relative; z-index: 3 }
.lp .cta-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.lp .cta-content p {
    max-width: 520px;
    margin: 0 auto 32px;
    color: rgba(245,245,250,.78);
    font-size: 15px;
    line-height: 1.7;
}

/* === POWERED BY / ECOSYSTEM === */
.lp .powered-section {
    background: var(--bg);
    padding: 80px 0;
}
.lp .powered-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        radial-gradient(ellipse 60% 90% at 100% 50%, rgba(71,199,138,.05) 0%, transparent 60%),
        rgba(245,245,250,.02);
    overflow: hidden;
    padding: 48px 40px;
    position: relative;
}
@media(min-width:768px) {
    .lp .powered-card { flex-direction: row; align-items: center; padding: 56px 56px }
}
.lp .powered-left { flex: 1; min-width: 0 }
.lp .powered-title {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.lp .powered-title .accent-text { font-weight: 400 }
.lp .powered-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 28px;
}
.lp .powered-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 600;
    transition: all .2s;
    border: none;
    cursor: pointer;
}
.lp .powered-btn:hover {
    background: #5ed69a;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(71,199,138,.3);
}
.lp .powered-btn-arrow { transition: transform .2s }
.lp .powered-btn:hover .powered-btn-arrow { transform: translateX(4px) }
.lp .powered-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ecosystem Grid */
.lp .ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.lp .eco-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 12px;
    background: rgba(245,245,250,.03);
    border: 1px solid rgba(245,245,250,.06);
    transition: all .3s;
    min-width: 96px;
}
.lp .eco-item:hover {
    background: rgba(71,199,138,.06);
    border-color: rgba(71,199,138,.35);
    transform: translateY(-2px);
}
.lp .eco-glyph {
    width: 22px;
    height: 22px;
    color: var(--accent);
    opacity: .85;
}
.lp .eco-item:hover .eco-glyph { opacity: 1 }
.lp .eco-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(245,245,250,.55);
}

/* === FAQ SECTION === */
.lp .faq-section {
    background: var(--bg);
    padding: 80px 0 40px;
    scroll-margin-top: 48px;
}
.lp .faq-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
    border-top: 1px solid var(--border);
}
@media(min-width:1024px) { .lp .faq-layout { flex-direction: row; align-items: flex-start } }
.lp .faq-header-col { flex: 0 0 40% }
@media(min-width:1024px) { .lp .faq-header-col { position: sticky; top: 120px } }
.lp .faq-heading {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 200;
    letter-spacing: -.01em;
    color: var(--white);
}

/* Lore Card */
.lp .faq-lore {
    position: relative;
    margin: 36px 0 0;
    padding: 22px 22px 20px;
    max-width: 440px;
    background: linear-gradient(165deg, rgba(71,199,138,.07) 0%, rgba(71,199,138,.025) 45%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(245,245,250,.06);
    border-radius: 2px;
    overflow: hidden;
    isolation: isolate;
}
.lp .faq-lore::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(120% 60% at 0% 0%, rgba(71,199,138,.08), transparent 60%);
    pointer-events: none;
    z-index: -1;
}
.lp .faq-lore-aurora {
    position: absolute;
    left: -20%; right: -20%; top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(71,199,138,.85) 50%, transparent 100%);
    filter: blur(.3px);
    box-shadow: 0 0 12px rgba(71,199,138,.35);
    pointer-events: none;
}
.lp .faq-lore-corner {
    position: absolute;
    width: 10px; height: 10px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    opacity: .7;
    pointer-events: none;
}
.lp .faq-lore-corner--tl { top: 6px; left: 6px; border-top-width: 1px; border-left-width: 1px }
.lp .faq-lore-corner--tr { top: 6px; right: 6px; border-top-width: 1px; border-right-width: 1px }
.lp .faq-lore-corner--bl { bottom: 6px; left: 6px; border-bottom-width: 1px; border-left-width: 1px }
.lp .faq-lore-corner--br { bottom: 6px; right: 6px; border-bottom-width: 1px; border-right-width: 1px }
.lp .faq-lore-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.lp .faq-lore-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}
.lp .faq-lore-glyph { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0 }
.lp .faq-lore-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(71,199,138,.45), transparent);
    opacity: .8;
}
.lp .faq-lore-text {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    font-family: var(--font-mono);
    font-size: 12.5px;
    line-height: 1.78;
    color: rgba(245,245,250,.62);
    letter-spacing: .005em;
}
.lp .faq-lore-quote {
    position: absolute;
    top: -14px; left: -4px;
    font-family: var(--font-sans);
    font-size: 42px;
    line-height: 1;
    color: var(--accent);
    opacity: .35;
    pointer-events: none;
    user-select: none;
}
.lp .faq-lore-accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

/* FAQ List */
.lp .faq-list-col { flex: 1 }
.lp .faq-item {
    border-bottom: 1px solid rgba(245,245,250,.07);
    margin-bottom: 4px;
}
.lp .faq-question {
    display: flex;
    align-items: center;
    padding: 24px 16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-family: inherit;
}
.lp .faq-question h3 {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    margin: 0;
    transition: color .2s;
}
.lp .faq-question:hover h3 { color: var(--accent) }
.lp .faq-toggle {
    position: relative;
    width: 16px; height: 16px;
    margin-right: 20px;
    flex-shrink: 0;
}
.lp .faq-toggle::before,
.lp .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform .4s ease;
}
.lp .faq-toggle::before {
    top: 50%; left: 0;
    width: 100%; height: 2px;
    transform: translateY(-50%);
}
.lp .faq-toggle::after {
    top: 0; left: 50%;
    width: 2px; height: 100%;
    transform: translateX(-50%);
}
.lp .faq-item.expanded .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
}
.lp .faq-item.expanded .faq-question:hover h3 { color: var(--white) }
.lp .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s ease, opacity .4s ease;
}
.lp .faq-answer p {
    padding: 0 16px 24px 52px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.lp .faq-item.expanded .faq-answer {
    max-height: 400px;
    opacity: 1;
}

/* === NEWSLETTER === */
.lp .newsletter-section {
    background: var(--bg);
    padding: 80px 0;
}
.lp .newsletter-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
@media(min-width:768px) {
    .lp .newsletter-block { flex-direction: row; align-items: center; justify-content: space-between }
}
.lp .newsletter-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.01em;
    color: var(--white);
    max-width: 400px;
    line-height: 1.4;
}
.lp .newsletter-form {
    width: 100%;
    max-width: 500px;
    padding: 36px 40px;
    border-radius: 20px;
    background: rgba(245,245,250,.035);
    border: 1px solid var(--border);
}
.lp .newsletter-form-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gray);
    margin-bottom: 12px;
}
.lp .newsletter-input-row { display: flex }
.lp .newsletter-input-row input {
    flex: 1;
    min-width: 0;
    padding: 13px 20px;
    border: 1px solid var(--border);
    border-right: none;
    background: var(--bg-deep);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--white);
    outline: none;
    border-radius: 50px 0 0 50px;
    transition: border-color .2s;
}
.lp .newsletter-input-row input:focus { border-color: rgba(71,199,138,.5) }
.lp .newsletter-input-row input::placeholder { color: var(--text-dim) }
.lp .newsletter-btn {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 13px 22px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: filter .2s;
    white-space: nowrap;
}
.lp .newsletter-btn:hover { background: #5ed69a }

/* === FOOTER === */
.lp .footer {
    background: var(--bg-deep);
    padding: 64px 0 80px;
    border-top: 1px solid rgba(245,245,250,.05);
    position: relative;
}
.lp .footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: min(700px, 80vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(71,199,138,.3), transparent);
}
.lp .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
@media(min-width:768px) {
    .lp .footer-inner { flex-direction: row; justify-content: space-between }
}
.lp .footer-left { max-width: 400px }
.lp .footer-desc {
    margin: 24px 0 24px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}
.lp .footer-social { display: flex; gap: 20px }
.lp .social-link {
    color: rgba(245,245,250,.4);
    transition: color .2s, transform .2s;
}
.lp .social-link:hover { color: var(--accent); transform: translateY(-2px) }
.lp .social-link svg { width: 18px; height: 18px }
.lp .footer-right { display: flex; gap: 60px; flex-wrap: wrap }
.lp .footer-col-title {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gray);
    margin-bottom: 18px;
    font-weight: 500;
}
.lp .footer-col ul li { margin-bottom: 12px }
.lp .footer-col ul li a {
    font-size: 13.5px;
    color: var(--text-dim);
    transition: color .2s;
}
.lp .footer-col ul li a:hover { color: var(--accent) }
.lp .footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(245,245,250,.05);
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-dim);
}

/* === ANIMATIONS === */
.lp [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.lp [data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .lp .marquee-track { animation: none }
    .lp .btn-glow, .lp .top-banner-dot { animation: none }
    .lp [data-animate] { opacity: 1; transform: none; transition: none }
    .lp .hero-rotating-text { transition: none }
}
