/* ============================================================
   MeozAI — landing page styles
   Light theme · Apple-clean · one confident accent
   ============================================================ */

:root {
  --bg:        #faf8f4;   /* warm cream */
  --bg-alt:    #f3efe8;   /* alternating band */
  --surface:   #ffffff;
  --text:      #1b1a17;   /* warm near-black */
  --text-soft: #6d675f;
  --text-faint:#9a948a;
  --border:    rgba(24, 20, 12, 0.09);
  --border-2:  rgba(24, 20, 12, 0.06);

  --accent:        #6c5ce7;  /* violet */
  --accent-strong: #5a49d6;
  --accent-soft:   #efedfd;
  --accent-tint:   rgba(108, 92, 231, 0.10);
  --pink:          #ffa6be;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:    0 18px 50px -18px rgba(38, 28, 74, 0.22);
  --shadow-sm: 0 6px 20px -8px rgba(38, 28, 74, 0.18);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 680; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 640;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 620;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(108, 92, 231, 0.6);
}
.btn--primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(108, 92, 231, 0.7); }

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(108,92,231,.35); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-color: var(--border-2); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand__mark { color: var(--accent); display: inline-flex; }
.brand__name { color: var(--text); }

.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--text-soft); font-weight: 520; font-size: 0.95rem; transition: color .15s ease; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 20px;
  border-bottom: 1px solid var(--border-2);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(16px);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 12px 4px; color: var(--text-soft); font-weight: 540; border-bottom: 1px solid var(--border-2); }
.nav__mobile a.btn { margin-top: 12px; border-bottom: 0; color: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 78px 0 60px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% 0 auto 0; height: 620px; z-index: 0;
  background:
    radial-gradient(600px 380px at 72% 22%, rgba(108, 92, 231, 0.16), transparent 70%),
    radial-gradient(520px 360px at 20% 8%, rgba(255, 166, 190, 0.16), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.15rem); font-weight: 720; margin-bottom: 22px; }
.hero__sub { font-size: 1.18rem; color: var(--text-soft); max-width: 30em; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero__note { font-size: 0.9rem; color: var(--text-faint); }

.hero__trust {
  position: relative; z-index: 1;
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px 30px;
  justify-content: center; margin-top: 58px; padding-top: 30px;
  border-top: 1px solid var(--border-2);
}
.hero__trust li { color: var(--text-soft); font-weight: 540; font-size: 0.95rem; display: flex; align-items: center; gap: 9px; }
.hero__trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); opacity: .7; }

/* ---------- Meoz stage ---------- */
.meoz-stage { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 440px; margin-inline: auto; display: grid; place-items: center; }
.meoz-halo {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fdfbff 42%, rgba(108,92,231,.12) 78%, transparent 82%);
  box-shadow: inset 0 0 80px rgba(108,92,231,.08);
}
.meoz { position: relative; width: 82%; filter: drop-shadow(0 22px 30px rgba(60, 40, 110, 0.14)); }
.meoz-sway { transform-box: fill-box; transform-origin: 50% 88%; animation: meozSway 5.5s ease-in-out infinite alternate; }
.meoz-float { transform-box: fill-box; animation: meozFloat 4.2s ease-in-out infinite alternate; }
.meoz-eyes { transform-box: fill-box; transform-origin: center; animation: meozBlink 5s ease-in-out infinite; }

@keyframes meozSway  { from { transform: rotate(-5deg); } to { transform: rotate(5deg); } }
@keyframes meozFloat { from { transform: translateY(4px); } to { transform: translateY(-12px); } }
@keyframes meozBlink { 0%, 90%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } }

/* floating nudge card */
.nudge {
  position: absolute; right: -4px; bottom: 6%;
  width: min(280px, 78%);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 15px;
  animation: nudgeBob 5s ease-in-out infinite;
}
@keyframes nudgeBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.nudge__row { display: flex; gap: 10px; align-items: flex-start; }
.nudge__dot { flex: none; width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: #ff7a90; box-shadow: 0 0 0 4px rgba(255,122,144,.16); }
.nudge__text { font-size: 0.92rem; color: var(--text); font-weight: 520; }
.nudge__btns { display: flex; gap: 8px; margin-top: 12px; }
.chip { font-size: 0.82rem; font-weight: 600; padding: 7px 13px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); color: var(--text-soft); }
.chip--solid { background: var(--accent); color: #fff; border-color: transparent; }

/* ---------- generic sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section__head p { color: var(--text-soft); font-size: 1.1rem; }

/* problem band */
.band { padding: 76px 0; background: var(--text); color: #f7f4ef; }
.band__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.band__lead { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 640; letter-spacing: -0.02em; margin-bottom: 18px; }
.band__lead em { color: #b7a8ff; font-style: normal; }
.band__body { font-size: 1.15rem; color: rgba(247,244,239,.72); max-width: 34em; margin-inline: auto; }
.band__hl { color: #fdfbf7; font-weight: 520; }
.band__hl strong { color: #b7a8ff; font-weight: 640; }
.band__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 26px; }
.band__tags li {
  font-size: 0.84rem; font-weight: 520; color: rgba(247, 244, 239, 0.82);
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 13px; border-radius: 100px;
}
.band__tags li::before { content: "#"; color: #b7a8ff; margin-right: 1px; }

/* ---------- feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Features groups & PRO badges */
.features-group { margin-bottom: 64px; }
.features-group__title { font-size: 1.25rem; font-weight: 650; margin-bottom: 28px; color: var(--text); }
.features-group--pro { margin-top: 16px; }
.features-group--pro .features-group__title { color: var(--accent); }
.badge-pro {
  display: inline-block; vertical-align: middle;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe); color: #fff;
  font-size: 0.65rem; font-weight: 750; letter-spacing: .05em; padding: 3px 6px;
  border-radius: 4px; margin-left: 6px; position: relative; top: -2px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  display: inline-flex; width: 46px; height: 46px; border-radius: 13px;
  align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.card p { color: var(--text-soft); font-size: 0.98rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 30px 26px; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__num {
  display: inline-flex; width: 40px; height: 40px; border-radius: 50%;
  align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem;
  color: #fff; background: var(--accent); margin-bottom: 16px;
  box-shadow: 0 8px 18px -8px rgba(108,92,231,.7);
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.98rem; }

/* ---------- meet ---------- */
.meet__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.meet__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.meet__copy p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 16px; max-width: 32em; }
.meoz-stage--sm { max-width: 340px; }
.meoz--sm { width: 76%; }
.meoz-halo--sm { background: radial-gradient(circle at 50% 45%, #fff 0%, #fdfbff 45%, rgba(255,166,190,.16) 78%, transparent 82%); }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 24px; justify-content: center; }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan--featured { border-color: rgba(108,92,231,.4); box-shadow: 0 24px 60px -22px rgba(108,92,231,.45); }
.plan__badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--accent); color: #fff; font-size: 0.76rem; font-weight: 650;
  padding: 5px 13px; border-radius: 100px; letter-spacing: .02em;
}
.plan__name { font-size: 1.15rem; font-weight: 640; color: var(--text-soft); }
.plan__price { font-size: 3rem; font-weight: 720; letter-spacing: -0.03em; margin: 6px 0 2px; }
.plan__price small { font-size: 1rem; font-weight: 540; color: var(--text-faint); letter-spacing: 0; }
.plan__tag { color: var(--text-soft); margin-bottom: 22px; }
.plan__list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.98rem; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.pricing__fine { text-align: center; color: var(--text-faint); font-size: 0.88rem; margin-top: 26px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 4px 20px; box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; font-size: 1.05rem;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 400; font-size: 1.5rem; color: var(--accent); transition: transform .2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-soft); padding: 0 0 18px; font-size: 0.99rem; }

/* ---------- final cta ---------- */
.cta { padding: 96px 0; }
.cta__inner {
  max-width: 760px; margin-inline: auto; text-align: center;
  background: linear-gradient(150deg, #6c5ce7 0%, #7d5bef 55%, #9b6cf0 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 62px 40px;
  box-shadow: 0 30px 70px -26px rgba(108,92,231,.6);
}
.cta__inner h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta__inner p { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 30em; margin: 0 auto 28px; }
.cta__inner .btn--primary { background: #fff; color: var(--accent-strong); box-shadow: 0 12px 30px -10px rgba(0,0,0,.3); }
.cta__inner .btn--primary:hover { background: #f4f2ff; }
.cta__note { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,.7) !important; }

/* ---------- footer ---------- */
.footer { padding: 56px 0 34px; border-top: 1px solid var(--border-2); background: var(--bg-alt); }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__brand .brand { margin-bottom: 10px; }
.footer__brand p { color: var(--text-soft); font-size: 0.95rem; max-width: 24em; }
.brand__mark--footer { color: var(--accent); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: var(--text-soft); font-size: 0.95rem; transition: color .15s ease; }
.footer__links a:hover { color: var(--accent); }
.footer__base {
  display: flex; justify-content: space-between; margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--border-2); color: var(--text-faint); font-size: 0.87rem; flex-wrap: wrap; gap: 8px;
}

/* ---------- manifesto: it's not your fault ---------- */
.manifesto {
  padding: 104px 0;
  background: radial-gradient(120% 100% at 50% 0%, #241f3a 0%, #17151f 55%, #131219 100%);
  position: relative;
}
.manifesto__inner { max-width: 840px; margin-inline: auto; text-align: center; }
.manifesto__title {
  font-size: clamp(2.5rem, 6.5vw, 4.2rem); font-weight: 720; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 26px;
}
.manifesto__lead {
  font-size: clamp(1.22rem, 2.5vw, 1.62rem); font-weight: 520; line-height: 1.4;
  color: rgba(255, 255, 255, 0.9); max-width: 30em; margin: 0 auto 24px;
}
.manifesto__lead strong { color: #b7a8ff; font-weight: 680; }
.manifesto__lead em { color: #fff; font-style: normal; font-weight: 720; }
.manifesto__body {
  font-size: 1.1rem; line-height: 1.65; color: rgba(255, 255, 255, 0.64);
  max-width: 40em; margin: 0 auto 18px;
}
.manifesto__body strong { color: #f0a6c2; font-weight: 640; }
.manifesto__punch {
  font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 720; letter-spacing: -0.02em;
  color: #fff; margin: 40px auto 12px; max-width: 20em;
}
.manifesto__punch span { color: #b7a8ff; }
.manifesto__foot { font-size: 1.16rem; font-weight: 560; color: rgba(255, 255, 255, 0.82); }

/* ---------- brain rot / social proof ---------- */
.proof__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
.proof__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 10px; }
.proof__quote { border-left: 3px solid var(--accent); padding: 2px 0 2px 22px; margin: 22px 0; }
.proof__quote p { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 640; letter-spacing: -0.02em; line-height: 1.22; color: var(--text); }
.proof__quote cite { display: block; margin-top: 12px; font-style: normal; color: var(--text-faint); font-size: 0.95rem; }
.proof__quote cite em { color: var(--accent); font-style: normal; font-weight: 600; }
.proof__body { color: var(--text-soft); font-size: 1.05rem; max-width: 34em; }
.proof__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.proof__tags li {
  font-size: 0.84rem; font-weight: 560; color: var(--accent);
  background: var(--accent-soft); padding: 6px 13px; border-radius: 100px;
}
.proof__tags li::before { content: "#"; opacity: 0.55; margin-right: 1px; }

.proof__video { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.short-frame {
  position: relative; width: 100%; max-width: 300px; aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden; background: #000;
  box-shadow: 0 26px 60px -22px rgba(38, 28, 74, 0.4);
  border: 6px solid #fff; outline: 1px solid var(--border-2);
}
.short-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.short-cap { font-size: 0.82rem; color: var(--text-faint); }

/* ---------- comparison / why us ---------- */
.compare { background: linear-gradient(180deg, var(--bg) 0%, #f1edfb 100%); }

.fail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 44px; }
.fail {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.fail__icon {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; margin-bottom: 16px;
  background: #fdecea; color: #e0574f;
}
.fail__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.fail__cat { font-size: 1.12rem; font-weight: 640; }
.fail__eg { font-size: 0.8rem; color: var(--text-faint); margin: 2px 0 13px; letter-spacing: .01em; }
.fail p:last-child { color: var(--text-soft); font-size: 0.95rem; }

.compare__bridge { text-align: center; font-size: 1.12rem; color: var(--text-soft); max-width: 34em; margin: 0 auto 26px; }
.compare__bridge strong { color: var(--text); }
.compare__bridge em { color: var(--accent); font-style: normal; font-weight: 600; }

.matrix-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-2); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm); margin-bottom: 44px;
}
.matrix { width: 100%; border-collapse: collapse; }
#why .matrix { min-width: 740px; }
.matrix th, .matrix td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--border-2); }
.matrix tr:last-child th, .matrix tr:last-child td { border-bottom: 0; }
.matrix thead th { font-size: 0.92rem; font-weight: 640; color: var(--text-soft); line-height: 1.25; vertical-align: bottom; }
.matrix tbody th {
  text-align: left; font-weight: 560; font-size: 0.95rem; color: var(--text);
  position: sticky; left: 0; background: var(--surface);
}
.matrix tbody th small { display: block; font-weight: 440; font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.matrix__corner { background: var(--surface); }
.matrix .yes { color: var(--accent); font-size: 1.15rem; font-weight: 800; }
.matrix .no { color: #d99b96; font-size: 1.05rem; }
.matrix .partial { color: var(--text-faint); font-size: 1.15rem; font-weight: 700; }

/* highlighted Meoz column */
.matrix thead th.col-meoz {
  background: var(--accent); color: #fff; font-weight: 720; font-size: 1rem;
  border-top-left-radius: 10px; border-top-right-radius: 10px;
}
.matrix td.col-meoz { background: var(--accent-soft); }
.matrix tbody tr:last-child td.col-meoz { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.matrix td.col-meoz .yes { color: var(--accent-strong); }

/* vision banner */
.vision {
  text-align: center; max-width: 780px; margin: 0 auto;
  background: linear-gradient(150deg, #6c5ce7 0%, #7d5bef 55%, #9b6cf0 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 46px 40px;
  box-shadow: 0 26px 64px -26px rgba(108, 92, 231, 0.55);
}
.vision__pill {
  display: inline-block; font-size: 0.78rem; font-weight: 650; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, 0.18);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 16px;
}
.vision h3 { font-size: clamp(1.55rem, 3.4vw, 2.1rem); margin-bottom: 12px; }
.vision p { color: rgba(255, 255, 255, 0.9); font-size: 1.06rem; max-width: 42em; margin: 0 auto; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { order: -1; }
  .meoz-stage { max-width: 360px; }
  .meet__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .meet__copy p { margin-inline: auto; }
  .meet__art { order: -1; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .fail-grid { grid-template-columns: 1fr; }
  .proof__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .proof__body { margin-inline: auto; }
  .proof__quote { text-align: left; }
  .proof__tags { justify-content: center; }
  .proof__video { order: -1; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 66px 0; }
  .grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .hero__trust { gap: 10px 18px; }
  .footer__base { justify-content: center; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .meoz-sway, .meoz-float, .meoz-eyes, .nudge { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
