/* ============================================================
   EzSim — Pricing & About page styles
   ============================================================ */

/* ---------- Compact dark page header (shared) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--text-ondark);
  padding: 156px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(100% 110% at 50% 0%, #000 30%, transparent 72%);
  mask-image: radial-gradient(100% 110% at 50% 0%, #000 30%, transparent 72%);
}
.page-hero::after {
  content: ''; position: absolute; top: -30%; right: 6%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(236,72,153,.12), transparent 62%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(40px, 5.4vw, 68px); margin-top: 22px; }
.page-hero h1 .accent { color: var(--lime); }
.page-hero p { margin-top: 22px; font-size: 21px; color: var(--text-ondark-muted); max-width: 620px; line-height: 1.5; }

/* ---------- Pricing ---------- */
.price-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 5px; border-radius: 999px; margin: 0 auto 48px;
}
.price-toggle button {
  font-family: 'Archivo'; font-weight: 600; font-size: 14.5px;
  padding: 9px 20px; border-radius: 999px; color: var(--text-muted);
  transition: background .2s, color .2s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 7px;
}
.price-toggle button.on { background: var(--ink); color: #fff; }
.price-toggle .save { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--lime-deep); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; background: var(--paper);
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow .25s, transform .25s;
}
.plan:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plan.featured {
  background: var(--ink); color: var(--text-ondark);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.plan.featured::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(236,72,153,.35);
  pointer-events: none;
}
.plan-tag { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); display: flex; align-items: center; justify-content: space-between; }
.plan.featured .plan-tag { color: var(--lime); }
.plan-tag .badge { font-family: 'Archivo'; font-weight: 600; letter-spacing: 0; text-transform: none; font-size: 12px; background: var(--lime); color: var(--ink); padding: 4px 11px; border-radius: 999px; }
.plan h3 { font-size: 26px; }
.plan.featured h3 { color: #fff; }
.plan .price { display: flex; align-items: baseline; gap: 8px; }
.plan .price .amt { font-family: 'Space Grotesk'; font-size: 46px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.plan .price .amt.amt-quote { font-size: 30px; }
.plan.featured .price .amt { color: #fff; }
.plan .price .per { font-size: 14px; color: var(--text-faint); }
.plan.featured .price .per { color: var(--text-ondark-faint); }
.plan .blurb { font-size: 15px; color: var(--text-muted); line-height: 1.55; min-height: 44px; }
.plan.featured .blurb { color: var(--text-ondark-muted); }
.plan .btn { width: 100%; justify-content: center; }
.plan ul { display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.plan li svg { width: 18px; height: 18px; color: var(--lime-deep); flex-shrink: 0; margin-top: 1px; }
.plan.featured li svg { color: var(--lime); }
.plan-sep { height: 1px; background: var(--line); }
.plan.featured .plan-sep { background: var(--line-dark); }

/* comparison */
.compare { margin-top: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 18px 24px; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: 'Space Grotesk'; font-size: 16px; font-weight: 600; background: var(--paper-2); }
.compare thead th:not(:first-child) { text-align: center; }
.compare td:not(:first-child) { text-align: center; color: var(--text-muted); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .feat { font-weight: 500; color: var(--text); }
.compare .yes { color: var(--lime-deep); }
.compare .sec-row td { background: var(--paper-2); font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); padding: 12px 24px; }
.compare .check { width: 20px; height: 20px; display: inline-block; vertical-align: middle; color: var(--lime-deep); }

/* FAQ */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 48px; margin-top: 40px; }
.faq-item h4 { font-family: 'Space Grotesk'; font-size: 18px; font-weight: 600; }
.faq-item p { margin-top: 8px; font-size: 15.5px; color: var(--text-muted); line-height: 1.55; }

/* ---------- About ---------- */
.mission { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.mission .lead { font-family: 'Space Grotesk'; font-size: clamp(24px, 2.6vw, 32px); font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.mission .lead .accent { color: var(--lime-deep); }
.mission .body p { font-size: 17px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.mission .body p:last-child { margin-bottom: 0; }
.mission .body b { color: var(--text); font-weight: 600; }

.stat-band { background: var(--ink); color: #fff; }
.stat-band .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-band .s .n { font-family: 'Space Grotesk'; font-size: clamp(40px, 4.4vw, 58px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.stat-band .s .n .sign { color: var(--lime); }
.stat-band .s .l { margin-top: 12px; color: var(--text-ondark-muted); font-size: 15px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: border-color .25s, box-shadow .25s; }
.value:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.value .vic { width: 42px; height: 42px; border-radius: 11px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.value .vic svg { width: 21px; height: 21px; }
.value h3 { font-size: 19px; }
.value p { margin-top: 10px; font-size: 15px; color: var(--text-muted); line-height: 1.55; }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.member .photo {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 9px, var(--paper-3) 9px, var(--paper-3) 18px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono'; font-size: 11px; color: var(--text-faint);
}
.member .nm { margin-top: 14px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 17px; }
.member .rl { margin-top: 3px; font-size: 14px; color: var(--text-muted); }

.logos-note { text-align:center; }

@media (max-width: 920px) {
  .plans { grid-template-columns: 1fr; }
  .mission { grid-template-columns: 1fr; gap: 28px; }
  .stat-band .row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .values { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  .compare { overflow-x: auto; }
}
