:root {
  --bg: #05070e;
  --bg-2: #04060b;
  --surface: rgba(255, 255, 255, .045);
  --surface-2: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .11);
  --border-soft: rgba(255, 255, 255, .08);
  --text: #e8ecf5;
  --text-strong: #f2f6ff;
  --text-dim: #c3cfe4;
  --text-muted: #aebfda;
  --text-faint: #a6bcdd;
  --text-label: #93aed3;
  --accent: #2dd4bf;
  --accent-soft: #8ef0dd;
  --violet: #8b5cf6;
  --violet-soft: #cbb8ff;
  --link: #7ee7d5;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: 'Bricolage Grotesque', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* hero va markazdagi xizmat kartasi yaltirashi shu bitta davrdan yuradi.
     Ikkovi ham CSS-only, animation-delay yo'q -> document.timeline'da sinxron. */
  --sweep-dur: 6s;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--link); text-decoration: none; transition: color .18s ease; }
a:hover { color: #a9f2e5; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

.mono { font-family: var(--mono); }
.display { font-family: var(--display); font-weight: 700; }

/* ---------- layout ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, #0b1526 0%, var(--bg) 60%, var(--bg-2) 100%);
}
/* Bloblar STATIK — blur(40-50px) qatlamni har kadr animatsiya qilish
   (drift) mobil GPU'da 60->15fps tushirardi. Fon baribir chiroyli:
   uch rangli xira gradient dog'. */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.blob-1 {
  top: -18%; left: -22%;
  width: 78vw; height: 78vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(45, 212, 191, .42) 0%, rgba(45, 212, 191, 0) 68%);
}
.blob-2 {
  top: 22%; right: -26%;
  width: 84vw; height: 84vw; max-width: 660px; max-height: 660px;
  background: radial-gradient(circle, rgba(139, 92, 246, .38) 0%, rgba(139, 92, 246, 0) 68%);
  filter: blur(44px);
}
.blob-3 {
  bottom: -10%; left: 10%;
  width: 70vw; height: 70vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(56, 189, 248, .18) 0%, rgba(56, 189, 248, 0) 70%);
  filter: blur(50px);
}

.page { position: relative; min-height: 100vh; overflow: hidden; }
main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 30px 18px 0;
}

.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: fade .6s ease .05s both;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #a4b6d2;
}
.brand:hover { color: #c6d4ec; }
.dot {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
/* Puls: box-shadow emas (u paint qiladi) — ::after scale+opacity (GPU). */
.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2.4s ease-out infinite;
  pointer-events: none;
}

/* ---------- hero card ---------- */
.hero { padding: 26px 0 8px; }
.card {
  position: relative;
  border-radius: 30px;
  padding: 30px 24px 26px;
  background: linear-gradient(158deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .025) 55%, rgba(45, 212, 191, .06));
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 70px -30px rgba(4, 8, 20, .95), inset 0 1px 0 rgba(255, 255, 255, .14);
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  overflow: hidden;
  will-change: transform;
  animation: rise .8s cubic-bezier(.2, .75, .2, 1) .1s both;
}
/* Yaltirash: gradient chiziqli qatlam, kartadan ~2x katta, TRANSFORM bilan
   diagonal suriladi. transform GPU compositor'da ishlaydi — main thread'ni
   bloklamaydi, paint yo'q, backdrop-filter qayta hisoblanmaydi. Bu 60fps
   kafolatining kaliti (background-position CPU'da bo'lardi). */
.card__sweep {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 46%,
    rgba(255, 255, 255, .06) 48.5%,
    rgba(255, 255, 255, .14) 50%,
    rgba(255, 255, 255, .06) 51.5%,
    transparent 54%
  );
  transform: translate3d(60%, 60%, 0);
  will-change: transform;
  animation: sweep var(--sweep-dur, 6s) linear infinite;
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 10px;
  border-radius: 999px;
  background: rgba(45, 212, 191, .12);
  border: 1px solid rgba(45, 212, 191, .28);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-soft);
  transform: translateZ(40px);
  animation: rise .7s cubic-bezier(.2, .75, .2, 1) .28s both;
}
.hero h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--text-strong);
  transform: translateZ(55px);
  animation: rise .75s cubic-bezier(.2, .75, .2, 1) .36s both;
}
.hero__role {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: .02em;
  transform: translateZ(30px);
  animation: rise .75s cubic-bezier(.2, .75, .2, 1) .44s both;
}
.hero__lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-dim);
  text-wrap: pretty;
  transform: translateZ(20px);
  animation: rise .75s cubic-bezier(.2, .75, .2, 1) .52s both;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  transform: translateZ(35px);
  animation: rise .75s cubic-bezier(.2, .75, .2, 1) .6s both;
}
.stat {
  padding: 12px 10px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-strong);
}
.stat__label {
  font-size: 11.5px;
  color: #adbfda;
  margin-top: 3px;
  line-height: 1.3;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  transform: translateZ(45px);
  animation: rise .75s cubic-bezier(.2, .75, .2, 1) .68s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  flex: 1 1 150px;
  background: linear-gradient(135deg, #2dd4bf, #4f9df7 55%, #8b5cf6);
  color: #04121a;
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 16px 34px -16px rgba(45, 212, 191, .9);
}
.btn--primary:hover { color: #04121a; box-shadow: 0 20px 40px -16px rgba(45, 212, 191, 1); }
.btn--ghost {
  flex: 1 1 120px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--surface-2);
  color: #e6edfa;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .11); color: #e6edfa; }

/* ---------- sections ---------- */
section.block { padding: 44px 0 0; animation: rise .8s cubic-bezier(.2, .75, .2, 1) .1s both; }
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: #8fa5c6;
  letter-spacing: .08em;
}
h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-strong);
}
.section-lead {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

.services {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.service {
  position: relative;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  /* Layer'ni OLDINDAN yaratamiz — animatsiya boshlanganda promotion "sakrashi"
     bo'lmasin. will-change animatsiya bilan birga emas, doimiy. */
  transform: translateZ(0);
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1),
              backdrop-filter .3s ease,
              -webkit-backdrop-filter .3s ease;
}

/* Markazdagi karta — kattalashadi. Faqat scale, qalqish/aylanish YO'Q. */
.service.is-centered {
  transform: translateZ(0) scale(1.04);
  z-index: 2;
}
/* Markazdagi kartadan YUQORIDAGI (chiqib ketayotgan) karta — kichiklashadi. */
.service.is-above {
  transform: translateZ(0) scale(.955);
  opacity: .82;
}

/* Harakat paytida backdrop-filter og'ir — markazdagi kartada uni o'chiramiz,
   yarim-shaffof fon o'rnini bosadi. Ko'z ilg'amaydi, GPU nafas oladi. */
.service.is-centered,
.service.is-above {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.service.is-centered { background: linear-gradient(155deg, rgba(30, 40, 60, .92), rgba(16, 22, 36, .92)); }
.service.is-above    { background: linear-gradient(155deg, rgba(24, 32, 50, .88), rgba(14, 20, 32, .88)); }
.service--accent.is-centered { background: linear-gradient(155deg, rgba(20, 60, 56, .92), rgba(16, 26, 38, .92)); }
.service--violet.is-centered { background: linear-gradient(155deg, rgba(40, 30, 68, .92), rgba(18, 22, 40, .92)); }

/* Yaltirash qatlami — faqat markazdagi kartada ko'rinadi va ishlaydi.
   hero .card__sweep bilan bir xil @keyframes sweep, bir xil davr, bir xil
   timeline -> JS aralashuvisiz sinxron. */
/* Yaltirash qatlami — hero .card__sweep bilan bir xil texnika (transform,
   GPU). HAR DOIM ishlaydi (sahifa yuklanishidan) -> hero bilan DOIM sinxron.
   Ko'rinmagan kartada opacity:0 (GPU uchun ~bepul). is-centered faqat ochadi. */
.service::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 46%,
    rgba(255, 255, 255, .05) 48.5%,
    rgba(255, 255, 255, .12) 50%,
    rgba(255, 255, 255, .05) 51.5%,
    transparent 54%
  );
  transform: translate3d(60%, 60%, 0);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
/* Sweep FAQAT markazdagi kartada ishlaydi (5 emas, 1). JS is-centered
   qo'yganda animatsiyani hero fazasiga bir marta tenglaydi (app.js). */
.service.is-centered::after {
  opacity: 1;
  will-change: transform;
  animation: sweep var(--sweep-dur, 6s) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .card__sweep,
  .service.is-centered::after { animation: none; }
}
.service--accent {
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(45, 212, 191, .10), rgba(255, 255, 255, .03));
  border-color: rgba(45, 212, 191, .20);
  box-shadow: 0 24px 50px -34px rgba(45, 212, 191, .6);
}
.service--violet {
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(139, 92, 246, .12), rgba(255, 255, 255, .03));
  border-color: rgba(139, 92, 246, .22);
  box-shadow: 0 24px 50px -34px rgba(139, 92, 246, .7);
}
.service__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.service h3 { margin: 0; font-size: 19px; font-weight: 700; color: var(--text-strong); }
.price {
  flex: none;
  font-family: var(--mono);
  font-size: 12px;
  border-radius: 10px;
  padding: 6px 9px;
  color: #b3c4de;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .12);
  white-space: nowrap;
}
.price--accent { color: var(--accent-soft); background: rgba(45, 212, 191, .12); border-color: rgba(45, 212, 191, .25); }
.price--violet { color: var(--violet-soft); background: rgba(139, 92, 246, .14); border-color: rgba(139, 92, 246, .28); }
.service p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: #c4d1e4; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tag {
  font-size: 11.5px;
  color: #b4c4dc;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--surface-2);
}

/* ---------- process timeline ---------- */
.timeline {
  position: relative;
  margin-top: 22px;
  padding-left: 4px;
  display: grid;
  gap: 4px;
}
.timeline__rail {
  position: absolute;
  left: 25px; top: 26px; bottom: 42px;
  width: 1px;
  background: linear-gradient(180deg, rgba(45, 212, 191, .5), rgba(139, 92, 246, .45), rgba(255, 255, 255, .06));
}
.step {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 12px 0;
}
.step__num {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .13);
  color: #cdd9ee;
}
.step__num--accent { background: rgba(45, 212, 191, .14); border-color: rgba(45, 212, 191, .32); color: var(--accent-soft); }
.step__num--violet { background: rgba(139, 92, 246, .14); border-color: rgba(139, 92, 246, .30); color: var(--violet-soft); }
.step__body { padding-top: 2px; }
.step h3 { margin: 0; font-size: 17px; font-weight: 700; color: #f0f4ff; }
.step p { margin: 6px 0 0; font-size: 14.5px; line-height: 1.6; color: #bccadf; }

/* ---------- portfolio ---------- */
.portfolio-cta {
  border-radius: 26px;
  padding: 26px 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.portfolio-cta__btn {
  margin-top: 18px;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: var(--surface-2);
  color: #f0f4ff;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s ease;
}
.portfolio-cta__btn:hover { background: rgba(255, 255, 255, .11); color: #f0f4ff; }
.portfolio-cta__btn span { font-family: var(--mono); font-size: 12.5px; color: var(--accent-soft); }

/* ---------- contact ---------- */
.contacts { display: grid; gap: 12px; margin-top: 20px; }
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 14px 18px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: transform .15s ease, border-color .2s ease;
}
.contact:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, .2); }
.contact--tg {
  background: linear-gradient(150deg, rgba(45, 212, 191, .14), rgba(255, 255, 255, .03));
  border-color: rgba(45, 212, 191, .24);
}
.contact__meta { display: grid; gap: 3px; }
.contact__kind { font-size: 12.5px; color: #9db2d2; }
.contact__value { font-size: 17px; font-weight: 700; color: var(--text-strong); }
.contact__action { font-size: 12.5px; font-family: var(--mono); color: #b7c6e0; }
.contact--tg .contact__action { color: var(--accent-soft); }
.contact-note { margin: 18px 0 0; font-size: 13.5px; line-height: 1.6; color: #9db0ce; }

footer {
  margin-top: 46px;
  padding: 22px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: #9fb2cf;
}
footer .mono { font-family: var(--mono); }

/* ---------- bottom sheet ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(3, 6, 14, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 41;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, rgba(18, 26, 44, .96), rgba(7, 11, 22, .98));
  border-top: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 -30px 80px -30px rgba(0, 0, 0, .9);
  transform: translateY(104%);
  transition: transform .52s cubic-bezier(.2, .85, .25, 1);
  pointer-events: none;
}
.sheet-open .overlay { opacity: 1; pointer-events: auto; }
.sheet-open .sheet { transform: translateY(0); pointer-events: auto; }
.sheet__grip { padding: 12px 0 4px; display: grid; place-items: center; }
.sheet__grip span { width: 42px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .22); }
.sheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 20px 14px;
}
.sheet__head h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -.02em;
  color: var(--text-strong);
}
.sheet__head p { margin: 6px 0 0; font-size: 13.5px; color: #9cb0ce; }
.sheet__close {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--surface-2);
  color: #dbe4f5;
  font-size: 18px;
  line-height: 1;
}
.sheet__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  padding: 4px 20px 34px;
  display: grid;
  gap: 14px;
  align-content: start;
  grid-auto-rows: max-content;
}
.work {
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .10);
  opacity: 0;
  transform: translateY(26px);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
}
.sheet-open .work { opacity: 1; transform: translateY(0); }
.sheet-open .work:nth-child(1) { transition-delay: .14s; }
.sheet-open .work:nth-child(2) { transition-delay: .21s; }
.sheet-open .work:nth-child(3) { transition-delay: .28s; }
.sheet-open .work:nth-child(4) { transition-delay: .35s; }
.work__cover {
  height: 108px;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}
.work__cover--1 { background: linear-gradient(125deg, #0f3b3a, #2dd4bf 45%, #1e5f8f); }
.work__cover--2 { background: linear-gradient(125deg, #241a4d, #8b5cf6 50%, #3b2c7a); }
.work__cover--3 { background: linear-gradient(125deg, #10263f, #4f9df7 55%, #0f3b3a); }
.work__cover--4 { background: linear-gradient(125deg, #3a2140, #d98cc0 48%, #2a1c4a); }
.work__tag {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #06231f;
  background: rgba(255, 255, 255, .78);
  padding: 4px 8px;
  border-radius: 7px;
  white-space: nowrap;
  flex: none;
}
.work__info { padding: 15px 16px 18px; }
.work__info h4 { margin: 0; font-size: 17px; font-weight: 700; color: var(--text-strong); }
.work__info p { margin: 7px 0 0; font-size: 14px; line-height: 1.55; color: #b1c1da; }
.sheet__order {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2dd4bf, #8b5cf6);
  color: #06131a;
  font-size: 15.5px;
  font-weight: 700;
}
.sheet__order:hover { color: #06131a; }

@media (prefers-reduced-motion: reduce) {
  .sheet { transition-duration: .01ms; }
  .work { transition-duration: .01ms; }
}

/* ---------- animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseDot {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}
/* Yaltirash: gradient qatlamni past-o'ngdan (60%,60%) yuqori-chapga (-60%,-60%)
   translate bilan bir marta o'tkazadi, so'ng 40%–100% oralig'ida u kadr
   tashqarisida (chiziq karta chegarasidan tashqarida) turadi -> loop qaytishi
   ko'rinmaydi. transform -> GPU compositor, main thread bo'sh, 60fps. */
@keyframes sweep {
  0%   { transform: translate3d(60%, 60%, 0); }
  40%  { transform: translate3d(-60%, -60%, 0); }
  100% { transform: translate3d(-60%, -60%, 0); }
}

@media (min-width: 620px) {
  main { padding-top: 44px; }
  .hero h1 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
