.home-landing {
    position: relative;
    overflow: hidden;
}
.home-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.home-mesh__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    will-change: transform;
}
.home-mesh__blob--a {
    width: 520px;
    height: 520px;
    background: #0095FF;
    top: -120px;
    left: -120px;
    animation: home-blob-a 28s ease-in-out infinite alternate;
}
.home-mesh__blob--b {
    width: 480px;
    height: 480px;
    background: #00D9E3;
    top: -40px;
    right: -100px;
    animation: home-blob-b 34s ease-in-out infinite alternate;
}
.home-mesh__blob--c {
    width: 420px;
    height: 420px;
    background: #7C5CFF;
    top: 25%;
    left: 30%;
    opacity: 0.30;
    animation: home-blob-c 40s ease-in-out infinite alternate;
}
.home-mesh__blob--d {
    width: 360px;
    height: 360px;
    background: #00D9E3;
    bottom: -80px;
    right: 20%;
    opacity: 0.25;
    animation: home-blob-d 32s ease-in-out infinite alternate;
}
@keyframes home-blob-a {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.15); }
}
@keyframes home-blob-b {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 60px) scale(1.10); }
}
@keyframes home-blob-c {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.20); }
}
@keyframes home-blob-d {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -90px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
    .home-mesh__blob { animation: none; }
}
@media (max-width: 767.98px) {
    .home-mesh__blob--a,
    .home-mesh__blob--b { opacity: 0.11; }
    .home-mesh__blob--c { opacity: 0.06; }
    .home-mesh__blob--d { opacity: 0.05; }
}
.home-hero,
.home-stats,
.home-features,
.home-cta {
    position: relative;
    z-index: 1;
}
.home-hero {
    padding-top: 1rem;
}
.home-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0095FF 0%, #00D9E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.home-hero__lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.55;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.home-hero__card {
    max-width: 720px;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.92);
}
.home-hero__form .form-control {
    box-shadow: none;
    background: transparent;
}
.home-hero__form .form-control:focus {
    box-shadow: none;
}
.home-hero__form .btn-primary {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #0095FF 0%, #00B5E8 100%);
    border: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-hero__form .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 149, 255, 0.35);
}
.home-mockup {
    max-width: 760px;
    margin: 3rem auto 0;
    perspective: 1200px;
    animation: home-mockup-float 8s ease-in-out infinite alternate;
}
@keyframes home-mockup-float {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
    .home-mockup { animation: none; }
}
.home-mockup__window {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transform: rotateX(2deg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.home-mockup__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f6f7f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.home-mockup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.home-mockup__dot--red    { background: #ff5f57; }
.home-mockup__dot--yellow { background: #febc2e; }
.home-mockup__dot--green  { background: #28c840; }
.home-mockup__url {
    margin-left: 12px;
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    font-family: ui-monospace, SFMono-Regular, monospace;
}
.home-mockup__body {
    display: flex;
    min-height: 280px;
}
.home-mockup__sidebar {
    width: 64px;
    background: #fafbfc;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.home-mockup__brand {
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0095FF, #00D9E3);
    margin-bottom: 8px;
}
.home-mockup__nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.06);
}
.home-mockup__nav-item--active {
    background: rgba(0, 149, 255, 0.30);
}
.home-mockup__content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.home-mockup__chart {
    background: #fafbfc;
    border-radius: 8px;
    padding: 10px;
    height: 110px;
}
.home-mockup__chart svg {
    width: 100%;
    height: 100%;
    display: block;
}
.home-mockup__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home-mockup__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #fafbfc;
}
.home-mockup__row-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.20), rgba(0, 217, 227, 0.30));
    flex-shrink: 0;
}
.home-mockup__row-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.home-mockup__row-title {
    font-size: 12px;
    color: #111827;
    font-weight: 500;
    font-family: ui-monospace, SFMono-Regular, monospace;
}
.home-mockup__row-meta {
    height: 6px;
    width: 60%;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}
.home-mockup__row-clicks {
    font-size: 12px;
    font-weight: 600;
    color: #0095FF;
}
.home-stats {
    padding: 2rem 0 1rem;
}
.home-features {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.home-feature {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4px);
}
.home-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2.5rem rgba(0, 149, 255, 0.08);
    border-color: rgba(0, 149, 255, 0.18);
}
.home-feature:hover .home-feature__icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.20) 0%, rgba(0, 217, 227, 0.28) 100%);
}
.home-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.12) 0%, rgba(0, 217, 227, 0.18) 100%);
    color: #0095FF;
    transition: transform 0.2s ease, background 0.2s ease;
}
.home-feature__icon svg {
    width: 22px;
    height: 22px;
}
.home-cta__card {
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(0, 149, 255, 0.06), rgba(0, 217, 227, 0.10));
}
.auth-landing {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
}
.auth-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.04);
}
.auth-card__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}
.auth-card .form-control {
    border-radius: 8px;
    border-color: rgba(0, 0, 0, 0.08);
    padding: 0.55rem 0.85rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-card .form-control:focus {
    border-color: rgba(0, 149, 255, 0.50);
    box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.12);
}
.auth-card label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.4rem;
}
.auth-btn {
    border-radius: 8px;
    background: linear-gradient(135deg, #0095FF 0%, #00B5E8 100%);
    border: 0;
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.auth-btn:hover,
.auth-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 149, 255, 0.35);
    color: #ffffff;
}
.legal-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0095FF 0%, #00D9E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legal-prose {
    line-height: 1.65;
    color: #334155;
}
.legal-prose p {
    margin-bottom: 1rem;
}
.legal-prose h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}
.legal-prose h2:first-of-type {
    margin-top: 1.5rem;
}
.legal-prose ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}
.legal-prose li {
    margin-bottom: 0.4rem;
}
.legal-prose a {
    color: #0095FF;
    text-decoration: underline;
    text-decoration-color: rgba(0, 149, 255, 0.30);
    text-underline-offset: 2px;
}
.legal-prose a:hover {
    text-decoration-color: rgba(0, 149, 255, 0.80);
}
.legal-prose strong {
    color: #0f172a;
    font-weight: 600;
}
.legal-prose code {
    background: rgba(0, 149, 255, 0.08);
    color: #0095FF;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
.home-landing--dark .legal-prose {
    color: #cbd5e1;
}
.home-landing--dark .legal-prose h2,
.home-landing--dark .legal-prose strong {
    color: #f1f5f9;
}
.home-landing--dark .auth-card {
    background: rgba(20, 25, 40, 0.85);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.30),
        0 1px 2px rgba(0, 0, 0, 0.20);
}
.home-landing--dark .auth-card label {
    color: #9aa3b2;
}
.home-landing--dark .auth-card .form-control {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e6e9ef;
}
.home-landing--dark .auth-card .form-control:focus {
    border-color: rgba(0, 149, 255, 0.60);
    box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.18);
}
.home-landing--dark .home-mesh__blob {
    opacity: 0.40;
}
.home-landing--dark .home-hero__card {
    background-color: rgba(20, 25, 40, 0.85);
}
.home-landing--dark .home-feature {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}
.home-landing--dark .home-mockup__window {
    background: #1a1f2e;
    border-color: rgba(255, 255, 255, 0.06);
}
.home-landing--dark .home-mockup__bar,
.home-landing--dark .home-mockup__sidebar,
.home-landing--dark .home-mockup__chart,
.home-landing--dark .home-mockup__row {
    background: #20253a;
    border-color: rgba(255, 255, 255, 0.04);
}
.home-landing--dark .home-mockup__url {
    background: #1a1f2e;
    color: #9aa3b2;
    border-color: rgba(255, 255, 255, 0.06);
}
.home-landing--dark .home-mockup__row-title {
    color: #e6e9ef;
}
