/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) 5vw 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #e8541a, transparent 70%);
  top: -100px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f5a623, transparent 70%);
  bottom: 0; right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.98); }
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin: 1rem 0 1.5rem; }
.hero-sub {
  font-size: 1.05rem; max-width: 480px;
  color: var(--mist); margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── DASHBOARD MOCK ─────────────────────────────────────────────────────── */
.hero-visual { position: relative; z-index: 1; }
.dashboard-mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s var(--ease-out-expo);
}
.dashboard-mock:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }
.mock-title { margin-left: 0.5rem; font-size: 0.75rem; color: var(--mist); }
.mock-body { padding: 1.25rem; }
.mock-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.mock-stat {
  background: var(--surface);
  border-radius: 10px; padding: 0.75rem;
  border: 1px solid var(--line);
}
.mock-label { font-size: 0.65rem; color: var(--mist); margin-bottom: 0.3rem; }
.mock-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.mock-val.orange { color: var(--orange); }
.mock-chart { background: var(--surface); border-radius: 10px; padding: 1rem; border: 1px solid var(--line); margin-bottom: 0.75rem; }
.mock-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-bottom: 0.5rem; }
.mock-bar-item {
  flex: 1; background: rgba(255,255,255,0.08);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}
.mock-bar-item.active { background: var(--orange); }
.mock-chart-label { font-size: 0.65rem; color: var(--mist); }
.mock-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mock-pill {
  font-size: 0.65rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 100px;
}
.mock-pill.green { background: rgba(40,200,64,0.15); color: #28c840; }
.mock-pill.orange { background: rgba(232,84,26,0.15); color: var(--orange); }

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-section {
  padding: 2rem 0;
  overflow: hidden;
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-label {
  text-align: center; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 1.25rem;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; gap: 3rem;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mist); white-space: nowrap;
  padding: 0 1rem;
  border-left: 1px solid var(--line);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── PROBLEM SECTION ────────────────────────────────────────────────────── */
.problem-section h2 { max-width: 700px; margin-bottom: 3rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}
.problem-card:hover { border-color: rgba(232,84,26,0.3); transform: translateY(-4px); }
.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }

/* ─── SOLUTION ───────────────────────────────────────────────────────────── */
.solution-section { overflow: hidden; }
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.solution-text h2 { margin-bottom: 1.25rem; }
.solution-text > p { margin-bottom: 2rem; }
.solution-features { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.sol-feat { display: flex; gap: 1rem; align-items: flex-start; }
.sol-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); margin-top: 0.3rem; flex-shrink: 0;
  box-shadow: 0 0 12px rgba(232,84,26,0.6);
}
.sol-feat strong { display: block; color: var(--white); margin-bottom: 0.25rem; }
.sol-feat p { font-size: 0.9rem; }

/* loop diagram */
.loop-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
}
.loop-node {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 2rem;
  text-align: center;
  position: relative; z-index: 2;
  transition: all 0.3s;
  width: 160px;
}
.loop-node:hover { border-color: rgba(232,84,26,0.4); transform: scale(1.05); }
.loop-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.loop-node span { font-size: 0.85rem; font-weight: 600; color: var(--pale); }
.loop-center {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.loop-logo-wrap img { width: 90px; position: relative; z-index: 2; }
.loop-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(232,84,26,0.2);
  animation: pulse-ring 3s ease-in-out infinite;
}
.loop-ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.loop-ring-2 { width: 130%; height: 130%; animation-delay: 1.5s; }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
.loop-arrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--orange); text-transform: uppercase;
}

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats-section { text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s;
}
.stat-item:hover { border-color: rgba(232,84,26,0.3); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-desc { font-size: 0.85rem; color: var(--mist); }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-section {}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--orange); opacity: 0.4;
  margin-bottom: 0.5rem;
}
.testimonial-text { font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--white); }
.testimonial-author span { font-size: 0.75rem; color: var(--mist); }

/* ─── ROADMAP ────────────────────────────────────────────────────────────── */
.roadmap-section h2 { margin-bottom: 3rem; }
.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.roadmap-track::before {
  content: ''; position: absolute;
  top: 18px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,84,26,0.1));
  z-index: 0;
}
.roadmap-item { position: relative; padding: 0 1rem; }
.roadmap-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
  transition: all 0.3s;
}
.roadmap-item.active .roadmap-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(232,84,26,0.5);
}
.roadmap-phase {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 0.5rem;
}
.roadmap-content h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.roadmap-content p { font-size: 0.85rem; }

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta-section { padding: 5rem 5vw; }
.cta-inner {
  background: var(--card);
  border: 1px solid rgba(232,84,26,0.2);
  border-radius: 24px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,26,0.12), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner h2 { margin-bottom: 1rem; position: relative; }
.cta-inner p { max-width: 500px; margin: 0 auto 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; position: relative; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 3rem); }
  .hero-visual { display: none; }
  .solution-inner { grid-template-columns: 1fr; }
  .solution-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track::before { display: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 3rem 1.5rem; }
  .hero-actions { flex-direction: column; }
}
