:root{
  --bg: #f6f7fb;
  --bg2:#eef2ff;
  --card: rgba(0,0,0,.04);
  --card2: rgba(0,0,0,.06);
  --text:#0b1220;
  --muted: rgba(11,18,32,.75);
  --muted2: rgba(11,18,32,.55);
  --stroke: rgba(0,0,0,.10);
  --stroke2: rgba(0,0,0,.14);
  --shadow: 0 18px 50px rgba(17,24,39,.10);
  --bg-glow-a: rgba(124,58,237,.14);
  --bg-glow-b: rgba(34,211,238,.12);
  --radius: 22px;
  --radius2: 14px;

  --gradA: #7c3aed;
  --gradB: #22d3ee;
  --gradC: #a78bfa;

  --ok: rgba(34,211,238,.9);
  --warn: rgba(167,139,250,.9);
  --danger: rgba(248,113,113,.9);

  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

[data-theme="dark"]{
  --bg: #0b0f16;
  --bg2:#0a1222;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text:#e9eefc;
  --muted: rgba(233,238,252,.75);
  --muted2: rgba(233,238,252,.55);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --bg-glow-a: rgba(124,58,237,.18);
  --bg-glow-b: rgba(34,211,238,.14);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 18% 10%, var(--bg-glow-a), transparent 55%),
    radial-gradient(900px 520px at 85% 18%, var(--bg-glow-b), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.wrap{max-width:1100px; margin:0 auto; padding:0 20px}
.container{max-width:1100px; margin:0 auto; padding:0 20px}
.section{padding:72px 0}
.section[id]{scroll-margin-top:96px}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.section__head{margin-bottom:26px}
.section__head h2{margin:0 0 8px; font-size:clamp(22px, 2.2vw, 34px); letter-spacing:-.02em}
.muted{color:var(--muted)}
.small{font-size:13px; line-height:1.35}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
  background:var(--bg); border:1px solid var(--stroke); border-radius:12px;
  z-index:9999;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 84%, transparent);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__mark{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  box-shadow: var(--shadow);
}
.brand__name{font-weight:800; letter-spacing:-.02em}
.brand__tag{font-size:12px; color:var(--muted2)}
.nav{display:flex; gap:16px; flex-wrap:wrap; justify-content:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}

.topbar__actions{display:flex; gap:10px; align-items:center}

/* Progress */
.progress{height:3px; background:transparent}
.progress__bar{
  height:3px; width:0%;
  background: linear-gradient(90deg, var(--gradA), var(--gradB));
  transform-origin:left;
}

/* Back to top */
.back-to-top{
  position:fixed;
  right:20px;
  bottom:24px;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 85%, transparent);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow);
  opacity:0;
  pointer-events:none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index:900;
}
.back-to-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}
.back-to-top:focus-visible{
  outline:2px solid var(--gradB);
  outline-offset:2px;
}

/* Artemis widget */
.artemis{
  position:fixed;
  left:20px;
  bottom:24px;
  z-index:900;
}
.artemis__launcher{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 85%, transparent);
  color:var(--text);
  box-shadow: var(--shadow);
  font-weight:600;
  cursor:pointer;
}
.artemis__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  box-shadow: 0 0 10px rgba(34,211,238,.45);
}
.artemis__panel{
  position:fixed;
  left:20px;
  bottom:86px;
  width:320px;
  max-width:calc(100% - 40px);
  background: color-mix(in oklab, var(--card2) 85%, transparent);
  border:1px solid var(--stroke);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:14px;
  display:none;
  flex-direction:column;
  gap:12px;
}
.artemis.is-open .artemis__panel{display:flex}
.artemis__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.artemis__subtitle{
  font-size:12px;
  color:var(--muted);
}
.artemis__close{
  border:none;
  background:none;
  color:var(--muted);
  cursor:pointer;
  font-size:18px;
}
.artemis__messages{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-height:260px;
  overflow:auto;
  padding-right:6px;
}
.artemis__message{
  padding:10px 12px;
  border-radius:14px;
  font-size:14px;
  line-height:1.4;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 80%, transparent);
}
.artemis__message--user{
  align-self:flex-end;
  background: color-mix(in oklab, var(--gradA) 18%, var(--card));
}
.artemis__message--assistant{
  align-self:flex-start;
}
.artemis__form{
  display:grid;
  gap:8px;
}
.artemis__input{
  width:100%;
  border-radius:12px;
  border:1px solid var(--stroke);
  background: transparent;
  padding:10px 12px;
  color:var(--text);
}
.artemis__input:focus{outline:2px solid var(--gradB); outline-offset:1px}
.artemis__hint{
  font-size:12px;
  color:var(--muted2);
  margin:0;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 80%, transparent);
  color:var(--text);
  font-weight:600;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color:var(--stroke2)}
.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  color: #0b0f16;
}
.btn--ghost{
  background: transparent;
}
.btn--lg{padding:12px 16px; border-radius:16px}
.btn--block{width:100%}
.btn__label{font-size:14px}

.icon{font-size:16px; line-height:1}

/* Hero */
.hero{padding:72px 0 18px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:28px;
  align-items:start;
}
.hero-home .hero-grid{
  display:grid;
  gap:28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items:center;
}
.hero-copy{
  display:grid;
  gap:16px;
}
.hero-title{
  margin:12px 0 6px;
  font-size: clamp(32px, 3vw + 18px, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.hero-highlight{
  display:grid;
  gap:10px;
}
.hero-eyebrow{
  margin:0;
  font-weight:700;
  color:var(--gradB);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}

.persona-selector{
  display:grid;
  gap:12px;
  align-items:start;
}
.persona-selector-centered{
  justify-items:center;
  text-align:center;
}
.persona-selector-centered .persona-actions{
  width:100%;
  justify-self:center;
}
.hero-question{
  margin:0;
  font-weight:700;
  letter-spacing:.01em;
}
.persona-intro{
  margin:6px 0 0;
  color:var(--muted);
}
.persona-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.persona-actions-stack{
  flex-direction:column;
}
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 80%, transparent);
  color:var(--text);
  font-weight:600;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  cursor:pointer;
}
.btn-secondary:hover{
  border-color:var(--stroke2);
  transform: translateY(-1px);
}

.profile-carousel{
  position:relative;
  overflow:hidden;
  padding:24px 52px 18px;
}
.carousel-track{
  position:relative;
  min-height:320px;
}
.profile-slide{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  padding:10px 8px;
  color:var(--text);
  opacity:0;
  transform: translateX(12px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events:none;
}
.profile-slide.is-active{
  opacity:1;
  transform: translateX(0);
  pointer-events:auto;
}
.profile-photo{
  width:132px;
  height:132px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid color-mix(in oklab, var(--gradB) 50%, transparent);
  box-shadow: var(--shadow);
}
.profile-role{
  margin:0;
  color:var(--muted);
  font-weight:600;
}
.profile-quote{
  margin:0;
  color:var(--text);
  font-style:italic;
  line-height:1.5;
}
.profile-name{
  margin:6px 0 2px;
}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 80%, transparent);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.carousel-arrow.prev{left:14px}
.carousel-arrow.next{right:14px}
.profile-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid var(--stroke2);
  background: transparent;
  cursor:pointer;
}
.dot.is-active{
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  border-color: transparent;
}
.hero__profile{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.hero__avatar{
  width:92px;
  height:92px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--stroke);
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  box-shadow: var(--shadow);
}
.hero__profile-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.hero__profile-name{
  font-weight:700;
  letter-spacing:-.02em;
}
.hero__profile-role{
  color:var(--muted);
  font-size:14px;
}
.kicker{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 70%, transparent);
  color:var(--muted);
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.lead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}
.u-grad{
  background: linear-gradient(90deg, var(--gradA), var(--gradB), var(--gradC));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.trust{display:grid; gap:10px; margin-top:18px}
.trust__item{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background: color-mix(in oklab, var(--card) 70%, transparent);
}
.trust__icon{width:22px; text-align:center}

/* Glass card */
.hero__card .glass{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: radial-gradient(900px 360px at 10% 10%, rgba(124,58,237,.15), transparent 55%),
              radial-gradient(700px 320px at 90% 20%, rgba(34,211,238,.12), transparent 55%),
              color-mix(in oklab, var(--card2) 70%, transparent);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{padding:18px 18px 10px}
.badge{
  display:inline-flex;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 70%, transparent);
  color:var(--muted);
}
.glass__top h2{margin:10px 0 6px; letter-spacing:-.02em}
.glass__top p{margin:0; color:var(--muted); line-height:1.6}
.glass__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:12px 18px 18px;
}
.mini{
  padding:12px 12px;
  border:1px solid var(--stroke);
  border-radius:16px;
  background: color-mix(in oklab, var(--card) 70%, transparent);
}
.mini__t{font-size:12px; color:var(--muted2)}
.mini__v{font-weight:700; letter-spacing:-.01em; margin-top:4px}
.glass__bottom{padding:0 18px 18px; display:grid; gap:10px}
.glass__bottom .muted{font-size:13px}

/* Cards */
.card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 70%, transparent);
  box-shadow: var(--shadow);
  padding:18px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card__icon{font-size:22px}
.card h3{margin:10px 0 6px; letter-spacing:-.01em}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

/* Callout */
.callout{
  margin-top:18px;
  border-radius: var(--radius);
  border:1px dashed var(--stroke2);
  padding:16px 18px;
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,211,238,.08));
}
.callout__title{font-weight:800; letter-spacing:-.01em; margin-bottom:6px}
.callout__body{color:var(--muted); line-height:1.6}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.pricecard{
  position:relative;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 70%, transparent);
  box-shadow: var(--shadow);
  padding:18px;
  overflow:hidden;
}
.pricecard__top{margin-bottom:12px}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 70%, transparent);
  color:var(--muted);
  font-size:12px;
}
.pill--strong{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.95));
  color: #0b0f16;
  font-weight:800;
}
.pricecard h3{margin:10px 0 6px; letter-spacing:-.02em}
.price{display:flex; align-items:baseline; gap:6px; margin-top:10px}
.price__value{font-size:42px; font-weight:900; letter-spacing:-.03em}
.price__unit{color:var(--muted); font-weight:700}
.price__sub{margin-top:-4px}

.divider{height:1px; background:var(--stroke); margin:14px 0}

.check{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.check li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
  line-height:1.5;
}
.check li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:20px; height:20px;
  display:grid; place-items:center;
  border-radius:8px;
  background: color-mix(in oklab, var(--ok) 28%, transparent);
  color: color-mix(in oklab, var(--ok) 85%, var(--text));
  border:1px solid color-mix(in oklab, var(--ok) 35%, var(--stroke));
  font-weight:900;
}

.fit__t{font-weight:800; margin-bottom:6px}
.fit p{margin:0}

.pricecard--featured{
  border-color: color-mix(in oklab, var(--gradB) 35%, var(--stroke));
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(34,211,238,.16), transparent 55%),
    radial-gradient(900px 420px at 80% 20%, rgba(124,58,237,.14), transparent 55%),
    color-mix(in oklab, var(--card2) 70%, transparent);
}
.ribbon{
  position:absolute;
  top:14px; right:-52px;
  transform: rotate(18deg);
  padding:8px 60px;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.95));
  color:#0b0f16;
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
}

/* Note */
.note{
  margin-top:14px;
  display:flex; gap:10px; align-items:flex-start;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  padding:14px 16px;
  background: color-mix(in oklab, var(--card2) 70%, transparent);
}
.note__k{
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: color-mix(in oklab, var(--warn) 24%, transparent);
  border:1px solid color-mix(in oklab, var(--warn) 30%, var(--stroke));
}
.note__t{color:var(--muted); line-height:1.55}

/* Steps */
.steps{
  list-style:none; padding:0; margin:0;
  display:grid; gap:12px;
}
.step{
  display:flex; gap:14px; align-items:flex-start;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 70%, transparent);
  padding:16px;
}
.step__n{
  width:38px; height:38px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,58,237,.75), rgba(34,211,238,.75));
  color:#0b0f16;
}
.step__c h3{margin:2px 0 6px}
.step__c p{margin:0; line-height:1.6}

/* Accordion */
.accordion{display:grid; gap:10px}
.acc{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 70%, transparent);
  padding:14px 14px;
}
.acc summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  list-style:none;
}
.acc summary::-webkit-details-marker{display:none}
.acc summary::after{
  content:"+";
  float:right;
  font-weight:900;
  color:var(--muted);
}
.acc[open] summary::after{content:"–"}
.acc__body{margin-top:10px; color:var(--muted); line-height:1.65}

/* Form */
.formgrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.form{padding:18px}
.field{display:grid; gap:6px; margin-bottom:12px}
.field--full{grid-column: 1 / -1}
label{font-weight:700; font-size:14px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 80%, transparent);
  color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color: color-mix(in oklab, var(--gradB) 45%, var(--stroke2));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--gradB) 15%, transparent);
}
.hint{font-size:12px; color:var(--muted2)}
.checkline{
  display:flex; gap:10px; align-items:flex-start;
  color:var(--muted);
  user-select:none;
}
.checkline input{width:18px; height:18px; margin-top:2px}
.form__actions{display:grid; gap:10px; margin-top:6px}

/* Reviews */
.jm-reviews__summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.jm-reviews__rating{
  font-size:20px;
  font-weight:700;
}
.jm-reviews__count{
  color:var(--muted);
  font-size:14px;
}
.jm-reviews__grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.jm-review-card{display:flex; flex-direction:column; gap:14px}
.jm-review__header{display:flex; gap:12px; align-items:center}
.jm-review__avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}
.jm-review__avatar--placeholder{
  display:inline-flex;
  width:44px;
  height:44px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
}
.jm-review__author{margin:0; font-weight:600}
.jm-review__time{margin:0; font-size:13px; color:var(--muted)}
.jm-review__rating{display:flex; gap:2px; font-size:14px; color:var(--gradA)}
.jm-review__star{opacity:.3}
.jm-review__star.is-filled{opacity:1}
.jm-review__text{margin:0; color:var(--muted)}
.jm-review__text.is-collapsed{
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.jm-review__toggle{
  margin-top:10px;
  border:none;
  background:none;
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  padding:0;
}
.jm-review__toggle:hover{opacity:.8}
.jm-reviews__fallback{margin-top:16px}

.artemis__intro{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Footer */
.footer{
  border-top:1px solid var(--stroke);
  padding:22px 0;
  background: color-mix(in oklab, var(--bg) 84%, transparent);
}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.footright{display:flex; gap:8px; align-items:center; color:var(--muted)}
.sep{opacity:.55}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: color-mix(in oklab, var(--card2) 90%, transparent);
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: min(680px, calc(100vw - 24px));
}
.toast.is-on{
  opacity:1;
  transform: translateX(-50%) translateY(-2px);
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none}
  .btn,
  .back-to-top,
  .pricecard,
  .card,
  .step,
  .acc{
    transition:none;
  }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}

/* Responsive */
@media (max-width: 960px){
  .hero__inner{grid-template-columns:1fr; }
  .hero-home .hero-grid{grid-template-columns:1fr;}
  .hero__profile{flex-direction:column; align-items:center; text-align:center;}
  .hero__profile-text{align-items:center;}
  .grid-3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .formgrid{grid-template-columns:1fr}
  .persona-actions-stack{width:100%;}
  .jm-reviews__summary{flex-direction:column; align-items:flex-start;}
  .artemis{left:12px; bottom:16px;}
  .artemis__panel{left:12px; bottom:78px; width:calc(100% - 24px);}
  .artemis__intro{flex-direction:column; align-items:flex-start;}
  .nav{display:none}
  .brand{min-width:auto}
}
