:root {
  color-scheme: dark;
  --ink: #251225;
  --ink-soft: #351a36;
  --plum: #4d2449;
  --rose: #e9808f;
  --rose-deep: #c7556e;
  --apricot: #ffc99f;
  --lilac: #d8c4ff;
  --cream: #fff7ec;
  --paper: #f6e8d8;
  --muted: #cdb8c8;
  --line: rgba(255, 247, 236, 0.18);
  --shadow: 0 34px 90px rgba(13, 5, 18, 0.42);
  --display: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--apricot);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--apricot);
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
}

.site-header--solid {
  position: relative;
  background: var(--ink);
}

.nav-shell {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(8, 3, 10, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--apricot);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--plum);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: min(58vw, 820px);
  aspect-ratio: 1;
  top: -30%;
  right: -10%;
  background: var(--rose-deep);
  opacity: 0.5;
}

.hero::after {
  width: min(40vw, 560px);
  aspect-ratio: 1;
  right: 18%;
  bottom: -30%;
  background: var(--lilac);
  opacity: 0.13;
}

.hero-shell {
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--apricot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display-type {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(60px, 7.2vw, 112px);
}

.hero-lede {
  max-width: 510px;
  margin-bottom: 32px;
  color: #f3dfeb;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--apricot);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--cream);
  text-decoration: none;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 750;
}

.beta-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: min(74svh, 790px);
  min-height: 570px;
  transform: translate3d(calc(var(--pointer-x, 0) * 7px), calc(var(--pointer-y, 0) * 5px), 0);
  transition: transform 300ms ease-out;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: -2%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 18, 37, 0.2);
  border-radius: 50%;
  background: var(--apricot);
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 18px 50px rgba(14, 4, 14, 0.28);
}

.phone-shot {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  border-radius: clamp(18px, 2.2vw, 28px);
  box-shadow: var(--shadow);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-shot--hero {
  width: min(70%, 380px);
  right: 8%;
  bottom: -5%;
  transform: rotate(4deg);
}

.phone-shot--echo {
  z-index: -1;
  width: min(50%, 285px);
  left: -4%;
  bottom: -1%;
  opacity: 0.76;
  transform: rotate(-8deg);
}

.has-js .hero-copy > *,
.has-js .hero-visual > * {
  opacity: 0;
  transform: translateY(24px);
}

.is-ready .hero-copy > *,
.is-ready .hero-visual > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.is-ready .hero-copy > :nth-child(2) { transition-delay: 90ms; }
.is-ready .hero-copy > :nth-child(3) { transition-delay: 160ms; }
.is-ready .hero-copy > :nth-child(4) { transition-delay: 230ms; }
.is-ready .hero-copy > :nth-child(5) { transition-delay: 300ms; }
.is-ready .hero-visual > :nth-child(1) { transition-delay: 180ms; }
.is-ready .hero-visual > :nth-child(2) { transition-delay: 280ms; }
.is-ready .hero-visual > :nth-child(3) { transition-delay: 390ms; }

.principle-ribbon {
  border-top: 1px solid rgba(37, 18, 37, 0.12);
  border-bottom: 1px solid rgba(37, 18, 37, 0.12);
  background: var(--apricot);
  color: var(--ink);
}

.ribbon-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ribbon-shell p {
  margin: 0;
  padding: 6px clamp(18px, 3vw, 42px);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.ribbon-shell p + p {
  border-left: 1px solid rgba(37, 18, 37, 0.2);
}

.story-section {
  position: relative;
  padding: clamp(100px, 13vw, 180px) 0;
}

.story-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.story-section--light {
  background: var(--paper);
  color: var(--ink);
}

.story-section--rose {
  background: var(--rose);
  color: var(--ink);
}

.story-section--light .eyebrow,
.story-section--rose .eyebrow {
  color: var(--rose-deep);
}

.story-copy h2,
.statement h2,
.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 6.5vw, 96px);
}

.story-copy p {
  max-width: 510px;
  margin-bottom: 24px;
  font-size: clamp(18px, 1.7vw, 21px);
}

.story-copy .fine-print {
  max-width: 470px;
  color: rgba(37, 18, 37, 0.7);
  font-size: 14px;
}

.screen-stage {
  position: relative;
  min-height: 850px;
  display: grid;
  place-items: center;
}

.screen-stage::before {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.15;
  content: "";
}

.screen-stage .phone-shot {
  position: relative;
  width: min(76%, 390px);
  transform: rotate(var(--screen-rotation, -3deg)) translateY(var(--screen-shift, 0));
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screen-stage:hover .phone-shot {
  transform: rotate(0deg) translateY(-8px);
}

.screen-note {
  position: absolute;
  right: -4%;
  bottom: 10%;
  width: 190px;
  padding: 22px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 15px 45px rgba(37, 18, 37, 0.17);
}

.story-section--reverse .story-shell {
  grid-template-columns: minmax(420px, 1.04fr) minmax(290px, 0.76fr);
}

.story-section--reverse .screen-stage {
  order: -1;
}

.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 15vw, 210px) 0;
  background: var(--ink-soft);
}

.statement-shell {
  width: var(--page);
  margin: 0 auto;
}

.statement h2 {
  max-width: 980px;
  color: var(--lilac);
}

.statement h2 em {
  color: var(--apricot);
  font-weight: inherit;
}

.statement-copy {
  max-width: 680px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.safety-principles {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--cream);
  color: var(--ink);
}

.principles-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(440px, 1fr);
  gap: clamp(54px, 9vw, 130px);
}

.principles-shell h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(37, 18, 37, 0.24);
}

.principle-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(37, 18, 37, 0.24);
}

.principle-list strong {
  color: var(--rose-deep);
  font-family: var(--display);
  font-size: 25px;
}

.principle-list span {
  font-size: 18px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 190px) 0;
  background: var(--rose-deep);
  color: var(--cream);
}

.final-cta::after {
  position: absolute;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  top: -65%;
  right: -5%;
  border: 1px solid rgba(255, 247, 236, 0.32);
  border-radius: 50%;
  content: "";
}

.final-shell {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p {
  max-width: 560px;
  font-size: 20px;
}

.site-footer {
  padding: 54px 0 34px;
  background: #180b1b;
}

.footer-shell {
  width: var(--page);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-about {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: #9e879d;
  font-size: 12px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal, support, and invite pages */
.document-hero {
  padding: clamp(86px, 11vw, 150px) 0 clamp(70px, 9vw, 120px);
  background: var(--plum);
}

.document-hero--apricot {
  background: var(--apricot);
  color: var(--ink);
}

.document-hero--rose {
  background: var(--rose);
  color: var(--ink);
}

.document-hero-shell,
.document-shell,
.support-shell,
.error-shell {
  width: min(880px, calc(100vw - 48px));
  margin: 0 auto;
}

.document-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8vw, 110px);
}

.document-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.76);
  font-size: 19px;
}

.document-hero--apricot p,
.document-hero--rose p {
  color: rgba(37, 18, 37, 0.72);
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 26px 0 0;
  color: var(--apricot);
  font-size: 13px;
  font-weight: 700;
}

.document-hero--apricot .document-meta,
.document-hero--rose .document-meta {
  color: var(--plum);
}

.document-content {
  padding: 80px 0 120px;
  background: var(--cream);
  color: var(--ink);
}

.document-shell {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  gap: 64px;
}

.document-nav {
  position: sticky;
  top: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.document-nav li + li {
  margin-top: 8px;
}

.document-nav a {
  display: block;
  padding: 7px 0;
  color: rgba(37, 18, 37, 0.62);
  text-decoration: none;
}

.document-nav a:hover {
  color: var(--rose-deep);
}

.legal-copy section {
  scroll-margin-top: 28px;
}

.legal-copy section + section {
  margin-top: 66px;
  padding-top: 66px;
  border-top: 1px solid rgba(37, 18, 37, 0.16);
}

.legal-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 55px);
  line-height: 1;
}

.legal-copy h3 {
  margin: 32px 0 12px;
  color: var(--plum);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
}

.legal-copy p,
.legal-copy li {
  color: #4f3a4b;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.25em;
}

.legal-copy li + li {
  margin-top: 10px;
}

.legal-copy a {
  color: #8e354f;
}

.legal-note {
  padding-left: 22px;
  border-left: 3px solid var(--rose);
  color: var(--plum);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-token {
  overflow-wrap: anywhere;
  color: var(--rose-deep);
  font-weight: 750;
}

.support-page {
  padding: 84px 0 130px;
  background: var(--cream);
  color: var(--ink);
}

.support-intro {
  max-width: 670px;
  margin-bottom: 64px;
  font-size: 20px;
}

.support-page .display-type {
  margin-bottom: 34px;
  font-size: clamp(48px, 6vw, 76px);
}

.contact-line {
  margin: 0 0 72px;
  padding: 32px 0;
  border-top: 1px solid rgba(37, 18, 37, 0.22);
  border-bottom: 1px solid rgba(37, 18, 37, 0.22);
}

.contact-line small {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 18, 37, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line .contact-token {
  font-family: var(--display);
  font-size: clamp(25px, 4vw, 42px);
}

.faq-list {
  border-top: 1px solid rgba(37, 18, 37, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(37, 18, 37, 0.22);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--rose-deep);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 680px;
  padding: 0 0 28px;
  color: #4f3a4b;
}

.invite-page,
.error-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: var(--paper);
  color: var(--ink);
}

.invite-mark {
  width: 112px;
  height: 112px;
  margin-bottom: 34px;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(37, 18, 37, 0.16);
}

.invite-page h1,
.error-page h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 108px);
}

.invite-page p,
.error-page p {
  max-width: 600px;
  font-size: 20px;
}

.error-code {
  margin: 0 0 10px;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.invite-page .text-link,
.error-page .text-link {
  color: var(--ink);
}

@media (max-width: 880px) {
  :root {
    --page: min(100% - 32px, 680px);
    --header-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
    background: #211022;
    box-shadow: 0 24px 50px rgba(9, 3, 9, 0.25);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 58px);
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-visual {
    width: min(100%, 560px);
    height: 670px;
    min-height: 0;
    margin: 0 auto;
  }

  .hero-stamp {
    right: 0;
  }

  .ribbon-shell {
    grid-template-columns: 1fr;
  }

  .ribbon-shell p + p {
    border-top: 1px solid rgba(37, 18, 37, 0.2);
    border-left: 0;
  }

  .story-shell,
  .story-section--reverse .story-shell,
  .principles-shell {
    grid-template-columns: 1fr;
  }

  .story-section--reverse .screen-stage {
    order: initial;
  }

  .screen-stage {
    min-height: 760px;
  }

  .screen-stage .phone-shot {
    width: min(72%, 350px);
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .document-shell {
    grid-template-columns: 1fr;
  }

  .document-nav {
    position: static;
    columns: 2;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(37, 18, 37, 0.16);
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100vw - 28px);
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-visual {
    height: 560px;
  }

  .phone-shot--hero {
    right: 3%;
    width: 68%;
  }

  .phone-shot--echo {
    left: -3%;
    width: 48%;
  }

  .hero-stamp {
    width: 104px;
    height: 104px;
    font-size: 17px;
  }

  .story-section {
    padding: 92px 0;
  }

  .story-copy h2,
  .statement h2,
  .final-cta h2 {
    font-size: clamp(46px, 14vw, 67px);
  }

  .screen-stage {
    min-height: 620px;
  }

  .screen-stage .phone-shot {
    width: min(77%, 290px);
  }

  .screen-note {
    right: -2%;
    width: 145px;
    padding: 17px;
    font-size: 17px;
  }

  .principle-list li {
    grid-template-columns: 32px 1fr;
    gap: 13px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .document-hero-shell,
  .document-shell,
  .support-shell,
  .error-shell {
    width: calc(100vw - 28px);
  }

  .document-content {
    padding: 64px 0 90px;
  }

  .document-nav {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-copy > *,
  .hero-visual > *,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
