/* Landing page specific styles */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(124,59,237,0.10), transparent 70%),
    radial-gradient(40% 40% at 90% 10%, rgba(124,59,237,0.06), transparent 70%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(10,15,34,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,15,34,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin-top: 24px;
}
.hero h1 .serif {
  color: var(--blue-600);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-500);
  max-width: 540px;
  line-height: 1.5;
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -10px;
  background: var(--ink-100);
  background-size: cover;
  background-position: center;
}
.avatar-stack .av:first-child { margin-left: 0; }
.hero__proof-text {
  font-size: 13.5px;
  color: var(--ink-500);
}
.hero__proof-text strong { color: var(--ink-950); font-weight: 600; }
.stars { color: #F5A623; letter-spacing: -1px; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- HERO VISUAL: Dashboard mock ---------- */
.dashmock {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.dashmock__top {
  display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.dashmock__top span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ink-100);
}
.dashmock__top .url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-400);
  background: var(--paper-dim); padding: 4px 10px; border-radius: 6px;
}
.dashmock__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 4px 16px; border-bottom: 1px solid var(--ink-100);
}
.dashmock__head h4 {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
}
.dashmock__head .badge {
  background: var(--blue-50); color: var(--blue-700);
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.dashmock__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 18px 4px 12px;
}
.stat__label { font-size: 11px; color: var(--ink-400); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.stat__value { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink-950); margin-top: 4px; }
.stat__delta { font-size: 11px; color: #1E9D63; margin-top: 2px; font-weight: 500; }

.dashmock__chart {
  margin-top: 10px; padding: 16px; background: var(--paper-dim); border-radius: var(--radius-md);
  height: 120px;
}
.chart-svg { width: 100%; height: 100%; }
.chart-svg path.area { fill: url(#chartGrad); opacity: 0.85; }
.chart-svg path.line { fill: none; stroke: var(--blue-500); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.chart-svg circle { fill: var(--blue-500); stroke: var(--paper); stroke-width: 2; }

.review-card-mini {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  width: 240px;
}
.review-card-mini .head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.review-card-mini .name { font-size: 13px; font-weight: 600; }
.review-card-mini .verify { font-size: 10px; color: var(--blue-700); font-family: var(--font-mono); letter-spacing: 0.04em; }
.review-card-mini p { font-size: 13px; color: var(--ink-700); line-height: 1.4; }
.review-card-mini .av {
  width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-300), var(--blue-600));
}

.dashmock .float-1 { top: -28px; left: -42px; transform: rotate(-3deg); }
.dashmock .float-2 { bottom: -32px; right: -38px; transform: rotate(2deg); }

@media (max-width: 920px) {
  .dashmock { transform: none; }
  .dashmock .float-1, .dashmock .float-2 { display: none; }
}

/* ---------- LOGO BAR ---------- */
.logobar {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--ink-100);
}
.logobar__label {
  text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-400);
  margin-bottom: 28px;
}
.logobar__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logobar__item {
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-400);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  filter: grayscale(1);
  opacity: 0.85;
}
.logobar__item small { font-size: 11px; font-weight: 400; }
@media (max-width: 760px) {
  .logobar__row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
