/* ============================================================
   TokenProp — Landing Page Styles
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
}
.hero-orb--blue {
  width: 500px; height: 500px; background: var(--accent-blue);
  top: -10%; right: -5%; animation: float 8s ease-in-out infinite;
}
.hero-orb--purple {
  width: 400px; height: 400px; background: #6C63FF;
  bottom: -15%; left: -8%; animation: float 10s ease-in-out infinite reverse;
}
.hero-orb--gold {
  width: 250px; height: 250px; background: var(--accent-gold);
  top: 30%; left: 50%; animation: float 7s ease-in-out infinite 1s;
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2);
  font-size: 0.82rem; font-weight: 600; color: var(--accent-blue);
  margin-bottom: 24px; animation: fade-up 0.8s var(--ease) both;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); animation: pulse-dot 2s infinite; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 20px;
  animation: fade-up 0.8s var(--ease) 0.15s both;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 36px; animation: fade-up 0.8s var(--ease) 0.3s both;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease) 0.45s both;
}

/* Hero visual side */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: fade-in 1.2s var(--ease) 0.5s both;
}

.hero-card-stack {
  position: relative; width: 100%; max-width: 440px; aspect-ratio: 1;
}

.hero-float-card {
  position: absolute; padding: 20px 24px;
  background: var(--bg-card); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-float-card--main {
  top: 10%; left: 5%; right: 5%;
  padding: 24px; z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.hero-float-card--main .prop-name { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.hero-float-card--main .prop-loc  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.hero-float-card--main .prop-row  { display: flex; justify-content: space-between; margin-bottom: 8px; }
.hero-float-card--main .prop-label { font-size: 0.78rem; color: var(--text-muted); }
.hero-float-card--main .prop-value { font-size: 0.95rem; font-weight: 600; }

.hero-float-card--stats {
  bottom: 20%; left: -5%; z-index: 2;
  animation: float 7s ease-in-out infinite 0.5s;
}
.hero-float-card--stats .stat-row { display: flex; align-items: center; gap: 12px; }
.hero-float-card--stats .stat-row + .stat-row { margin-top: 12px; }
.hero-float-card--stats .stat-icon {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-float-card--stats .stat-icon.blue  { background: rgba(79,142,247,0.15); }
.hero-float-card--stats .stat-icon.green { background: rgba(0,212,161,0.15); }
.hero-float-card--stats .stat-label { font-size: 0.75rem; color: var(--text-muted); }
.hero-float-card--stats .stat-val   { font-size: 1rem; font-weight: 700; }

.hero-float-card--yield {
  bottom: 10%; right: 0; z-index: 4;
  animation: float 5s ease-in-out infinite 1s;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card--yield .yield-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(0,212,161,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-float-card--yield .yield-text .yield-label { font-size: 0.75rem; color: var(--text-muted); }
.hero-float-card--yield .yield-text .yield-val   { font-size: 1.3rem; font-weight: 700; color: var(--accent-green); }

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 48px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 700;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- How It Works ---------- */
.how-it-works { position: relative; }
.how-it-works .section-header { text-align: center; margin-bottom: 64px; }
.how-it-works .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.how-it-works .section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 60px; left: 16.5%; right: 16.5%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-gold), var(--accent-green), transparent);
  opacity: 0.3;
}

.step-card {
  text-align: center; padding: 40px 28px;
  position: relative; z-index: 1;
}
.step-number {
  width: 56px; height: 56px; margin: 0 auto 24px;
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700;
}
.step-card:nth-child(1) .step-number { background: rgba(79,142,247,0.15); color: var(--accent-blue); }
.step-card:nth-child(2) .step-number { background: rgba(245,166,35,0.15); color: var(--accent-gold); }
.step-card:nth-child(3) .step-number { background: rgba(0,212,161,0.15); color: var(--accent-green); }

.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p  { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ---------- Featured Properties ---------- */
.featured { position: relative; background: rgba(255,255,255,0.01); }
.featured .section-header { text-align: center; margin-bottom: 48px; }
.featured .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.featured .section-header p { color: var(--text-secondary); }

.properties-carousel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.property-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  border-color: rgba(79,142,247,0.2);
}

.property-card .card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, #1a1a3e, #2a2a5e);
}
.property-card .card-body { padding: 20px; }
.property-card .card-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.property-card .card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.property-card .card-location { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }

.property-card .card-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
}
.property-card .metric-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.property-card .metric-value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

.property-card .card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.04);
}
.property-card .card-footer .price { font-size: 0.85rem; color: var(--text-muted); }
.property-card .card-footer .price span { color: var(--text-primary); font-weight: 600; font-size: 1rem; }

/* ---------- Why TokenProp ---------- */
.why-section .section-header { text-align: center; margin-bottom: 64px; }
.why-section .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.why-section .section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  padding: 32px; display: flex; gap: 20px;
}
.why-card .why-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.why-card:nth-child(1) .why-icon { background: rgba(79,142,247,0.12); }
.why-card:nth-child(2) .why-icon { background: rgba(245,166,35,0.12); }
.why-card:nth-child(3) .why-icon { background: rgba(0,212,161,0.12); }
.why-card:nth-child(4) .why-icon { background: rgba(108,99,255,0.12); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p  { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(79,142,247,0.08) 0%, transparent 70%);
}
.cta-section h2 { font-size: 2.4rem; margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid::before { display: none; }
  .properties-carousel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .properties-carousel { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
