.landing-navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 4vw, 2.5rem);
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.landing-main {
    width: 100%;
    min-height: calc(100vh - 160px);
}

.hero-section {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 3vw, 1.5rem) clamp(2rem, 4vw, 3.5rem) clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.hero-title {
    font-size: clamp(2rem, 6.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
    overflow-wrap: anywhere;
}

.hero-title span {
    background: linear-gradient(135deg, #a5b4fc, #6366f1 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2.4vw, 1.18rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

.claim-box-wrap {
    max-width: 560px;
    margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
    width: 100%;
}

.claim-form {
    display: flex;
    background: #0f121a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
}

.claim-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.claim-prefix {
    display: flex;
    align-items: center;
    padding-left: 0.85rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    user-select: none;
    white-space: nowrap;
}

.claim-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    padding: 0.75rem 0.5rem;
}

.claim-submit-btn {
    border-radius: 10px;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-quick-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.hero-mockup-wrap {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    width: 100%;
}

.mockup-frame {
    max-width: 560px;
    margin: 0 auto;
    background: #0d1017;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.12);
    width: 100%;
    text-align: left;
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    background: #080a0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    font-size: 0.76rem;
    color: #94a3b8;
    font-family: var(--font-mono);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mockup-profile-card {
    padding: clamp(1.25rem, 3.5vw, 2rem);
    background: rgba(18, 20, 29, 0.85);
    text-align: center;
}

.mockup-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 0.85rem;
}

.mockup-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.35);
    object-fit: cover;
    display: block;
}

.mockup-verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0d1017;
}

.mockup-name-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.mockup-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.mockup-handle {
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: var(--font-mono);
}

.mockup-bio {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-audio-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    text-align: left;
}

.mockup-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.mockup-audio-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mockup-audio-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-audio-artist {
    font-size: 0.72rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-soundwave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 18px;
    flex-shrink: 0;
}

.mockup-soundwave span {
    width: 3px;
    background: var(--primary);
    border-radius: 3px;
    animation: soundWave 1.2s ease-in-out infinite;
}

.mockup-soundwave span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.mockup-soundwave span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.mockup-soundwave span:nth-child(3) { height: 11px; animation-delay: 0.2s; }
.mockup-soundwave span:nth-child(4) { height: 14px; animation-delay: 0.4s; }
.mockup-soundwave span:nth-child(5) { height: 6px; animation-delay: 0.15s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.mockup-social-row {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.mockup-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-links-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.mockup-link-pill {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.mockup-link-arrow {
    color: var(--primary);
    font-size: 1rem;
}

.mockup-footer-badge {
    font-size: 0.74rem;
    color: #64748b;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.steps-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    width: 100%;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.35);
}

.step-badge {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #fff;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.step-desc code {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.features-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    width: 100%;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.explore-section {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 1.5rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    width: 100%;
}

.explore-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    transition: border-color 0.15s ease, transform 0.15s ease;
    min-width: 0;
}

.explore-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.explore-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #181a26;
    flex-shrink: 0;
}

.explore-info {
    flex: 1;
    min-width: 0;
}

.explore-name {
    font-weight: 700;
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.explore-handle {
    font-size: 0.82rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-views {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.explore-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
}

.cta-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.cta-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
    letter-spacing: -0.025em;
    color: #fff;
}

.cta-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-hint {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.landing-footer {
    padding: clamp(3rem, 5vw, 4.5rem) clamp(1rem, 3vw, 1.5rem) 2.5rem clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid var(--border-color);
    background: #090b10;
    color: var(--text-dim);
    font-size: 0.88rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
    width: 100%;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-logo {
    display: inline-block;
    width: fit-content;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin: 0;
}

.footer-brand-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-list li {
    margin: 0;
    padding: 0;
}

.footer-list a,
.footer-brand-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.footer-list a::after,
.footer-brand-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}

.footer-list a:hover::after,
.footer-brand-links a:hover::after {
    transform: scaleX(1);
}

.footer-list a:hover,
.footer-brand-links a:hover {
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .footer-list a::after,
    .footer-brand-links a::after {
        transition: none !important;
    }
    .footer-list a,
    .footer-brand-links a {
        transition: none !important;
    }
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-color);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 1.75rem;
    text-align: center;
    width: 100%;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.4rem;
}

.footer-credit {
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.01em;
    margin-top: 0.35rem;
    opacity: 0.85;
}

.legal-page-container {
    max-width: 880px;
    margin: clamp(2rem, 5vw, 3.5rem) auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    width: 100%;
}

.legal-header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.legal-page-title {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    color: #fff;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.75rem);
    line-height: 1.7;
    color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.65;
    font-size: 0.94rem;
}

.legal-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.94rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section code {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.legal-nav-bar {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
}

.legal-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.82rem;
}

.legal-nav-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 3px 0;
}

.legal-nav-inner a:hover {
    color: #fff;
}

.legal-nav-sep {
    color: var(--border-color);
    user-select: none;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-col-brand {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .claim-form {
        flex-direction: column;
        gap: 0.5rem;
        padding: 8px;
    }

    .claim-prefix {
        padding: 0.4rem 0.5rem 0 0.5rem;
    }

    .claim-input {
        padding: 0.5rem;
    }

    .claim-submit-btn {
        width: 100%;
    }

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

    .hero-quick-actions .btn {
        width: 100%;
    }

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

    .cta-actions .btn {
        width: 100%;
    }
}
