/* ============================================================
   DigiMonk Media — Global Performance Network & Agency
   "Vibrant Gradient" design system · pure CSS, no framework
   Palette: white base · purple #7c3aed → pink #ec4899 → orange #f59e0b
   Font: Plus Jakarta Sans
   ============================================================ */

:root{
  /* brand gradient */
  --purple:#7c3aed;
  --pink:#ec4899;
  --orange:#f59e0b;
  --blue:#3b82f6;
  --teal:#06b6d4;
  --emerald:#10b981;
  --grad:linear-gradient(115deg,#7c3aed 0%,#ec4899 52%,#f59e0b 100%);
  --grad-pp:linear-gradient(135deg,#7c3aed 0%,#ec4899 100%);
  --grad-po:linear-gradient(135deg,#ec4899 0%,#f59e0b 100%);

  /* surfaces */
  --bg:#ffffff;
  --bg-soft:#faf9ff;
  --surface:#ffffff;
  --surface-2:#f7f6fc;
  --surface-3:#f1eefb;
  --line:rgba(22,19,38,.09);
  --line-2:rgba(22,19,38,.14);

  /* text */
  --text:#16131f;
  --text-2:#4b4760;
  --muted:#857f98;
  --muted-2:#a7a2b6;

  /* effects */
  --shadow:0 28px 60px -24px rgba(124,58,237,.30);
  --shadow-sm:0 14px 36px -18px rgba(22,19,38,.18);
  --shadow-color:0 16px 40px -12px rgba(236,72,153,.4);
  --glow:0 0 0 1px rgba(124,58,237,.12),0 20px 50px -16px rgba(124,58,237,.3);

  --radius:24px;
  --radius-sm:16px;
  --radius-lg:34px;
  --maxw:1200px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  background:var(--bg); color:var(--text);
  line-height:1.65; font-size:16px;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }
svg{ display:block; }
::selection{ background:rgba(124,58,237,.18); }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5{ font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; line-height:1.07; letter-spacing:-.03em; color:var(--text); }
h1{ font-size:clamp(2.7rem,6vw,4.8rem); }
h2{ font-size:clamp(2rem,4vw,3.2rem); }
h3{ font-size:1.4rem; font-weight:700; }
h4{ font-size:1.08rem; font-weight:700; letter-spacing:-.01em; }
p{ color:var(--text-2); }
.lead{ font-size:clamp(1.06rem,1.6vw,1.22rem); color:var(--text-2); line-height:1.7; }
em{ font-style:normal; }
.grad-text{ background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ---------- Layout ---------- */
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.section{ padding:clamp(56px,8vw,92px) 0; position:relative; }
.section-sm{ padding:clamp(38px,5vw,60px) 0; }
.bg-soft{ background:var(--bg-soft); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:7px 16px; border-radius:50px;
  background:rgba(124,58,237,.08);
  color:var(--purple);
  border:1px solid rgba(124,58,237,.16);
}
.eyebrow::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--grad-pp); }
.eyebrow.plain::before{ display:none; }

.section-head{ max-width:680px; margin:0 auto clamp(32px,4.5vw,48px); text-align:center; }
.section-head h2{ margin:18px 0 16px; }
.section-head p{ font-size:1.06rem; color:var(--muted); }
.section-head.left{ margin-left:0; text-align:left; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:700; font-size:14.5px; letter-spacing:-.01em;
  padding:14px 26px; border-radius:50px;
  transition:.3s var(--ease); white-space:nowrap; position:relative;
}
.btn svg{ width:17px; height:17px; transition:transform .3s var(--ease); }
.btn-primary{ background:var(--grad); background-size:160% 160%; color:#fff; box-shadow:0 12px 30px -10px rgba(124,58,237,.55); }
.btn-primary:hover{ background-position:100% 50%; transform:translateY(-2px); box-shadow:0 18px 40px -10px rgba(236,72,153,.6); }
.btn-primary:hover svg{ transform:translateX(4px); }
.btn-secondary{ background:#fff; color:var(--text); border:1px solid var(--line-2); box-shadow:var(--shadow-sm); }
.btn-secondary:hover{ transform:translateY(-2px); border-color:var(--purple); color:var(--purple); }
.btn-white{ background:#fff; color:var(--purple); }
.btn-white:hover{ transform:translateY(-2px); box-shadow:0 14px 36px -12px rgba(0,0,0,.3); }
/* outlined white button — pairs with .btn-white on the gradient CTA band */
.btn-ghost-light{ background:rgba(255,255,255,.12); color:#fff; border:1.5px solid rgba(255,255,255,.6); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.22); border-color:#fff; transform:translateY(-2px); box-shadow:0 12px 30px -12px rgba(0,0,0,.35); }
.btn-lg{ padding:16px 32px; font-size:15.5px; }
.btn-block{ width:100%; }

/* ---------- Nav ---------- */
.nav{ position:fixed; top:0; left:0; right:0; z-index:1000; transition:.3s var(--ease); border-bottom:1px solid transparent; }
.nav.scrolled{ background:rgba(255,255,255,.82); backdrop-filter:blur(18px) saturate(180%); -webkit-backdrop-filter:blur(18px) saturate(180%); border-bottom:1px solid var(--line); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:74px; }
.logo{ display:inline-flex; align-items:center; gap:11px; font-weight:800; font-size:20px; letter-spacing:-.03em; color:var(--text); }
.logo-mark{ position:relative; width:38px; height:38px; border-radius:12px; background:var(--grad); display:grid; place-items:center; overflow:hidden; box-shadow:0 8px 22px -7px rgba(124,58,237,.65), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -3px 8px rgba(124,58,237,.45); }
.logo-mark::after{ content:''; position:absolute; inset:0; background:linear-gradient(150deg,rgba(255,255,255,.55),rgba(255,255,255,0) 46%); pointer-events:none; }
.logo-mark svg{ position:relative; z-index:1; width:21px; height:21px; filter:drop-shadow(0 1px 1px rgba(0,0,0,.18)); }
.logo-wm{ display:inline-flex; align-items:baseline; gap:0; font-weight:800; letter-spacing:-.03em; color:var(--text); white-space:nowrap; }
.logo-accent{ margin-left:.18em; font-weight:700; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-link{ font-size:14.5px; font-weight:600; color:var(--text-2); padding:9px 15px; border-radius:11px; transition:.2s; }
.nav-link:hover{ color:var(--text); background:var(--surface-2); }

.nav-item{ position:relative; }
.nav-item > .nav-link{ display:inline-flex; align-items:center; gap:5px; }
.nav-item > .nav-link svg{ width:14px; height:14px; transition:transform .25s; }
.nav-item:hover > .nav-link svg,.nav-item.open > .nav-link svg{ transform:rotate(180deg); }
.dropdown{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(10px);
  width:560px; padding:14px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); opacity:0; visibility:hidden; transition:.26s var(--ease);
  display:grid; grid-template-columns:1fr 1fr; gap:6px;
}
.nav-item:hover .dropdown,.nav-item.open .dropdown{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dd-item{ display:flex; gap:12px; padding:12px; border-radius:14px; transition:.2s; }
.dd-item:hover{ background:var(--surface-2); }
.dd-ico{ width:40px; height:40px; border-radius:12px; display:grid; place-items:center; flex-shrink:0; }
.dd-ico svg{ width:20px; height:20px; }
.dd-name{ display:block; font-weight:700; font-size:13.5px; line-height:1.3; color:var(--text); }
.dd-desc{ display:block; font-size:11.5px; line-height:1.35; color:var(--muted); }
.dd-foot{ grid-column:1/-1; margin-top:6px; padding:14px 16px; border-radius:14px; background:var(--grad); display:flex; align-items:center; justify-content:space-between; }
.dd-foot span{ font-weight:700; font-size:13.5px; color:#fff; }
.dd-foot svg{ width:16px; height:16px; color:#fff; }

.nav-actions{ display:flex; align-items:center; gap:10px; }
.hamburger{ display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--line-2); flex-direction:column; gap:5px; align-items:center; justify-content:center; }
.hamburger span{ width:18px; height:2px; background:var(--text); border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{ position:fixed; inset:0 0 0 auto; top:0; width:min(86vw,360px); z-index:1100; background:#fff; border-left:1px solid var(--line); padding:92px 22px 40px; transform:translateX(105%); transition:.36s var(--ease); display:flex; flex-direction:column; gap:3px; overflow-y:auto; }
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ padding:14px; border-radius:13px; font-weight:600; color:var(--text-2); font-size:15px; }
.mobile-menu a:hover{ background:var(--surface-2); color:var(--text); }
.mobile-menu .btn{ margin-top:14px; }
.mm-label{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); padding:14px 14px 5px; font-weight:700; }
.backdrop{ position:fixed; inset:0; background:rgba(22,19,38,.4); backdrop-filter:blur(3px); z-index:1050; opacity:0; visibility:hidden; transition:.3s; }
.backdrop.open{ opacity:1; visibility:visible; }

/* ---------- Hero ---------- */
.hero{ position:relative; padding:clamp(120px,16vw,160px) 0 clamp(48px,6vw,68px); overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.blob{ position:absolute; border-radius:50%; filter:blur(76px); opacity:.5; }
.blob.p{ width:520px; height:520px; background:radial-gradient(circle,rgba(124,58,237,.55),transparent 66%); top:-150px; left:-80px; }
.blob.k{ width:480px; height:480px; background:radial-gradient(circle,rgba(236,72,153,.5),transparent 66%); top:-90px; right:-60px; }
.blob.o{ width:420px; height:420px; background:radial-gradient(circle,rgba(245,158,11,.45),transparent 66%); bottom:-160px; left:40%; }
.hero-dots{ position:absolute; inset:0; background-image:radial-gradient(rgba(22,19,38,.07) 1.2px,transparent 1.2px); background-size:30px 30px; -webkit-mask-image:radial-gradient(ellipse 75% 55% at 50% 35%,#000 35%,transparent 78%); mask-image:radial-gradient(ellipse 75% 55% at 50% 35%,#000 35%,transparent 78%); }
.hero-inner{ position:relative; z-index:2; text-align:center; max-width:880px; margin:0 auto; }
.hero h1{ margin:24px 0 22px; }
.hero .lead{ max-width:640px; margin:0 auto 36px; }
.hero-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-trust{ margin-top:42px; display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; color:var(--muted); font-size:13.5px; }
.hero-avatars{ display:flex; }
.hero-avatars span{ width:36px; height:36px; border-radius:50%; border:3px solid #fff; margin-left:-10px; display:grid; place-items:center; font-size:12.5px; font-weight:800; color:#fff; }
.hero-avatars span:first-child{ margin-left:0; }
.hero-trust b{ color:var(--text); }

/* ---------- Logo marquee ---------- */
.marquee-wrap{ padding:36px 0 44px; position:relative; }
.marquee-label{ text-align:center; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); margin-bottom:28px; font-weight:700; }
.marquee{ display:flex; overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track{ display:flex; gap:48px; padding-right:48px; animation:marq 40s linear infinite; flex-shrink:0; }
.marquee.rev .marquee-track{ animation-direction:reverse; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{ display:flex; align-items:center; gap:9px; font-weight:800; font-size:18px; color:var(--muted-2); white-space:nowrap; transition:color .2s; letter-spacing:-.02em; }
.marquee-item:hover{ color:var(--text); }
.marquee-item i{ width:8px; height:8px; border-radius:50%; background:var(--grad-pp); }
@keyframes marq{ to{ transform:translateX(-50%); } }

/* ---------- Chips ---------- */
.chip{ font-size:11.5px; font-weight:700; padding:5px 12px; border-radius:50px; background:var(--surface-2); color:var(--text-2); border:1px solid var(--line); }
.chip.grad{ background:rgba(124,58,237,.1); color:var(--purple); border-color:rgba(124,58,237,.18); }
.chip.on-grad{ background:rgba(255,255,255,.22); color:#fff; border-color:transparent; }

/* ---------- Cards grid ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px; transition:.3s var(--ease); box-shadow:var(--shadow-sm); }
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.card-ico{ width:52px; height:52px; border-radius:15px; display:grid; place-items:center; margin-bottom:18px; }
.card-ico svg{ width:26px; height:26px; }
.card h3{ font-size:1.18rem; margin-bottom:10px; }
.card h4{ margin-bottom:8px; }
.card p{ font-size:14px; color:var(--muted); }

/* ---------- Pricing models ---------- */
.models{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.model{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); padding:24px 22px; text-align:center; transition:.3s var(--ease); box-shadow:var(--shadow-sm); }
.model:hover{ transform:translateY(-4px); box-shadow:var(--glow); border-color:transparent; }
.model .code{ font-weight:800; font-size:1.7rem; letter-spacing:-.03em; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.model .name{ font-weight:700; font-size:14px; margin:6px 0 4px; color:var(--text); }
.model .desc{ font-size:12.5px; color:var(--muted); }

/* ---------- Stats band ---------- */
.statband{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.statband .n{ font-weight:800; font-size:clamp(2.2rem,4.5vw,3.5rem); letter-spacing:-.04em; }
.statband .l{ color:var(--muted); font-size:14px; margin-top:6px; font-weight:500; }


/* ---------- Feature split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
.feat-list{ display:flex; flex-direction:column; gap:22px; margin-top:30px; }
.feat-item{ display:flex; gap:16px; }
.feat-check{ width:32px; height:32px; border-radius:10px; background:var(--grad); display:grid; place-items:center; flex-shrink:0; box-shadow:0 6px 14px -6px rgba(124,58,237,.6); }
.feat-check svg{ width:16px; height:16px; color:#fff; }
.feat-item h4{ margin-bottom:4px; font-size:1.04rem; }
.feat-item p{ font-size:13.5px; color:var(--muted); }

/* mock dashboard */
.panel{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.panel-bar{ display:flex; align-items:center; gap:7px; padding:15px 18px; border-bottom:1px solid var(--line); background:var(--surface-2); }
.panel-bar i{ width:11px; height:11px; border-radius:50%; }
.panel-bar i:nth-child(1){ background:#ff5f57; } .panel-bar i:nth-child(2){ background:#febc2e; } .panel-bar i:nth-child(3){ background:#28c840; }
.panel-bar span{ margin-left:8px; font-size:12px; color:var(--muted); font-weight:500; }
.panel-body{ padding:18px; display:flex; flex-direction:column; gap:11px; }
.prow{ display:flex; align-items:center; gap:13px; padding:14px; border-radius:15px; background:var(--surface-2); border:1px solid var(--line); }
.prow-ico{ width:40px; height:40px; border-radius:12px; display:grid; place-items:center; flex-shrink:0; }
.prow-ico svg{ width:20px; height:20px; }
.prow-t{ flex:1; min-width:0; }
.prow-t .a{ font-weight:700; font-size:13.5px; }
.prow-t .b{ font-size:11.5px; color:var(--muted); }
.prow-badge{ font-size:10.5px; font-weight:800; padding:3px 10px; border-radius:50px; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; overflow:hidden; border-radius:var(--radius-lg); padding:clamp(50px,7vw,84px) clamp(28px,5vw,64px); text-align:center; background:var(--grad); color:#fff; box-shadow:var(--shadow-color); }
.cta-band::before{ content:''; position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.22),transparent 64%); top:-220px; right:-120px; }
.cta-band::after{ content:''; position:absolute; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.16),transparent 64%); bottom:-200px; left:-100px; }
.cta-band > *{ position:relative; z-index:1; }
.cta-band .eyebrow{ background:rgba(255,255,255,.2); color:#fff; border-color:transparent; }
.cta-band .eyebrow::before{ background:#fff; }
.cta-band h2{ color:#fff; max-width:640px; margin:18px auto 16px; }
.cta-band p{ max-width:520px; margin:0 auto 32px; color:rgba(255,255,255,.9); }

/* ---------- Forms ---------- */
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:clamp(28px,4vw,40px); box-shadow:var(--shadow-sm); }
.form-grid{ display:flex; flex-direction:column; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:700; color:var(--text-2); }
.field input,.field select,.field textarea{ width:100%; padding:14px 16px; border-radius:14px; background:var(--surface-2); border:1px solid var(--line-2); color:var(--text); font-family:inherit; font-size:14.5px; transition:.2s; }
.field textarea{ resize:vertical; min-height:120px; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted-2); }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--purple); box-shadow:0 0 0 4px rgba(124,58,237,.12); background:#fff; }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23857f98' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-size:18px; padding-right:42px; }
.field .err{ font-size:12px; color:var(--pink); display:none; }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:var(--pink); }
.field.invalid .err{ display:block; }
.row-2{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-success{ display:none; text-align:center; padding:50px 30px; }
.form-success.show{ display:block; animation:pop .5s var(--ease); }
.form-success .ico{ width:74px; height:74px; border-radius:50%; background:var(--grad); display:grid; place-items:center; margin:0 auto 22px; box-shadow:var(--shadow-color); }
.form-success .ico svg{ width:36px; height:36px; color:#fff; }
@keyframes pop{ from{ opacity:0; transform:scale(.9); } to{ opacity:1; transform:scale(1); } }

.info-panel{ background:var(--grad); color:#fff; border-radius:var(--radius); padding:36px; box-shadow:var(--shadow-color); }
.info-panel h3{ color:#fff; }
.info-item{ display:flex; gap:15px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.info-item:last-child{ border-bottom:none; }
.info-item .ico{ width:44px; height:44px; border-radius:13px; background:rgba(255,255,255,.2); display:grid; place-items:center; flex-shrink:0; }
.info-item .ico svg{ width:20px; height:20px; color:#fff; }
.info-item .t .a{ font-size:12px; color:rgba(255,255,255,.78); }
.info-item .t .b{ font-weight:700; font-size:14.5px; color:#fff; }

/* ---------- Verticals ---------- */
.vert-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px; }
.vert{ display:flex; align-items:center; gap:12px; padding:16px 18px; background:#fff; border:1px solid var(--line); border-radius:15px; transition:.25s var(--ease); box-shadow:var(--shadow-sm); }
.vert:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:transparent; }
.vert .e{ font-size:22px; }
.vert .n{ font-weight:700; font-size:13.5px; }

/* ---------- Page hero ---------- */
.page-hero{ position:relative; padding:clamp(120px,14vw,150px) 0 clamp(32px,4vw,48px); text-align:center; overflow:hidden; }
.page-hero-inner{ position:relative; z-index:2; max-width:720px; margin:0 auto; }
.page-hero h1{ font-size:clamp(2.4rem,5vw,3.7rem); margin:18px 0 16px; }
.page-hero p{ font-size:1.08rem; color:var(--muted); max-width:560px; margin:0 auto; }
.breadcrumb{ display:flex; gap:8px; justify-content:center; font-size:13px; color:var(--muted); margin-bottom:6px; }
.breadcrumb a:hover{ color:var(--purple); }

/* ---------- Timeline ---------- */
.timeline{ max-width:680px; margin:0 auto; position:relative; padding-left:34px; }
.timeline::before{ content:''; position:absolute; left:7px; top:8px; bottom:8px; width:2px; background:var(--grad); }
.tl-item{ position:relative; padding-bottom:34px; }
.tl-item::before{ content:''; position:absolute; left:-34px; top:5px; width:16px; height:16px; border-radius:50%; background:#fff; border:3px solid var(--purple); }
.tl-item .yr{ font-weight:800; font-size:15px; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.tl-item h4{ margin:4px 0 6px; }
.tl-item p{ font-size:14px; color:var(--muted); }

/* ---------- Legal / prose ---------- */
.prose{ max-width:780px; margin:0 auto; }
.prose h2{ font-size:1.5rem; margin:38px 0 14px; }
.prose h3{ font-size:1.15rem; margin:26px 0 10px; }
.prose p{ margin-bottom:14px; color:var(--text-2); font-size:15px; line-height:1.75; }
.prose ul{ list-style:disc; padding-left:22px; margin-bottom:14px; }
.prose li{ margin-bottom:8px; color:var(--text-2); font-size:15px; }
.prose a{ color:var(--purple); font-weight:600; }

/* ---------- Footer ---------- */
.footer{ border-top:1px solid var(--line); padding:clamp(56px,7vw,80px) 0 32px; background:var(--bg-soft); content-visibility:auto; contain-intrinsic-size:auto 560px; }
.footer-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid var(--line); }
.footer-brand p{ font-size:14px; color:var(--muted); margin:16px 0 20px; max-width:300px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:40px; height:40px; border-radius:12px; border:1px solid var(--line-2); display:grid; place-items:center; transition:.25s; color:var(--text-2); }
.footer-social a:hover{ background:var(--grad); border-color:transparent; color:#fff; transform:translateY(-2px); }
.footer-social svg{ width:18px; height:18px; }
.footer-col h5{ font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-2); margin-bottom:18px; font-weight:700; }
.footer-col a{ display:block; font-size:14px; color:var(--text-2); padding:7px 0; transition:.2s; }
.footer-col a:hover{ color:var(--purple); }
.footer-bot{ display:flex; align-items:center; justify-content:space-between; padding-top:28px; gap:16px; flex-wrap:wrap; }
.footer-bot p{ font-size:13px; color:var(--muted); }
.footer-bot .links{ display:flex; gap:20px; }
.footer-bot .links a{ font-size:13px; color:var(--muted); }
.footer-bot .links a:hover{ color:var(--purple); }

/* ---------- Scroll reveal ---------- */
.anim{ opacity:0; transform:translateY(26px); transition:.7s var(--ease); }
.anim.in{ opacity:1; transform:none; }
.d1{ transition-delay:.07s; } .d2{ transition-delay:.14s; } .d3{ transition-delay:.21s; } .d4{ transition-delay:.28s; }

/* ---------- Misc ---------- */
.center{ text-align:center; }

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .models{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:860px){
  .nav-links,.nav-actions .btn{ display:none; }
  .hamburger{ display:flex; }
  .split{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .statband{ grid-template-columns:repeat(2,1fr); gap:34px; }
  .footer-top{ grid-template-columns:1fr 1fr; gap:32px; }
  .footer-brand{ grid-column:1/-1; }
}
@media (max-width:560px){
  .container{ padding:0 20px; }
  .grid-3,.grid-2,.models{ grid-template-columns:1fr; }
  .row-2{ grid-template-columns:1fr; }
  .footer-top,.footer-bot{ grid-template-columns:1fr; }
  .footer-bot{ flex-direction:column; align-items:flex-start; }
  .statband{ grid-template-columns:1fr 1fr; }
  /* never let a wide child push the page sideways on phones */
  .hero-stats{ grid-template-columns:1fr 1fr; }
  .minichart,.panel,.statcard,.info-panel{ max-width:100%; }
}

/* ============================================================
   NEW LAYOUT v2 — asymmetric / editorial homepage
   ============================================================ */

/* --- Asymmetric split hero --- */
.hero-x{ position:relative; padding:clamp(116px,14vw,156px) 0 clamp(48px,6vw,72px); overflow:hidden; }
.hero-x-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,70px); align-items:center; }
.hero-x-text{ text-align:left; }
.hero-x-text h1{ margin:22px 0 20px; }
.hero-x-text .lead{ max-width:530px; margin:0 0 32px; }
.hero-x .hero-cta{ justify-content:flex-start; }
.hero-x .hero-trust{ justify-content:flex-start; margin-top:36px; }

.hero-x-visual{ position:relative; }
.float-chip{ position:absolute; background:#fff; border:1px solid var(--line); border-radius:16px; padding:13px 17px; box-shadow:var(--shadow); display:flex; align-items:center; gap:12px; z-index:4; }
.float-chip .ic{ width:42px; height:42px; border-radius:12px; display:grid; place-items:center; flex-shrink:0; }
.float-chip .ic svg{ width:21px; height:21px; }
.float-chip .v{ font-weight:800; font-size:1.15rem; letter-spacing:-.02em; line-height:1.1; }
.float-chip .l{ font-size:11px; color:var(--muted); }
.float-chip.tr{ top:-24px; right:-12px; }
.float-chip.bl{ bottom:-26px; left:-18px; }
.float-anim{ animation:floaty 5s ease-in-out infinite; }
.float-anim.slow{ animation-delay:-2.5s; animation-duration:6s; }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-13px); } }

/* --- Zig-zag feature blocks --- */
.fblock{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,84px); align-items:center; }
.fblock + .fblock{ margin-top:clamp(60px,9vw,120px); }
.fblock.rev .fblock-media{ order:2; }
.fblock-num{ font-weight:800; font-size:13px; letter-spacing:.16em; text-transform:uppercase; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.fblock h2{ margin:12px 0 14px; }
.fblock-text p{ font-size:1.04rem; color:var(--text-2); }
.fblock .feat-list{ margin-top:26px; }
.fblock-media{ position:relative; }

/* gradient stat card visual */
.statcard{ border-radius:var(--radius-lg); padding:clamp(32px,4vw,46px); background:var(--grad); color:#fff; box-shadow:var(--shadow-color); position:relative; overflow:hidden; }
.statcard::after{ content:''; position:absolute; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.25),transparent 65%); top:-130px; right:-90px; }
.statcard .big{ font-size:clamp(3.2rem,7vw,5rem); font-weight:800; letter-spacing:-.04em; line-height:1; position:relative; z-index:1; }
.statcard .cap{ position:relative; z-index:1; color:rgba(255,255,255,.92); margin-top:8px; font-size:.98rem; max-width:300px; }
.statcard .tag-row{ position:relative; z-index:1; margin-top:24px; display:flex; flex-wrap:wrap; gap:7px; }

/* partner avatar wall */
.wall{ display:grid; grid-template-columns:repeat(5,1fr); gap:11px; }
.wall span{ aspect-ratio:1; border-radius:16px; display:grid; place-items:center; font-weight:800; color:#fff; font-size:15px; box-shadow:var(--shadow-sm); }
.wall span.more{ background:#fff !important; color:var(--purple); border:1px solid var(--line); font-size:12.5px; }

/* mini bar chart */
.minichart{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); }
.minichart-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.minichart-top .t{ font-weight:700; font-size:14px; }
.minichart-top .b{ font-size:11.5px; font-weight:700; padding:4px 10px; border-radius:50px; background:rgba(16,185,129,.14); color:#10b981; }
.bars{ display:flex; align-items:flex-end; gap:9px; height:130px; }
.bars span{ flex:1; border-radius:8px 8px 0 0; background:var(--grad); }
.minichart-x{ display:flex; justify-content:space-between; margin-top:10px; font-size:10.5px; color:var(--muted-2); }

/* --- Horizontal scroll services --- */
.hscroll-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:30px; flex-wrap:wrap; }
.hscroll-hint{ font-size:13px; color:var(--muted); display:inline-flex; align-items:center; gap:8px; font-weight:600; }
.hscroll-hint svg{ width:18px; height:18px; }
.hscroll{ display:flex; gap:18px; overflow-x:auto; padding:6px 4px 24px; scroll-snap-type:x mandatory; scrollbar-width:thin; }
.hscroll::-webkit-scrollbar{ height:8px; }
.hscroll::-webkit-scrollbar-thumb{ background:var(--line-2); border-radius:50px; }
.hscroll::-webkit-scrollbar-track{ background:transparent; }
.hcard{ scroll-snap-align:start; flex:0 0 318px; min-width:318px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); transition:.3s var(--ease); }
.hcard:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.hcard .num{ font-weight:800; font-size:13px; color:var(--muted-2); letter-spacing:.12em; }
.hcard .card-ico{ margin:14px 0 16px; }
.hcard h3{ font-size:1.15rem; margin-bottom:9px; }
.hcard p{ font-size:13.5px; color:var(--muted); }
.hcard .tag-row{ display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }

@media (max-width:880px){
  .hero-x-grid{ grid-template-columns:1fr; gap:48px; }
  .hero-x-text{ text-align:center; max-width:640px; margin:0 auto; }
  .hero-x-text h1{ max-width:100%; }
  .hero-x .hero-cta,.hero-x .hero-trust{ justify-content:center; }
  .hero-x-text .lead{ margin-left:auto; margin-right:auto; }
  .hero-x-visual{ max-width:440px; margin:0 auto; }
  .fblock{ grid-template-columns:1fr; gap:36px; }
  .fblock.rev .fblock-media{ order:0; }
}
@media (max-width:560px){
  .hcard{ flex-basis:84vw; min-width:84vw; }
  .wall span{ font-size:13px; }
  .float-chip.tr{ right:0; }
  .float-chip.bl{ left:0; }
  /* hero/page headings are too large at phone width — scale down so they don't push past the screen */
  .hero h1,.hero-x-text h1{ font-size:clamp(2.2rem,11vw,3rem); }
  .page-hero h1{ font-size:clamp(2rem,9vw,2.6rem); }
  .hero-x-grid{ gap:40px; }
}

/* ============================================================
   LIGHTWEIGHT ANIMATIONS v3 — GPU-only (transform/opacity)
   ============================================================ */

/* --- Hero blobs drift slowly (depth without JS) --- */
.blob.p{ animation:drift1 22s ease-in-out infinite; }
.blob.k{ animation:drift2 26s ease-in-out infinite; }
.blob.o{ animation:drift3 30s ease-in-out infinite; }
@keyframes drift1{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(36px,28px) scale(1.08); } }
@keyframes drift2{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(-34px,22px) scale(1.1); } }
@keyframes drift3{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(24px,-30px) scale(1.06); } }

/* --- Animated gradient on brand text & gradient buttons --- */
.grad-text{ background-size:200% auto; animation:gradPan 6s linear infinite; }
@keyframes gradPan{ to{ background-position:200% center; } }

/* --- Eyebrow dot pulse --- */
.eyebrow::before{ animation:dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.45); opacity:.55; } }

/* --- Primary button sheen on hover --- */
.btn-primary{ overflow:hidden; }
.btn-primary::after{
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.45),transparent);
  transform:skewX(-18deg); transition:none; pointer-events:none;
}
.btn-primary:hover::after{ animation:sheen .8s ease; }
@keyframes sheen{ to{ left:140%; } }

/* --- Logo mark wobble on hover --- */
.logo:hover .logo-mark{ animation:wobble .6s ease; }
@keyframes wobble{ 0%,100%{ transform:rotate(0); } 25%{ transform:rotate(-9deg); } 60%{ transform:rotate(6deg); } }

/* --- Card icons pop on parent hover --- */
.card:hover .card-ico,.hcard:hover .card-ico{ transform:translateY(-3px) scale(1.06); }
.card-ico,.hcard .card-ico{ transition:transform .3s var(--ease); }
.vert:hover .e{ transform:scale(1.18) rotate(-6deg); }
.vert .e{ transition:transform .3s var(--ease); display:inline-block; }

/* --- Nav links subtle underline grow --- */
.nav-link{ position:relative; }
.nav-link::after{
  content:''; position:absolute; left:14px; right:14px; bottom:5px; height:2px;
  background:var(--grad); border-radius:2px; transform:scaleX(0); transform-origin:left;
  transition:transform .28s var(--ease); opacity:.85;
}
.nav-item > .nav-link::after{ display:none; }
.nav-link:hover::after{ transform:scaleX(1); }

/* --- Bar charts grow in when revealed --- */
.anim.in .bars span{ animation:barGrow .9s var(--ease) both; }
.anim.in .bars span:nth-child(2){ animation-delay:.08s; }
.anim.in .bars span:nth-child(3){ animation-delay:.16s; }
.anim.in .bars span:nth-child(4){ animation-delay:.24s; }
.anim.in .bars span:nth-child(5){ animation-delay:.32s; }
.anim.in .bars span:nth-child(6){ animation-delay:.40s; }
.anim.in .bars span:nth-child(7){ animation-delay:.48s; }
@keyframes barGrow{ from{ transform:scaleY(0); } to{ transform:scaleY(1); } }
.bars span{ transform-origin:bottom; }

/* --- Hero dashboard rows slide in --- */
.anim.in .panel .prow{ animation:rowIn .6s var(--ease) both; }
.anim.in .panel .prow:nth-child(2){ animation-delay:.08s; }
.anim.in .panel .prow:nth-child(3){ animation-delay:.16s; }
.anim.in .panel .prow:nth-child(4){ animation-delay:.24s; }
@keyframes rowIn{ from{ opacity:0; transform:translateX(-14px); } to{ opacity:1; transform:none; } }

/* --- Footer social icons spring --- */
.footer-social a:hover{ transform:translateY(-3px) scale(1.05); }

/* --- Respect reduced-motion: kill all motion, keep reveals instant --- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .anim{ opacity:1 !important; transform:none !important; }
  .marquee-track{ animation:none !important; }
}

/* ============================================================
   UX ENHANCEMENTS v4 — a11y + navigation + helpers (no visual redesign)
   ============================================================ */

/* --- Skip link (keyboard users jump past nav) --- */
.skip-link{
  position:fixed; top:-60px; left:14px; z-index:2000;
  background:var(--grad); color:#fff; font-weight:700; font-size:14px;
  padding:11px 18px; border-radius:0 0 12px 12px; box-shadow:var(--shadow);
  transition:top .25s var(--ease);
}
.skip-link:focus{ top:0; outline:none; }

/* --- Visible keyboard focus everywhere (mouse clicks stay clean) --- */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,
textarea:focus-visible,.btn:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--purple); outline-offset:2px; border-radius:8px;
}
.btn:focus-visible{ outline-offset:3px; }

/* --- Anchor targets clear the fixed nav (no hiding under header) --- */
:target{ scroll-margin-top:96px; }
section[id],header[id]{ scroll-margin-top:88px; }

/* --- Active page in nav --- */
.nav-link[aria-current="page"]{ color:var(--purple); }
.nav-link[aria-current="page"]::after{ transform:scaleX(1); }
.mobile-menu a[aria-current="page"]{ color:var(--purple); background:var(--surface-2); }

/* --- Keyboard-accessible dropdown (opens on focus-within too) --- */
.nav-item:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.nav-item:focus-within > .nav-link svg{ transform:rotate(180deg); }

/* --- Scroll progress bar (top gradient line) --- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:100%;
  transform:scaleX(0); transform-origin:left; z-index:1500;
  background:var(--grad); pointer-events:none;
}

/* --- Back-to-top button --- */
.to-top{
  position:fixed; right:22px; bottom:22px; z-index:1400;
  width:48px; height:48px; border-radius:50%;
  background:var(--grad); color:#fff; display:grid; place-items:center;
  box-shadow:var(--shadow-color); cursor:pointer;
  opacity:0; visibility:hidden; transform:translateY(14px) scale(.9);
  transition:.3s var(--ease);
}
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ transform:translateY(-3px) scale(1.06); }
.to-top svg{ width:22px; height:22px; }

/* --- Buttons/links feel tappable: min target on touch --- */
@media (hover:none){
  .nav-link,.footer-col a,.footer-bot .links a{ padding-top:11px; padding-bottom:11px; }
}

/* --- Form: clearer focus + success affordance --- */
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; }
.btn[disabled]{ opacity:.7; cursor:progress; }

@media (prefers-reduced-motion:reduce){
  .skip-link,.to-top{ transition:none !important; }
  .scroll-progress{ display:none; }
}

/* ============================================================
   TACTILE v5 — physical micro-interactions (design-panel winners)
   Cherry-picked across 4 proposals, endorsed by taste+perf+a11y critics.
   GPU-only (transform/opacity); reduced-motion + touch guarded.
   ============================================================ */

/* --- 1) Brand-tinted cursor spotlight on content cards ---
   Disjoint from tilt via :not(.tilt). Driven by JS --mx/--my. --- */
.card,.hcard,.model,.vert{ position:relative; isolation:isolate; overflow:hidden; }
.card:not(.tilt)::before,.hcard::before,.model::before,.vert::before{
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none; border-radius:inherit;
  background:radial-gradient(220px circle at var(--mx,50%) var(--my,50%),
            rgba(124,58,237,.16), rgba(236,72,153,.08) 40%, transparent 66%);
  opacity:0; transition:opacity .35s var(--ease);
}
.card:not(.tilt):hover::before,.hcard:hover::before,.model:hover::before,.vert:hover::before{ opacity:1; }
.card > *,.hcard > *,.model > *,.vert > *{ position:relative; z-index:1; }
/* gradient-background cards (e.g. CTA hcard with var(--grad)) — skip brand-tinted spotlight so it doesn't muddy the gradient */
.card[style*="grad"]::before,.hcard[style*="grad"]::before,.model[style*="grad"]::before,.vert[style*="grad"]::before{ display:none; }
@media (hover:none){ .card::before,.hcard::before,.model::before,.vert::before{ display:none; } }
@media (prefers-reduced-motion:reduce){ .card::before,.hcard::before,.model::before,.vert::before{ transition:none !important; } }

/* --- 2) Scoped pointer-tilt + gloss on showcase panels (max ~4/page) --- */
.tilt{
  --rx:0deg; --ry:0deg; --gx:50%; --gy:0%; --gloss:0;
  transform:perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style:preserve-3d; transition:transform .4s var(--ease); will-change:transform;
}
.tilt.tilting{ transition:transform .08s linear; }
.tilt::before{
  content:''; position:absolute; inset:0; z-index:5; border-radius:inherit; pointer-events:none;
  background:radial-gradient(420px circle at var(--gx) var(--gy),rgba(255,255,255,.28),rgba(255,255,255,0) 55%);
  opacity:var(--gloss); transition:opacity .4s var(--ease); mix-blend-mode:soft-light;
}
.statcard.tilt::before{ display:none; } /* on brand gradient — drop white gloss (taste critic) */
@media (hover:none){ .tilt{ transform:none !important; transition:none; } .tilt::before{ display:none; } }
@media (prefers-reduced-motion:reduce){ .tilt{ transform:none !important; transition:none !important; } .tilt::before{ display:none !important; } }

/* --- 3) Universal press depression (pure CSS :active) --- */
.btn:active{ transform:translateY(0) scale(.97); transition:transform .08s ease-out; }
.btn-primary:active{ box-shadow:0 6px 16px -8px rgba(124,58,237,.55); }
.btn-secondary:active,.btn-white:active{ box-shadow:var(--shadow-sm); }
.card:active,.hcard:active{ transform:translateY(-2px) scale(.985); transition:transform .1s ease-out; }
.model:active{ transform:translateY(-1px) scale(.98); transition:transform .1s ease-out; }
.vert:active{ transform:translateY(-1px) scale(.97); transition:transform .1s ease-out; }
.float-chip:active{ transform:scale(.96); transition:transform .1s ease-out; }
.footer-social a:active{ transform:translateY(-1px) scale(.92); transition:transform .1s ease-out; }
.btn,.card,.hcard,.model,.vert,.float-chip,.footer-social a{ -webkit-tap-highlight-color:transparent; }
@media (prefers-reduced-motion:reduce){
  .btn:active,.card:active,.hcard:active,.model:active,.vert:active,.float-chip:active,.footer-social a:active{ transform:none !important; transition:none !important; }
}

/* --- 4) Material tap ripple on buttons (JS spawns .x-ripple) --- */
.btn{ position:relative; overflow:hidden; }
.x-ripple{ position:absolute !important; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,.28) 40%, rgba(255,255,255,0) 70%);
  transform:scale(0); opacity:.9; animation:xRipple .6s var(--ease) forwards; z-index:0 !important; }
/* keep label/icon above the ink, but NEVER re-position the ripple itself (it must stay absolute) */
.btn > *:not(.x-ripple){ position:relative; z-index:1; }
.btn-secondary .x-ripple,.btn-white .x-ripple{
  background:radial-gradient(circle, rgba(124,58,237,.28) 0%, rgba(124,58,237,.14) 42%, rgba(124,58,237,0) 70%); }
@keyframes xRipple{ to{ transform:scale(1); opacity:0; } }
@media (prefers-reduced-motion:reduce){ .x-ripple{ display:none !important; animation:none !important; } }

/* --- 5) Count-up settle pulse (JS adds .x-settle on completion) --- */
.x-settle{ animation:xSettle .5s var(--ease); transform-origin:center; }
@keyframes xSettle{ 0%{ transform:scale(1); } 40%{ transform:scale(1.09); } 70%{ transform:scale(.98); } 100%{ transform:scale(1); } }
@media (prefers-reduced-motion:reduce){ .x-settle{ animation:none !important; } }

/* --- 6) Scroll-coupled nav glass depth (JS sets --nav-depth 0..1) --- */
.nav{ --nav-depth:0; }
.nav.scrolled{
  -webkit-backdrop-filter:blur(calc(8px + 12px * var(--nav-depth))) saturate(180%);
          backdrop-filter:blur(calc(8px + 12px * var(--nav-depth))) saturate(180%);
  background:rgba(255,255,255,calc(.62 + .20 * var(--nav-depth)));
  box-shadow:0 calc(6px * var(--nav-depth)) calc(28px * var(--nav-depth)) -16px rgba(22,19,38,calc(.22 * var(--nav-depth)));
  transform:translateZ(0);
}
@media (prefers-reduced-motion:reduce){ .nav.scrolled{ --nav-depth:1; box-shadow:none; } }

/* --- 7) Directional scroll-reveal (opt-in via data-reveal; reuses shipped IO) ---
   Belt-and-braces: clip horizontal overflow so the pre-animation translateX
   offset can never spawn a horizontal scrollbar. --- */
html{ overflow-x:clip; }
.anim[data-reveal="left"]{ transform:translateX(-44px); }
.anim[data-reveal="right"]{ transform:translateX(44px); }
.anim[data-reveal="scale"]{ transform:scale(.92); }
.anim[data-reveal].in{ transform:none; }
.anim[data-reveal="left"],.anim[data-reveal="right"],.anim[data-reveal="scale"]{ transition-duration:.85s; }
/* On stacked/mobile layouts the side-drift is pointless and risks overflow — drop to a plain rise */
@media (max-width:880px){
  .anim[data-reveal="left"],.anim[data-reveal="right"]{ transform:translateY(26px); }
}
@media (prefers-reduced-motion:reduce){ .anim[data-reveal]{ transform:none !important; } }
