:root {
  --body: #000806;
  --bg-1: #00120d;
  --bg-2: #053d2f;
  --surface: rgba(17, 27, 31, .76);
  --surface-2: rgba(6, 18, 18, .68);
  --border: rgba(211, 235, 226, .1);
  --border-strong: rgba(73, 151, 126, .48);
  --text: #f7fbf8;
  --hint: #9ab1aa;
  --muted: #677b76;
  --pink: #4c967e;
  --pink-2: #5db394;
  --violet: #8b6cff;
  --cyan: #79e8ff;
  --green: #43d7a2;
  --dark: #00100c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1120px;
  --header: 68px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .48);
  --glow: 0 16px 54px rgba(67, 215, 162, .2);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(980px 620px at 78% -10%, rgba(139, 108, 255, .18), transparent 60%),
    radial-gradient(900px 600px at -10% 28%, rgba(67, 215, 162, .18), transparent 64%),
    radial-gradient(760px 560px at 54% 105%, rgba(5, 82, 61, .5), transparent 58%),
    linear-gradient(180deg, var(--bg-1), var(--body) 56%, var(--bg-2));
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247, 237, 245, .05) 1px, transparent 1px);
  background-size: 23px 23px;
  opacity: .34;
  mix-blend-mode: overlay;
}

#petals {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

img,
svg {
  display: block;
}

svg:not(.flag-symbols):not(.flag svg) {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  appearance: none;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--dark);
  font-weight: 800;
  text-decoration: none;
  transition: top 180ms var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.flag-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 13, 20, .56);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.site-header.scrolled {
  background: rgba(18, 13, 20, .78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.nav-shell {
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-name b {
  color: var(--violet);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(17, 27, 31, .78);
  box-shadow: 0 0 0 1px rgba(211, 235, 226, .12) inset;
}

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

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--hint);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(247, 237, 245, .055);
  outline: none;
}

.nav-auth {
  display: none;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(73, 151, 126, .42);
  border-radius: var(--radius-sm);
  color: var(--green);
  background: rgba(73, 151, 126, .13);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(247, 237, 245, .045);
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
  margin: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #f7fbf8;
  background: var(--pink);
  box-shadow: var(--glow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #57a88d;
  box-shadow: 0 20px 62px rgba(67, 215, 162, .28);
}

.button-trial {
  color: #f7fbf8;
  background: linear-gradient(135deg, var(--pink-2), var(--pink) 56%, var(--violet));
  box-shadow: 0 14px 42px rgba(67, 215, 162, .24);
}

.button-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(247, 237, 245, .045);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(247, 237, 245, .15);
  background: rgba(247, 237, 245, .08);
}

.hero {
  position: relative;
  padding: 76px 0 34px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 7px 13px;
  border: 1px solid rgba(73, 151, 126, .38);
  border-radius: 999px;
  color: var(--green);
  background: rgba(73, 151, 126, .12);
  font-size: 13px;
  font-weight: 650;
}

.hero-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, #eafff7, var(--green) 46%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--hint);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 15px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 38px auto 0;
}

.hero-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(17, 27, 31, .56);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .16);
}

.hero-meta dt {
  margin: 0;
  color: var(--hint);
  font-size: 13px;
  font-weight: 650;
}

.hero-meta dd {
  margin: 6px 0 0;
  color: var(--text);
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-visual {
  position: relative;
  max-width: 900px;
  height: 330px;
  margin: 44px auto -8px;
  overflow: hidden;
  border: 1px solid rgba(247, 237, 245, .08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(67, 215, 162, .16), transparent 70%),
    rgba(17, 27, 31, .44);
  box-shadow: var(--shadow), var(--glow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
  filter: saturate(1.12) hue-rotate(34deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 13, 20, .05), rgba(18, 13, 20, .74)),
    radial-gradient(520px 180px at 50% 52%, transparent, rgba(18, 13, 20, .5));
  pointer-events: none;
}

.signal-card {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(247, 237, 245, .11);
  border-radius: var(--radius-md);
  text-align: left;
  background: rgba(20, 13, 22, .7);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.signal-card span {
  display: block;
  color: var(--hint);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.signal-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 18px;
}

.card-a {
  left: 52px;
  bottom: 44px;
}

.card-b {
  right: 52px;
  top: 44px;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head.align-left {
  margin: 0;
  text-align: left;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.cta-card p {
  margin: 16px 0 0;
  color: var(--hint);
  font-size: 17px;
}

.glass {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px) saturate(142%);
  -webkit-backdrop-filter: blur(10px) saturate(142%);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 252px;
  padding: 26px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.feature:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.icon,
.access-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--pink);
  background: rgba(73, 151, 126, .14);
}

.icon svg,
.access-icon svg {
  width: 23px;
  height: 23px;
}

.feature h3 {
  margin: 19px 0 0;
  font-size: 19px;
  line-height: 1.2;
}

.feature p {
  margin: 10px 0 0;
  color: var(--hint);
  font-size: 14.5px;
}

.telegram {
  color: #7fd7ff;
  background: rgba(127, 215, 255, .12);
}

.email {
  color: var(--pink);
}

.email-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.email-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 650;
}

.email-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(247, 237, 245, .11);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(4, 16, 15, .74);
  outline: none;
}

.email-form input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(67, 215, 162, .12);
}

.form-status {
  margin-top: 12px !important;
  color: var(--green) !important;
}

.locations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.location {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.location:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.flag {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(247, 237, 245, .06);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .26),
    0 0 0 1px rgba(247, 237, 245, .16) inset;
}

.flag svg {
  width: 100%;
  height: 100%;
}

.flag::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 42%, rgba(0, 0, 0, .18)),
    radial-gradient(42px 22px at 28% 16%, rgba(255, 255, 255, .24), transparent 70%);
  box-shadow:
    0 0 0 1px rgba(247, 237, 245, .18) inset,
    0 -10px 18px rgba(0, 0, 0, .16) inset;
}

.location div {
  min-width: 0;
  display: grid;
}

.location strong {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.location small {
  display: block;
  margin-top: 4px;
  color: var(--hint);
  font-size: 12px;
}

.location.highlight {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(73, 151, 126, .12), rgba(17, 27, 31, .72));
}

.pricing-section {
  padding-top: 84px;
}

.pricing-shell {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.pricing-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pricing-title h3 {
  margin: 0;
  font-size: 24px;
}

.pricing-title span {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--hint);
  background: rgba(247, 237, 245, .045);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.plan {
  position: relative;
  min-height: 158px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-align: left;
  background: var(--surface-2);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.plan:hover,
.plan:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  outline: none;
}

.plan.selected {
  border-color: var(--pink);
  background: linear-gradient(180deg, rgba(73, 151, 126, .13), rgba(73, 151, 126, .04));
  box-shadow: 0 0 0 1px rgba(67, 215, 162, .42), var(--glow);
}

.plan span,
.plan small {
  display: block;
  color: var(--hint);
  font-weight: 700;
}

.plan strong {
  display: block;
  margin-top: 16px;
  font-family: "Geist Mono", Consolas, monospace;
  font-size: 34px;
  line-height: 1;
}

.plan small {
  margin-top: 8px;
  font-size: 13px;
}

.plan i {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #1a0716;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.includes {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(4, 16, 15, .42);
}

.includes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.includes svg,
.faq svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--pink);
}

.checkout-button {
  width: 100%;
}

.app-transition[hidden] {
  display: none;
}

.app-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(720px 460px at 50% 70%, rgba(4, 86, 61, .7), transparent 74%),
    linear-gradient(180deg, rgba(0, 8, 6, .9), rgba(0, 28, 20, .92));
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.app-transition-card {
  width: min(100%, 440px);
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(211, 235, 226, .16);
  border-radius: 18px;
  background: rgba(17, 27, 31, .92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .56), 0 0 80px rgba(67, 215, 162, .12);
}

.app-transition-card strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.app-transition-card strong::first-letter {
  color: var(--text);
}

.app-transition-card span {
  color: var(--hint);
  font-size: 14px;
}

.app-transition-card i {
  width: 180px;
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(211, 235, 226, .08);
}

.app-transition-card i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--violet));
  animation: loading-bar 760ms var(--ease) infinite alternate;
}

body.app-loading {
  overflow: hidden;
}

@keyframes loading-bar {
  from { transform: translateX(0); }
  to { transform: translateX(140%); }
}

.faq {
  max-width: 780px;
  display: grid;
  gap: 10px;
  margin-inline: auto;
}

.q {
  padding: 0;
  border-radius: var(--radius-md);
}

.q summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.q summary svg {
  transition: transform 180ms var(--ease);
}

.q[open] summary svg {
  transform: rotate(180deg);
}

.q p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--hint);
}

.cta-section {
  padding: 30px 0 92px;
}

.cta-card {
  padding: 58px 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(780px 360px at 50% 0%, rgba(67, 215, 162, .2), transparent 72%),
    var(--surface);
  box-shadow: var(--glow);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  color: var(--hint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a {
  color: var(--hint);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--text);
  outline: none;
}

.js-ready .feature,
.js-ready .location,
.js-ready .plan {
  opacity: 0;
  transform: translateY(12px);
}

.js-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

@media (max-width: 930px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header) + 8px);
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(18, 13, 20, .96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .locations {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 66px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .header-action {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-note {
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .includes ul,
  .hero-meta,
  .plans,
  .features,
  .locations {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-meta {
    display: grid;
    margin-top: 26px;
  }

  .hero-visual {
    height: 250px;
    margin-top: 30px;
  }

  .signal-card {
    min-width: 150px;
    padding: 13px 14px;
  }

  .signal-card strong {
    font-size: 15px;
  }

  .card-a {
    left: 16px;
    bottom: 18px;
  }

  .card-b {
    right: 16px;
    top: 18px;
  }

  .section {
    padding: 66px 0;
  }

  .pricing-shell {
    padding: 18px;
  }

  .pricing-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .includes {
    padding: 18px;
  }

  .app-transition-card {
    padding: 28px 18px 22px;
  }

  .cta-card {
    padding: 42px 22px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-meta dd {
    font-size: 20px;
  }
}

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

  #petals {
    display: none;
  }
}
