@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap");

:root {
  --bg: #070b12;
  --bg-elevated: #0d1420;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --ink: #f4f7fb;
  --muted: #94a3b8;
  --body: #cbd5e1;
  --brand-deep: #164b41;
  --brand: #1f6b5c;
  --brand-red: #ff3d57;
  --accent: #2ea98f;
  --accent-soft: #5fd6b8;
  --accent-2: #3d8f7e;
  --gradient-brand: linear-gradient(135deg, #164b41 0%, #2ea98f 55%, #5fd6b8 100%);
  --gradient-text: linear-gradient(135deg, #fff 0%, #a8c4bc 100%);
  --gradient-shimmer: linear-gradient(90deg, #fff 0%, #5fd6b8 40%, #fff 80%);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.55s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[data-lang="ar"],
body[data-lang="ku"] {
  font-family: "IBM Plex Sans Arabic", "Plus Jakarta Sans", Tahoma, sans-serif;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 18s ease-in-out infinite;
}

.orb-a {
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(22, 75, 65, 0.45) 0%, transparent 70%);
}

.orb-b {
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  top: 40%;
  right: -15%;
  background: radial-gradient(circle, rgba(46, 169, 143, 0.28) 0%, transparent 70%);
  animation-delay: -6s;
}

.orb-c {
  width: 35vw;
  height: 35vw;
  max-width: 400px;
  max-height: 400px;
  bottom: -5%;
  left: 30%;
  background: radial-gradient(circle, rgba(255, 61, 87, 0.18) 0%, transparent 70%);
  animation-delay: -12s;
}

.grid-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, 2%) scale(1.05); }
  66% { transform: translate(-2%, 4%) scale(0.95); }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 11, 18, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.site-header.is-scrolled .header-inner {
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  animation: logo-float 5s ease-in-out infinite;
}

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

.brand-link-footer .brand-logo {
  width: 32px;
  height: 32px;
}

.wordmark-flow {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}

html[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: var(--surface-hover);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-docs {
  color: var(--accent);
}

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease-spring);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn[aria-selected="true"] {
  background: var(--ink);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(46, 169, 143, 0.1);
  border: 1px solid rgba(46, 169, 143, 0.25);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-shimmer {
  background-size: 200% auto;
  animation: text-shimmer 6s ease-in-out infinite;
}

@keyframes text-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section-head h2.text-shimmer {
  background: var(--gradient-shimmer);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.35s;
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  color: var(--bg);
  box-shadow: 0 12px 40px rgba(46, 169, 143, 0.35);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(46, 169, 143, 0.45);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-stats span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero visual / mock */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.dashboard-mock {
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s var(--ease-out);
  animation: mock-float 6s ease-in-out infinite;
}

.hero-visual:hover .dashboard-mock {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-4px);
}

@keyframes mock-float {
  0%, 100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(3deg) translateY(-8px); }
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-title {
  margin-inline-start: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  padding: 20px;
}

.mock-queue {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-token {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}

.mock-token span {
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
}

.mock-token em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.mock-token small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.mock-token.called {
  border-color: rgba(46, 169, 143, 0.5);
  background: rgba(46, 169, 143, 0.12);
  animation: token-pulse 2.5s ease-in-out infinite;
}

@keyframes token-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 169, 143, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(46, 169, 143, 0); }
}

.mock-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #0a1628 0%, #0d2847 100%);
  border: 1px solid var(--border);
  text-align: center;
}

.mock-now {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.mock-big {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 48px;
}

.mock-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(46, 169, 143, 0.3) 100%);
  animation: bar-grow 1.2s var(--ease-out) backwards;
}

.mock-bars span:nth-child(2) { animation-delay: 0.1s; }
.mock-bars span:nth-child(3) { animation-delay: 0.2s; }
.mock-bars span:nth-child(4) { animation-delay: 0.3s; }

@keyframes bar-grow {
  from { height: 0; opacity: 0; }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(13, 20, 32, 0.9);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  box-shadow: var(--shadow-card);
  animation: float-card 5s ease-in-out infinite;
}

.float-card svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.float-card-1 {
  top: 8%;
  right: -8%;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 12%;
  left: -6%;
  animation-delay: -2.5s;
}

.float-card-2 svg {
  color: var(--brand-red);
}

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

/* Values */
.values {
  position: relative;
  z-index: 1;
  padding: 24px 0 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, background 0.45s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 169, 143, 0.12);
  color: var(--accent);
  margin-bottom: 18px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}

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

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 169, 143, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-2);
  margin-bottom: 20px;
}

.bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.bento-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Timeline */
.timeline,
.journey {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-title {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 700;
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.timeline.is-visible .timeline-step {
  opacity: 1;
  transform: translateX(0);
}

.timeline.is-visible .timeline-step:nth-child(1) { transition-delay: 0.1s; }
.timeline.is-visible .timeline-step:nth-child(2) { transition-delay: 0.2s; }
.timeline.is-visible .timeline-step:nth-child(3) { transition-delay: 0.3s; }

.step-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.step-body strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.timeline-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 61, 87, 0.08);
  border: 1px solid rgba(255, 61, 87, 0.2);
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

/* Journey */
.journey {
  margin-top: 56px;
}

.journey-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: start;
}

.journey-node {
  text-align: center;
  padding: 20px 12px;
}

.journey-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--bg);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(46, 169, 143, 0.35);
}

.journey-node strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.journey-node p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.journey-line {
  width: 100%;
  min-width: 24px;
  height: 2px;
  margin-top: 42px;
  background: linear-gradient(90deg, var(--brand-deep), var(--accent));
  opacity: 0.5;
  position: relative;
  overflow: hidden;
}

.journey-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

html[dir="rtl"] .product-card::before {
  transform-origin: right;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

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

.product-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(46, 169, 143, 0.1);
  border: 1px solid rgba(46, 169, 143, 0.2);
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.product-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Apps */
.apps-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.app-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
}

.app-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.app-card-track .app-glow {
  background: var(--brand-deep);
}

.app-card-manager .app-glow {
  background: var(--brand-red);
  right: auto;
  left: -20%;
}

.app-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(46, 169, 143, 0.15);
  color: var(--accent);
  border: 1px solid rgba(46, 169, 143, 0.3);
}

.app-badge-staff {
  background: rgba(255, 61, 87, 0.12);
  color: var(--brand-red);
  border-color: rgba(255, 61, 87, 0.3);
}

.app-card h3 {
  margin: 16px 0 14px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-card > p {
  margin: 0 0 20px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.75;
}

.app-list {
  margin: 0;
  padding-inline-start: 20px;
  color: var(--muted);
  font-size: 14px;
}

.app-list li {
  margin-bottom: 10px;
}

.app-list li::marker {
  color: var(--accent);
}

/* Showcase section */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#showcase-stage[data-step="kiosk_select"] .showcase-kiosk,
#showcase-stage[data-step="kiosk_print"] .showcase-kiosk,
#showcase-stage[data-step="callpad_call"] .showcase-callpad,
#showcase-stage[data-step="callpad_serve"] .showcase-callpad,
#showcase-stage[data-step="display_show"] .showcase-display,
#showcase-stage[data-step="ds_scan"] .showcase-scanner,
#showcase-stage[data-step="ds_verified"] .showcase-scanner {
  outline: 1px solid rgba(46, 169, 143, 0.25);
  outline-offset: 4px;
  border-radius: calc(var(--radius) + 4px);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.showcase-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.device-mock {
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
}

.showcase-card.is-visible .device-mock {
  animation: showcase-float 7s ease-in-out infinite;
}

.showcase-card.is-visible:nth-child(2) .device-mock {
  animation-delay: 0.5s;
}

.showcase-card.is-visible:nth-child(3) .device-mock {
  animation-delay: 1s;
}

.showcase-card.is-visible:nth-child(4) .device-mock {
  animation-delay: 1.5s;
}

.showcase-card:hover .device-mock {
  transform: rotateY(-1deg) rotateX(1deg) translateY(-6px);
}

@keyframes showcase-float {
  0%, 100% { transform: rotateY(-4deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(2deg) translateY(-10px); }
}

/* Kiosk mock */
.kiosk-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}

.kiosk-prompt {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.kiosk-services {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.kiosk-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.35s var(--ease-spring);
}

.kiosk-btn.is-on {
  background: rgba(46, 169, 143, 0.2);
  border-color: rgba(46, 169, 143, 0.5);
  color: var(--accent);
  transform: scale(1.08);
}

.kiosk-ticket {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #0d1420;
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.kiosk-ticket.is-printed {
  opacity: 1;
  transform: translateY(0);
}

.kiosk-ticket-letter {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-deep);
}

.kiosk-ticket-num {
  font-size: 22px;
  font-weight: 800;
}

.kiosk-ticket small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

/* TV mock */
.tv-body {
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, #0a1628 0%, #0d2847 100%);
}

.tv-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tv-now-big {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.showcase-display.is-live .tv-now-big {
  transform: scale(1.02);
}

.tv-queue {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.tv-queue-label {
  width: 100%;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tv-queue em {
  font-style: normal;
  font-weight: 700;
  color: var(--body);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

/* Callpad mock */
.callpad-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}

.callpad-token {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(46, 169, 143, 0.12);
  border: 1px solid rgba(46, 169, 143, 0.4);
}

.callpad-token span {
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}

.callpad-token em {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

.callpad-token small {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}

.callpad-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.callpad-btn {
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.callpad-btn[data-action="hold"].is-on,
.callpad-btn[data-action="recall"].is-on {
  border-color: rgba(99, 102, 241, 0.5);
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.15);
}

.callpad-btn[data-action="missed"].is-on,
.callpad-btn[data-action="abandon"].is-on {
  border-color: rgba(255, 61, 87, 0.4);
  color: var(--brand-red);
  background: rgba(255, 61, 87, 0.12);
}

.callpad-btn.is-on {
  background: rgba(46, 169, 143, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.04);
}

.callpad-token.is-active {
  border-color: rgba(46, 169, 143, 0.6);
  box-shadow: 0 0 0 1px rgba(46, 169, 143, 0.2);
}

.callpad-queue {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.callpad-queue span {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* Scanner mock */
.scanner-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}

.ds-viewport {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 120px;
  display: grid;
  place-items: center;
}

.ds-doc {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #fff;
  color: #0d1420;
  font-weight: 800;
  z-index: 1;
}

.ds-doc-letter {
  font-size: 28px;
  color: var(--brand-deep);
}

.ds-doc-num {
  font-size: 22px;
}

.ds-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  top: 0;
  opacity: 0;
  pointer-events: none;
}

.scanner-mock.is-scanning .ds-beam.is-active {
  opacity: 1;
  animation: scan-beam 1.2s ease-in-out infinite;
}

@keyframes scan-beam {
  0% { top: 8%; }
  100% { top: 88%; }
}

.ds-status {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}

.ds-result {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

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

.scanner-mock.is-verified .ds-status {
  color: var(--accent);
}

/* Phone mockups (apps section) */
.phone-mock {
  position: relative;
  width: 172px;
  margin: 0 auto 24px;
}

.phone-side-btn {
  position: absolute;
  left: -3px;
  top: 28%;
  width: 3px;
  height: 36px;
  border-radius: 2px;
  background: var(--border-strong);
}

html[dir="rtl"] .phone-side-btn {
  left: auto;
  right: -3px;
}

.phone-frame {
  padding: 10px 8px 14px;
  border-radius: 32px;
  background: linear-gradient(165deg, #243044 0%, #0d1420 55%, #1a2438 100%);
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-camera {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid var(--border);
  z-index: 2;
}

.phone-notch {
  width: 52px;
  height: 5px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
}

.phone-screen {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(7, 11, 18, 0.95);
  border: 1px solid var(--border);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-app-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.phone-token-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(46, 169, 143, 0.12);
  border: 1px solid rgba(46, 169, 143, 0.35);
  text-align: center;
}

.phone-token-big {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phone-token-status {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.phone-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-timeline li {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
}

.phone-timeline li.is-done {
  opacity: 0.5;
}

.phone-timeline li.is-active {
  border-color: rgba(46, 169, 143, 0.5);
  color: var(--accent);
  background: rgba(46, 169, 143, 0.1);
}

.phone-timeline li.is-active {
  animation: phone-pulse 2s ease-in-out infinite;
}

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 169, 143, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(46, 169, 143, 0); }
}

.phone-now-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(46, 169, 143, 0.1);
  border: 1px solid rgba(46, 169, 143, 0.25);
  font-size: 10px;
  color: var(--muted);
}

.phone-now-row strong {
  font-size: 13px;
  color: var(--accent);
}

.phone-notif {
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(46, 169, 143, 0.2);
  border: 1px solid rgba(46, 169, 143, 0.4);
  color: var(--accent-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

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

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.phone-stat {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.phone-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.phone-stat span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.phone-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin-top: auto;
}

.phone-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(46, 169, 143, 0.25) 100%);
  transform-origin: bottom;
}

.app-card.is-visible .phone-chart span {
  animation: phone-bar-pulse 2.5s ease-in-out infinite alternate;
}

.app-card.is-visible .phone-chart span:nth-child(2) { animation-delay: 0.3s; }
.app-card.is-visible .phone-chart span:nth-child(3) { animation-delay: 0.6s; }
.app-card.is-visible .phone-chart span:nth-child(4) { animation-delay: 0.9s; }
.app-card.is-visible .phone-chart span:nth-child(5) { animation-delay: 1.2s; }

@keyframes phone-bar-pulse {
  0% { transform: scaleY(0.75); opacity: 0.85; }
  100% { transform: scaleY(1); opacity: 1; }
}

.app-card-track .phone-mock {
  animation: phone-float 6s ease-in-out infinite;
}

.app-card-manager .phone-mock {
  animation: phone-float 6s ease-in-out infinite 1.5s;
}

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

/* CTA */
.cta {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
}

.cta-panel {
  position: relative;
  text-align: center;
  padding: 56px 40px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, rgba(46, 169, 143, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(46, 169, 143, 0.25);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 169, 143, 0.2) 0%, transparent 50%);
  animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.cta-panel h2 {
  position: relative;
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-panel p {
  position: relative;
  margin: 16px auto 28px;
  max-width: 520px;
  color: var(--body);
  font-size: 16px;
}

.cta-panel .btn {
  position: relative;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
}

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

.footer-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-docs {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.25s;
}

.footer-docs:hover {
  opacity: 0.8;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

html[dir="rtl"] .reveal-left {
  transform: translateX(32px);
}

html[dir="rtl"] .reveal-right {
  transform: translateX(-32px);
}

.bento-card,
.product-card,
.value-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.bento-card.is-tilting,
.product-card.is-tilting,
.value-card.is-tilting {
  transition: transform 0.15s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(46, 169, 143, 0.6);
  pointer-events: none;
  transition: width 0.08s linear;
}

.hero-stats strong.is-counted {
  display: inline-block;
}

body.is-loaded .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .hero .reveal-delay-2 {
  transition-delay: 0.2s;
}

/* RTL */
html[dir="rtl"] .hero-grid {
  direction: rtl;
}

html[dir="rtl"] .timeline-step {
  transform: translateX(16px);
}

html[dir="rtl"] .timeline.is-visible .timeline-step {
  transform: translateX(0);
}


html[dir="rtl"] .float-card-1 {
  right: auto;
  left: -8%;
}

html[dir="rtl"] .float-card-2 {
  left: auto;
  right: -6%;
}

html[dir="rtl"] .product-card::before {
  transform-origin: right;
}

/* Mobile */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .bento-wide {
    grid-column: span 2;
  }

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

  .journey-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-line {
    width: 2px;
    height: 32px;
    min-width: 0;
    margin: 0 auto;
  }

  .journey-line::after {
    animation: none;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(13, 20, 32, 0.98);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(20px);
  }

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

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .brand-link {
    margin-inline-end: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-switch {
    order: 3;
  }

  .values-grid,
  .bento-grid,
  .product-grid,
  .showcase-grid,
  .apps-split {
    grid-template-columns: 1fr;
  }

  .device-mock {
    transform: none;
    animation: none !important;
  }

  .phone-mock {
    animation: none !important;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .float-card {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .dashboard-mock {
    transform: none;
    animation: none;
  }
}

@media (max-width: 430px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

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

  .orb,
  .dashboard-mock,
  .float-card,
  .device-mock,
  .phone-mock,
  .kiosk-ticket,
  .kiosk-btn,
  .ds-beam,
  .callpad-btn,
  .phone-notif,
  .phone-timeline li.is-active,
  .phone-chart span,
  .scanner-mock.is-scanning .ds-beam,
  .eyebrow-dot,
  .mock-token.called,
  .mock-bars span,
  .journey-line::after,
  .cta-glow,
  .brand-logo,
  .text-shimmer,
  .section-head h2.text-shimmer,
  .showcase-card.is-visible .device-mock {
    animation: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .timeline-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dashboard-mock,
  .device-mock,
  .phone-mock,
  .bento-card,
  .product-card,
  .value-card {
    transform: none;
  }

  .kiosk-ticket.is-printed,
  .phone-notif.is-visible,
  .ds-result.is-visible {
    opacity: 1;
    transform: none;
  }

  .btn-primary::before {
    display: none;
  }
}
