/* ============================================
   PeakLevs Landing Page
   Deep purple / cyan / magenta
   Built for 18-30 ambitious people
   ============================================ */

/* --- Custom Properties --- */
:root {
    --deep-purple: #1A0B2E;
    --mid-purple: #2D1B69;
    --purple: #7B2FBE;
    --cyan: #00D4FF;
    --magenta: #E040FB;
    --pink: #FF6BEB;
    --bg: #0D0618;
    --surface: #1A0B2E;
    --surface-light: #241547;
    --card: #1E1038;
    --card-hover: #271450;
    --text-primary: #FFFFFF;
    --text-secondary: #B8A9D4;
    --text-muted: #7B6B9E;
    --border: #2D1B69;
    --border-hover: #3D2B89;
    --success: #00E676;
    --warning: #FFD600;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.25);
    --glow-magenta: 0 0 40px rgba(224, 64, 251, 0.25);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-warm {
    background: linear-gradient(135deg, var(--warning), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #fff;
    padding: 16px 36px;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
    padding: 16px 36px;
    font-size: 16px;
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    padding: 16px 36px;
    font-size: 16px;
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: var(--glow-cyan);
}

.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-lg { padding: 20px 48px; font-size: 18px; }
.btn-block { width: 100%; }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: #0D0618;
    border-bottom: 1px solid rgba(45, 27, 105, 0.4);
    padding: 14px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: width 0.2s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 212, 255, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(224, 64, 251, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 70% 40% at 50% 100%, rgba(123, 47, 190, 0.18) 0%, transparent 50%);
}

/* Animated grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 27, 105, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 27, 105, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.08);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(224, 64, 251, 0.06);
    top: 20%;
    right: -5%;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(123, 47, 190, 0.08);
    bottom: 5%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -30px); }
    66% { transform: translate(-15px, 15px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.18);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); }
    50% { opacity: 0.5; box-shadow: 0 0 16px var(--cyan); }
}

/* Hero typography */
.hero-title {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 1.02;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* Phone mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

/* Glow behind phone */
.phone-glow {
    position: absolute;
    width: 320px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(224, 64, 251, 0.15));
    border-radius: 50%;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: phoneGlow 4s ease-in-out infinite;
}

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

.phone-frame {
    width: 300px;
    background: linear-gradient(180deg, #2D1B69 0%, #1A0B2E 100%);
    border-radius: 44px;
    padding: 12px;
    border: 1.5px solid rgba(123, 47, 190, 0.4);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--bg);
    border-radius: 34px;
    padding: 20px 16px;
    min-height: 540px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 110px;
    height: 26px;
    background: #1A0B2E;
    border-radius: 0 0 16px 16px;
    margin: -20px auto 16px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.mock-greeting {
    font-size: 15px;
    font-weight: 700;
}

.mock-tier-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
}

.mock-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.mock-score-ring {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mock-ring-outer {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background: conic-gradient(
        var(--cyan) 0deg,
        var(--magenta) 180deg,
        var(--purple) 270deg,
        var(--cyan) 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 10s linear infinite, ringGlow 3s ease-in-out infinite;
    padding: 4px;
}

@keyframes ringRotate {
    from { background: conic-gradient(var(--cyan) 0deg, var(--magenta) 180deg, var(--purple) 270deg, var(--cyan) 360deg); }
    to { background: conic-gradient(var(--magenta) 0deg, var(--purple) 180deg, var(--cyan) 270deg, var(--magenta) 360deg); }
}

@keyframes ringGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.3); }
}

.mock-ring-inner {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mock-score {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.mock-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    font-weight: 700;
    margin-top: 4px;
}

.mock-momentum {
    text-align: center;
    margin-bottom: 20px;
}

.mock-momentum-text {
    font-size: 12px;
    color: var(--cyan);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mock-momentum-bar {
    height: 4px;
    border-radius: 4px;
    background: var(--surface-light);
    margin-top: 8px;
    overflow: hidden;
}

.mock-momentum-fill {
    height: 100%;
    width: 78%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    animation: momentumPulse 3s ease-in-out infinite;
}

@keyframes momentumPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.mock-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 18px;
    gap: 6px;
}

.mock-stat {
    text-align: center;
    background: var(--surface-light);
    padding: 10px 12px;
    border-radius: var(--radius-md);
    flex: 1;
}

.mock-stat span {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.mock-stat small {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.mock-categories {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mock-cat {
    background: var(--surface-light);
    padding: 7px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.mock-cat:nth-child(1) { border-color: rgba(0, 212, 255, 0.2); color: var(--cyan); }
.mock-cat:nth-child(2) { border-color: rgba(224, 64, 251, 0.2); color: var(--magenta); }
.mock-cat:nth-child(3) { border-color: rgba(123, 47, 190, 0.2); color: var(--purple); }


/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.social-proof-bar {
    padding: 60px 0;
    border-top: 1px solid rgba(45, 27, 105, 0.3);
    border-bottom: 1px solid rgba(45, 27, 105, 0.3);
    background: rgba(26, 11, 46, 0.5);
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
}

.proof-stat-value.cyan { color: var(--cyan); }
.proof-stat-value.magenta { color: var(--magenta); }
.proof-stat-value.purple { color: var(--purple); }
.proof-stat-value.gradient {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}


/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    padding: 120px 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(123, 47, 190, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line */
.steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--purple));
    border-radius: 2px;
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 40px;
    padding: 48px 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100px;
    right: 0;
    height: 1px;
    background: var(--border);
}

.step-number-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 500px;
}

.step-content .step-highlight {
    display: inline-block;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-top: 12px;
}


/* =============================================
   FEATURES
   ============================================= */
.features {
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--card-hover);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    position: relative;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* =============================================
   TIERS
   ============================================= */
.tiers {
    padding: 120px 0;
    position: relative;
}

.tiers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(224, 64, 251, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.tiers-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

/* Progression line */
.tiers-line {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg,
        #B8A9D4 0%,
        var(--cyan) 25%,
        var(--purple) 50%,
        var(--magenta) 75%,
        var(--warning) 100%
    );
    opacity: 0.2;
    z-index: 0;
}

.tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 20px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.tier-card:hover {
    border-color: var(--tier-color);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.tier-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--tier-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all var(--transition);
}

.tier-card:hover .tier-icon-wrap {
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.tier-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--tier-color);
    fill: none;
    stroke-width: 2;
}

.tier-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--tier-color);
    margin-bottom: 4px;
}

.tier-range {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.tier-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.tier-card-legendary {
    border-color: rgba(255, 214, 0, 0.3);
    background: linear-gradient(180deg, rgba(255, 214, 0, 0.04), var(--card));
}

.tier-card-legendary:hover {
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.1);
}


/* =============================================
   COMMUNITY / SOCIAL PROOF
   ============================================= */
.community {
    padding: 120px 0;
    position: relative;
}

.community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.community-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
}

.community-card:hover {
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

.community-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.community-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.community-avatar-1 { background: linear-gradient(135deg, var(--cyan), #0078FF); }
.community-avatar-2 { background: linear-gradient(135deg, var(--magenta), var(--pink)); }
.community-avatar-3 { background: linear-gradient(135deg, var(--purple), var(--cyan)); }

.community-name {
    font-size: 16px;
    font-weight: 700;
}

.community-tier {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.community-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.community-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
}

.community-action-magenta {
    background: rgba(224, 64, 251, 0.06);
    border-color: rgba(224, 64, 251, 0.12);
    color: var(--magenta);
}

.community-action-green {
    background: rgba(0, 230, 118, 0.06);
    border-color: rgba(0, 230, 118, 0.12);
    color: var(--success);
}


/* =============================================
   PRICING
   ============================================= */
.pricing {
    padding: 120px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(224, 64, 251, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 44px 36px;
    position: relative;
    transition: all var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card-featured {
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), var(--card));
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.12);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 24px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-badge-gold {
    background: linear-gradient(135deg, var(--warning), #FF9100);
    color: #000;
}

.price-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-amount {
    margin-bottom: 4px;
    line-height: 1;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    vertical-align: top;
    line-height: 1.3;
}

.price-value {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.price-period {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 36px;
}

.price-features li {
    padding: 11px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(45, 27, 105, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300D4FF'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}


/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 120px 0;
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: var(--card);
    border: none;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--card-hover);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--cyan);
    border-radius: 2px;
    transition: transform 0.3s;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
}


/* =============================================
   CTA / DOWNLOAD
   ============================================= */
.cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(224, 64, 251, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.08;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    transition: all var(--transition);
}

.store-badge img {
    height: 52px;
    width: auto;
    opacity: 0.55;
    transition: all var(--transition);
}

.store-badge:hover img {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.waitlist-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px;
}

.waitlist-input {
    flex: 1;
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font);
    outline: none;
    transition: all 0.2s;
}

.waitlist-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 72px 0 36px;
    border-top: 1px solid var(--border);
    background: rgba(13, 6, 24, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.65;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social:hover {
    border-color: var(--cyan);
    background: rgba(0, 212, 255, 0.1);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    transition: fill 0.2s;
}

.footer-social:hover svg {
    fill: var(--cyan);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    padding: 7px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 36px;
    border-top: 1px solid rgba(45, 27, 105, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--cyan);
}


/* =============================================
   LEGAL PAGES (shared)
   ============================================= */
.legal-page {
    padding: 130px 0 80px;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 44px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 4px 0 4px 28px;
    position: relative;
}

.legal-page ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    position: absolute;
    left: 8px;
    top: 14px;
}

.legal-page a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0, 212, 255, 0.3);
}

.legal-page a:hover {
    color: var(--magenta);
    text-decoration-color: rgba(224, 64, 251, 0.3);
}


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }

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

    .tiers-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .tiers-line { display: none; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: translateY(-4px);
    }

    .community-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0D0618;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 9999;
    }

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

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 52px);
        letter-spacing: -1px;
    }

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

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

    .step {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .step-number-wrap {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 22px;
    }

    .proof-stats {
        gap: 32px;
    }

    .proof-stat-value {
        font-size: 28px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .phone-frame {
        width: 260px;
    }

    .phone-screen {
        min-height: 460px;
        padding: 16px 12px;
    }

    .mock-ring-outer {
        width: 130px;
        height: 130px;
    }

    .mock-ring-inner {
        width: 120px;
        height: 120px;
    }

    .mock-score {
        font-size: 30px;
    }

    .tiers-track {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }
}
