:root{
  --bg: #fff8f4;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(2, 6, 23, .12);
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --primary: #111827;
  --primaryText: #ffffff;
  --accent: #ff5a1f;
  --radius: 16px;
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  min-height: 100%;
  background-color: #fff4ec;
  background-image:
    radial-gradient(1200px 700px at 50% -8%, rgba(255, 90, 31, .22), transparent 55%),
    radial-gradient(900px 520px at 100% 35%, rgba(255, 90, 31, .12), transparent 50%),
    radial-gradient(800px 480px at 0% 55%, rgba(255, 90, 31, .08), transparent 45%),
    linear-gradient(180deg, #fff7f2 0%, #fff4ec 35%, #ffefe6 100%);
  background-attachment: fixed;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 250, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2, 6, 23, .06);
}

.nav{
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 28px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.nav__left{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 240px;
}

.nav__email{
  position: relative;
  padding-left: 14px;
  margin-left: 2px;
}
.nav__email::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(2, 6, 23, .14);
}

.nav__brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 6px 10px;
  border-radius: 12px;
  overflow:hidden;
  background: transparent;
  cursor: default;
  user-select: none;
}

.nav__logo{
  height: 36px;
  width: auto;
  object-fit: contain;
  display:block;
}

.nav__email{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  color: rgba(15, 23, 42, .92);
  opacity: 1;
  white-space: nowrap;
}
.nav__email:hover{ opacity: 1; }

.nav__right{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

.nav__links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  list-style:none;
  padding:0;
  margin:0;
  flex: 1;
}

.nav__links > li{
  display:inline-flex;
  align-items:center;
}

.nav__links > li:not(:last-child)::after{
  content: "•";
  margin-left: 22px;
  color: rgba(15, 23, 42, .35);
}

.nav__link{
  font-size: 15.5px;
  font-weight: 700;
  color: rgba(15, 23, 42, .85);
  padding: 10px 10px;
  border-radius: 999px;
}
.nav__link:hover{
  background: rgba(2, 6, 23, .05);
  color: rgba(15, 23, 42, 1);
}

.nav__lang{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__langSelect{
  height: 40px;
  min-width: 118px;
  max-width: 160px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(15, 23, 42, .9);
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .12);
  background-color: rgba(255, 255, 255, .92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1.5L6 6l5-4.5' stroke='%2364748b' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nav__langSelect:hover{
  border-color: rgba(255, 90, 31, .28);
  box-shadow: 0 4px 12px rgba(2, 6, 23, .06);
}

.nav__langSelect:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  justify-content: flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .08s ease, background-color .12s ease, border-color .12s ease, color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--ghost{
  background: transparent;
  border-color: transparent;
  color: rgba(15, 23, 42, .85);
}
.btn--ghost:hover{
  background: rgba(2, 6, 23, .05);
  color: rgba(15, 23, 42, 1);
}

.btn--primary{
  background: var(--primary);
  border-color: rgba(17, 24, 39, .9);
  color: var(--primaryText);
  box-shadow: 0 8px 18px rgba(2, 6, 23, .14);
}
.btn--primary:hover{
  background: #0b1220;
}

/* Mobile menu — hamburger */
.nav__toggle{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 14px rgba(2, 6, 23, .06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle:hover{
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 90, 31, .22);
}
.nav__toggleBar{
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .88);
  transition: transform 0.22s ease, opacity 0.18s ease, background-color 0.15s ease;
  transform-origin: center;
}
.nav__toggle.is-open .nav__toggleBar:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.is-open .nav__toggleBar:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.is-open .nav__toggleBar:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce){
  .nav__toggleBar{
    transition: none;
  }
}

/* Page scaffold (demo) */
.page{ max-width: 1280px; margin: 0 auto; padding: 56px 28px; }
.hero{
  position: relative;
  padding: 54px 0 18px;
  text-align: center;
}

.hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 26px;
}

.hero__copy{
  max-width: 62ch;
  margin: 0 auto;
}

.hero__title{
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero__subtitle{
  margin: 16px auto 0;
  max-width: 62ch;
  color: rgba(15, 23, 42, .72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
}

.hero__form{
  margin: 24px auto 0;
  max-width: 560px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
}

.hero__input{
  flex: 1;
  height: 44px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15.5px;
  padding: 0 12px;
  color: rgba(15, 23, 42, .95);
}
.hero__input::placeholder{ color: rgba(15, 23, 42, .45); }

.hero__submit{
  height: 44px;
  padding: 0 18px;
  width: auto;
}

.hero__actions{
  margin: 14px auto 0;
  max-width: 560px;
  display: flex;
  justify-content: center;
}

.hero__supportBtn{
  min-width: 160px;
}

.hero__hint{
  margin: 12px 0 0;
  text-align: center;
  color: rgba(15, 23, 42, .55);
  font-size: 13.5px;
}

/* Support page */
.page--support{
  padding-top: 48px;
  padding-bottom: 72px;
}

.support{
  text-align: center;
}

.support__shell{
  max-width: 640px;
  margin: 0 auto;
}

.support__label{
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.support__title{
  margin: 12px 0 0;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.support__lede{
  margin: 18px auto 0;
  max-width: 52ch;
  color: rgba(15, 23, 42, .72);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.support__card{
  margin: 32px auto 0;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 6, 23, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.support__emailIntro{
  margin: 0;
  font-size: 15px;
  color: rgba(15, 23, 42, .62);
}

.support__email{
  display: block;
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, .95);
}

.support__email:hover{
  color: var(--accent);
}

.support__cta{
  margin-top: 22px;
  min-width: 180px;
}

.support__response{
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 23, 42, .58);
}

@media (max-width: 560px){
  .page--support{
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .support__card{
    padding: 24px 20px;
  }
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .24);
  transition: opacity .16s ease, transform .16s ease;
}
.toast.toast--show{
  opacity: 1;
  transform: translate(-50%, 0);
}

.brandword__my{ font-weight: 800; }
.brandword__wai{ font-weight: 800; color: var(--accent); }

.hero__visual{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#products,
#problem,
#solution,
#notify{
  scroll-margin-top: 88px;
}

.phone-stage{
  position: relative;
  width: 100%;
  max-width: min(980px, 100%);
  display:flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0;
}

.mockup-divider{
  width: min(720px, 92%);
  height: 1px;
  margin: 16px auto 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(2, 6, 23, .06) 12%,
    rgba(2, 6, 23, .14) 50%,
    rgba(2, 6, 23, .06) 88%,
    transparent 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .85),
    0 10px 28px rgba(2, 6, 23, .06);
}

.problem{
  width: 100%;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 0 4px 12px;
}

.problem__shell{
  position: relative;
  border-radius: 26px;
  padding: clamp(28px, 4.5vw, 48px) clamp(22px, 3.5vw, 44px);
  background:
    radial-gradient(900px 320px at 100% 0%, rgba(255, 90, 31, .10), transparent 55%),
    rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 22px 50px rgba(2, 6, 23, .08);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.problem__shell::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, #ff9a5c 45%, rgba(255, 90, 31, .35) 100%);
  border-radius: 26px 0 0 26px;
}

.problem__wrap{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.problem__intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.problem__label{
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .88);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 90, 31, .32);
  box-shadow: 0 8px 22px rgba(2, 6, 23, .07);
}
.problem__title{
  margin: 0;
  font-size: clamp(27px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: rgba(15, 23, 42, .96);
  max-width: 100%;
}
.problem__lede{
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 23, 42, .58);
  max-width: 38ch;
}

.problem-list{
  counter-reset: prob;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.problem-list__item{
  counter-increment: prob;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 12px 28px rgba(2, 6, 23, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.problem-list__item:hover{
  border-color: rgba(255, 90, 31, .28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .98) inset,
    0 16px 36px rgba(2, 6, 23, .08);
  transform: translateY(-1px);
}
.problem-list__item::before{
  content: counter(prob, decimal-leading-zero);
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, .9);
  background: linear-gradient(160deg, rgba(255,255,255,.98), rgba(255, 230, 214, .75));
  border: 1px solid rgba(255, 90, 31, .22);
  box-shadow: 0 6px 14px rgba(255, 90, 31, .12);
}
.problem-list__dot{
  display: none;
}
.problem-list__text{
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(15, 23, 42, .70);
}
.problem-list__text strong{
  display: block;
  margin-bottom: 4px;
  color: rgba(15, 23, 42, .94);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.02em;
}

@media (max-width: 900px){
  .problem__shell{
    padding: 28px 20px 32px;
  }
  .problem__wrap{
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: 640px;
  }
  .problem__intro{
    align-items: center;
    text-align: center;
  }
  .problem__lede{
    margin-left: auto;
    margin-right: auto;
    max-width: 46ch;
  }
}

.features{
  width: 100%;
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 4px 8px;
  text-align: center;
}
.features__heading{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, .94);
}
.features__lede{
  margin: 10px auto 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(15, 23, 42, .58);
}

.feature-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.feature-card{
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 18px 40px rgba(2, 6, 23, .08);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, .35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 22px 50px rgba(2, 6, 23, .12);
}

.feature-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: rgba(2, 6, 23, .06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease;
}
.feature-card:hover .feature-card__media img{
  transform: scale(1.03);
}

.feature-card__body{
  position: relative;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,252,250,.92) 100%);
}
.feature-card__body::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(140px 80px at 0% 0%, rgba(255, 90, 31, .10), transparent 70%);
}

.feature-card__title{
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, .94);
}
.feature-card__text{
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 23, 42, .62);
}

@media (max-width: 1100px){
  .feature-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .features{ margin-top: 36px; }
  .feature-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .feature-card{
    border-radius: 16px;
  }
  .feature-card__body{
    padding: 12px 10px 14px;
  }
  .feature-card__title{
    font-size: 14px;
    line-height: 1.2;
  }
  .feature-card__text{
    font-size: 12px;
    line-height: 1.45;
    margin-top: 6px;
  }
}

.phone{
  width: min(440px, 88vw);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: transparent;
  position: relative;
  z-index: 2;
}
.phone__img{
  width: 100%;
  height: auto;
  display:block;
  transform: none;
}

/* Responsive */
@media (max-width: 860px){
  .page{ padding: 40px 18px; }
  .hero{
    padding: 30px 0 6px;
    text-align: center;
  }
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero__copy{
    max-width: 62ch;
    margin: 0 auto;
  }
  .hero__hint{ text-align: center; }
  .hero__visual{ justify-content: center; }

  .phone-stage{
    width: min(520px, 100%);
    padding-top: 6px;
  }
  .mockup-divider{
    margin-top: 14px;
  }
  .phone{
    width: min(360px, 94vw);
  }

  .nav__left{ min-width: auto; }
  .nav__actions{ min-width: auto; }
  .nav__email{ display:none; }

  .nav__toggle{
    display: inline-flex;
    flex-direction: column;
  }

  .nav__right{
    position: absolute;
    top: 78px;
    left: 12px;
    right: 12px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(2, 6, 23, .10);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav__right.is-open{ display:flex; }

  .nav__links{
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav__links > li:not(:last-child)::after{ content: none; }
  .nav__link{ padding: 12px 12px; }

  .nav__lang{
    width: 100%;
    order: 2;
  }
  .nav__langSelect{
    max-width: none;
    width: 100%;
  }

  .nav__actions{
    justify-content: stretch;
    order: 3;
  }
  .nav__links{
    order: 1;
  }
  .btn{ width: 100%; }

  .hero__form{
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 14px;
    gap: 12px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__input{
    height: 48px;
    min-height: 48px;
    width: 100%;
    font-size: 16px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(2, 6, 23, .08);
  }
  .hero__submit{
    height: 48px;
    min-height: 48px;
    width: 100%;
    border-radius: 14px;
  }
  .hero__actions{
    max-width: none;
    width: 100%;
  }
  .hero__supportBtn{
    width: 100%;
    min-width: 0;
  }
}

.site-footer{
  margin-top: clamp(40px, 6vw, 72px);
  padding: 32px 28px 40px;
  border-top: 1px solid rgba(2, 6, 23, .07);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 252, 250, .55) 42%,
    rgba(255, 240, 230, .35) 100%
  );
}

.site-footer__inner{
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__copy{
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.55em;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(100, 116, 139, .95);
}

.site-footer__brand{
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(15, 23, 42, .78);
}

.site-footer__sep{
  color: rgba(255, 90, 31, .45);
  font-weight: 300;
}

.site-footer__year{
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(15, 23, 42, .55);
}

@media (max-width: 560px){
  .site-footer{
    padding: 26px 18px 32px;
  }
  .site-footer__copy{
    font-size: 13px;
  }
}

.scroll-top{
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 6, 23, .12);
  border-radius: 999px;
  background: rgba(255, 252, 250, .94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover{
  border-color: rgba(255, 90, 31, .35);
  color: var(--accent);
}

.scroll-top:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.scroll-top__icon{
  display: block;
}

@media (prefers-reduced-motion: reduce){
  .scroll-top{
    transition: none;
  }
}
