/* ===== Root ===== */
.landing-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #020E0A;
    color: #EFEFEF;
    font-family: 'Space Grotesk', 'Arial Black', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* ===== Sticky Nav ===== */
.landing-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 14, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.19);
}

.landing-nav-brand {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.25rem;
    color: #00C870;
    text-decoration: none;
}

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

.landing-nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8BC9A3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav-links a:hover {
    color: #EFEFEF;
}

.landing-nav-links a.landing-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    height: 34px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    background: #00C870;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.landing-login-btn:hover {
    background: #00e07d;
    transform: scale(1.04);
}

/* ===== Hero ===== */
.landing-hero {
    align-self: stretch;
    background:
        url('/images/landing/particles-tile.png') repeat,
        #020E0A;
    background-size: 400px 400px;
    padding: 2rem 3rem;
    position: relative;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #020E0A 0%, transparent 100%);
    pointer-events: none;
}

.landing-hero-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-hero-ticket {
    width: 420px;
    flex-shrink: 0;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 200, 112, 0.12));
    animation: landingFadeInUp 0.8s ease-out both;
}

.landing-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-brand {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
    animation: landingFadeInUp 0.8s ease-out 0.1s both;
}

.brand-tik {
    color: #00C870;
}

.brand-lynx {
    color: #FFFFFF;
}

.landing-brand-accent {
    width: 120px;
    height: 3px;
    background: #00C870;
    border-radius: 2px;
    margin: 8px 0 16px;
    animation: landingFadeInUp 0.8s ease-out 0.15s both;
}

.landing-tagline {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    animation: landingFadeInUp 0.8s ease-out 0.2s both;
}

.landing-tagline span {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(0.875rem, 1.8vw, 1.375rem);
    font-weight: 700;
    color: #00C870;
    letter-spacing: 4px;
}

.landing-hero-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, #00C870, transparent);
    margin-bottom: 8px;
    animation: landingFadeInUp 0.8s ease-out 0.25s both;
}

.landing-beta-callout {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #00C870;
    letter-spacing: 3px;
    margin: 0 0 8px;
    animation: landingFadeInUp 0.8s ease-out 0.3s both;
}

.landing-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8BC9A3;
    line-height: 1.6;
    margin: 0;
    animation: landingFadeInUp 0.8s ease-out 0.35s both;
}

/* CTA buttons */
.landing-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: landingFadeInUp 0.8s ease-out 0.4s both;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2.25rem;
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
}

.landing-cta-primary {
    color: #020E0A;
    background: #00C870;
    box-shadow: 0 0 32px rgba(0, 200, 112, 0.31);
}

.landing-cta-primary:hover {
    background: #00e07d;
    transform: scale(1.04);
    box-shadow: 0 0 48px rgba(0, 200, 112, 0.4);
}

.landing-cta-outline {
    color: #00C870;
    background: transparent;
    border: 2px solid rgba(0, 200, 112, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.landing-cta-outline:hover {
    background: rgba(0, 200, 112, 0.08);
    border-color: rgba(0, 200, 112, 0.7);
    color: #00e07d;
}

/* Note */
.landing-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #6E7870;
    letter-spacing: 0.5px;
    animation: landingFadeInUp 0.8s ease-out 0.5s both;
}

/* Dots */
.landing-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    animation: landingFadeInUp 0.8s ease-out 0.55s both;
}

.landing-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00C870;
    animation: landingPulse 2s ease-in-out infinite;
}

.landing-dots span.dim {
    background: rgba(0, 200, 112, 0.375);
}

.landing-dots span:nth-child(2) { animation-delay: 0.3s; }
.landing-dots span:nth-child(3) { animation-delay: 0.6s; }
.landing-dots span:nth-child(4) { animation-delay: 0.9s; }
.landing-dots span:nth-child(5) { animation-delay: 1.2s; }

/* ===== Stats Bar ===== */
.landing-stats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 5rem 1.5rem;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.landing-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.landing-stat-value {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00C870;
}

.landing-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #909090;
}

.landing-stat-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.5625rem;
    color: rgba(0, 200, 112, 0.5);
    letter-spacing: 0.3px;
}

/* ===== Features ===== */
.landing-features {
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 3.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: #111111;
}

.landing-features .landing-section-heading,
.landing-features .landing-features-grid {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.landing-section-heading {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.625rem);
    color: #EFEFEF;
    margin-bottom: 0.5rem;
    text-align: center;
}

.landing-section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #8A9A94;
    max-width: 600px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
    text-align: center;
}

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

.landing-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.25s;
}

.landing-feature-card:hover {
    border-color: rgba(0, 200, 112, 0.4);
    box-shadow: 0 2px 16px rgba(0, 200, 112, 0.06);
}

.landing-feature-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-feature-icon {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    color: #00C870;
    width: 1.125rem;
    text-align: center;
}

.landing-feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #00C870;
    margin: 0;
}

.landing-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8A9A94;
    line-height: 1.6;
    margin: 0;
}

/* ===== How It Works ===== */
.landing-how {
    width: 100%;
    background: #0E0E0E;
    padding: 3.5rem 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.landing-how-steps {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.landing-how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
}

.landing-step-number {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #00C870;
    color: #020E0A;
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(0, 200, 112, 0.35);
    flex-shrink: 0;
}

.landing-how-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #EFEFEF;
    margin: 0;
    text-align: center;
}

.landing-how-step p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8A9A94;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ===== Beta Application ===== */
.landing-beta {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 3.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.landing-beta-heading {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: #00C870;
    text-align: center;
    margin-bottom: 0.5rem;
}

.landing-beta-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8A9A94;
    max-width: 520px;
    margin: 0 auto 1.25rem;
    line-height: 1.7;
    text-align: center;
}

.landing-beta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #EFEFEF;
    margin-bottom: 0.25rem;
}

.form-label .optional {
    font-weight: 400;
    color: #5A9A7A;
    font-size: 0.7rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #EFEFEF;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    height: 36px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #00C870;
    box-shadow: 0 0 12px rgba(0, 200, 112, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6E7870;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300C870' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.form-select option {
    background: #1A1A1A;
    color: #EFEFEF;
}

.form-textarea {
    resize: vertical;
    min-height: 72px;
    height: auto;
}

.form-submit-wrap {
    text-align: center;
    padding-top: 0.5rem;
}

.landing-beta-success {
    text-align: center;
    padding: 3rem 1rem;
}

.landing-beta-success h3 {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    color: #00C870;
    margin-bottom: 1rem;
}

.landing-beta-success p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #8A9A94;
    line-height: 1.7;
}

/* ===== FAQ ===== */
.landing-faq {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.landing-faq .landing-section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}

.landing-faq-list {
    display: flex;
    flex-direction: column;
}

.landing-faq-item {
    border-bottom: 1px solid rgba(0, 200, 112, 0.1);
    padding: 1rem 0;
}

.landing-faq-item summary {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #EFEFEF;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
    content: '+';
    color: #00C870;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.landing-faq-item[open] summary::after {
    content: '\2212';
}

.landing-faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8A9A94;
    line-height: 1.7;
    padding-top: 0.75rem;
    margin: 0;
}

/* ===== Footer ===== */
.landing-footer {
    padding: 2rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: #5A5A5A;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.landing-footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: normal;
}

.landing-footer-phone-icon {
    color: #00C870;
    font-size: 0.875rem;
}

.landing-footer-help {
    color: #6E7870;
    font-weight: 400;
    letter-spacing: normal;
}

.landing-footer-phone {
    color: #00C870;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.landing-footer-phone:hover {
    color: #1FE889;
    text-decoration: underline;
}

.landing-footer-sep {
    color: #6E7870;
    font-weight: 400;
    letter-spacing: normal;
}

.landing-footer-phone-alt {
    color: #909090;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: normal;
}

.landing-footer-phone-alt:hover {
    color: #B0B0B0;
    text-decoration: underline;
}

.landing-footer-copy {
    /* preserves the prior copyright styling */
}

.landing-footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: normal;
}

.landing-footer-legal-link {
    color: #5A5A5A;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-footer-legal-link:hover {
    color: #8A9A94;
}

/* ===== Video Overlay ===== */
.landing-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(2, 14, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: landingFadeIn 0.3s ease-out;
}

.landing-video-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 90vw;
}

.landing-video-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #5A9A7A;
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.2s;
    line-height: 1;
}

.landing-video-close:hover { color: #00C870; }

.landing-overlay-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
}

.landing-overlay-tab {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    color: #5A9A7A;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.landing-overlay-tab:hover { color: #EFEFEF; }
.landing-overlay-tab.active { color: #EFEFEF; border-bottom-color: #00C870; }

.landing-overlay-video video {
    width: min(90vw, 960px);
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 200, 112, 0.15);
}

/* ===== Animations ===== */
@keyframes landingFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes landingFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes landingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%      { opacity: 0.9; transform: scale(1.3); }
}

/* Suppress hero entrance animations on the interactive (post-hydration) render
   so the prerendered animation does not replay when the Blazor circuit connects.
   The infinite landingPulse on .landing-dot children is left alone. */
.landing-hero--no-intro .landing-hero-ticket,
.landing-hero--no-intro .landing-brand,
.landing-hero--no-intro .landing-brand-accent,
.landing-hero--no-intro .landing-tagline,
.landing-hero--no-intro .landing-hero-divider,
.landing-hero--no-intro .landing-beta-callout,
.landing-hero--no-intro .landing-hero-sub,
.landing-hero--no-intro .landing-cta-wrap,
.landing-hero--no-intro .landing-dots {
    animation: none !important;
}

/* ===== Pricing Section ===== */
.landing-pricing {
    width: 100%;
    max-width: 1100px;
    padding: 3.5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ===== Beta Banner Bar ===== */
.landing-beta-banner-bar {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 200, 112, 0.13) 0%, rgba(0, 200, 112, 0.06) 100%);
    border-top: 1px solid rgba(0, 200, 112, 0.22);
    border-bottom: 1px solid rgba(0, 200, 112, 0.22);
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00C870;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.landing-beta-banner-bar i {
    font-size: 0.6875rem;
    opacity: 0.6;
}

.landing-pricing-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.landing-pricing-body .landing-section-heading {
    margin-bottom: 0.75rem;
}

.landing-pricing-body .landing-section-intro {
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.landing-pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-pricing-card:hover {
    border-color: rgba(0, 200, 112, 0.45);
    box-shadow: 0 4px 24px rgba(0, 200, 112, 0.08);
}

.landing-pricing-card--beta .pricing-rate {
    text-decoration: line-through;
    color: #5A9A7A;
}

.landing-pricing-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.pricing-tier-name {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #EFEFEF;
}

.pricing-beta-chip {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #00C870;
    background: rgba(0, 200, 112, 0.12);
    border: 1px solid rgba(0, 200, 112, 0.3);
    border-radius: 20px;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.6;
}

.pricing-rate {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #00C870;
    line-height: 1.1;
}

.pricing-rate-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: #5A9A7A;
    margin-top: -0.125rem;
}

.pricing-payout {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #909090;
    line-height: 1.4;
    margin-top: 0.25rem;
    flex: 1;
}

.pricing-stripe-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #6E7870;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 200, 112, 0.10);
}

/* ===== Nibsy AI Section ===== */
.landing-nibsy-section {
    width: 100%;
    background: #020E0A;
    padding: 4.5rem 3rem;
    border-top: 1px solid rgba(0, 200, 112, 0.12);
    border-bottom: 1px solid rgba(0, 200, 112, 0.12);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.landing-nibsy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 200, 112, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.landing-nibsy-section-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.landing-nibsy-section-avatar {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 40px rgba(0, 200, 112, 0.25));
}

.landing-nibsy-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #00C870;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.landing-nibsy-heading {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: #EFEFEF;
    margin: 0 0 0.875rem;
}

.landing-nibsy-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #8A9A94;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    max-width: 520px;
}

.landing-nibsy-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-nibsy-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #8A9A94;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.landing-nibsy-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00C870;
}

/* ===== TikLynx App Section ===== */
.landing-app {
    width: 100%;
    background: #141414;
    border-top: 1px solid rgba(0, 200, 112, 0.15);
    border-bottom: 1px solid rgba(0, 200, 112, 0.15);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.landing-app::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(0, 200, 112, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.landing-app-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #00C870;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
    position: relative;
}

.landing-app-heading {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #EFEFEF;
    margin: 0 0 1rem;
    position: relative;
}

.landing-app-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #8A9A94;
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
}

.landing-app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
    position: relative;
}

.landing-app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: border-color 0.25s;
}

.landing-app-feature:hover {
    border-color: rgba(0, 200, 112, 0.4);
}

.landing-app-feature-icon {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #00C870;
    width: 1.375rem;
    text-align: center;
}

.landing-app-nibsy-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    margin-right: -0.375rem;
}

.landing-app-feature h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #00C870;
    margin: 0 0 0.25rem;
}

.landing-app-feature p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8A9A94;
    line-height: 1.6;
    margin: 0;
}

.landing-app-stores {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.landing-app-store-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.landing-app-store-badge:hover {
    border-color: rgba(0, 200, 112, 0.45);
    box-shadow: 0 4px 20px rgba(0, 200, 112, 0.08);
}

.store-fa-icon {
    font-size: 1.75rem;
    color: #00C870;
    width: 1.75rem;
    text-align: center;
}

.store-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    color: #5A9A7A;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 3px;
    text-align: left;
}

.store-name {
    font-family: 'Archivo Black', 'Arial Black', sans-serif;
    font-size: 0.9375rem;
    color: #EFEFEF;
    line-height: 1;
    text-align: left;
}

/* ===== Stats Asterisk ===== */
.landing-stat-asterisk {
    font-size: 0.6em;
    vertical-align: super;
    color: rgba(0, 200, 112, 0.7);
}

/* ===== Flexibility Section ===== */
.landing-flexibility {
    width: 100%;
    padding: 5rem 3rem;
    background: #0E0E0E;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-flex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 2.5rem auto 3rem;
}

.landing-flex-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: left;
}

.landing-flex-icon {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.625rem;
    color: #00C870;
}

.landing-flex-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #EFEFEF;
    margin: 0 0 0.4rem;
}

.landing-flex-item p {
    font-size: 0.8rem;
    color: #8A9A94;
    line-height: 1.6;
    margin: 0;
}

.landing-flex-scale {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.landing-flex-scale-col {
    flex: 1;
    text-align: left;
}

.landing-flex-scale-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00C870;
    margin-bottom: 0.75rem;
    display: block;
}

.landing-flex-scale-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-flex-scale-col li {
    font-size: 0.8125rem;
    color: #8A9A94;
    padding: 0.2rem 0 0.2rem 1rem;
    position: relative;
}

.landing-flex-scale-col li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0, 200, 112, 0.35);
    font-size: 0.75rem;
}

.landing-flex-scale-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.landing-flex-scale-mid-line {
    width: 1px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 200, 112, 0.3), transparent);
}

.landing-flex-scale-mid-label {
    font-size: 0.5875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 200, 112, 0.45);
    white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .landing-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 1.5rem;
    }

    .landing-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .landing-hero-ticket {
        width: 280px;
    }

    .landing-hero-text {
        align-items: center;
    }

    .landing-tagline {
        justify-content: center;
    }

    .landing-hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-beta-callout {
        text-align: center;
    }

    .landing-hero-sub {
        text-align: center;
    }

    .landing-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 2rem;
    }

    .landing-stat {
        flex: 0 0 40%;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-nibsy-section {
        padding: 3rem 1.5rem;
    }

    .landing-nibsy-section-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .landing-nibsy-section-avatar {
        width: 150px;
        height: 150px;
    }

    .landing-nibsy-section-desc {
        max-width: 100%;
    }

    .landing-nibsy-bullets {
        text-align: left;
    }

    .landing-flexibility {
        padding: 2.5rem 1.5rem;
    }

    .landing-flex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-flex-scale {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-flex-scale-mid {
        flex-direction: row;
        width: 100%;
        padding: 0;
    }

    .landing-flex-scale-mid-line {
        flex: 1;
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 200, 112, 0.3), transparent);
    }

    .landing-app {
        padding: 2.5rem 1.5rem;
    }

    .landing-app-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-pricing {
        padding: 3rem 1.25rem 2rem;
    }

    .landing-pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-features {
        padding: 2.5rem 1.5rem;
    }

    .landing-how {
        padding: 2.5rem 1.5rem;
    }

    .landing-how-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .landing-beta {
        padding: 2.5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .landing-beta-card {
        padding: 1.5rem 1.25rem;
    }

    .landing-faq {
        padding: 2rem 1.5rem;
    }

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

    .landing-cta-wrap .landing-cta {
        width: 100%;
    }

    .landing-nav-links a:not(.landing-login-btn) {
        display: none;
    }
}

@media (max-width: 576px) {
    .landing-headline {
        font-size: 2rem;
    }

    .landing-nav {
        padding: 0 1rem;
    }

    .landing-flex-grid {
        grid-template-columns: 1fr;
    }

}
