/* ============================================
   LARPS - Modern Design System
   Font: Poppins | Style: Clean & Minimal
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5865f2;
    --primary-light: #7289da;
    --primary-dark: #4752c4;
    --primary-glow: rgba(88, 101, 242, 0.15);
    --accent: #818cf8;
    --accent-soft: rgba(129, 140, 248, 0.08);

    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #16161f;
    --bg-card: rgba(255, 255, 255, 0.02);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-accent: #a5b4fc;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(88, 101, 242, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-primary: 0 4px 20px rgba(88, 101, 242, 0.25);

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--font);
    border: none;
    cursor: pointer;
    background: none;
}

/* --- Background & Ambient --- */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg-primary) url('background.png') center / cover no-repeat;
    background-attachment: fixed;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.9) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(88, 101, 242, 0.05) 0%, transparent 60%);
}

.ambient-lights {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    opacity: 0.6;
}

.orb-top-left {
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    animation: driftTopLeft 25s ease-in-out infinite;
}

.orb-bottom-right {
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    animation: driftBottomRight 30s ease-in-out infinite;
}

.orb-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.4;
    animation: breathe 20s ease-in-out infinite;
}

@keyframes driftTopLeft {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, 30px); }
    66% { transform: translate(-20px, 50px); }
}

@keyframes driftBottomRight {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -20px); }
    66% { transform: translate(20px, -40px); }
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.55; }
}

/* --- Page Wrapper --- */
.page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Glass Panel Utility --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    animation: navSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-inner.scrolled {
    background: rgba(10, 10, 15, 0.92);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 10px 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-name {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(88, 101, 242, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.4);
}

.nav-cta:active {
    transform: translateY(0) scale(0.98);
}

.nav-cta-icon {
    width: 16px;
    height: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Animate children with stagger on page load */
.hero-badge,
.hero-logo-container,
.hero-title,
.hero-description,
.hero-actions,
.hero-metrics {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge { animation-delay: 0.2s; }
.hero-logo-container { animation-delay: 0.35s; }
.hero-title { animation-delay: 0.5s; }
.hero-description { animation-delay: 0.65s; }
.hero-actions { animation-delay: 0.8s; }
.hero-metrics { animation-delay: 0.95s; }

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    background: var(--accent-soft);
    border: 1px solid rgba(129, 140, 248, 0.12);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* Hero Logo */
.hero-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    width: 140px;
    height: 140px;
}

.logo-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dashed rgba(88, 101, 242, 0.25);
    animation: ringSpin 14s linear infinite;
}

.logo-ring.ring-2 {
    inset: -26px;
    border: 1px dashed rgba(129, 140, 248, 0.12);
    animation: ringSpinReverse 20s linear infinite;
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(88, 101, 242, 0.2);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Title */
.hero-title {
    margin-bottom: 20px;
}

.title-line-1 {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 36px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font);
    border-radius: var(--radius-full);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 36px rgba(88, 101, 242, 0.45);
    background: var(--primary-light);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
    transition-duration: 0.1s;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Large Button Variant */
.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.metric {
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.12);
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 24px 120px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--accent-soft);
    border-radius: var(--radius-full);
    border: 1px solid rgba(129, 140, 248, 0.12);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.feature-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) { transition-delay: 0s; }
.feature-item:nth-child(2) { transition-delay: 0.1s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.3s; }
.feature-item:nth-child(5) { transition-delay: 0.4s; }

.feature-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(88, 101, 242, 0.1);
}

.feature-wide {
    grid-column: 1 / -1;
}

/* Feature Icon */
.feature-icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(129, 140, 248, 0.06));
    border: 1px solid rgba(88, 101, 242, 0.15);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon-container {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(129, 140, 248, 0.1));
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.2);
}

.feature-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Feature Decoration */
.feature-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    color: var(--text-primary);
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.feature-item:hover .feature-decoration {
    transform: scale(1.2) rotate(15deg);
    opacity: 0.5;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.proof-section {
    padding: 40px 24px 100px;
}

.proof-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.proof-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.proof-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.proof-card:nth-child(1) { transition-delay: 0s; }
.proof-card:nth-child(2) { transition-delay: 0.12s; }
.proof-card:nth-child(3) { transition-delay: 0.24s; }

.proof-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.proof-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-glow);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.proof-card:hover .proof-icon {
    transform: scale(1.1);
    background: rgba(88, 101, 242, 0.2);
}

.proof-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.proof-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.proof-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 40px 24px 100px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(88, 101, 242, 0.05) 0%,
        rgba(129, 140, 248, 0.02) 100%
    );
    border: 1px solid rgba(88, 101, 242, 0.15);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

.cta-container.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-container:hover {
    border-color: rgba(88, 101, 242, 0.3);
}

/* CTA Decorations */
.cta-decoration-left,
.cta-decoration-right {
    position: absolute;
    width: 200px;
    height: 200px;
    color: var(--text-primary);
    pointer-events: none;
    opacity: 0.5;
    transition: transform 0.6s ease;
}

.cta-decoration-left {
    top: -60px;
    left: -60px;
}

.cta-decoration-right {
    bottom: -60px;
    right: -60px;
}

.cta-container:hover .cta-decoration-left {
    transform: rotate(10deg) scale(1.1);
}

.cta-container:hover .cta-decoration-right {
    transform: rotate(-10deg) scale(1.1);
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    margin-bottom: 16px;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.footer-name {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: all 0.25s ease;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

.footer-copy p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 300;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-wide {
        grid-column: auto;
    }

    .proof-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 12px;
    }

    .metric-divider {
        display: none;
    }

    .nav-center {
        display: none;
    }

    .cta-container {
        padding: 48px 32px;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 640px)
   ============================================ */
@media (max-width: 640px) {
    .navbar {
        padding: 12px 16px;
    }

    .navbar-inner {
        padding: 10px 16px;
    }

    .nav-name {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .title-line-2 {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .title-line-1 {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-logo-container {
        width: 110px;
        height: 110px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .features-section {
        padding: 60px 20px 80px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 28px 24px;
    }

    .proof-section {
        padding: 20px 20px 60px;
    }

    .cta-section {
        padding: 20px 20px 60px;
    }

    .cta-container {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-text {
        font-size: 0.88rem;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .site-footer {
        padding: 32px 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 400px)
   ============================================ */
@media (max-width: 400px) {
    .title-line-2 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-logo-container {
        width: 90px;
        height: 90px;
    }

    .hero-logo {
        width: 76px;
        height: 76px;
    }

    .metric {
        padding: 12px 20px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.82rem;
    }
}

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-badge,
    .hero-logo-container,
    .hero-title,
    .hero-description,
    .hero-actions,
    .hero-metrics,
    .feature-item,
    .proof-card,
    .cta-container {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: rgba(88, 101, 242, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(88, 101, 242, 0.3);
    color: #fff;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .ambient-lights,
    .bg-image,
    .bg-overlay,
    .navbar {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .title-line-2 {
        -webkit-text-fill-color: #000;
        background: none;
    }

    .feature-item,
    .proof-card,
    .cta-container {
        border: 1px solid #ddd;
        background: #fff;
        opacity: 1;
        transform: none;
    }
}
