@font-face {
  font-family: "Vazirmatn";
  src: url("assets/fonts/vazirmatn-fa.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #071331;
  --ink-soft: #152651;
  --blue: #4258d6;
  --blue-bright: #6678ef;
  --gold: #f3b92f;
  --gold-deep: #d7960c;
  --mint: #83d8c5;
  --paper: #f5f7ff;
  --white: #ffffff;
  --muted: #6d7895;
  --line: #dfe4f2;
  --shadow: 0 28px 80px rgba(8, 19, 49, 0.16);
  --container: min(1160px, calc(100% - 40px));
  --radius-lg: 34px;
  --radius-md: 24px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  inset-inline-start: 20px;
  top: -80px;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.header-sentinel {
  position: absolute;
  top: 24px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 49, 0.91);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(3, 10, 28, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand b {
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 99px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 18px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 18%, rgba(68, 95, 218, 0.26), transparent 34%),
    linear-gradient(142deg, #071331 0%, #07102a 50%, #0b1d4b 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 950px;
  inset: 7% auto auto -18%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.hero::after {
  content: "V1  V2  V3";
  position: absolute;
  z-index: -1;
  inset: auto auto -105px -20px;
  color: rgba(255, 255, 255, 0.018);
  font-family: Arial, sans-serif;
  font-size: clamp(130px, 18vw, 300px);
  font-weight: 900;
  direction: ltr;
  white-space: nowrap;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  width: 580px;
  height: 580px;
  top: 20%;
  left: 56%;
  background: radial-gradient(circle, rgba(66, 88, 214, 0.25), transparent 68%);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  right: 70%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(131, 216, 197, 0.13), transparent 68%);
}

.hero-layout {
  min-height: 860px;
  padding-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.eyebrow {
  padding: 7px 13px;
  border: 1px solid rgba(243, 185, 47, 0.18);
  border-radius: 999px;
  background: rgba(243, 185, 47, 0.07);
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: pulse 2.4s ease-out infinite;
  will-change: transform, opacity;
}

@keyframes pulse {
  0% { opacity: 0.55; transform: scale(1); }
  70%,
  100% { opacity: 0; transform: scale(3.2); }
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 950;
  line-height: 1.23;
  letter-spacing: -0.065em;
}

.hero-accent {
  position: relative;
  display: inline-block;
  color: var(--gold);
}

.hero-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 1% 5px 1%;
  height: 15px;
  border-radius: 4px 10px 4px 9px;
  background: rgba(243, 185, 47, 0.17);
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 2;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 15px 36px rgba(243, 185, 47, 0.2);
}

.button-primary:hover {
  box-shadow: 0 19px 44px rgba(243, 185, 47, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.soon {
  padding: 3px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.hero-trust span {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.hero-trust b {
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.hero-trust i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
  height: 740px;
  align-self: end;
}

.phone-halo {
  position: absolute;
  width: 520px;
  height: 520px;
  inset: 13% 50% auto auto;
  border: 1px solid rgba(243, 185, 47, 0.24);
  border-radius: 50%;
  transform: translateX(50%);
  box-shadow:
    0 0 0 52px rgba(243, 185, 47, 0.025),
    0 0 0 104px rgba(255, 255, 255, 0.015);
}

.phone-frame {
  position: absolute;
  z-index: 2;
  width: 322px;
  height: 700px;
  bottom: -70px;
  left: 50%;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 46px;
  background: #121a31;
  box-shadow:
    0 48px 90px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.035);
  transform: translateX(-50%) rotate(-1.8deg);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100px;
  height: 28px;
  top: 15px;
  left: 50%;
  border-radius: 99px;
  background: #05060a;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 39px;
  object-fit: cover;
}

.verb-chip {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(9, 19, 48, 0.84);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.verb-chip small {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 25px;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
}

.chip-one {
  top: 185px;
  left: -26px;
}

.chip-two {
  top: 300px;
  right: -8px;
  animation-delay: -1.5s;
}

.chip-two small {
  background: var(--blue);
  color: var(--white);
}

.chip-three {
  top: 425px;
  left: -3px;
  animation-delay: -3s;
}

.chip-three small {
  background: var(--mint);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 73px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
}

.hero-note > span:last-child {
  display: grid;
  line-height: 1.3;
}

.hero-note b {
  font-size: 11px;
}

.hero-note small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 21px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 99px;
}

.scroll-cue span::after {
  content: "";
  display: block;
  width: 3px;
  height: 7px;
  margin: 7px auto;
  border-radius: 99px;
  background: var(--gold);
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

.section {
  padding: 112px 0;
}

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

.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
}

.section-heading h2,
.catalog-copy h2,
.download-copy h2,
.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.split-heading > p,
.catalog-copy > p,
.download-copy > p:last-child,
.faq-intro > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.learning-loop {
  background: var(--white);
}

.verb-lab {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  min-height: 490px;
  padding: 65px 70px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 88, 214, 0.32), transparent 42%),
    linear-gradient(135deg, #071331, #10265e);
  box-shadow: var(--shadow);
  color: var(--white);
}

.verb-lab::before {
  content: "V1 · V2 · V3";
  position: absolute;
  bottom: -53px;
  right: -15px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Arial, sans-serif;
  font-size: 130px;
  font-weight: 900;
  direction: ltr;
  white-space: nowrap;
}

.lab-label,
.feature-index {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(243, 185, 47, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
}

.lab-intro h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(30px, 4vw, 47px);
  font-weight: 950;
  line-height: 1.45;
  letter-spacing: -0.05em;
}

.lab-intro p {
  max-width: 440px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.verb-stack {
  position: relative;
  display: grid;
  gap: 13px;
  perspective: 900px;
}

.verb-row {
  position: relative;
  min-height: 88px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  transform: rotateY(-4deg);
}

.verb-row > span {
  width: 43px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.verb-row strong {
  font-size: clamp(25px, 3vw, 37px);
  letter-spacing: -0.03em;
}

.verb-row small {
  direction: rtl;
  color: rgba(255, 255, 255, 0.53);
  font-family: "Vazirmatn", sans-serif;
  font-size: 11px;
}

.v-two {
  margin-inline-start: 32px;
  background: rgba(66, 88, 214, 0.29);
}

.v-two > span {
  background: var(--blue-bright);
  color: var(--white);
}

.v-three {
  margin-inline-start: 64px;
  background: rgba(131, 216, 197, 0.13);
}

.v-three > span {
  background: var(--mint);
}

.sound-button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  font-size: 9px;
}

.sound-button.is-playing {
  background: var(--gold);
  color: var(--ink);
}

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

.step-card {
  position: relative;
  min-height: 290px;
  padding: 35px 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fafbff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  border-color: rgba(66, 88, 214, 0.3);
  box-shadow: 0 20px 50px rgba(7, 19, 49, 0.08);
  transform: translateY(-7px);
}

.step-word {
  position: absolute;
  inset: auto auto -17px 12px;
  color: rgba(7, 19, 49, 0.035);
  font-family: Arial, sans-serif;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.step-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.step-card:nth-child(2) .step-mark {
  background: var(--blue);
  color: var(--white);
}

.step-card:nth-child(3) .step-mark {
  background: var(--mint);
  color: var(--ink);
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.features {
  background:
    radial-gradient(circle at 100% 20%, rgba(66, 88, 214, 0.08), transparent 26%),
    var(--paper);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 80px;
  text-align: right;
}

.split-heading > p {
  margin: 0 0 9px;
}

.feature-showcase {
  min-height: 690px;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(430px, 1.24fr);
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(7, 19, 49, 0.09);
  overflow: hidden;
}

.feature-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.feature-copy h3,
.rail-copy h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.45;
  letter-spacing: -0.05em;
}

.feature-copy > p,
.rail-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 31px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(131, 216, 197, 0.22);
  color: #248674;
  font-size: 11px;
  font-weight: 900;
}

.feature-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 545px;
  isolation: isolate;
}

.feature-device {
  position: absolute;
  z-index: 2;
  width: 280px;
  left: 0;
  bottom: -100px;
  padding: 7px;
  border-radius: 40px 40px 0 0;
  background: #11192d;
  box-shadow: 0 26px 65px rgba(7, 19, 49, 0.22);
  transform: rotate(-3deg);
}

.feature-device img,
.rail-visual img {
  width: 100%;
  height: auto;
  border-radius: 34px 34px 0 0;
}

.secondary-device {
  z-index: 1;
  width: 245px;
  right: 0;
  left: auto;
  bottom: -150px;
  opacity: 0.78;
  transform: rotate(5deg);
}

.feature-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.rail-card {
  min-height: 520px;
  padding: 46px 42px 0;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff7df;
  overflow: hidden;
}

.rail-card-dark {
  background: var(--ink);
  color: var(--white);
}

.rail-card-dark h3 {
  color: var(--white);
}

.rail-card-dark .rail-copy p {
  color: rgba(255, 255, 255, 0.55);
}

.rail-visual {
  align-self: end;
  width: 225px;
  padding: 6px 6px 0;
  border-radius: 34px 34px 0 0;
  background: #141d34;
  box-shadow: 0 18px 48px rgba(7, 19, 49, 0.18);
}

.rail-copy h3 {
  font-size: clamp(25px, 3vw, 36px);
}

.catalog {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #071331, #0c2156);
  color: var(--white);
}

.catalog::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -280px;
  right: -180px;
  border: 1px solid rgba(243, 185, 47, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(243, 185, 47, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
}

.catalog-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 100px;
}

.catalog-art {
  height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 42px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

.catalog-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.catalog-copy h2 {
  color: var(--white);
}

.catalog-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.catalog-stats div {
  min-height: 105px;
  padding: 18px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.catalog-stats strong {
  color: var(--gold);
  font-size: 25px;
  font-weight: 950;
}

.catalog-stats span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.catalog .text-link {
  color: var(--gold);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(-5px);
}

.screens {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 45%, rgba(66, 88, 214, 0.09), transparent 28%),
    #eef1fa;
}

.screen-gallery {
  border: 1px solid rgba(7, 19, 49, 0.09);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(7, 19, 49, 0.1);
  overflow: hidden;
}

.screen-stage {
  min-height: 610px;
  padding: 60px 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(145deg, #071331, #10265e);
  background-size: 68px 68px, 68px 68px, auto;
  color: var(--white);
}

.screen-stage-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 56px;
}

.screen-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
}

.screen-meta span:first-child {
  color: var(--gold);
  font-family: "Vazirmatn", sans-serif;
  font-weight: 900;
}

.screen-meta i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.screen-stage-copy h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.055em;
}

.screen-stage-copy p {
  max-width: 490px;
  min-height: 88px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  line-height: 2;
}

.screen-controls {
  display: flex;
  gap: 9px;
  margin-top: 30px;
}

.screen-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.screen-arrow:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.screen-observation {
  position: relative;
  height: 610px;
  display: grid;
  place-items: end center;
  isolation: isolate;
}

.screen-observation::before {
  content: "";
  position: absolute;
  z-index: -3;
  width: 440px;
  height: 440px;
  top: 72px;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 88, 214, 0.34), transparent 68%);
  transform: translateX(-50%);
}

.screen-orbit {
  position: absolute;
  z-index: -2;
  left: 50%;
  border: 1px solid rgba(243, 185, 47, 0.17);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-one {
  width: 390px;
  height: 390px;
  top: 95px;
}

.orbit-two {
  width: 490px;
  height: 490px;
  top: 45px;
  border-color: rgba(255, 255, 255, 0.06);
}

.screen-verb {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.06);
  font-family: Arial, sans-serif;
  font-size: 70px;
  font-weight: 900;
}

.screen-verb-one {
  top: 118px;
  right: 25px;
  transform: rotate(8deg);
}

.screen-verb-two {
  bottom: 90px;
  left: 8px;
  color: rgba(243, 185, 47, 0.08);
  transform: rotate(-10deg);
}

.screen-phone {
  position: relative;
  width: 254px;
  height: 552px;
  margin: 0;
  padding: 7px 7px 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
  background: #11192d;
  box-shadow:
    0 35px 75px rgba(0, 0, 0, 0.38),
    0 0 0 7px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.screen-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 84px;
  height: 24px;
  top: 14px;
  left: 50%;
  border-radius: 99px;
  background: #05060a;
  transform: translateX(-50%);
}

.screen-phone img {
  width: 100%;
  height: auto;
  border-radius: 35px 35px 0 0;
  transition: opacity 0.18s ease, transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screen-phone img.is-switching {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.screen-tabs {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.88);
}

.screen-tab {
  min-width: 0;
  min-height: 86px;
  padding: 9px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.screen-tab:hover {
  background: var(--paper);
}

.screen-tab.is-active {
  border-color: rgba(66, 88, 214, 0.2);
  background: #edf0ff;
  transform: translateY(-2px);
}

.screen-thumb {
  width: 50px;
  height: 66px;
  padding: 2px;
  display: block;
  border-radius: 11px;
  background: var(--ink);
  overflow: hidden;
}

.screen-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
  object-position: top;
}

.screen-tab > span:last-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.screen-tab b,
.screen-tab small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-tab b {
  font-size: 11px;
  font-weight: 850;
}

.screen-tab small {
  color: var(--muted);
  font-size: 8px;
}

.download {
  background: var(--white);
}

.download-shell {
  position: relative;
  min-height: 520px;
  padding: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "logo copy"
    "actions actions";
  align-items: center;
  gap: 28px 42px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 88, 214, 0.28), transparent 40%),
    var(--ink);
  color: var(--white);
  box-shadow: 0 36px 90px rgba(7, 19, 49, 0.17);
}

.download-pattern {
  position: absolute;
  inset: auto -25px -55px;
  color: rgba(255, 255, 255, 0.03);
  font-family: Arial, sans-serif;
  font-size: 100px;
  font-weight: 900;
  white-space: nowrap;
  direction: ltr;
}

.download-logo {
  grid-area: logo;
}

.download-logo img {
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
}

.download-copy {
  grid-area: copy;
}

.download-copy h2 {
  max-width: 750px;
  color: var(--white);
}

.download-copy > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.download-actions {
  grid-area: actions;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.store-button {
  position: relative;
  min-width: 190px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.store-button > span:nth-child(2) {
  display: grid;
  text-align: right;
  line-height: 1.3;
}

.store-button small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 500;
}

.store-button em {
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 3px 6px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 7px;
  font-style: normal;
}

.store-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro .text-link {
  margin-top: 25px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(66, 88, 214, 0.27);
  box-shadow: 0 14px 40px rgba(7, 19, 49, 0.06);
}

.faq-list summary {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 850;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--paper);
  color: var(--blue);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary span {
  background: rgba(66, 88, 214, 0.1);
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 24px 0;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 70px 0 22px;
  background: #050e25;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 23px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.footer-main nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
}

.footer-bottom > :first-child {
  justify-self: start;
}

.footer-bottom > :last-child {
  justify-self: end;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

.toast {
  position: fixed;
  z-index: 200;
  bottom: 24px;
  left: 50%;
  min-width: min(360px, calc(100% - 32px));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(7, 19, 49, 0.94);
  box-shadow: 0 18px 55px rgba(7, 19, 49, 0.3);
  color: var(--white);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr 390px;
    gap: 35px;
  }

  .verb-chip {
    min-width: 125px;
    font-size: 15px;
  }

  .feature-showcase {
    padding: 55px;
  }

  .rail-card {
    padding-inline: 28px;
  }
}

@media (max-width: 1000px) {
  .feature-showcase {
    min-height: auto;
    padding: 55px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-visual {
    width: min(100%, 500px);
    min-height: 580px;
    margin-inline: auto;
  }

  .feature-device {
    left: 0;
    bottom: -80px;
  }

  .secondary-device {
    right: 0;
    left: auto;
    bottom: -130px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(calc(100% - 32px), 720px);
  }

  .site-header {
    height: 72px;
  }

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

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 13px;
    display: grid;
    place-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    padding: 20px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(7, 19, 49, 0.98);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 140px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    padding: 0;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 500px);
    height: 700px;
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .verb-lab {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .lab-intro {
    text-align: center;
  }

  .lab-intro h3,
  .lab-intro p {
    margin-inline: auto;
  }

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

  .step-card {
    min-height: 230px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-showcase {
    min-height: auto;
    padding: 55px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-visual {
    width: min(100%, 500px);
    min-height: 580px;
    margin-inline: auto;
  }

  .secondary-device {
    right: 0;
    left: auto;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .rail-card {
    grid-template-columns: 1fr 0.65fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .catalog-art {
    width: min(100%, 480px);
    height: 680px;
    margin-inline: auto;
  }

  .screen-stage {
    min-height: 560px;
    padding: 48px 38px 0;
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
    gap: 28px;
  }

  .screen-observation {
    height: 560px;
  }

  .screen-phone {
    width: 230px;
    height: 500px;
  }

  .screen-tabs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 200px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .screen-tab {
    scroll-snap-align: center;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 25px;
    --radius-md: 19px;
  }

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

  .brand b {
    font-size: 13px;
  }

  .hero-layout {
    padding-top: 125px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

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

  .hero-actions {
    width: 100%;
    display: grid;
  }

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

  .hero-trust {
    gap: 9px;
    font-size: 8px;
  }

  .hero-trust b {
    font-size: 13px;
  }

  .hero-visual {
    height: 620px;
  }

  .phone-frame {
    width: 272px;
    height: 590px;
    bottom: -44px;
  }

  .phone-halo {
    width: 390px;
    height: 390px;
    top: 20%;
  }

  .verb-chip {
    min-width: 112px;
    padding: 10px 11px;
    font-size: 13px;
  }

  .verb-chip small {
    width: 25px;
    height: 22px;
  }

  .chip-one {
    top: 155px;
    left: -2px;
  }

  .chip-two {
    top: 255px;
    right: -5px;
  }

  .chip-three {
    top: 370px;
    left: 3px;
  }

  .hero-note {
    right: 0;
    bottom: 53px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .catalog-copy h2,
  .download-copy h2,
  .faq-intro h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .catalog-copy > p,
  .download-copy > p:last-child,
  .faq-intro > p {
    font-size: 13px;
  }

  .verb-lab {
    padding: 42px 18px;
  }

  .lab-intro h3 {
    font-size: 32px;
  }

  .verb-row {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 9px;
  }

  .verb-row small {
    display: none;
  }

  .v-two {
    margin-inline-start: 13px;
  }

  .v-three {
    margin-inline-start: 26px;
  }

  .verb-row strong {
    font-size: 25px;
  }

  .feature-showcase {
    min-height: auto;
    padding: 36px 23px;
  }

  .feature-copy h3 {
    font-size: 32px;
  }

  .feature-visual {
    min-height: 520px;
  }

  .feature-device {
    width: 230px;
    left: 0;
    bottom: -70px;
  }

  .secondary-device {
    width: 205px;
    right: 0;
    left: auto;
    bottom: -115px;
  }

  .rail-card {
    min-height: 610px;
    padding: 38px 25px 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rail-visual {
    grid-row: 2;
    width: 220px;
    margin-inline: auto;
  }

  .catalog-art {
    height: 580px;
  }

  .screen-gallery {
    width: calc(100% + 12px);
    margin-inline: -6px;
    border-radius: 26px;
  }

  .screen-stage {
    min-height: auto;
    padding: 40px 20px 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .screen-stage-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .screen-meta,
  .screen-controls {
    justify-content: center;
  }

  .screen-stage-copy h3 {
    margin-inline: auto;
    font-size: 30px;
  }

  .screen-stage-copy p {
    min-height: 78px;
    margin-inline: auto;
    font-size: 12px;
  }

  .screen-controls {
    margin-top: 22px;
  }

  .screen-arrow {
    width: 44px;
    height: 44px;
  }

  .screen-observation {
    height: 500px;
  }

  .screen-observation::before {
    width: 330px;
    height: 330px;
  }

  .orbit-one {
    width: 310px;
    height: 310px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

  .screen-phone {
    width: 218px;
    height: 474px;
  }

  .screen-verb {
    font-size: 48px;
  }

  .screen-tabs {
    padding: 12px;
    grid-auto-columns: minmax(156px, 176px);
  }

  .screen-tab {
    min-height: 78px;
    grid-template-columns: 43px minmax(0, 1fr);
  }

  .screen-thumb {
    width: 43px;
    height: 58px;
  }

  .catalog-stats {
    gap: 7px;
  }

  .catalog-stats div {
    min-height: 100px;
    padding: 11px;
  }

  .catalog-stats strong {
    font-size: 21px;
  }

  .download-shell {
    padding: 48px 22px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "copy"
      "actions";
    justify-items: center;
    text-align: center;
  }

  .download-actions {
    width: 100%;
    display: grid;
  }

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

  .faq-list summary {
    padding: 19px;
    font-size: 12px;
  }

  .faq-list details p {
    margin-inline: 19px;
    font-size: 11px;
  }

  .footer-main nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 7px;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom > :first-child,
  .footer-bottom > :last-child {
    justify-self: center;
  }
}

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

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

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