@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: rgb(255 255 255 / 3%);
  --surface-strong: rgb(255 255 255 / 5%);
  --border: rgb(255 255 255 / 10%);
  --border-soft: rgb(255 255 255 / 5%);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-dark: #64748b;
  --purple: #6d00d8;
  --purple-dark: #5700ad;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90vw 90vh at 92% 0%, rgb(109 0 216 / 7.5%), transparent 62%),
    radial-gradient(ellipse 82vw 82vh at 0% 52%, rgb(109 0 216 / 5%), transparent 64%),
    linear-gradient(var(--bg), var(--bg));
  background-attachment: fixed;
  color: #cbd5e1;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.gtm-frame {
  display: none;
  visibility: hidden;
}

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

.site-section {
  position: relative;
  overflow: hidden;
}

.section-grid-bg {
  isolation: isolate;
}

.section-grid-bg::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 6.1%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 6.1%) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  pointer-events: none;
}

.section-grid-bg > * {
  position: relative;
  z-index: 1;
}

.glass-nav {
  background: rgb(255 255 255 / 4%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 10%),
    inset 0 0 0 1px rgb(255 255 255 / 5%);
  backdrop-filter: blur(16px) saturate(1.2);
}

.glass-submenu {
  background: rgb(16 16 16 / 94%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 15%),
    inset 0 0 0 1px rgb(255 255 255 / 6%);
  backdrop-filter: blur(16px) saturate(1.2);
}

.glass-card {
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 5%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
  backdrop-filter: blur(16px);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: 0;
  left: 0;
  padding-inline: 32px;
}

.nav-shell {
  display: flex;
  width: min(var(--max-width), 100%);
  height: 72px;
  margin-inline: auto;
  padding-inline: 32px;
  align-items: center;
  border-radius: 16px;
  color: #f9f9f9;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: "Montserrat", "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}

.desktop-nav ul a,
.mobile-menu > a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav ul a:hover,
.desktop-nav ul a[aria-current="page"],
.mobile-menu > a:hover,
.mobile-menu > a[aria-current="page"] {
  color: var(--purple);
}

.nav-cta,
.mobile-cta {
  display: inline-flex;
  min-height: 42px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px rgb(109 0 216 / 30%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  margin-left: 24px;
  padding: 10px 20px;
}

.nav-cta:hover,
.mobile-cta:hover {
  background: var(--purple-dark);
  transform: scale(1.03);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-button span:nth-child(3) {
  transform: translateY(7px);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 49;
  top: 98px;
  right: 16px;
  left: 16px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  border-radius: 24px;
  animation: menu-in 180ms ease-out both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-cta {
  width: 100%;
  margin-top: 4px;
  padding: 12px 20px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--purple);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  padding: 176px 0 112px;
}

.hero-grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  animation: hero-copy-in 500ms ease-out both;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--purple);
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 24px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: scale(1.03);
}

.button-primary {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 32px rgb(109 0 216 / 30%);
}

.button-primary:hover {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 3%);
  color: #fff;
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: rgb(109 0 216 / 45%);
  background: rgb(255 255 255 / 7%);
}

.button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.signal-panel {
  position: relative;
  width: 100%;
  max-width: 448px;
  height: 430px;
  margin-left: auto;
  padding-top: 48px;
  overflow: hidden;
  animation: hero-signal-in 600ms 180ms ease-out both;
}

.signal-panel::before,
.signal-panel::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.signal-panel::before {
  top: 50%;
  right: 32px;
  left: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 15%), transparent);
}

.signal-panel::after {
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgb(109 0 216 / 30%), transparent);
}

.signal-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--purple);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.signal-window {
  position: relative;
  z-index: 1;
  height: 272px;
  overflow: hidden;
  perspective: 760px;
}

.signal-card {
  position: absolute;
  top: 50%;
  right: 24px;
  left: 24px;
  display: flex;
  height: 80px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgb(0 0 0 / 35%);
  color: #fff;
  opacity: var(--signal-opacity, 0);
  box-shadow: 0 8px 32px rgb(109 0 216 / 18%);
  backdrop-filter: blur(16px);
  transform: translateY(var(--signal-y, 156px)) scale(var(--signal-scale, 0.6)) rotateX(var(--signal-rotate-x, -36deg));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, border-color 300ms ease, background-color 300ms ease;
  will-change: transform, opacity;
}

.signal-card strong {
  min-width: 0;
  padding-inline: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.signal-card.is-active {
  border-color: rgb(109 0 216 / 50%);
  background: rgb(0 0 0 / 75%);
}

.signal-dot {
  position: absolute;
  left: 20px;
  display: flex;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.signal-dot-core,
.signal-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.signal-dot-core {
  background: rgb(255 255 255 / 25%);
}

.signal-card.is-active .signal-dot-core {
  background: var(--purple);
}

.signal-ping {
  display: none;
  background: var(--purple);
}

.signal-card.is-active .signal-ping {
  display: block;
  animation: signal-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.signal-timer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--purple);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.signal-card.is-active .signal-timer {
  opacity: 1;
  animation: signal-timer 2.9s linear both;
}

.signal-progress {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 20px;
  gap: 8px;
  justify-content: center;
}

.signal-progress span {
  width: 8px;
  height: 6px;
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
  transition: width 300ms ease, background-color 300ms ease;
}

.signal-progress span.is-active {
  width: 32px;
  background: var(--purple);
}

@media (min-width: 640px) {
  .signal-card strong {
    font-size: 16px;
  }
}

.library {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.contact-shell h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.16;
}

.section-heading > p:last-child,
.contact-shell > div > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.ebook-card {
  display: grid;
  max-width: 1060px;
  margin-inline: auto;
  padding: 40px;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition: border-color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.ebook-card:hover {
  border-color: rgb(109 0 216 / 35%);
  background: rgb(255 255 255 / 5%);
  transform: translateY(-4px);
}

.cover-column {
  position: relative;
  width: 100%;
  max-width: 350px;
  justify-self: center;
}

.cover-frame {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  min-height: 0;
  overflow: hidden;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 12px;
  background-color: var(--purple);
  background-image:
    linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 36px 36px;
  box-shadow: 0 28px 60px rgb(0 0 0 / 42%);
  isolation: isolate;
}

.cover-frame::after {
  position: absolute;
  z-index: -1;
  right: -34px;
  bottom: -54px;
  color: rgb(255 255 255 / 10%);
  content: "G";
  font-family: "Montserrat", sans-serif;
  font-size: 260px;
  font-weight: 700;
  line-height: 1;
}

.cover-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cover-brand img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.cover-brand span {
  display: grid;
}

.cover-brand small {
  margin-top: 2px;
  color: rgb(255 255 255 / 62%);
  font-size: 9px;
  font-weight: 400;
}

.cover-tag {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(0 0 0 / 18%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cover-copy {
  position: relative;
  z-index: 1;
}

.cover-copy strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  line-height: 1.06;
}

.cover-copy p {
  max-width: 240px;
  margin: 16px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 15px;
  line-height: 1.45;
}

.ebook-content h3 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
}

.ebook-description {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.metadata {
  display: grid;
  margin: 28px 0;
  padding: 20px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metadata div {
  padding-inline: 18px;
  border-right: 1px solid var(--border);
}

.metadata div:first-child {
  padding-left: 0;
}

.metadata div:last-child {
  border-right: 0;
}

.metadata dt {
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.metadata dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.topics {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.topics li {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
  color: #cbd5e1;
  font-size: 12px;
}

.download-actions {
  margin-top: 30px;
}

.download-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.5;
}

.contact-band {
  padding: 88px 0;
}

.contact-shell {
  display: flex;
  max-width: 1060px;
  margin-inline: auto;
  padding: 48px;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-shell > div {
  max-width: 690px;
}

.contact-shell .button {
  flex: 0 0 auto;
}

.site-footer {
  margin-top: 40px;
  padding: 24px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-about > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-company {
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-company p {
  margin: 0 0 4px;
}

.footer-company-desktop {
  margin-top: 12px;
}

.footer-company-mobile {
  display: none;
  margin-top: 18px;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--purple);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.legal-links {
  display: grid;
  margin-top: 16px;
  padding-top: 16px;
  gap: 8px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.94);
  transition: opacity 240ms ease, transform 240ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

.floating-whatsapp img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-signal-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes signal-timer {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes signal-ping {
  75%,
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@media (max-width: 1023px) {
  .site-header {
    padding-inline: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: flex;
  }

  .hero {
    padding-top: 144px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .signal-panel {
    max-width: 448px;
    margin: 0 auto;
  }

  .ebook-card {
    gap: 38px;
    grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  }

  .cover-copy strong {
    font-size: 36px;
  }

  .ebook-content h3 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 12px;
    padding-inline: 12px;
  }

  .nav-shell {
    height: 64px;
    padding-inline: 16px;
    border-radius: 16px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 17px;
  }

  .mobile-menu {
    top: 88px;
  }

  .hero {
    padding: 124px 0 72px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 40px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .library {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading h2,
  .contact-shell h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .contact-shell > div > p:last-child {
    font-size: 16px;
  }

  .ebook-card {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 34px;
    border-radius: 14px;
  }

  .ebook-card:hover {
    transform: none;
  }

  .cover-column {
    max-width: 330px;
  }

  .ebook-content {
    padding: 0 4px 8px;
  }

  .ebook-content h3 {
    font-size: 36px;
  }

  .ebook-description {
    font-size: 16px;
  }

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

  .metadata div {
    padding-inline: 10px;
  }

  .metadata dt {
    font-size: 10px;
  }

  .metadata dd {
    font-size: 12px;
  }

  .download-actions {
    flex-direction: column;
  }

  .download-actions .button {
    width: 100%;
  }

  .contact-band {
    padding: 64px 0;
  }

  .contact-shell {
    padding: 28px 22px;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    border-radius: 14px;
  }

  .contact-shell .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-company-desktop {
    display: none;
  }

  .footer-company-mobile {
    display: block;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 20px;
  }
}

@media (max-width: 639px) {
  .signal-panel {
    height: 360px;
    padding-top: 13px;
  }

  .signal-panel::after {
    top: 12px;
    bottom: 12px;
  }

  .signal-card {
    right: 20px;
    left: 20px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .cover-frame {
    padding: 22px;
  }

  .cover-copy strong {
    font-size: 32px;
  }
}

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

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

  .signal-card {
    transition-duration: 700ms, 700ms, 300ms, 300ms !important;
  }

  .signal-card.is-active .signal-timer {
    animation-duration: 2.9s !important;
  }

  .signal-card.is-active .signal-ping {
    animation-duration: 1s !important;
    animation-iteration-count: infinite !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
