:root {
  --color-dark: #0f172a;
  --color-text: #1e293b;
  --color-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-line: rgba(148, 163, 184, 0.18);
  --color-purple: #6d28d9;
  --color-blue: #2563eb;
  --color-cyan: #06b6d4;
  --color-orange: #f97316;
  --color-pink: #f43f5e;
  --color-yellow: #facc15;
  --gradient-main: linear-gradient(135deg, #1e3a8a 0%, #2563eb 15%, #06b6d4 30%, #9333ea 50%, #f43f5e 70%, #fb923c 85%, #facc15 100%);
  --gradient-cta: linear-gradient(90deg, #f97316, #f43f5e);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.56));
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.09);
  --shadow-strong: 0 30px 90px rgba(15, 23, 42, 0.17);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.1), transparent 24%),
    radial-gradient(circle at 50% 35%, rgba(244, 63, 94, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #f8fafc 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(95px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.48;
  animation: floatBlob 14s ease-in-out infinite;
}
.ambient-a {
  width: 360px; height: 360px; left: -90px; top: -60px;
  background: rgba(37, 99, 235, 0.28);
}
.ambient-b {
  width: 420px; height: 420px; right: -120px; top: 110px;
  background: rgba(249, 115, 22, 0.22);
  animation-delay: -4s;
}
.ambient-c {
  width: 320px; height: 320px; left: 42%; top: 38%;
  background: rgba(147, 51, 234, 0.13);
  animation-delay: -8s;
}

.glass {
  background: var(--gradient-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 60;
  width: min(calc(100% - 24px), calc(var(--container) + 24px));
  margin: 16px auto 0;
  border-radius: 24px;
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  color: var(--color-dark);
}

.nav a,
.footer-links a,
.lang-link {
  position: relative;
}

.nav a::after,
.footer-links a::after,
.lang-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-cta);
  transition: width 0.28s ease;
}

.nav a:hover::after,
.footer-links a:hover::after,
.lang-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-link {
  color: var(--color-muted);
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: 0 16px 44px rgba(249, 115, 22, 0.34);
}
.btn-primary:hover {
  box-shadow: 0 22px 56px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  color: var(--color-dark);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(148, 163, 184, 0.24);
}
.btn-secondary:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-soft);
}

.mobile-toggle, .mobile-menu { display: none; }

.section { padding: 104px 0; }
.section-sm { padding: 12px 0 0; }
.hero { padding-top: 70px; }

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  align-items: center;
}

.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(148,163,184,0.2);
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.04;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.25rem);
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(45px, 8vw, 80px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0b132b;
  margin: 0;
}
.text-gradient {
  display: inline-block;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 35%, #f43f5e 68%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

p, li, span {
  font-size: 1.02rem;
  line-height: 1.78;
}

p { color: var(--color-muted); }

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.logo-stage {
  position: absolute;
  inset: 80px 50px 150px 50px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
}

.logo-glow,
.logo-ring,
.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.logo-glow {
  inset: 18% 20%;
  background: radial-gradient(circle, rgba(244,63,94,0.18), rgba(249,115,22,0.16), rgba(37,99,235,0.12), transparent 70%);
  filter: blur(24px);
  animation: breathe 5s ease-in-out infinite;
}

.logo-ring {
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.08);
}
.logo img {
  height: 72px;
  transform: scale(1.05);
}
.logo {
  position: relative;
  display: inline-block;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(249,115,22,0.25), rgba(147,51,234,0.2), transparent 70%);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.9;
}
.logo:hover::after {
  opacity: 1;
  transform: scale(1.1);
}
.ring-a {
  width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: spinSlow 14s linear infinite;
}
.ring-b {
  width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: spinSlowReverse 11s linear infinite;
}

.hero-logo {
  position: absolute;
  left: 50%; top: 50%;
  width: min(86%, 620px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 50px rgba(15,23,42,0.22));
  animation: logoFloat 7s ease-in-out infinite;
}

.hero-orbit {
  border: 1px dashed rgba(109, 40, 217, 0.16);
}
.orbit-1 {
  width: 540px; height: 540px; right: 22px; top: 40px;
  animation: spinSlow 18s linear infinite;
}
.orbit-2 {
  width: 670px; height: 670px; right: -45px; top: -14px;
  animation: spinSlowReverse 24s linear infinite;
}
.orbit-3 {
  width: 780px; height: 780px; right: -88px; top: -56px;
  border-color: rgba(249, 115, 22, 0.12);
  animation: spinSlow 30s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}
.chip-a { top: 16%; left: 10%; animation: bob 5.5s ease-in-out infinite; }
.chip-b { top: 20%; right: 10%; animation: bob 6.5s ease-in-out infinite -1.2s; }
.chip-c { bottom: 14%; left: 50%; transform: translateX(-50%); animation: bob 5.8s ease-in-out infinite -2s; }

.floating-panel {
  position: absolute;
  width: 290px;
  padding: 18px;
  border-radius: 28px;
}
.panel-a { left: 0; bottom: 70px; }
.panel-b { right: 0; top: 100px; }
.panel-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(109,40,217,0.12);
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.panel-label.alt {
  background: rgba(249,115,22,0.14);
  color: var(--color-orange);
}
.panel-art {
  height: 180px;
  border-radius: 22px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}
.art-canvas {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(135deg, #0ea5e9 0%, #2563eb 18%, #7c3aed 44%, #f43f5e 70%, #fb923c 100%);
}
.art-wallpaper {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), transparent 20%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.18) 0 12px, transparent 12px 28px),
    linear-gradient(135deg, #facc15 0%, #fb923c 26%, #f43f5e 50%, #7c3aed 72%, #2563eb 100%);
}

.marquee {
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-weight: 800;
  color: var(--color-dark);
  white-space: nowrap;
}

.product-section { position: relative; }
.product-visual { position: relative; }
.product-copy p { max-width: 600px; }

.showcase-card {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.64);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.16), transparent 35%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

.canvas-showcase .surface {
  position: absolute;
  inset: 11% 13%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.38), transparent 24%),
    linear-gradient(135deg, #1d4ed8 0%, #06b6d4 22%, #9333ea 50%, #f43f5e 72%, #fb923c 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}
.canvas-showcase .frame-shadow {
  position: absolute;
  inset: 9% 11%;
  border-radius: 26px;
  border: 14px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.16), 0 26px 60px rgba(15,23,42,0.12);
}
.canvas-showcase .corner-shine {
  position: absolute;
  width: 220px; height: 220px;
  right: -20px; top: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
}

.wallpaper-showcase .surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #facc15 0%, #fb923c 22%, #f43f5e 48%, #7c3aed 72%, #2563eb 100%);
}
.wallpaper-showcase .roll {
  position: absolute;
  right: 8%; top: 10%; bottom: 10%;
  width: 120px;
  border-radius: 60px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.38) 30%, rgba(255,255,255,0.08) 60%, rgba(15,23,42,0.18) 100%);
  box-shadow: inset -8px 0 22px rgba(15,23,42,0.14), 0 18px 44px rgba(15,23,42,0.16);
}
.wallpaper-showcase .gloss-line {
  position: absolute;
  left: 14%; right: 20%; top: 0;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 38%, transparent 58%);
  animation: sweep 6s linear infinite;
}

.feature-grid,
.experience-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid { margin: 26px 0 28px; }

.mini-card,
.exp-card,
.project-card,
.cta-box {
  border-radius: 26px;
}

.mini-card,
.exp-card {
  padding: 22px;
}

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

.section-head p {
  margin-top: 14px;
}

.exp-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--gradient-main);
  box-shadow: 0 12px 30px rgba(109,40,217,0.22);
}
.exp-icon-b { background: linear-gradient(135deg, #fb923c, #f43f5e); }
.exp-icon-c { background: linear-gradient(135deg, #06b6d4, #2563eb); }

.project-card {
  overflow: hidden;
  padding: 0;
}
.project-image {
  height: 250px;
}
.project-body { padding: 22px; }
.visual-home {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.28), transparent 25%),
    linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #f43f5e 100%);
}
.visual-hotel {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.24), transparent 24%),
    linear-gradient(135deg, #facc15 0%, #fb923c 36%, #f43f5e 78%, #7c3aed 100%);
}
.visual-studio {
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,0.14) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #06b6d4 0%, #2563eb 34%, #9333ea 68%, #f43f5e 100%);
}

.cta-section { padding-top: 24px; }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow-strong);
}

.site-footer {
  padding: 36px 0 44px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(148,163,184,0.18);
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  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; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.magnetic-card,
.magnetic-btn {
  will-change: transform;
}

.pulse {
  animation: pulseGlow 2.6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spinSlowReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 16px 44px rgba(249, 115, 22, 0.28); }
  50% { box-shadow: 0 22px 56px rgba(249, 115, 22, 0.46); }
}
@keyframes sweep {
  from { transform: translateX(-25%); }
  to { transform: translateX(35%); }
}
@keyframes floatBlob {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(18px) translateX(8px); }
}

@media (max-width: 1100px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobile-toggle span {
    width: 20px; height: 2px; background: var(--color-dark); border-radius: 999px;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 16px;
    border-radius: 22px;
  }
  .mobile-menu.open { display: flex; }
  .hero-grid, .split-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-visual {
    min-height: 660px;
  }
  .hero-stats,
  .feature-grid,
  .experience-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section { padding: 82px 0; }
  .hero { padding-top: 54px; }
  .site-header { top: 8px; margin-top: 8px; }
  .nav-wrap { min-height: 74px; }
  .brand img { height: 44px; }
  .hero-visual { min-height: 560px; }
  .logo-stage { inset: 64px 10px 170px 10px; }
  .hero-logo { width: 96%; }
  .floating-panel {
    position: relative;
    width: auto;
    left: auto; right: auto; top: auto; bottom: auto;
    margin-top: 18px;
  }
  .panel-a, .panel-b { width: 100%; }
  .hero-orbit, .logo-ring { display: none; }
  .chip-c { bottom: 10%; }
  .cta-box { padding: 26px; }
}
.ticker-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
  will-change: transform;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  flex-shrink: 0;
}

.ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.ticker-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(109,40,217,0.22), rgba(249,115,22,0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.ticker-item:hover {
  transform: translateY(-3px) scale(1.02);
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(109, 40, 217, 0.14);
  box-shadow:
    0 16px 36px rgba(109, 40, 217, 0.12),
    0 8px 22px rgba(249, 115, 22, 0.08);
}

.ticker-item:hover::before {
  opacity: 1;
}

.ticker-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-mask-left {
  left: 0;
  background: linear-gradient(to right, #f2f4f8 0%, rgba(242, 244, 248, 0) 100%);
}

.ticker-mask-right {
  right: 0;
  background: linear-gradient(to left, #f2f4f8 0%, rgba(242, 244, 248, 0) 100%);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
