/* ═══════════════════════════════════════════
   GoNext Landing Page — Design System v2
   Ultra-premium AMOLED dark theme
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #FF8A65;
    --primary-dark: #E64A19;
    --primary-light: #FFCCBC;
    --secondary: #FF7043;
    --accent: #D84315;

    --bg: #000000;
    --surface: #060606;
    --surface-2: #0c0c0c;
    --surface-3: #111111;
    --card: #0a0a0a;

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --gradient-primary: linear-gradient(135deg, #FF8A65, #FF7043);
    --gradient-warm: linear-gradient(135deg, #FF8A65, #E64A19);
    --gradient-cool: linear-gradient(135deg, #FF7043, #FF8A65);

    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

/* ── Typography ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 138, 101, 0.25), 0 0 60px rgba(255, 138, 101, 0.08);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 138, 101, 0.4), 0 0 80px rgba(255, 138, 101, 0.12);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 138, 101, 0.3);
    transform: translateY(-3px);
}

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

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-brand .brand-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

.nav-cta .btn {
    padding: 10px 28px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

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

/* Ambient glow */
.hero-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-ambient.a1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 138, 101, 0.12);
    top: -10%;
    left: -5%;
    animation: ambientFloat 8s ease-in-out infinite;
}

.hero-ambient.a2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 112, 67, 0.1);
    bottom: -15%;
    right: -10%;
    animation: ambientFloat 10s ease-in-out infinite reverse;
}

.hero-ambient.a3 {
    width: 300px;
    height: 300px;
    background: rgba(216, 67, 21, 0.08);
    top: 40%;
    left: 40%;
    animation: ambientFloat 12s ease-in-out infinite 2s;
}

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

.hero-content {
    max-width: 540px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 138, 101, 0.08);
    border: 1px solid rgba(255, 138, 101, 0.15);
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease both;
}

.hero-tag .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulseDot 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.3s both;
}

.hero-metrics {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.7s ease 0.4s both;
}

.metric .metric-val {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric .metric-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Phone */
.hero-phone-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeUp 0.9s ease 0.3s both;
}

/* Large ambient glow behind phone */
.hero-phone-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.18) 0%, rgba(255, 138, 101, 0.08) 35%, rgba(255, 112, 67, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Secondary softer outer glow */
.hero-phone-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.06) 0%, rgba(216, 67, 21, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -2;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.phone-device {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border-radius: 44px;
    padding: 8px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(255, 138, 101, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: #050505;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #111;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-screen .phone-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0d0510 0%, #050505 40%, #030812 100%);
    gap: 8px;
}

.phone-placeholder .ph-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}

.phone-placeholder .ph-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Floating ring behind phone */
.phone-ring {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255, 138, 101, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 20s linear infinite;
}

.phone-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.phone-ring.ring-2 {
    width: 440px;
    height: 440px;
    border-color: rgba(255, 112, 67, 0.06);
    animation-direction: reverse;
    animation-duration: 25s;
}

/* ═══════════════ FEATURES ═══════════════ */
.features {
    padding: 140px 0;
    position: relative;
}

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

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

.f-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 138, 101, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.f-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.f-card:hover::after {
    opacity: 1;
}

.f-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    position: relative;
}

.f-icon.i-orange {
    background: rgba(249, 115, 22, 0.15);
}

.f-icon.i-purple {
    background: rgba(168, 85, 247, 0.15);
}

.f-icon.i-blue {
    background: rgba(59, 130, 246, 0.15);
}

.f-icon.i-green {
    background: rgba(34, 197, 94, 0.15);
}

.f-icon.i-indigo {
    background: rgba(99, 102, 241, 0.15);
}

.f-icon.i-yellow {
    background: rgba(234, 179, 8, 0.15);
}

.f-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.f-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ═══════════════ DISCOVER & MEET ═══════════════ */
.discover-section {
    padding: 140px 0;
    position: relative;
}

.discover-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Mosaic */
.discover-images {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.d-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.d-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.d-img:hover img {
    transform: scale(1.06);
}

.d-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s;
}

.d-img:hover .d-img-overlay {
    opacity: 1;
}

.d-img-overlay span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.d-img-large {
    grid-row: 1 / 3;
    min-height: 420px;
}

.d-img-small-top,
.d-img-small-bottom {
    min-height: 200px;
}

/* Floating badge */
.d-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gradient-primary);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(255, 138, 101, 0.35);
    animation: badgePulse 3s ease-in-out infinite;
}

.d-badge-icon {
    font-size: 1.2rem;
}

.d-badge-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* Content side */

.discover-heading {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.discover-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.d-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.d-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 138, 101, 0.2);
}

.d-step-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.d-step-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════ CREATE VENUE & EVENT ═══════════════ */
.create-section {
    padding: 140px 0;
    position: relative;
}

.create-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.create-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.create-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(255, 138, 101, 0.04);
}

/* Text Side */
.create-text-side {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Icon Badge */
.create-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.badge-orange {
    background: rgba(255, 138, 101, 0.12);
    color: var(--primary);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
}

.create-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.create-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
    flex-grow: 1;
}

.create-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.create-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cf-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.create-cta {
    align-self: flex-start;
    padding: 14px 32px;
    font-size: 0.9rem;
    gap: 8px;
}

.cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.create-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Image Side */
.create-image-side {
    position: relative;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.015);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.create-image-side img.ci-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.create-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.venue-illustration,
.event-illustration {
    z-index: 2;
}

/* Placeholder (shown until user adds image) */
.create-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.2;
}

.cip-icon {
    font-size: 1.6rem;
}

.cip-text {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Venue Illustration ── */
.venue-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Card */
.vi-stats-card {
    position: absolute;
    top: 15%;
    right: 10%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
    min-width: 140px;
}

.vi-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.vi-stats-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.vi-stats-badge {
    font-size: 0.55rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 2px 6px;
    border-radius: 20px;
}

.vi-stats-number {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.vi-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
}

.vi-bar {
    width: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    transition: height 0.6s ease;
}

.vi-bar-accent {
    background: linear-gradient(180deg, var(--primary), #e85d26);
}

/* Location Pin */
.vi-pin {
    position: absolute;
    bottom: 35%;
    left: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 138, 101, 0.08);
    border: 1px solid rgba(255, 138, 101, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 138, 101, 0.12);
}

/* Review Card */
.vi-review-card {
    position: absolute;
    bottom: 12%;
    right: 8%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 14px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vi-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.vi-stars {
    color: #f59e0b;
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.vi-review-text {
    font-size: 0.68rem;
    color: var(--text-secondary);
}

/* ── Event Illustration ── */
.event-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ticket Card */
.ei-ticket-card {
    position: absolute;
    top: 15%;
    left: 10%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
    min-width: 140px;
}

.ei-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.ei-ticket-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.ei-ticket-badge {
    font-size: 0.55rem;
    font-weight: 700;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.12);
    padding: 2px 6px;
    border-radius: 20px;
}

.ei-ticket-number {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.ei-progress {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.ei-progress-fill {
    height: 100%;
    width: 72%;
    border-radius: 3px;
    background: linear-gradient(90deg, #a855f7, #7c3aed);
}

/* Calendar Icon */
.ei-calendar {
    position: absolute;
    bottom: 35%;
    right: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.12);
}

/* Attendees Card */
.ei-attendees-card {
    position: absolute;
    bottom: 12%;
    left: 8%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 14px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ei-avatars {
    display: flex;
}

.ei-av {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    margin-left: -6px;
}

.ei-av:first-child {
    margin-left: 0;
}

.ei-attendees-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .create-grid {
        grid-template-columns: 1fr;
    }

    .create-text-side {
        padding: 32px 24px;
    }

    .create-image-side {
        min-height: 240px;
    }

    .create-cta {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════ HOW IT WORKS (Timeline) ═══════════════ */
.how-it-works {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.steps-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-top: 40px;
    flex-wrap: nowrap;
    /* Force single line */
}

/* Connecting Dashed Line */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Adjusted relative to new height */
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(255, 138, 101, 0.3);
    z-index: 0;
    transform: translateY(-80px);
    /* Move up to align with phones center approx */
    pointer-events: none;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
    /* Allow shrinking */
}

/* Phone Mockup */
.phone-mockup {
    width: 200px;
    /* Reduced width to fit */
    height: 400px;
    /* Reduced height */
    background: #111;
    border-radius: 32px;
    border: 5px solid #1a1a1a;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 16px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.4s ease;
}

.phone-mockup:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(255, 138, 101, 0.2),
        0 24px 50px rgba(0, 0, 0, 0.6);
}

.pm-screen {
    width: 100%;
    height: 100%;
    background: #080808;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pm-notch {
    width: 70px;
    height: 20px;
    background: #1a1a1a;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

/* Internal Mockup UI Styles */
.pm-ui-placeholder {
    padding: 32px 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

/* UI 1: Create Room */
.pm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pm-btn {
    background: #181818;
    border-radius: 10px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.55rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-btn.active {
    background: rgba(255, 87, 34, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.pm-btn .emoji {
    font-size: 1.2rem;
}

.pm-action-btn {
    margin-top: auto;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

/* UI 2: Invite */
.pm-qr {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 110px;
    height: 110px;
    margin: 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code {
    width: 100%;
    height: 100%;
    background:
        repeating-conic-gradient(#000 0% 25%, transparent 0% 50%) 50% / 16px 16px;
}

.pm-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-row {
    background: #181818;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.pm-row .icon {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

/* UI 3: Vote */
.pm-card-stack {
    position: relative;
    height: 180px;
    margin-top: 16px;
}

.pm-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #222;
    border-radius: 16px;
    transform: scale(0.9) translateY(8px);
    opacity: 0.6;
}

.pm-card.top {
    background: #333;
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.pm-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.pm-fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.pm-fab.x {
    background: #fee2e2;
    color: #ef4444;
}

.pm-fab.heart {
    background: #dcfce7;
    color: #22c55e;
}

.pm-label {
    text-align: center;
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* UI 4: Match */
.pm-match-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

.pm-match-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
}

.pm-match-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.pm-result-card {
    background: #181818;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.res-img {
    height: 60px;
    background: #333;
    border-radius: 6px;
}

.res-line {
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.res-line.w-70 {
    width: 70%;
}

.res-line.w-40 {
    width: 40%;
}

.pm-arrow-link {
    text-align: center;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
}

/* Indicators */
.step-indicator {
    width: 36px;
    height: 36px;
    background: #111;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 0 6px var(--bg);
    position: relative;
    z-index: 2;
}

.step-badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    text-align: center;
    padding: 0 10px;
}

.step-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .steps-timeline {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        padding-left: 20px;
        /* Enable scroll on mobile instead of wrapping */
    }

    .timeline-step {
        flex: 0 0 auto;
        width: 200px;
    }

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

/* ═══════════════ APP PREVIEW ═══════════════ */
.app-preview {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Ambient glow behind carousel */
.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.preview-track {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    perspective: 1200px;
    /* Enable horizontal scroll on mobile */
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
}

.preview-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media (max-width: 900px) {
    .preview-track {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.preview-card {
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.preview-card:hover .p-phone {
    box-shadow:
        0 0 0 1px rgba(255, 138, 101, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 138, 101, 0.08);
}

.p-phone {
    width: 220px;
    height: 460px;
    background: linear-gradient(145deg, #111 0%, #080808 100%);
    border-radius: 36px;
    padding: 6px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.4);
    transition: box-shadow var(--transition);
    position: relative;
}

.p-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #050505;
    position: relative;
}

.p-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.p-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0d0510 0%, #050505 40%, #030812 100%);
    gap: 6px;
}

.p-placeholder .pp-icon {
    font-size: 2rem;
    opacity: 0.35;
}

.p-placeholder .pp-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.preview-label {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.preview-card.active .preview-label {
    color: var(--primary);
}

.preview-card {
    cursor: pointer;
}

.preview-card.active {
    transform: translateY(-12px) scale(1.03);
}

.preview-card.active .p-phone {
    box-shadow:
        0 0 0 2px var(--primary),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 138, 101, 0.15);
}

/* Description Box */
.preview-description-box {
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}

.preview-description-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-description-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.preview-description-box.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

/* ═══════════════ DOWNLOAD CTA ═══════════════ */
.cta-section {
    padding: 100px 0 140px;
}

.cta-box {
    text-align: center;
    padding: 80px 48px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(255, 138, 101, 0.05) 0%, rgba(255, 112, 67, 0.05) 100%);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.cta-box .cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-box .cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--surface-2);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}

.store-btn:hover {
    border-color: rgba(255, 138, 101, 0.25);
    background: var(--surface-3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.store-btn .s-icon {
    font-size: 1.6rem;
}

.store-btn .s-text {
    text-align: left;
    line-height: 1.2;
}

.store-btn .s-small {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.store-btn .s-name {
    font-size: 1rem;
    font-weight: 600;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 260px;
}

.footer-brand .fb-name {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-brand .fb-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-cols {
    display: flex;
    gap: 64px;
}

.f-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.f-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 3px 0;
    transition: color 0.2s;
}

.f-col a:hover {
    color: var(--primary-light);
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bar .heart {
    color: var(--primary);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ambientFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger .reveal:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal-stagger .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-stagger .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-stagger .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.reveal-stagger .reveal:nth-child(6) {
    transition-delay: 0.40s;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

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

    .preview-track {
        flex-wrap: wrap;
    }

    .discover-layout {
        gap: 48px;
    }

    .d-img-large {
        min-height: 360px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
        gap: 36px;
    }

    .features {
        padding: 100px 0;
    }

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

    .how-it-works {
        padding: 100px 0;
    }

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

    .app-preview {
        padding: 100px 0 60px;
    }

    .preview-track {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 24px 40px;
    }

    .preview-track::-webkit-scrollbar {
        display: none;
    }

    .preview-card {
        scroll-snap-align: center;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-cols {
        flex-direction: column;
        gap: 28px;
    }

    .discover-section {
        padding: 100px 0;
    }

    .discover-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .d-img-large {
        min-height: 280px;
    }

    .footer-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

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

    .p-phone {
        width: 180px;
        height: 380px;
        border-radius: 28px;
    }

    .p-screen {
        border-radius: 24px;
    }
}