:root {
  color-scheme: dark;
  --bg: #07090c;
  --bg-2: #10151b;
  --panel: #121821;
  --panel-2: #171f29;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8fafc;
  --muted: #a8b3c1;
  --orange: #ff4d1d;
  --orange-2: #ff8a22;
  --cyan: #13d7f2;
  --green: #56e39f;
  --blue: #366cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 30;
  border-radius: 6px;
  background: var(--text);
  color: #0a0d12;
  padding: 10px 14px;
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 68px);
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 12, 0.55);
  backdrop-filter: blur(18px);
  transition:
    min-height 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-bottom-color: var(--line);
  background: rgba(7, 9, 12, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 160px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 36px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #120904;
  box-shadow: 0 12px 28px rgba(255, 77, 29, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-plan {
  width: 100%;
  border-color: rgba(19, 215, 242, 0.32);
  background: rgba(19, 215, 242, 0.11);
  color: var(--text);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(19, 215, 242, 0.48);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(650px, 88svh, 850px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 77, 29, 0.18), transparent 28%),
    linear-gradient(180deg, #080a0d 0%, #0b1016 62%, #10151b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(16, 21, 27, 0.96));
  pointer-events: none;
}

#fiberCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 122px 0 78px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  font-size: 7.5rem;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 77, 29, 0.22);
}

h2 {
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.26rem;
  line-height: 1.18;
}

.hero-copy p,
.section-head p,
.coverage-copy p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-copy p {
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.coverage-list span,
.plan-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 11px;
  color: #dce6ef;
  font-size: 0.85rem;
  font-weight: 800;
}

.signal-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 24, 33, 0.74), rgba(12, 16, 22, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(19, 215, 242, 0.12) 45%, transparent 70%),
    linear-gradient(20deg, transparent, rgba(255, 77, 29, 0.15));
  animation: panelScan 5.5s ease-in-out infinite;
}

.speed-meter,
.network-status {
  position: relative;
  z-index: 1;
}

.speed-meter {
  display: grid;
  justify-items: center;
  min-height: 280px;
  text-align: center;
}

.speed-meter svg {
  width: min(100%, 310px);
  margin-top: 4px;
}

.meter-track,
.meter-progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 17;
}

.meter-track {
  stroke: rgba(255, 255, 255, 0.13);
}

.meter-progress {
  stroke: var(--orange);
  stroke-dasharray: 238;
  stroke-dashoffset: 52;
  filter: drop-shadow(0 0 12px rgba(255, 77, 29, 0.42));
}

.meter-needle {
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-width: 5;
  transform-origin: 110px 125px;
  animation: needle 3.5s ease-in-out infinite;
}

.meter-center {
  fill: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(19, 215, 242, 0.72));
}

.speed-meter strong {
  margin-top: -18px;
  font-size: 4.2rem;
  line-height: 1;
}

.speed-meter small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.network-status {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.network-status span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  color: #dce7f2;
}

.network-status b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.metrics-section,
.section,
.coverage-section,
.faq-section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.metrics-section {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 130px;
  background: rgba(18, 24, 33, 0.96);
  padding: 24px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 3rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(80px, 12vw, 140px) 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  margin-bottom: 0;
}

.plans-grid,
.benefit-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

.plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card,
.benefit-grid article,
.trust-grid article,
.coverage-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 31, 41, 0.96), rgba(15, 20, 27, 0.96));
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(19, 215, 242, 0.38);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-card.is-featured {
  background:
    linear-gradient(180deg, rgba(38, 28, 23, 0.98), rgba(18, 24, 33, 0.96)),
    linear-gradient(90deg, rgba(255, 77, 29, 0.26), transparent);
  border-color: rgba(255, 77, 29, 0.48);
}

.plan-badge {
  width: max-content;
  margin-bottom: 16px;
  border-color: rgba(255, 138, 34, 0.5);
  background: rgba(255, 77, 29, 0.15);
  color: #ffd4bd;
}

.plan-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top h3 {
  margin: 8px 0 18px;
  font-size: 2.25rem;
}

.price {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  color: #d8e1ea;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(19, 215, 242, 0.48);
}

.plan-card .btn {
  margin-top: auto;
}

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

.benefit-grid article {
  min-height: 290px;
  padding: 26px;
}

.benefit-grid h3,
.trust-grid h3 {
  margin: 22px 0 12px;
}

.benefit-grid p,
.trust-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.68;
}

.line-icon {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(19, 215, 242, 0.34);
  border-radius: 8px;
  background: rgba(19, 215, 242, 0.08);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.line-icon-bolt::before {
  width: 15px;
  height: 31px;
  background: var(--orange);
  clip-path: polygon(58% 0, 20% 48%, 50% 48%, 36% 100%, 83% 37%, 53% 37%);
  filter: drop-shadow(0 0 10px rgba(255, 77, 29, 0.5));
}

.line-icon-wifi::before,
.line-icon-wifi::after {
  border: 2px solid var(--cyan);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.line-icon-wifi::before {
  width: 32px;
  height: 18px;
  top: 15px;
}

.line-icon-wifi::after {
  width: 18px;
  height: 10px;
  top: 25px;
}

.line-icon-shield::before {
  width: 27px;
  height: 32px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  clip-path: polygon(50% 0, 90% 16%, 82% 70%, 50% 100%, 18% 70%, 10% 16%);
}

.line-icon-headset::before {
  width: 30px;
  height: 26px;
  border: 3px solid var(--green);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.line-icon-headset::after {
  width: 16px;
  height: 3px;
  right: 10px;
  bottom: 15px;
  background: var(--green);
  box-shadow:
    -23px -8px 0 5px rgba(86, 227, 159, 0.28),
    5px -8px 0 5px rgba(86, 227, 159, 0.28);
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  margin-top: clamp(80px, 12vw, 140px);
  padding: clamp(46px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 77, 29, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(19, 215, 242, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.coverage-copy h2 {
  margin-bottom: 20px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.coverage-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.coverage-form label {
  display: grid;
  gap: 8px;
  color: #dfe7ef;
  font-weight: 800;
}

.coverage-form input,
.coverage-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 12px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.coverage-form select option {
  background: #10151b;
  color: var(--text);
}

.coverage-form input:focus,
.coverage-form select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(19, 215, 242, 0.16);
}

.form-result {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

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

.trust-grid article {
  min-height: 240px;
  padding: 26px;
}

.trust-grid p {
  margin-bottom: 20px;
}

.trust-grid strong {
  color: var(--text);
}

.faq-section {
  padding: clamp(80px, 12vw, 140px) 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list p {
  margin: -6px 0 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(80px, 12vw, 130px);
  padding: clamp(42px, 7vw, 70px);
  border: 1px solid rgba(255, 77, 29, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 77, 29, 0.22), transparent 55%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 640px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 46px 0 40px;
  color: var(--muted);
}

.site-footer img {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.not-found-title {
  font-size: 6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: var(--cyan);
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

@keyframes panelScan {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-18%);
  }

  50% {
    opacity: 1;
    transform: translateX(18%);
  }
}

@keyframes needle {
  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(7deg);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .speed-meter strong {
    font-size: 3.7rem;
  }

  .plans-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-copy p,
  .section-head p,
  .coverage-copy p,
  .final-cta p,
  .site-footer p {
    font-size: 1.04rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 16, 22, 0.98);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .section-head,
  .coverage-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .metrics-section,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta .btn {
    width: max-content;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 138px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    width: min(100% - 32px, 1180px);
    padding: 104px 0 52px;
  }

  h1 {
    max-width: 100%;
    font-size: 3.65rem;
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .speed-meter strong {
    font-size: 3rem;
  }

  .metric strong {
    font-size: 2.45rem;
  }

  .plan-top h3 {
    font-size: 1.9rem;
  }

  .not-found-title {
    font-size: 4rem;
  }

  .hero-actions,
  .final-cta .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .signal-panel {
    padding: 18px;
  }

  .metrics-section,
  .plans-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .metrics-section {
    margin-top: 0;
    width: 100%;
    border-inline: 0;
    border-radius: 0;
  }

  .metric {
    min-height: 112px;
  }

  .section,
  .coverage-section,
  .faq-section,
  .final-cta,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .coverage-section,
  .final-cta {
    padding: 28px 18px;
  }

  .plan-card {
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
