/* ── HERO ── */
.animate { animation: fadeUp 0.55s ease both; }

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: fixed; top: -140px; right: -100px;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, oklch(85% 0.07 265) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--indigo-light); color: var(--indigo-mid);
  padding: 6px 14px 6px 8px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.01em; width: fit-content;
  margin-bottom: 1.25rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo-mid); }
h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.035em;
  color: var(--text); text-wrap: balance;
  margin-bottom: 1.25rem;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-mid), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--muted);
  max-width: 430px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 13px 24px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 18px oklch(62% 0.18 28 / 30%);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px oklch(62% 0.18 28 / 40%); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--indigo);
  padding: 13px 20px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--indigo-mid); background: var(--indigo-light); }

/* ── BROWSER MOCKUP ── */
.browser-wrap { position: relative; }
.browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px oklch(0% 0 0 / 4%), 0 24px 60px oklch(40% 0.18 265 / 12%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: oklch(97% 0.01 265);
  border-bottom: 1px solid var(--border);
}
.b-dots { display: flex; gap: 4px; }
.b-dots span { width: 9px; height: 9px; border-radius: 50%; }
.b-dots span:nth-child(1) { background: #ff5f57; }
.b-dots span:nth-child(2) { background: #febc2e; }
.b-dots span:nth-child(3) { background: #28c840; }
.b-url {
  flex: 1; background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.72rem; color: var(--muted);
  display: flex; align-items: center; gap: 5px;
}
.site-preview {
  padding: 1.25rem 1.25rem 0;
  background: linear-gradient(180deg, oklch(97% 0.015 265) 0%, #fff 100%);
}
.site-nav-mock {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.site-logo-mock { width: 70px; height: 10px; border-radius: 5px; background: var(--indigo-light); }
.site-nav-links { display: flex; gap: 8px; }
.site-nav-links span { width: 32px; height: 8px; border-radius: 4px; background: var(--border); }
.site-hero-mock {
  background: linear-gradient(135deg, var(--indigo) 0%, oklch(30% 0.15 280) 100%);
  border-radius: 10px; padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: 8px;
}
.site-h1-mock { width: 65%; height: 12px; border-radius: 6px; background: oklch(100% 0 0 / 0.35); }
.site-h2-mock { width: 45%; height: 8px; border-radius: 4px; background: oklch(100% 0 0 / 0.2); }
.site-cta-mock { width: 90px; height: 28px; border-radius: 6px; background: var(--accent); margin-top: 4px; }
.site-cards-mock { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 1rem; }
.site-card-mock {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 10px; height: 60px;
  display: flex; flex-direction: column; gap: 5px; justify-content: center;
}
.smc-img { width: 100%; height: 18px; border-radius: 4px; background: var(--indigo-light); }
.smc-txt { width: 60%; height: 6px; border-radius: 3px; background: var(--border); }

/* ── FLOAT TAGS ── */
.float-tag {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 12px;
  box-shadow: 0 4px 20px oklch(0% 0 0 / 12%);
  font-size: 0.75rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.float-tag.t1 { top: -14px; right: 24px; color: oklch(45% 0.18 145); animation: float1 4s ease-in-out infinite; }
.float-tag.t2 { bottom: 24px; right: -18px; color: var(--indigo); animation: float2 4.5s ease-in-out infinite; }

/* ── TRUST BAR ── */
.trust-bar { margin-top: 4rem; border-top: 1px solid var(--border); padding: 2rem 0; }
.trust-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
}
.trust-items { display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text);
}
.trust-item svg { opacity: 0.5; }

/* ── SECTION ── */
.section { padding: 6rem 0 0; }

/* ── BUILD GRID ── */
.build-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.build-card {
  border-radius: 20px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  border: 1.5px solid var(--border); background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.build-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px oklch(40% 0.18 265 / 8%); }
.build-card.featured {
  background: linear-gradient(135deg, oklch(38% 0.18 265) 0%, oklch(28% 0.14 280) 100%);
  border-color: transparent;
}
.build-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.build-card:not(.featured) .build-icon { background: var(--indigo-light); }
.build-card.featured .build-icon { background: oklch(100% 0 0 / 0.12); }
.build-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
}
.build-card:not(.featured) .build-name { color: var(--text); }
.build-card.featured .build-name { color: #fff; }
.build-desc { font-size: 0.88rem; line-height: 1.65; }
.build-card:not(.featured) .build-desc { color: var(--muted); }
.build-card.featured .build-desc { color: oklch(80% 0.05 265); }
.build-sectors { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.25rem; }
.sector-chip {
  font-size: 0.75rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 4px 10px; border-radius: 100px;
}
.build-card:not(.featured) .sector-chip { background: var(--indigo-light); color: var(--indigo); }
.build-card.featured .sector-chip { background: oklch(100% 0 0 / 0.12); color: oklch(85% 0.05 265); }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 24px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
  pointer-events: none; z-index: 0;
}
.process-step { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--indigo);
  box-shadow: 0 2px 8px oklch(0% 0 0 / 6%);
}
.process-step.active .step-num {
  background: var(--indigo); color: #fff; border-color: var(--indigo);
  box-shadow: 0 4px 16px oklch(40% 0.18 265 / 25%);
}
.step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.step-desc { font-size: 0.83rem; line-height: 1.6; color: var(--muted); }

/* ── DASHBOARD CONNECT ── */
.dash-connect {
  margin-top: 6rem;
  background: linear-gradient(135deg, oklch(38% 0.18 265) 0%, oklch(28% 0.14 280) 100%);
  border-radius: 28px;
  padding: clamp(2.5rem, 4vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.dash-connect::before {
  content: '';
  position: absolute; top: -80px; right: 60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.04);
  pointer-events: none;
}
.dash-connect-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff; letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}
.dash-connect-desc { font-size: 0.93rem; line-height: 1.7; color: oklch(78% 0.05 265); margin-bottom: 1.5rem; }
.dash-connect-label { color: oklch(72% 0.1 265); }
.dash-perks { display: flex; flex-direction: column; gap: 0.6rem; }
.dash-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: oklch(85% 0.05 265);
}
.dash-perk-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── MINI DASHBOARD ── */
.mini-dash {
  background: oklch(100% 0 0 / 0.07);
  border-radius: 18px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mini-dash-header { display: flex; justify-content: space-between; align-items: center; }
.mini-dash-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: oklch(70% 0.06 265); letter-spacing: 0.05em; text-transform: uppercase;
}
.mini-live {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.68rem; font-weight: 600;
  color: oklch(72% 0.14 145);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mini-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: oklch(65% 0.16 145);
  animation: pulse 2s ease-in-out infinite;
}
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mini-stat { background: oklch(100% 0 0 / 0.08); border-radius: 12px; padding: 0.85rem; }
.mini-stat-lbl {
  font-size: 0.65rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: oklch(65% 0.06 265);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem;
}
.mini-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.2rem;
}
.mini-stat-d { font-size: 0.68rem; font-weight: 600; color: oklch(72% 0.14 145); }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 44px; }
.mini-bar { flex: 1; border-radius: 3px 3px 0 0; background: oklch(100% 0 0 / 0.15); }
.mini-bar.hi { background: oklch(65% 0.16 265); }

/* ── CTA FINAL ── */
.cta-final { margin: 6rem 0; text-align: center; }
.cta-final-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  box-shadow: 0 4px 6px oklch(0% 0 0 / 3%), 0 20px 50px oklch(40% 0.18 265 / 7%);
  position: relative; overflow: hidden;
}
.cta-final-inner::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, oklch(90% 0.05 265) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  color: var(--text); margin-bottom: 0.75rem;
  position: relative;
}
.cta-final h2 em { font-style: normal; color: var(--indigo-mid); }
.cta-final p {
  font-size: 1rem; line-height: 1.7; color: var(--muted);
  max-width: 480px; margin: 0 auto 2rem; position: relative;
}
.cta-final-btns {
  display: flex; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap; position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .browser-wrap { display: none; }
  .build-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .dash-connect { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: repeat(2, 1fr); }
}
