/* ============================================================
   Mobilab — Mobil Uygulama Ajansı
   Design system: canlı & modern, enerjik
   Type: Sora (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #f7f5ff;
  --bg-2:      #ffffff;
  --ink:       #15101f;
  --ink-soft:  #2a2238;
  --muted:     #6b6480;
  --muted-2:   #968fa8;
  --line:      rgba(21,16,31,0.10);
  --line-soft: rgba(21,16,31,0.06);

  /* brand */
  --violet:    #6d3bf5;
  --violet-d:  #5326c9;
  --fuchsia:   #e23ad6;
  --coral:     #ff5a3c;
  --amber:     #ffb020;
  --mint:      #07c9a3;
  --blue:      #2b7cff;
  --lime:      #14c95f;

  --grad-hero: linear-gradient(120deg,#6d3bf5 0%,#a02bf0 42%,#e23ad6 100%);
  --grad-coral:linear-gradient(120deg,#ff7a3c,#ff3c6e);

  /* type */
  --display: "Sora", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* radius / shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --sh-1: 0 2px 10px rgba(21,16,31,0.05);
  --sh-2: 0 14px 40px rgba(21,16,31,0.10);
  --sh-3: 0 30px 80px rgba(74,40,160,0.20);

  /* layout */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.ajans-page {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 88px;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* ---- shared bits ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--violet);
}
.eyebrow.on-dark { color: #d9c9ff; }
.eyebrow.on-dark::before { background: #d9c9ff; }

.h-sec { font-size: clamp(30px, 4.4vw, 56px); }
.lead { color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); max-width: 56ch; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15.5px;
  padding: 15px 26px; border-radius: 999px; line-height: 1;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--grad-hero); color: #fff;
  box-shadow: 0 10px 26px rgba(109,59,245,0.36);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(109,59,245,0.48); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--violet); color: var(--violet); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(247,245,255,0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); background: rgba(247,245,255,0.9); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 11px; background: var(--grad-hero);
  display: grid; place-items: center; color: #fff; font-size: 18px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(109,59,245,0.4);
}
.logo-mark span { display:block; transform: translateY(-1px); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--violet); transition: width .2s; border-radius:2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: 0; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index:0; }
.hero-blob.a { width: 520px; height: 520px; background: #b388ff; top: -160px; right: -120px; }
.hero-blob.b { width: 420px; height: 420px; background: #ff8fd6; bottom: -180px; left: -120px; opacity:.35; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 8px 8px 16px;
  background: #fff; border-radius: 999px; box-shadow: var(--sh-1);
  font-weight: 600; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px;
}
.hero-pill b { background: var(--grad-hero); color:#fff; padding: 5px 11px; border-radius: 999px; font-size: 12px; font-family: var(--display); }
.hero h1 { font-size: clamp(40px, 6.2vw, 78px); letter-spacing: -0.035em; }
.hero h1 .grad { background: var(--grad-hero); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin-top: 22px; font-size: clamp(17px,1.6vw,20px); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 14px; }
.avatars { display: flex; }
.avatars span { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--bg); margin-left: -12px; background-size: cover; display:grid; place-items:center; color:#fff; font-weight:700; font-size:13px; font-family:var(--display); }
.stars { color: var(--amber); letter-spacing: 2px; }

/* hero phones cluster */
.hero-stage { position: relative; height: clamp(440px, 52vw, 620px); }
.hero-phone { position: absolute; filter: drop-shadow(0 30px 60px rgba(74,40,160,0.28)); }
.hero-phone.back { left: 2%; top: 8%; transform: rotate(-8deg) scale(.86); z-index: 1; opacity: .96; }
.hero-phone.front { right: 4%; top: 0; z-index: 3; }
.hero-spark { position: absolute; z-index: 4; background: #fff; border-radius: 16px; box-shadow: var(--sh-2); padding: 12px 15px; display: flex; gap: 11px; align-items: center; font-size: 13px; font-weight: 600; }
.hero-spark .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color:#fff; flex-shrink:0; }
.hero-spark small { color: var(--muted); font-weight: 500; display:block; font-size:11.5px; }
.hero-spark.s1 { top: 18%; left: -2%; animation: float1 5s ease-in-out infinite; }
.hero-spark.s2 { bottom: 14%; right: -4%; animation: float1 6s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-stage { height: 560px; margin-top: 10px; }
}

/* =========================================================
   STATS band
   ========================================================= */
.stats { background: var(--ink); color: #fff; border-radius: var(--r-xl); margin-top: clamp(40px,6vw,80px); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding-block: 54px; }
.stat { text-align: center; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(34px,4.4vw,56px); letter-spacing:-0.03em; background: linear-gradient(120deg,#fff,#d9c9ff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl { color: rgba(255,255,255,0.62); font-size: 14.5px; margin-top: 6px; font-weight: 500; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 720px){ .stats-grid{ grid-template-columns: repeat(2,1fr); gap: 36px 12px;} .stat:nth-child(odd){border-left:none;} .stat:nth-child(3){border-top:1px solid rgba(255,255,255,0.1); padding-top:36px;} .stat:nth-child(4){border-top:1px solid rgba(255,255,255,0.1); padding-top:36px;} }

/* =========================================================
   SHOWCASE
   ========================================================= */
.showcase { background: linear-gradient(180deg,#f1ecff 0%, #f7f5ff 100%); }
.show-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.show-head .lead { margin-top: 16px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.chip {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  padding: 10px 17px; border-radius: 999px; background: #fff; color: var(--ink-soft);
  box-shadow: inset 0 0 0 1.5px var(--line); transition: all .18s; display:flex; align-items:center; gap:8px;
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; }
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--violet); transform: translateY(-1px); }
.chip.active { background: var(--ink); color: #fff; box-shadow: none; }

.scroller-wrap { position: relative; margin-top: 38px; }
.scroller {
  display: flex; gap: 30px; overflow-x: auto; padding: 14px 4px 40px;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none; cursor: grab;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller.dragging { cursor: grabbing; scroll-behavior: auto; }
.scroller.dragging * { pointer-events: none; }
.show-card {
  scroll-snap-align: center; flex: 0 0 auto; width: 290px;
  display: flex; flex-direction: column; align-items: center;
  transition: opacity .3s, filter .3s;
}
.show-card .meta { margin-top: 22px; text-align: center; width: 290px; }
.show-card .meta .tag { display:inline-flex; align-items:center; gap:7px; font-family:var(--display); font-weight:600; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:999px; }
.show-card .meta h3 { font-size: 22px; margin-top: 12px; }
.show-card .meta p { color: var(--muted); font-size: 14.5px; margin-top: 7px; }
.show-card.dim { opacity: .42; filter: saturate(.7); }

.scroll-nav { display: flex; gap: 12px; }
.snav { width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: var(--sh-1); display: grid; place-items: center; color: var(--ink); transition: all .18s; }
.snav:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-2); }
.snav:disabled { opacity: .4; pointer-events: none; }
.show-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; flex-wrap: wrap; gap: 16px; }
.show-hint { color: var(--muted); font-size: 14px; display:flex; align-items:center; gap:9px; }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.svc {
  background: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-1);
  transition: transform .2s, box-shadow .25s; position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.svc .ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 22px; }
.svc h3 { font-size: 21px; }
.svc p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.svc .arc { position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; opacity: .08; }
@media (max-width: 900px){ .svc-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .svc-grid{ grid-template-columns: 1fr;} }

/* =========================================================
   TECH marquee
   ========================================================= */
.tech { background: var(--ink); color: #fff; overflow: hidden; }
.tech .lead { color: rgba(255,255,255,0.6); }
.marquee { margin-top: 44px; display: flex; gap: 16px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee-mask { -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); overflow: hidden; }
.tech-tag {
  display: flex; align-items: center; gap: 11px; padding: 15px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  font-family: var(--display); font-weight: 600; font-size: 17px; white-space: nowrap;
}
.tech-tag .d { width: 11px; height: 11px; border-radius: 4px; }
@keyframes scrollx { to { transform: translateX(-50%);} }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.tst { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-1); display:flex; flex-direction:column; }
.tst .qm { font-family: var(--display); font-size: 56px; line-height: .6; color: var(--violet); opacity:.25; height: 28px; }
.tst p { font-size: 16px; color: var(--ink-soft); flex: 1; margin: 16px 0 22px; }
.tst .who { display: flex; align-items: center; gap: 13px; }
.tst .who .av { width: 46px; height: 46px; border-radius: 50%; display:grid; place-items:center; color:#fff; font-family:var(--display); font-weight:700; }
.tst .who b { display:block; font-size: 15px; }
.tst .who small { color: var(--muted); font-size: 13px; }
.tst .stars { font-size: 14px; margin-bottom: 4px; }
@media (max-width: 900px){ .tst-grid{ grid-template-columns: 1fr;} }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-1); overflow: hidden; transition: box-shadow .2s; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s, background .2s; color: var(--violet); font-size:18px; }
.faq-item.open .pm { background: var(--violet); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; }
.faq-item.open .faq-a { display: block; animation: faqIn .28s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-a p { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; margin: 0; }
@media (max-width: 860px){ .faq-grid{ grid-template-columns: 1fr; gap: 30px;} }

/* =========================================================
   FORM
   ========================================================= */
.form-sec { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.form-sec .blob { position:absolute; border-radius:50%; filter: blur(80px); }
.form-sec .blob.a { width:480px; height:480px; background:#6d3bf5; opacity:.35; top:-160px; left:-120px;}
.form-sec .blob.b { width:420px; height:420px; background:#e23ad6; opacity:.25; bottom:-160px; right:-100px;}
.form-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.form-card { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--sh-3); }
.steps { display: flex; gap: 8px; margin-bottom: 26px; }
.step-dot { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: background .3s; }
.step-dot.on { background: var(--violet); }
.fld { margin-bottom: 18px; }
.fld label { display: block; font-family: var(--display); font-weight: 600; font-size: 13.5px; margin-bottom: 8px; color: var(--ink-soft); }
.fld label .req { color: var(--coral); }
.fld input, .fld textarea, .fld select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm); font-family: var(--body); font-size: 15px;
  background: var(--bg); border: 1.5px solid transparent; color: var(--ink); transition: border-color .18s, background .18s;
}
.fld textarea { resize: vertical; min-height: 110px; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--violet); background: #fff; }
.fld input.err, .fld textarea.err, .fld select.err { border-color: var(--coral); background: #fff5f4; }
.fld .hint { color: var(--coral); font-size: 12.5px; margin-top: 6px; display:none; }
.fld.invalid .hint { display: block; }
.opt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.opt-grid.three { grid-template-columns: repeat(3,1fr); }
.opt {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: var(--r-sm);
  background: var(--bg); border: 1.5px solid transparent; font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: all .15s; user-select: none; text-align:left;
}
.opt .em { font-size: 17px; }
.opt:hover { border-color: var(--line); }
.opt.sel { background: #f1ebff; border-color: var(--violet); color: var(--violet-d); }
.opt.sel .check { background: var(--violet); border-color: var(--violet); }
.opt .check { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--muted-2); margin-left: auto; flex-shrink:0; display:grid; place-items:center; }
.opt .check svg { opacity: 0; }
.opt.sel .check svg { opacity: 1; }
.budget-row { display: flex; gap: 10px; flex-wrap: wrap; }
.budget-row .opt { flex: 1; min-width: 130px; justify-content: center; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 14px; }
.form-side h2 { font-size: clamp(28px,3.6vw,46px); }
.form-side .lead { color: rgba(255,255,255,0.66); margin-top: 18px; }
.form-bullets { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.form-bullet { display: flex; gap: 14px; align-items: flex-start; }
.form-bullet .b-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: rgba(255,255,255,0.08); }
.form-bullet b { font-family: var(--display); font-size: 16px; }
.form-bullet small { color: rgba(255,255,255,0.6); font-size: 14px; display:block; margin-top:2px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ok { width: 84px; height: 84px; border-radius: 50%; background: var(--grad-hero); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: 0 16px 40px rgba(109,59,245,.4); animation: pop .4s ease; }
@keyframes pop { 0%{transform:scale(.5); opacity:0;} 100%{transform:scale(1); opacity:1;} }
.form-success h3 { font-size: 28px; }
.form-success p { color: var(--muted); margin-top: 10px; }
.summary { background: var(--bg); border-radius: var(--r-md); padding: 20px; margin: 24px 0; text-align: left; }
.summary .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.summary .row:last-child { border: none; }
.summary .row span { color: var(--muted); }
.summary .row b { font-family: var(--display); text-align: right; }
@media (max-width: 860px){ .form-grid{ grid-template-columns: 1fr; gap: 36px;} }

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.ccard { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-1); transition: transform .2s, box-shadow .2s; }
.ccard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ccard .ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color:#fff; margin-bottom: 18px; }
.ccard small { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.ccard b { display: block; font-family: var(--display); font-size: 19px; margin-top: 6px; word-break: break-word; }
.ccard p { color: var(--muted); font-size: 14px; margin-top: 4px; }
@media (max-width: 760px){ .contact-grid{ grid-template-columns: 1fr;} }

.footer { background: var(--ink); color: #fff; padding-block: 60px 34px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .logo { color: #fff; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; color: rgba(255,255,255,0.5); font-size: 14px; flex-wrap: wrap; gap: 12px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background .2s; }
.foot-social a:hover { background: var(--violet); }

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

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
