/* ══════════════════════════════════════════
   HERO — Eadee Landing
   ══════════════════════════════════════════ */

/* ── Hero section layout ── */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 57px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Background ── */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -8%,
      oklch(0.58 0.14 35 / 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%,
      oklch(0.70 0.06 78 / 0.04) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.028; mix-blend-mode: multiply;
}

/* ── Animations ── */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes mockRise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.a1 { animation: up 0.7s var(--ease-out) 0.05s both; }
.a2 { animation: up 0.7s var(--ease-out) 0.15s both; }
.a3 { animation: up 0.7s var(--ease-out) 0.28s both; }
.a4 { animation: up 0.7s var(--ease-out) 0.42s both; }
.a5 { animation: up 0.7s var(--ease-out) 0.54s both; }
.a-mock { animation: mockRise 1s var(--ease-out) 0.52s both; }

/* ── H1 ── */
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.020em;
  color: var(--ink);
  margin-bottom: 22px;
  font-style: normal;
  position: relative; z-index: 1;
}
.hero-h1 em { font-style: italic; color: var(--accent); }

/* ── Subtitle ── */
.hero-sub {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-3); font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  max-width: 480px;
  position: relative; z-index: 1;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.btn-p {
  font-size: 14.5px; font-weight: 500;
  background: var(--ink); color: var(--paper);
  padding: 14px 30px; border-radius: 999px;
  text-decoration: none; letter-spacing: -0.01em;
  box-shadow: var(--shadow-lift);
  transition: transform 0.15s, box-shadow 0.18s;
  display: inline-flex; align-items: center;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-s {
  font-size: 14.5px; color: var(--ink-2);
  text-decoration: none;
  padding: 14px 24px; border-radius: 999px;
  border: 1px solid var(--rule);
  letter-spacing: -0.01em;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
  display: inline-flex; align-items: center;
}
.btn-s:hover { border-color: var(--ink-4); color: var(--ink); transform: translateY(-2px); }

/* ── Proof chips ── */
.hero-proof {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ink-3);
  padding: 5px 13px 5px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: oklch(0.99 0.008 90 / 0.55);
  letter-spacing: -0.003em;
}
.chip-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: oklch(0.48 0.08 145 / 0.12);
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════
   MOCK WINDOW
   ══════════════════════════════════════════ */
.mock-wrap {
  position: relative; z-index: 1;
  width: 100%;
  padding: 0 32px 48px;
}
.mock-glow {
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 120px;
  background: radial-gradient(ellipse at 50% 100%,
    oklch(0.58 0.14 35 / 0.10) 0%,
    oklch(0.60 0.10 50 / 0.04) 50%,
    transparent 80%);
  pointer-events: none; z-index: 0;
}
.mock-window {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid oklch(0.30 0.009 57);
  box-shadow:
    0 0 0 1px oklch(0.22 0.008 57 / 0.5),
    0 -4px 40px oklch(0.17 0.012 55 / 0.12),
    0 20px 60px oklch(0.12 0.012 55 / 0.5),
    inset 0 1px 0 oklch(0.35 0.008 60 / 0.3);
}
.mock-bar {
  height: 38px; background: oklch(0.145 0.010 57);
  border-bottom: 1px solid oklch(0.220 0.008 58);
  display: flex; align-items: center; padding: 0 16px; gap: 8px;
  flex-shrink: 0;
}
.mock-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-bar .dr  { background: oklch(0.60 0.19 22); }
.mock-bar .dy  { background: oklch(0.68 0.14 65); }
.mock-bar .dg  { background: oklch(0.55 0.17 145); }
.mock-url {
  flex: 1; text-align: center;
  font-size: 10.5px; color: oklch(0.40 0.008 65); letter-spacing: 0.02em;
  font-family: var(--sans);
}
.mock-body {
  display: flex; height: 540px;
  background: oklch(0.118 0.011 56);
}

/* Sidebar */
.mock-side {
  width: 188px; flex-shrink: 0;
  background: oklch(0.105 0.010 56);
  border-right: 1px solid oklch(0.220 0.008 58);
  display: flex; flex-direction: column;
  padding: 16px 0;
}
.side-brand {
  display: flex; align-items: center; gap: 9px;
  padding: 0 16px 14px;
  border-bottom: 1px solid oklch(0.220 0.008 58);
  margin-bottom: 12px;
}
.side-logo {
  width: 24px; height: 24px; border-radius: 5px;
  background: oklch(0.25 0.012 58);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.side-name {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14.5px; color: oklch(0.88 0.008 80); letter-spacing: 0.2px;
}
.mock-nav-item {
  display: flex; align-items: center; gap: 9px;
  margin: 1px 8px; padding: 7px 10px;
  border-radius: 6px; font-size: 12.5px; color: oklch(0.46 0.008 68);
  cursor: default;
}
.mock-nav-item.active {
  background: oklch(0.57 0.145 34 / 0.14);
  color: oklch(0.75 0.10 36);
}
.nav-pip {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: 0.5; flex-shrink: 0;
}
.mock-nav-item.active .nav-pip { opacity: 1; }
.mock-nav-sep {
  height: 1px; background: oklch(0.220 0.008 58);
  margin: 8px 12px;
}
.side-credits {
  margin: auto 10px 0;
  background: oklch(0.155 0.010 57);
  border: 1px solid oklch(0.220 0.008 58);
  border-radius: 8px; padding: 12px;
}
.credits-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.credits-lbl { font-size: 10px; color: oklch(0.46 0.008 68); letter-spacing: 0.04em; }
.credits-val { font-size: 10px; color: oklch(0.68 0.12 36); }
.credits-bar { height: 3px; border-radius: 2px; background: oklch(0.22 0.008 58); }
.credits-fill { height: 100%; width: 33%; border-radius: 2px; background: oklch(0.57 0.145 34); }
.credits-meta { font-size: 9.5px; color: oklch(0.46 0.008 68); margin-top: 4px; letter-spacing: 0.02em; }
.credits-cta {
  margin-top: 9px; font-size: 10px; font-weight: 500;
  color: oklch(0.57 0.145 34); text-align: center;
  padding: 5px 0; border: 1px solid oklch(0.57 0.145 34 / 0.35);
  border-radius: 5px; cursor: default;
}

/* Main */
.mock-main {
  flex: 1; padding: 22px 26px;
  display: flex; flex-direction: column; gap: 18px; overflow: hidden;
}
.plan-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.plan-eyebrow {
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: oklch(0.55 0.14 145); margin-bottom: 5px;
}
.plan-title { font-size: 14px; font-weight: 500; color: oklch(0.88 0.008 80); line-height: 1.3; }
.plan-tagline { font-size: 10.5px; color: oklch(0.46 0.008 68); margin-top: 3px; font-style: italic; letter-spacing: 0.01em; }
.mock-score {
  display: flex; flex-direction: column; align-items: center;
  background: oklch(0.155 0.010 57); border: 1px solid oklch(0.220 0.008 58);
  border-radius: 8px; padding: 8px 14px; flex-shrink: 0;
}
.score-lbl { font-size: 8px; color: oklch(0.46 0.008 68); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.score-n { font-size: 22px; font-weight: 600; color: oklch(0.62 0.14 145); line-height: 1; }
.score-s { font-size: 9px; color: oklch(0.46 0.008 68); margin-top: 1px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { background: oklch(0.155 0.010 57); border: 1px solid oklch(0.220 0.008 58); border-radius: 8px; padding: 14px 16px; }
.kpi-l { font-size: 9px; color: oklch(0.46 0.008 68); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 8px; }
.kpi-v { font-size: 18px; font-weight: 500; letter-spacing: -0.03em; color: oklch(0.90 0.008 80); line-height: 1; }
.kpi-h { font-size: 9px; margin-top: 4px; color: oklch(0.46 0.008 68); line-height: 1.3; }
.kpi-h.g { color: oklch(0.60 0.13 145); }
.mock-chart {
  flex: 1; background: oklch(0.155 0.010 57);
  border: 1px solid oklch(0.220 0.008 58);
  border-radius: 8px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; min-height: 0;
}
.chart-head { display: flex; justify-content: space-between; align-items: center; }
.chart-lbl { font-size: 9px; color: oklch(0.46 0.008 68); text-transform: uppercase; letter-spacing: 0.10em; }
.chart-val { font-size: 12px; color: oklch(0.70 0.11 36); }
.bars { display: flex; align-items: flex-end; gap: 5px; flex: 1; min-height: 0; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: oklch(0.57 0.145 34 / 0.18); }
.bar.hi { background: oklch(0.57 0.145 34 / 0.65); }
.bar.md { background: oklch(0.57 0.145 34 / 0.40); }

/* Right panel */
.mock-right {
  width: 228px; flex-shrink: 0;
  border-left: 1px solid oklch(0.220 0.008 58);
  background: oklch(0.112 0.010 56);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px; overflow: hidden;
}
.panel-title {
  font-size: 9.5px; color: oklch(0.46 0.008 68);
  text-transform: uppercase; letter-spacing: 0.10em;
  padding-bottom: 9px; border-bottom: 1px solid oklch(0.220 0.008 58);
  flex-shrink: 0;
}
.cat-group { display: flex; flex-direction: column; gap: 3px; }
.cat-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; margin-bottom: 2px;
}
.cat-label::before { content: ''; width: 5px; height: 5px; border-radius: 2px; background: currentColor; opacity: 0.7; flex-shrink: 0; }
.cat-label.strat { color: oklch(0.62 0.11 236); }
.cat-label.markt { color: oklch(0.65 0.12 168); }
.cat-label.finan { color: oklch(0.68 0.14 65); }
.cat-label.actn  { color: oklch(0.70 0.11 36); }
.cat-label.legal { color: oklch(0.65 0.10 300); }
.sect { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 5px; }
.sect-name { font-size: 10.5px; color: oklch(0.60 0.007 70); flex: 1; line-height: 1.3; }
.sect-check {
  width: 13px; height: 13px; border-radius: 50%;
  background: oklch(0.48 0.08 145 / 0.15);
  border: 1px solid oklch(0.48 0.08 145 / 0.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══ Responsive ══ */
@media (max-width: 768px) {
  .hero-inner { padding: 64px 20px 40px; }
  .hero-h1 { font-size: clamp(38px, 10vw, 60px); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-p, .btn-s { width: 100%; justify-content: center; text-align: center; }
  .mock-wrap { padding: 0 16px; }
  .mock-body { height: 320px; }
  .mock-right, .mock-side { display: none; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
}
