/* ============================================
   DistressedApp Landing Page - Apple Style
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #00ff64;
    --color-primary-light: #00cc50;
    --color-secondary: #00ff64;
    --color-secondary-light: #34ff8a;
    --color-text: #111827;
    --color-text-muted: #6B7280;
    --color-text-light: #9CA3AF;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F9FAFB;
    --color-bg-dark: #F3F4F6;
    --color-border: #E5E7EB;
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: #FFFFFF;
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s var(--transition-smooth);
}

/* Dark nav for hero-beam */
.nav .nav-logo-text,
.nav .nav-links a {
    color: white;
}

.nav .nav-toggle span {
    background: white;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    background: #00ff64;
    color: #0a0a0f !important;
    padding: 0.625rem 1.25rem;
    border-radius: 980px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    box-shadow: 0 5px 20px rgba(0, 255, 100, 0.4);
    transform: scale(1.02);
    background: #00cc50;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(30, 58, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 980px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #0a0a0f;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 255, 100, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
    opacity: 1;
    animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-light);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-text-light);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

/* ============================================
   Hero Tagline Section
   ============================================ */
.hero-tagline {
    background: #0a0a0f;
    padding: 100px 2rem 1.5rem;
    text-align: center;
}

.hero-tagline h1 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin: 0 auto;
    color: white;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    max-width: 600px;
    line-height: 1.4;
}

.hero-tagline h1 span {
    background: linear-gradient(135deg, #00ff64, #00cc50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Hero Beam Section
   ============================================ */
.hero-beam {
    height: 70vh;
    min-height: 400px;
    background: linear-gradient(to bottom, #0a0a0f 0%, #0a0a0f 50%, #0a0f0c 65%, #0a1510 75%, #0a2018 82%, #0a2a20 88%, #0a3a28 94%, #0a4a32 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


.hero-beam-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Full width hero variant - Complete override */
.hero-beam-fullwidth {
    overflow: hidden;
    height: 70vh;
    min-height: 400px;
}

.hero-beam-fullwidth .hero-beam-container {
    /* Reset ALL base properties explicitly */
    display: block;
    grid-template-columns: unset;
    gap: unset;
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: visible;
}

/* Slim header overlay */
.hero-slim-header {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    color: white;
    pointer-events: none;
}

.hero-slim-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin: 0;
    color: white;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero-slim-header h1 span {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-beam-content {
    color: white;
    text-align: left;
}

.hero-beam-content .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.hero-beam-content .hero-badge-dot {
    background: #10B981;
}

.hero-beam-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-beam-content h1 span {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-beam-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
    max-width: 500px;
}

.hero-beam-content .hero-cta-group {
    justify-content: flex-start;
}

.hero-beam-content .btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
}

.hero-beam-content .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.hero-beam-content .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-beam-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Visual side with beam animation */
.hero-beam-visual {
    position: relative;
    height: 400px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Fullwidth hero visual - override base overflow */
.hero-beam-fullwidth .hero-beam-visual {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: visible;
    z-index: 10;
    display: block;
}

#scannerCanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 30;
    pointer-events: none;
}

.property-stream {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: visible;
    z-index: 10;
    /* Ensure stream is visible and properly layered */
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.property-line {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
    /* Debug: red border to see positioning */
    /* border: 2px solid red; */
}

/* Property Card Styles */
.property-wrapper {
    position: relative;
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    /* Ensure wrapper is visible */
    opacity: 1;
    visibility: visible;
}

.property-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.property-card-normal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    color: white;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: inset(0 0 0 var(--clip-right, 0%));
    /* Ensure visibility */
    opacity: 1;
    visibility: visible;
}

.property-card-stats {
    background: transparent;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--clip-left, 0%)) 0 0);
}

.property-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.property-address {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-badge.pre-foreclosure {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

.property-badge.tax-lien {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.property-badge.bank-owned {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.property-details {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.property-metrics {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.property-metric {
    display: flex;
    flex-direction: column;
}

.property-metric-label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.property-metric-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10B981;
}

.property-metric-value.negative {
    color: #EF4444;
}

/* Analytics Dashboard that appears after scan */
.analytics-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.analytics-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.analytics-badge.live {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.analytics-grid {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

.analytics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.score-circle svg {
    filter: drop-shadow(0 0 8px rgba(0, 255, 100, 0.4));
}

.score-label,
.chart-label,
.roi-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-chart {
    flex: 1;
    max-width: 80px;
}

.mini-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 45px;
    padding: 0 4px;
}

.mini-bar {
    flex: 1;
    border-radius: 2px;
    min-width: 6px;
    transition: height 0.3s ease;
}

.roi-indicator {
    min-width: 60px;
}

.roi-value {
    font-size: 1rem;
    font-weight: 700;
    color: #00ff64;
    line-height: 1;
}

.roi-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.roi-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff64, #00cc50);
    border-radius: 2px;
}

.analytics-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.stat-mini-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.stat-mini-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Problem Section
   ============================================ */
.problem {
    padding: 8rem 2rem;
    background: var(--color-bg-alt);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--color-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--color-primary);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   Dashboard Showcase Section
   ============================================ */
.dashboard-showcase {
    position: relative;
    padding: 4rem 2rem 8rem;
    background: #0a0a0f;
    overflow: visible;
}

.dashboard-showcase-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.dashboard-showcase-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-showcase-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dashboard-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 700px;
    background: radial-gradient(ellipse 80% 50% at 50% 50%,
        rgba(255, 140, 50, 0.4) 0%,
        rgba(255, 100, 30, 0.25) 25%,
        rgba(200, 60, 20, 0.15) 50%,
        transparent 80%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.dashboard-mockup {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.dashboard-mockup.active {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 140, 50, 0.1);
}

@media (max-width: 768px) {
    .dashboard-showcase {
        padding: 2rem 1rem 6rem;
    }

    .dashboard-glow {
        top: -30%;
        height: 400px;
    }
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 8rem 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-item:nth-child(even) {
    direction: rtl;
}

.feature-item:nth-child(even) > * {
    direction: ltr;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-content {
    padding: 2rem 0;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.feature-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    margin-top: 2px;
}

.feature-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.feature-visual-placeholder {
    font-size: 4rem;
    opacity: 0.3;
}

/* Laptop Mockup Styles */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.laptop-screen {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0 12px;
    box-shadow:
        0 -2px 20px rgba(0, 255, 100, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}

.laptop-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px 4px 0 0;
}

.laptop-base {
    position: relative;
    height: 14px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 12px 12px;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 0 0 4px 4px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 100, 0.05));
    border-radius: 0 0 8px 8px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    padding: 6rem 2rem;
    background: #0a0a0f;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, var(--color-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* ============================================
   How It Works Section - Modern Dark Design
   ============================================ */
.how-it-works {
    padding: 8rem 2rem;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

/* Animated background gradient */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 255, 100, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 255, 100, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .section-header {
    position: relative;
    z-index: 2;
}

.how-it-works .section-label {
    color: var(--color-primary);
}

.how-it-works .section-header h2 {
    color: #fff;
}

.how-it-works .section-header p {
    color: #9ca3af;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Animated connecting line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(16.67% + 40px);
    right: calc(16.67% + 40px);
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 255, 100, 0.3) 10%,
        rgba(0, 255, 100, 0.6) 50%,
        rgba(0, 255, 100, 0.3) 90%,
        transparent 100%);
    z-index: 0;
}

/* Animated pulse along the line */
.steps-container::after {
    content: '';
    position: absolute;
    top: 68px;
    left: calc(16.67% + 40px);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 3px;
    filter: blur(2px);
    animation: stepPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes stepPulse {
    0% {
        left: calc(16.67% + 40px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(83.33% - 100px);
        opacity: 0;
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 100, 0.2);
    box-shadow:
        0 20px 40px -20px rgba(0, 0, 0, 0.5),
        0 0 60px -20px rgba(0, 255, 100, 0.15);
}

/* Glow effect on hover */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at center top, rgba(0, 255, 100, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #1a1a24 0%, #0d0d14 100%);
    border: 2px solid rgba(0, 255, 100, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow:
        0 0 20px rgba(0, 255, 100, 0.15),
        inset 0 0 20px rgba(0, 255, 100, 0.05);
}

.step-card:hover .step-number {
    border-color: var(--color-primary);
    box-shadow:
        0 0 30px rgba(0, 255, 100, 0.3),
        inset 0 0 20px rgba(0, 255, 100, 0.1);
    transform: scale(1.05);
}

/* Animated ring around number */
.step-number::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 100, 0.2);
    animation: stepRing 2s ease-in-out infinite;
    animation-delay: calc(var(--step-index, 0) * 0.3s);
}

@keyframes stepRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.step-card:nth-child(1) .step-number { --step-index: 0; }
.step-card:nth-child(2) .step-number { --step-index: 1; }
.step-card:nth-child(3) .step-number { --step-index: 2; }

.step-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.step-card p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* ============================================
   Waitlist Form Section
   ============================================ */
.waitlist {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist h2 {
    margin-bottom: 1rem;
}

.waitlist > .section-container > p {
    margin-bottom: 3rem;
}

.waitlist-form {
    background: var(--color-bg);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    text-align: left;
}

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

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

/* Multi-Step Form Progress */
.form-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 4px;
    background: var(--color-bg-dark);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.progress-step.completed {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

/* Form Steps */
.form-step {
    display: none !important;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block !important;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.step-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.btn-prev, .btn-next {
    min-width: 120px;
}

.btn-prev svg, .btn-next svg {
    flex-shrink: 0;
}

.form-submit {
    min-width: 160px;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    text-align: center;
}

/* ============================================
   Footer - Simplified
   ============================================ */
.footer-simple {
    padding: 2rem;
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer-hyumyn {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.hyumyn-highlight {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

a.hyumyn-highlight:hover {
    text-decoration: underline;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-scale {
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s var(--transition-smooth);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   Keyframe Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollMouse {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-beam-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5rem 2rem;
    }

    .hero-beam-content {
        text-align: center;
    }

    .hero-beam-content .hero-cta-group {
        justify-content: center;
    }

    .hero-beam-content .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-beam-visual {
        height: 300px;
        order: -1;
    }

    /* Preserve fullwidth hero visual absolute positioning on tablet */
    .hero-beam-fullwidth .hero-beam-visual {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        order: unset;
        display: block;
    }

    .property-wrapper {
        width: 240px;
        height: 160px;
    }

    .property-card,
    .property-card-normal,
    .property-card-stats {
        width: 240px;
        height: 160px;
    }

    .property-card-normal {
        padding: 1rem;
    }

    .property-price {
        font-size: 1.25rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item:nth-child(even) {
        direction: ltr;
    }

    .feature-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0f;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: white;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        background: white;
    }

    .hero-beam {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-beam-container {
        padding: 4rem 1.5rem;
    }

    .hero-beam-content h1 {
        font-size: 2rem;
    }

    .hero-beam-content .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-beam-visual {
        height: 250px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }

    /* Preserve fullwidth hero visual absolute positioning on mobile */
    .hero-beam-fullwidth .hero-beam-visual {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        display: block;
    }

    .property-wrapper {
        width: 200px;
        height: 140px;
    }

    .property-card,
    .property-card-normal,
    .property-card-stats {
        width: 200px;
        height: 140px;
    }

    .property-card-normal {
        padding: 0.875rem;
    }

    .property-address {
        font-size: 0.625rem;
    }

    .property-badge {
        font-size: 0.5rem;
        padding: 0.125rem 0.375rem;
    }

    .property-price {
        font-size: 1.125rem;
    }

    .property-details {
        font-size: 0.625rem;
        margin-bottom: 0.5rem;
    }

    .property-metrics {
        gap: 0.5rem;
    }

    .property-metric-label {
        font-size: 0.5rem;
    }

    .property-metric-value {
        font-size: 0.75rem;
    }

    .stats-content {
        font-size: 7px;
        line-height: 1.2;
        padding: 0.5rem;
    }

    .property-line {
        gap: 24px;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .problem-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container::before,
    .steps-container::after {
        display: none;
    }

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

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

    .waitlist-form {
        padding: 1.5rem;
    }

    /* Multi-step form mobile styles */
    .form-progress {
        margin-bottom: 1.5rem;
    }

    .progress-step {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .step-header {
        margin-bottom: 1.5rem;
    }

    .step-header h3 {
        font-size: 1.25rem;
    }

    .step-header p {
        font-size: 0.875rem;
    }

    .form-nav {
        flex-direction: column-reverse;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .form-nav .btn {
        width: 100%;
    }

    .btn-prev, .btn-next, .form-submit {
        min-width: unset;
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .stat-item {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .waitlist-form {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .progress-steps {
        gap: 0.5rem;
    }

    .progress-step {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .step-header h3 {
        font-size: 1.125rem;
    }

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

    .form-group label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.625rem 0.875rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .problem-card,
    .step-card {
        padding: 1.5rem;
    }

    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo-text {
        font-size: 1.125rem;
    }
}
