/* ===========================
   BlessedExotic / MEVBOT – Visual Redesign (CSS-only)
   No HTML/text changes required
=========================== */

/* Google Font (CSS-only import) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* Color system */
:root{
  --bg: #0b1020;            /* page background */
  --surface: #10182b;       /* cards/sections */
  --muted: #9fb0c3;         /* secondary text */
  --text: #e8eef6;          /* main text */
  --primary: #22d3ee;       /* cyan accent */
  --primary-2: #3b82f6;     /* blue accent */
  --accent: #10b981;        /* emerald for brand buttons */
  --border: #1b2a41;        /* subtle borders */
  --ring: rgba(34,211,238,.35);
}

/* Base */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(1000px 700px at 110% 10%, rgba(16,185,129,.12), transparent 55%),
    var(--bg);
}

/* Global type */
h1, h2 {
  color: #ffffff;
  letter-spacing: .2px;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(26px, 4.8vw, 44px); line-height: 1.12; }
h2 { font-size: clamp(20px, 3.2vw, 28px); line-height: 1.18; }
p, li { color: var(--muted); font-size: 1.02rem; }

/* Layout helpers */
section, .hero, footer {
  width: min(1100px, 92%);
  margin: 0 auto;
}
section { padding: 42px 0; border-top: 1px solid rgba(255,255,255,.06); }

/* Hero */
.hero {
  margin-top: 18px;
  padding: 64px 0 46px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(34,211,238,.18), rgba(59,130,246,.08) 30%, transparent 75%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.03);
}
.hero p {
  max-width: 760px;
  margin: 10px auto 0;
}

/* Buttons */
.cta-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #06121e;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border: none;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  box-shadow:
    0 8px 20px rgba(34,211,238,.25),
    0 2px 0 rgba(0,0,0,.15) inset;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(34,211,238,.28),
    0 2px 0 rgba(0,0,0,.2) inset;
  filter: brightness(1.05);
}
.cta-button:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .cta-button { transition: none; }
}

/* Lists & steps */
ol, ul { padding-left: 1.2rem; }
li { margin: .3rem 0; }

/* Testimonials section */
.testimonials {
  text-align: center;
}
.testimonials h2 { margin-bottom: 16px; }

/* Responsive video (no HTML changes required) */
.testimonials iframe {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f172a;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* Testimonial cards */
.testimonial-card {
  margin: 18px auto;
  max-width: 720px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow:
    0 10px 24px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
}
.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(34,211,238,.35);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.testimonial-card p { margin: 0; }

/* “Final CTA” section */
.final-cta {
  text-align: center;
  padding: 48px 18px;
  background:
    linear-gradient(90deg, rgba(16,185,129,.14), rgba(59,130,246,.12));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.final-cta .cta-button {
  margin-top: 14px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 14px;
  padding: 22px 0 34px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Utilities */
section > h2 + p { margin-top: .3rem; }
section > * + * { margin-top: .6rem; }

/* Narrow screens */
@media (max-width: 780px){
  .testimonial-card { grid-template-columns: 56px 1fr; }
  .testimonial-card img { width: 56px; height: 56px; }
}
