
.landing-page {
    --bg: #0a0a09;
    --bg-elev: #131211;
    --ink: #f3f1ea;
    --muted: #93897d;
    --muted-dim: #5c564e;
    --lime: #27f246;              
    --lime-deep: #27982f;
    --lime-soft: #ffb27a;
    --line: rgba(243, 241, 234, 0.1);
    --line-soft: rgba(243, 241, 234, 0.05);
    --font-display: 'Bricolage Grotesque', Inter, ui-sans-serif, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ---------- Hero 3D Scene ---------- */
.hero-3d-scene {
    position: absolute;
    top: 12%;
    right: 4%;
    width: 340px;
    height: 340px;
    z-index: 1;
    cursor: grab;
    opacity: 0.9;
}

.hero-3d-scene canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-3d-scene.dragging {
    cursor: grabbing;
}

.hero-3d-hint {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.7;
    animation: hint-fade 4s ease-in-out infinite;
}

.hero-3d-hint svg {
    width: 14px;
    height: 14px;
}

@keyframes hint-fade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.25; }
}

@media (max-width: 1200px) {
    .hero-3d-scene {
        width: 280px;
        height: 280px;
        right: 1%;
    }
}

@media (max-width: 900px) {
    .hero-3d-scene {
        display: none;
    }
}

/* ---------- Grain Texture Overlay ---------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 190;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: overlay;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(47, 230, 68, 0.953);
    transition: opacity 0.25s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.has-custom-cursor {
    cursor: none;
}

.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor .btn-landing {
    cursor: none;
}

.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring {
    opacity: 1;
}

.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--lime);
    background: rgba(255, 77, 36, 0.08);
}

.cursor-hover .cursor-dot {
    opacity: 0;
}

.cursor-hidden .cursor-dot,
.cursor-hidden .cursor-ring {
    opacity: 0;
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

.has-custom-cursor .hero-3d-scene,
.has-custom-cursor .hero-3d-scene.dragging {
    cursor: none;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--lime);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 200;
    box-shadow: 0 0 12px rgba(47, 230, 68, 0.953);
}

/* ---------- Navbar ---------- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(10, 10, 9, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.3s;
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.landing-nav-brand .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--lime);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: #0a0a09;
    letter-spacing: 0;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-nav-links .nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: color 0.25s, background 0.25s;
}

.landing-nav-links .nav-link:hover {
    color: var(--ink);
    background: var(--line-soft);
}

.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}

.btn-landing-primary {
    background: var(--lime);
    color: #0a0a09;
}

.btn-landing-primary:hover {
    box-shadow: 0 0 0 6px rgba(30, 231, 12, 0.603);
    transform: translateY(-2px);
}

.btn-landing-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-landing-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
}

/* ---------- Hero Section ---------- */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 48px 160px; /* Increased bottom padding to 160px to push content up away from scroll indicator */
    overflow: hidden;
}

/* Ambient glow — one restrained ember wash, not a neon cluster */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 680px;
    height: 680px;
    top: -20%;
    left: -12%;
    background: radial-gradient(circle, rgba(255, 77, 36, 0.1) 0%, transparent 70%);
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 77, 36, 0.05) 0%, transparent 70%);
}

.hero-glow-3 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, rgba(255, 77, 36, 0.04) 0%, transparent 70%);
}

/* Floating geometric shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    color: var(--ink);
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
}

.floating-shape svg {
    width: 100%;
    height: 100%;
}

.shape-1 { width: 80px; height: 80px; top: 15%; left: 8%; }
.shape-2 { width: 60px; height: 60px; top: 25%; right: 12%; }
.shape-3 { width: 100px; height: 100px; bottom: 20%; left: 15%; }
.shape-4 { width: 50px; height: 50px; top: 60%; right: 25%; }
.shape-5 { width: 70px; height: 70px; bottom: 30%; right: 8%; }
.shape-6 { width: 40px; height: 40px; top: 40%; left: 25%; }
.shape-7 { width: 90px; height: 90px; top: 10%; left: 45%; }
.shape-8 { width: 55px; height: 55px; bottom: 15%; left: 40%; }

/* Grid lines background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: none;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8.6vw, 7.4rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    padding-right: 0.1em;
    margin-right: -0.1em;
}

.hero-title .char {
    display: inline-block;
}

.hero-title .highlight {
    color: var(--lime);
    position: relative;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn-landing-primary {
    padding: 15px 34px;
    font-size: 14.5px;
}

.hero-cta .btn-landing-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.hero-cta .btn-landing-primary:hover svg {
    transform: translateX(4px);
}

/* Hero visual — floating app preview card */
.hero-visual {
    position: relative;
    z-index: 1;
    margin: 56px auto 0;
    max-width: 1100px;
    perspective: 1200px;
}

/* Swiper container adjustments */
.carousel-aura {
    position: absolute;
    width: 100vw;
    height: 100vh;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--lime);
    opacity: 0.1;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

.carousel-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(var(--line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.hero-swiper .swiper-slide {
    width: 60%;
    max-width: 500px;
    aspect-ratio: 4/5;
}

.hero-visual-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.hero-visual-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.55) contrast(1.08) brightness(0.9);
    transition: filter 0.6s ease;
}

.hero-visual-frame:hover img {
    filter: grayscale(0) contrast(1.05) brightness(0.95);
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 9, 0) 40%, rgba(10, 10, 9, 0.85) 100%);
}

.hero-visual-glow {
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 77, 36, 0.2), transparent 40%);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

/* Accent line */
.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 1;
}

.hero-accent-line svg {
    width: 100%;
    height: 2px;
}

.hero-accent-line line {
    stroke: var(--line);
    stroke-width: 1;
    opacity: 1;
}

/* Ensure hero content stays above absolute elements */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@media (max-height: 700px) {
    .scroll-indicator {
        display: none;
    }
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Features Section (legacy grid — kept for other pages that reuse it) ---------- */
.landing-features {
    position: relative;
    padding: 100px 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: var(--lime);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header .section-label {
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.08;
}

.section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
}

.feature-card {
    background: var(--bg);
    border: none;
    border-radius: 0;
    padding: 40px 32px;
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--lime);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: var(--bg-elev);
    transform: none;
    box-shadow: none;
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: none;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--lime);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    border-color: var(--lime);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Stats Section — "Key Facts" ---------- */
.landing-stats {
    padding: 90px 48px;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 32px;
    border-left: 1px solid var(--line-soft);
}

.stat-item:first-child {
    border-left: none;
    padding-left: 0;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 2px;
}

.stat-number .suffix {
    color: var(--lime);
    font-size: 0.7em;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ---------- How It Works Section ---------- */
.landing-steps {
    padding: 110px 48px;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    display: none;
}

.step-card {
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 0 32px;
    border-left: 1px solid var(--line-soft);
}

.step-card:first-child {
    border-left: none;
    padding-left: 0;
}

.step-number {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    border: none;
    display: block;
    margin: 0 0 28px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--lime);
    transition: none;
}

.step-card:hover .step-number {
    background: none;
    border-color: transparent;
    box-shadow: none;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.step-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
    margin-inline: 0;
}

/* ---------- Feature Story (pinned, typographic) ---------- */
.feature-story {
    position: relative;
    background: var(--bg);
}

.feature-story-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-aura {
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--fs-color, #ff4d24);
    opacity: 0.12;
    filter: blur(160px);
    transition: background-color 0.6s ease;
    pointer-events: none;
    z-index: 0;
    will-change: background-color;
}

.fs-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(var(--line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.fs-kicker {
    position: absolute;
    top: 40px;
    left: 48px;
    right: 48px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fs-kicker-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.fs-progress {
    display: flex;
    gap: 8px;
}

.fs-dot {
    width: 22px;
    height: 2px;
    border-radius: 0;
    background: var(--line);
    transition: background 0.35s ease, width 0.35s ease;
}

.fs-dot.active {
    background: var(--fs-color, #48ff24);
    width: 34px;
}

.fs-panels {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

.fs-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    z-index: 1;
}

.fs-panel.active {
    opacity: 1;
    z-index: 1;
}

.fs-count {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--fs-color, #33ff24);
    margin-bottom: 22px;
}

.fs-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7.2vw, 5.6rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}

.fs-highlight {
    color: var(--fs-color, #24ff41);
    font-style: italic;
    transition: color 0.6s ease;
}

.fs-desc {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 480px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .fs-kicker {
        left: 24px;
        right: 24px;
        top: 24px;
    }

    .fs-panels {
        padding: 0 24px;
    }
}

/* ---------- Showcase Section (parallax images, grayscale → color) ---------- */
.landing-showcase {
    padding: 110px 48px 60px;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 1px;
    max-width: 1100px;
    margin: 60px auto 0;
    background: var(--line-soft);
}

.showcase-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: var(--bg-elev);
}

.showcase-item.tall { grid-row: 1 / 3; min-height: 520px; }
.showcase-item.short { min-height: 248px; }

.showcase-item .img-wrap {
    position: absolute;
    inset: -10% 0;
    height: 120%;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.08) brightness(0.85);
    transition: filter 0.7s ease, transform 0.7s ease;
}

.showcase-item:hover img {
    filter: grayscale(0) contrast(1.05) brightness(0.92);
    transform: scale(1.03);
}

.showcase-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 9, 0.05) 0%, rgba(10, 10, 9, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.showcase-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
}

.showcase-caption .tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 8px;
}

.showcase-caption h4 {
    font-family: var(--font-display);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ---------- Testimonials (infinite marquee) ---------- */
.landing-testimonials {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-marquee {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    width: max-content;
}

.testimonial-card {
    width: 340px;
    flex: 0 0 auto;
    background: var(--bg-elev);
    border: 1px solid rgba(199, 255, 34, 0.2);
    box-shadow: 0 0 20px rgba(199, 255, 34, 0.08), inset 0 0 10px rgba(199, 255, 34, 0.03);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(199, 255, 34, 0.4);
    box-shadow: 0 0 30px rgba(199, 255, 34, 0.15), inset 0 0 15px rgba(199, 255, 34, 0.05);
}

.testimonial-stars {
    color: var(--lime);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-person img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
    filter: grayscale(1);
}

.testimonial-person .name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.testimonial-person .role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
}

.landing-testimonials .fade-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.landing-testimonials .fade-edge.left {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.landing-testimonials .fade-edge.right {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

/* ---------- CTA Section ---------- */
.landing-cta {
    padding: 130px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-soft);
}

.cta-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(36, 255, 102, 0.07) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.06;
}

.cta-content p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 36px;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.landing-footer {
    padding: 32px 48px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
}

.landing-footer a {
    color: var(--muted);
    text-decoration: none;
}

.landing-footer a:hover {
    color: var(--lime);
    text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .landing-nav {
        padding: 14px 20px;
    }

    .landing-hero {
        padding: 120px 24px 80px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .step-card {
        border-left: none;
        padding-left: 0;
        padding-top: 24px;
        border-top: 1px solid var(--line-soft);
    }

    .step-card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .steps-grid::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .stat-item, .stat-item:first-child {
        padding: 0 12px;
        align-items: center;
        border-left: none;
    }

    .stat-label {
        text-align: center;
    }

    .landing-features,
    .landing-steps,
    .landing-cta {
        padding: 60px 24px;
    }

    .landing-stats {
        padding: 48px 24px;
    }

    .landing-showcase {
        padding: 60px 24px 40px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .showcase-item.tall,
    .showcase-item.short {
        min-height: 320px;
        grid-row: auto;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .landing-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .landing-nav {
        padding: 12px 16px;
    }

    .landing-nav-brand {
        font-size: 1.05rem;
        gap: 8px;
    }

    .landing-nav-brand .brand-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 5px;
    }

    .landing-nav-links {
        gap: 6px;
    }

    .landing-nav-links .nav-link {
        display: none;
    }

    .landing-nav-links .btn-landing {
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 600;
        gap: 4px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-landing {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .landing-nav {
        padding: 10px 12px;
    }

    .landing-nav-brand {
        font-size: 0.95rem;
        gap: 6px;
    }

    .landing-nav-links {
        gap: 5px;
    }

    .landing-nav-links .btn-landing {
        padding: 6px 9px;
        font-size: 11px;
    }
}

/* ---------- GSAP helper: invisible until animated ---------- */
.gs-reveal {
    visibility: hidden;
}