/* ============================================================
   ClaimRight — Premium Landing Page Stylesheet
   Color Theme: Deep Navy + Electric Cyan + Violet
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-base:       #04080f;
  --bg-surface:    #0a1628;
  --bg-card:       rgba(10, 22, 40, 0.85);

  /* Brand Colors */
  --cyan:          #00d4ff;
  --cyan-light:    #67e8f9;
  --violet:        #7c3aed;
  --violet-light:  #a78bfa;
  --emerald:       #10b981;

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --grad-hero:     linear-gradient(160deg, #00d4ff22 0%, #7c3aed22 100%);
  --grad-text:     linear-gradient(90deg, #00d4ff, #a78bfa, #67e8f9);

  /* Text */
  --text-main:     #f0f6ff;
  --text-muted:    #94a3b8;
  --text-dim:      #4a6080;

  /* Borders / Overlays */
  --glass:         rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.09);
  --glow-cyan:     0 0 40px rgba(0, 212, 255, 0.18);
  --glow-violet:   0 0 40px rgba(124, 58, 237, 0.2);

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.35s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--cyan);
  transition: var(--transition);
}
a:hover { color: var(--cyan-light); }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section base ── */
section { padding: 7rem 0; }

/* ── Glassmorphism ── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(4, 8, 15, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo, .footer-logo { height: 34px; width: auto; display: block; }

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

/* ── Buttons ── */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
  color: white;
}

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

/* Background orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 65%);
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero > .container > .hero-grid > .hero-text > p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-mockup img {
  width: 100%;
  max-width: 380px;
  border-radius: 40px;
  box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.7), var(--glow-cyan);
  position: relative;
  z-index: 1;
  border: 1px solid var(--glass-border);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Store Buttons */
.store-buttons { display: flex; gap: 1.25rem; margin-top: 2.5rem; }

.store-btn {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 0.7rem 1.4rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}
.store-btn:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}
.store-btn small { display: block; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.store-btn div div { font-weight: 700; font-size: 0.95rem; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
#features { background: var(--bg-surface); position: relative; overflow: hidden; }
#features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  padding: 2.5rem;
  transition: var(--transition);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: var(--glow-cyan);
}
.feature-card:hover::before { opacity: 1; }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.feature-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--cyan);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

/* ============================================================
   SMART EARNINGS (middle banner)
   ============================================================ */
section.container ~ section.container,
section:not(#features):not(#how-it-works):not(#faq):not(.hero) {
  padding: 7rem 0;
}

.earnings-panel {
  display: flex;
  align-items: center;
  gap: 5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
}

.earnings-panel::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.earnings-panel h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.earnings-panel p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.check-list { list-style: none; display: grid; gap: 1rem; }

.check-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
  position: relative;
}

.step-card {
  padding: 3rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.875rem;
  color: var(--text-main);
}

.step-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

.step-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--glow-violet);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--bg-surface);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.faq-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
}

.faq-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 5.5rem 0 2.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-base);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-brand);
  opacity: 0.4;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 4rem;
  color: var(--text-muted);
}

.footer-links h4 {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero > .container > .hero-grid > .hero-text > p { margin: 0 auto 2.5rem; }
  .hero-mockup img { margin: 0 auto; }
  .store-buttons { justify-content: center; }
  .earnings-panel { flex-direction: column; gap: 3rem; text-align: center; padding: 3rem; }
  .check-list { text-align: left; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 4.5rem 0; }
  .hero h1 { font-size: 2.4rem; }
  .section-title h2 { font-size: 2rem; }
  .feature-card { padding: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 2rem; }
}

/* ============================================================
   SCROLL ANIMATIONS (fade-in-up)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
