/* ===== GlobalList Landing Page — Vibrant Modern ===== */

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

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --surface-3: #22222e;
  --text: #f0f0f5;
  --text-2: rgba(240, 240, 245, 0.6);
  --text-3: rgba(240, 240, 245, 0.3);
  --accent: #8B5CF6;
  --accent-2: #6366F1;
  --cyan: #22D3EE;
  --amber: #F59E0B;
  --emerald: #10B981;
  --rose: #F43F5E;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);
  --radius: 12px;
  --glow: 0 0 60px rgba(139, 92, 246, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: var(--text-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

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

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 56px; gap: 32px;
}

.navbar-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.logo-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.logo-icon.sm { width: 22px; height: 22px; font-size: 11px; border-radius: 6px; }

.navbar-links { display: flex; list-style: none; gap: 24px; margin-left: auto; }
.navbar-links a { font-size: 13px; font-weight: 500; color: var(--text-2); }
.navbar-links a:hover { color: var(--text); }

.navbar-cta {
  font-size: 12px; padding: 7px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px; color: #fff !important; font-weight: 600;
  transition: all 0.2s; box-shadow: 0 2px 12px rgba(139, 92, 246, 0.3);
}
.navbar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4); }

/* ===== Buttons ===== */
.btn-primary {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border: none; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(139, 92, 246, 0.45); }

.btn-ghost {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05); color: var(--text);
  border: 1px solid var(--border-2); border-radius: 10px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--accent); }

.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: rgba(139, 92, 246, 0.12);
}
.hero-glow-2 {
  width: 400px; height: 400px; bottom: -50px; right: -50px;
  background: rgba(34, 211, 238, 0.08);
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-size: 44px; font-weight: 800; line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 28px;
}

.hero-ctas { display: flex; gap: 12px; margin-bottom: 12px; }

.hero-note {
  font-size: 13px; color: var(--text-3); margin-bottom: 28px;
}
.hero-note strong { color: var(--amber); font-weight: 600; }

.hero-platforms { display: flex; gap: 10px; }
.platform-badge {
  font-size: 12px; color: var(--text-2);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px; border-radius: 8px;
  border: 1px solid var(--border);
}

.hero-visual { position: relative; }
.hero-screenshot-frame {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--surface);
}
.hero-screenshot { width: 100%; display: block; }

/* ===== Stats ===== */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row { display: flex; justify-content: center; gap: 64px; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; }
.stat-unit { font-size: 20px; font-weight: 600; color: var(--text-2); }
.stat-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-alt { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 12px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
}
.section-title { font-size: 32px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-desc {
  font-size: 15px; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.section-desc strong { color: var(--amber); font-weight: 600; }

/* ===== Features ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--glow); }
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ===== Steps ===== */
.steps-container { display: flex; align-items: flex-start; justify-content: center; gap: 0; }

.step-card {
  text-align: center; padding: 32px 28px; flex: 0 0 260px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.step-number {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.step-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.step-connector {
  display: flex; align-items: center; padding: 0 8px; margin-top: 36px;
  color: var(--text-3); font-size: 20px;
}

/* ===== App Preview ===== */
.app-preview { max-width: 900px; margin: 0 auto; }
.app-preview-frame {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--glow);
}
.app-preview-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.bar-dot.red { background: #FF5F57; }
.bar-dot.yellow { background: #FFBD2E; }
.bar-dot.green { background: #28C840; }
.bar-title { margin-left: 12px; font-size: 12px; color: var(--text-3); font-weight: 500; }
.app-preview-img { width: 100%; display: block; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon { font-size: 18px; color: var(--text-3); transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  display: none; padding: 0 0 20px; font-size: 14px;
  color: var(--text-2); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer strong { color: var(--amber); }

/* ===== Tester Form ===== */
.tester-section { padding: 100px 0; }

.tester-form-wrapper {
  max-width: 640px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  box-shadow: var(--glow);
}

.tester-form { display: flex; flex-direction: column; gap: 24px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group-lp { display: flex; flex-direction: column; gap: 6px; }
.form-group-lp label {
  font-size: 12px; font-weight: 600; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.req { color: var(--rose); }

.form-group-lp input,
.form-group-lp select {
  padding: 10px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 14px;
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.form-group-lp input:focus,
.form-group-lp select:focus { border-color: var(--accent); }
.form-group-lp input::placeholder { color: var(--text-3); }

.form-group-lp select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.form-group-lp select option { background: var(--surface-2); color: var(--text); }

.form-group-lp textarea {
  padding: 12px 14px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; resize: vertical; min-height: 80px;
  transition: border-color 0.2s;
}
.form-group-lp textarea:focus { border-color: var(--accent); }
.form-group-lp textarea::placeholder { color: var(--text-3); }

.checkbox-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 4px; }
.cb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-2); cursor: pointer;
}
.cb input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }

.form-result {
  text-align: center; padding: 14px; border-radius: 8px; font-size: 14px;
  margin-top: 8px;
}
.form-result.success {
  background: rgba(16, 185, 129, 0.1); color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-result.error {
  background: rgba(244, 63, 94, 0.1); color: var(--rose);
}

/* ===== Waitlist Section ===== */
.waitlist-section { padding: 80px 0; }
.waitlist-box {
  text-align: center; padding: 64px 40px;
  border: 1px solid var(--border-2); border-radius: 16px;
  background: var(--surface); position: relative; overflow: hidden;
}
.waitlist-box-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px; border-radius: 50%;
  background: rgba(139, 92, 246, 0.1); filter: blur(80px); pointer-events: none;
}
.waitlist-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; position: relative; }
.waitlist-desc { font-size: 15px; color: var(--text-2); margin-bottom: 28px; position: relative; line-height: 1.7; }
.waitlist-desc strong { color: var(--amber); }

.waitlist-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; position: relative; }
.waitlist-form input[type="email"] {
  flex: 1; padding: 12px 16px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 14px;
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.waitlist-form input[type="email"]:focus { border-color: var(--accent); }
.waitlist-form input[type="email"]::placeholder { color: var(--text-3); }
.waitlist-form button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border: none; border-radius: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: all 0.2s; font-family: inherit;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.waitlist-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4); }

.waitlist-form-lg { max-width: 500px; }
.waitlist-form-lg button { padding: 12px 28px; }

.waitlist-result { margin-top: 12px; font-size: 13px; text-align: center; position: relative; }
.waitlist-result.success { color: var(--emerald); }
.waitlist-result.error { color: var(--rose); }
.waitlist-note { font-size: 11px; color: var(--text-3); margin-top: 12px; position: relative; }

/* ===== Footer ===== */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-links { display: flex; list-style: none; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--text-3); }
.footer-links a:hover { color: var(--text-2); }

/* ===== Legal Pages ===== */
.legal-page { padding: 120px 0 80px; }
.legal-content { max-width: 680px; margin: 0 auto; }
.legal-content h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.legal-updated { font-size: 12px; color: var(--text-3); margin-bottom: 40px; }
.legal-content h2 {
  font-size: 16px; font-weight: 600; margin-top: 40px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 14px; font-weight: 600; margin-top: 20px; margin-bottom: 8px; color: var(--text-2); }
.legal-content p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: none; padding-left: 0; margin-bottom: 16px; }
.legal-content li {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  padding-left: 16px; position: relative; margin-bottom: 6px;
}
.legal-content li::before { content: '—'; position: absolute; left: 0; color: var(--text-3); }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-back { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal-back a { font-size: 13px; color: var(--text-2); }
.legal-back a:hover { color: var(--accent); }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-stagger.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero-title { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .tester-form-wrapper { padding: 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 110px 0 50px; }
  .hero-title { font-size: 26px; }
  section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; }
  .waitlist-form { flex-direction: column; }
}
