: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: 'Onest', 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;
}
.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);
}
.ambient-c {
  width: 320px; height: 320px; left: 42%; top: 38%;
  background: rgba(147, 51, 234, 0.13);
}

.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,
.lang-link {
  position: relative;
}

.nav 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,
.lang-link:hover::after {
  width: 100%;
}

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

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

@keyframes btn-border-rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 800;
  color: #0b132b;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
/* Rotating conic-gradient layer (clockwise) */
.btn::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 260%; aspect-ratio: 1;
  background: conic-gradient(from 0deg, #2563eb, #7c3aed, #f43f5e, #fb923c, #facc15, #2563eb);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: btn-border-rotate 4s linear infinite;
  z-index: -2;
  pointer-events: none;
}
/* Glass fill — tinted with brand colors (vivid, still glassy) */
.btn::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(255, 224, 189, 0.88) 0%,
    rgba(253, 205, 215, 0.86) 35%,
    rgba(233, 213, 255, 0.86) 70%,
    rgba(199, 222, 255, 0.88) 100%);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  z-index: -1;
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:hover::before { animation-duration: 1.6s; }

/* Primary — warm gamut (peach → coral → pink) */
.btn-primary {
  box-shadow: 0 16px 44px rgba(249, 115, 22, 0.25);
}
.btn-primary::after {
  background: linear-gradient(135deg,
    rgba(255, 232, 196, 0.90) 0%,
    rgba(255, 205, 178, 0.88) 40%,
    rgba(253, 194, 210, 0.88) 75%,
    rgba(250, 176, 200, 0.90) 100%);
}
.btn-primary:hover {
  box-shadow: 0 22px 56px rgba(249, 115, 22, 0.38);
}

/* Secondary — cool gamut (lavender → blue → cyan) */
.btn-secondary {
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.22);
}
.btn-secondary::after {
  background: linear-gradient(135deg,
    rgba(226, 214, 255, 0.90) 0%,
    rgba(207, 214, 255, 0.88) 40%,
    rgba(199, 226, 255, 0.88) 75%,
    rgba(191, 238, 248, 0.90) 100%);
}
.btn-secondary:hover {
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.36);
}

.btn-underline {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn .btn-sub {
  display: inline-block;
  font-weight: 500;
  font-size: 0.88em;
  opacity: 0.88;
  margin-top: 2px;
}


.mobile-toggle, .mobile-menu, .lang-switcher--mobile, .mobile-right { 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: 'Geologica', 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);
  line-height: 1.00;
  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;
  padding-bottom: 0.12em;
}

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

.hero-actions,
.cta-actions,
.canvas-actions,
.wallpaper-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;
}

.hero-stats .stat:nth-child(1) {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.hero-stats .stat:nth-child(2) {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.hero-stats .stat:nth-child(3) {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

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

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

.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: 46px;
  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-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;
}
a.hero-panel-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.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(249,115,22,0.10);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #f97316, #f43f5e);
}
.panel-label.alt {
  background-color: transparent;
  background-image: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #7c3aed 80%, #9333ea 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.panel-art {
  position: relative;
  height: 210px;
  border-radius: 22px;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08));
}
.hero-carousel {
  isolation: isolate;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}
.carousel-slides,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12) rotate(-2.5deg);
  filter: blur(14px) saturate(1.08);
  transition:
    opacity 0.85s ease,
    transform 1.25s cubic-bezier(.22,.61,.36,1),
    filter 1.25s ease,
    clip-path 1.1s cubic-bezier(.22,.61,.36,1);
  clip-path: inset(0 0 100% 0 round 22px);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 38%, rgba(15,23,42,0.08) 100%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.24), transparent 26%);
}
.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0) saturate(1.02);
  clip-path: inset(0 0 0 0 round 22px);
  z-index: 2;
}
.carousel-slide.is-previous {
  opacity: 0;
  transform: scale(1.06) rotate(2.4deg);
  filter: blur(8px);
  clip-path: inset(100% 0 0 0 round 22px);
  z-index: 1;
}
.carousel-glow,
.carousel-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.carousel-glow {
  z-index: 3;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.2), transparent 48%);
}
.carousel-shine {
  z-index: 4;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 42%, transparent 58%);
  transform: translateX(-130%);
  animation: heroShine 5.6s ease-in-out infinite;
}
.carousel-dots {
  position: absolute;
  z-index: 5;
  left: 16px;
  bottom: 14px;
  display: flex;
  gap: 7px;
}
.carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease;
  cursor: pointer;
}
.carousel-dots span.is-active {
  width: 22px;
  background: rgba(255,255,255,0.95);
}
.carousel-canvas::before,
.carousel-wallpaper::before {
  content: "";
  position: absolute;
  inset: auto auto 12px 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.45);
  color: rgba(255,255,255,0.96);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 800;
  z-index: 6;
  backdrop-filter: blur(12px);
}
.carousel-canvas::before { content: none; }
.carousel-wallpaper::before { content: none; }

.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;
}

.showcase-carousel {
  isolation: isolate;
}

.showcase-glow {
  position: absolute;
  inset: 14% 11% auto 11%;
  height: 52%;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.42), rgba(59,130,246,0.1) 48%, transparent 78%);
  filter: blur(28px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.canvas-showcase .surface {
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #e8eef8;
}
.canvas-showcase .frame-shadow {
  display: none;
}
.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;
  overflow: hidden;
  background: #eef2f7;
}
.wallpaper-showcase .roll {
  display: none;
}
.wallpaper-showcase .gloss-line {
  display: none;
}

.showcase-slides {
  position: relative;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(10px) saturate(1.08);
  transition: opacity 0.95s ease, transform 1.2s ease, filter 1.1s ease;
  will-change: opacity, transform, filter;
}

.showcase-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%, rgba(15,23,42,0.08)),
    linear-gradient(120deg, rgba(255,255,255,0.28) 0%, transparent 34%, rgba(255,255,255,0.12) 55%, transparent 76%);
  mix-blend-mode: screen;
}

.canvas-showcase .showcase-slide {
  background-position: center center;
}

.wallpaper-showcase .showcase-slide {
  background-position: center center;
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1.02);
  z-index: 2;
}

.showcase-slide.is-previous {
  opacity: 0;
  transform: scale(1.03);
  filter: blur(4px) saturate(1.05);
  z-index: 1;
}

.showcase-shine {
  display: none;
}

.canvas-showcase .frame-shadow,
.canvas-showcase .corner-shine,
.wallpaper-showcase .roll,
.wallpaper-showcase .gloss-line {
  z-index: 3;
}

@keyframes showcaseSweep {
  0%, 52%, 100% {
    opacity: 0;
    transform: translateX(-32%);
  }
  58% {
    opacity: 0.75;
  }
  74% {
    opacity: 0.35;
    transform: translateX(28%);
  }
}

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

.feature-grid { margin: 26px 0 28px; }
.feature-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-3x2 { grid-template-columns: repeat(3, 1fr); }

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

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

.feature-grid .mini-card:nth-child(1) {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.feature-grid .mini-card:nth-child(2) {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.feature-grid .mini-card:nth-child(3) {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.feature-grid .mini-card:nth-child(4) {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.feature-grid .mini-card:nth-child(5) {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.feature-grid .mini-card:nth-child(6) {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.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);
  display: flex;
  align-items: center;
  justify-content: center;
}
.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-image: url('../hero/projects/project-home.webp');
  background-size: cover;
  background-position: center;
}
.visual-hotel {
  background-image: url('../hero/projects/project-hotel.webp');
  background-size: cover;
  background-position: center;
}
.visual-studio {
  background-image: url('../hero/projects/project-studio.webp');
  background-size: cover;
  background-position: center;
}

.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);
}

/* ── Footer ── */
.site-footer {
  background: #0f172a;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 0;
  border-top: none;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(148,163,184,0.7);
  line-height: 1.75;
  max-width: 280px;
  margin: 0 0 24px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
  filter: drop-shadow(0 0 8px rgba(249,115,22,0.35)) drop-shadow(0 0 18px rgba(244,63,94,0.2));
  display: block;
  background: rgba(255,255,255,0.88);
  border-radius: 12px;
  padding: 8px 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(148,163,184,0.6);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
}

.footer-social-link:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.35);
  color: #a78bfa;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  display: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-link-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-highlight svg {
  stroke: #7c3aed;
  flex-shrink: 0;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: #7c3aed;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(148,163,184,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* ── Production Speed Banner ── */

.pod-speed-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(124,58,237,0.07) 50%, rgba(249,115,22,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.12);
}

.pod-speed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.pod-speed-item strong {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.pod-speed-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  line-height: 1.3;
}

.pod-speed-divider {
  width: 1px;
  height: 48px;
  background: rgba(124,58,237,0.18);
  margin: 0 24px;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .pod-speed-banner { padding: 20px 16px; }
  .pod-speed-item strong { font-size: 1.6rem; }
  .pod-speed-divider { margin: 0 14px; }
}

/* ── POD Workflow ── */

.pod-workflow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pod-wf-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 700px;
  padding: 32px 0;
}

.pod-wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pod-wf-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}

.pod-wf-icon:hover {
  transform: scale(1.12);
}

.pod-wf-icon svg {
  width: 28px;
  height: 28px;
}

.pod-wf-node-1 .pod-wf-icon { background: rgba(37,99,235,0.12); color: #2563eb; box-shadow: 0 8px 24px rgba(37,99,235,0.15); }
.pod-wf-node-2 .pod-wf-icon { background: rgba(124,58,237,0.12); color: #9333ea; box-shadow: 0 8px 24px rgba(124,58,237,0.15); }
.pod-wf-node-3 .pod-wf-icon { background: rgba(244,63,94,0.12); color: #f43f5e; box-shadow: 0 8px 24px rgba(244,63,94,0.15); }
.pod-wf-node-4 .pod-wf-icon { background: rgba(249,115,22,0.12); color: #f97316; box-shadow: 0 8px 24px rgba(249,115,22,0.15); }
.pod-wf-node-5 .pod-wf-icon { background: rgba(34,197,94,0.12); color: #22c55e; box-shadow: 0 8px 24px rgba(34,197,94,0.15); }

.pod-wf-node span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

.pod-wf-arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  margin-bottom: 28px;
}

.pod-wf-arrow svg {
  width: 40px;
  height: 12px;
}

@media (max-width: 768px) {
  .pod-wf-track {
    min-width: 580px;
    gap: 0;
    padding: 24px 16px;
  }
  .pod-wf-icon {
    width: 52px;
    height: 52px;
  }
  .pod-wf-icon svg {
    width: 22px;
    height: 22px;
  }
  .pod-wf-arrow {
    width: 36px;
  }
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-company-info span {
  font-size: 0.87rem;
  color: rgba(148,163,184,0.75);
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  padding: 20px 0;
  margin-top: 56px;
  text-align: left;
}

.footer-copy .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy span {
  font-size: 0.92rem;
  color: rgba(148,163,184,0.8);
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(148,163,184,0.8);
  font-weight: 500;
}

.footer-heart {
  color: #f43f5e;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
}

.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-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  .lang-switcher--mobile { display: block; }
  .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;
    transition: background 0.2s ease;
  }
  .mobile-toggle span {
    width: 20px; height: 2px; background: var(--color-dark); border-radius: 999px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
  }
  .mobile-toggle.open { background: rgba(255,255,255,0.95); }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes menuLinkIn {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 2px;
    margin: 0 16px 16px;
    padding: 12px;
    border-radius: 22px;
  }
  .mobile-menu.open {
    display: flex;
    animation: menuSlideIn 0.28s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.15s ease, color 0.15s ease;
    opacity: 0;
  }
  .mobile-menu a::after {
    content: '›';
    font-size: 1.3rem;
    opacity: 0.25;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .mobile-menu a:hover, .mobile-menu a:active {
    background: rgba(200,137,42,0.09);
    color: #c8892a;
  }
  .mobile-menu a:hover::after { opacity: 1; transform: translateX(3px); }
  .mobile-menu a[aria-current="page"] { color: #c8892a; background: rgba(200,137,42,0.08); }
  .mobile-menu.open a:nth-child(1) { animation: menuLinkIn 0.25s 0.06s both; }
  .mobile-menu.open a:nth-child(2) { animation: menuLinkIn 0.25s 0.10s both; }
  .mobile-menu.open a:nth-child(3) { animation: menuLinkIn 0.25s 0.14s both; }
  .mobile-menu.open a:nth-child(4) { animation: menuLinkIn 0.25s 0.18s both; }
  .mobile-menu.open a:nth-child(5) { animation: menuLinkIn 0.25s 0.22s both; }
  .mobile-menu.open a:nth-child(6) { animation: menuLinkIn 0.25s 0.26s both; }
  .mobile-menu.open a:nth-child(7) { animation: menuLinkIn 0.25s 0.30s both; }
  .mobile-partner-btn,
  .mobile-menu a.mobile-partner-btn { width: 100%; justify-content: center; margin-top: 8px; border-radius: 14px; color: #fff !important; }
  .mobile-partner-btn::after { display: none; }
  .mobile-menu a.mobile-partner-btn:hover { background: var(--gradient-cta); color: #fff !important; }
  .hero-grid, .split-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-visual {
    min-height: 420px;
  }
  .feature-grid,
  .experience-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 54px; }
  .site-header { position: fixed; top: 8px; left: 0; right: 0; margin: 0 auto; }
  body { padding-top: 90px; }
  .nav-wrap { min-height: 74px; }
  .brand img { height: 38px; }
  .hero-visual { min-height: 380px; }
  .showcase-card { min-height: unset; aspect-ratio: 1 / 1; }
  .panel-art { height: auto; aspect-ratio: 1 / 1; }
  .logo-stage { inset: 64px 10px 120px 10px; }
  .hero-logo { width: 96%; }
  .floating-panel {
    position: relative;
    width: auto;
    left: auto; right: auto; top: auto; bottom: auto;
    margin-top: 18px;
    box-sizing: border-box;
    max-width: 100%;
  }
  .panel-a, .panel-b { width: 100%; max-width: 100%; }
  .hero-visual { max-width: 100%; overflow: hidden; }
  .hero-orbit, .logo-ring { display: none; }
  .chip-c { bottom: 10%; }
  .cta-box { padding: 26px; }
  .hero-actions { flex-direction: column !important; width: 100%; gap: 12px; flex-wrap: nowrap; }
  .hero-actions .btn { flex: 1 1 100% !important; width: 100% !important; justify-content: center; }
  .page-home .hero-stats .stat { padding: 10px 8px; }
  .page-home .hero-stats .stat strong { font-size: 0.84rem; margin-bottom: 2px; }
  .page-home .hero-stats .stat span { font-size: 0.7rem; line-height: 1.2; }
  html, body { max-width: 100vw; }
  main, .hero, .hero-grid, .section { max-width: 100vw; overflow-x: clip; }
  .hero h1, .hero-text { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; max-width: 100%; }
  .hero h1 { font-size: clamp(38px, 9vw, 52px) !important; line-height: 1.05; }
  .hero-text { font-size: 0.88rem; line-height: 1.5; margin-top: 16px; }
  .hero-copy { max-width: 100%; min-width: 0; }
  .hero-grid { min-width: 0; }
  .hero-grid > * { min-width: 0; }
  .cta-actions { flex-direction: row; width: 100%; flex-wrap: nowrap; gap: 10px; }
  .cta-actions .btn { justify-content: center; flex: 0 0 auto; min-width: 0; padding-left: 12px; padding-right: 12px; }
  .cta-actions .btn:first-child { flex: 0 0 calc(40% - 5px); }
  .cta-actions .btn:last-child  { flex: 0 0 calc(60% - 5px); }
  .cta-actions.cta-actions-stack { flex-direction: column; gap: 12px; }
  .cta-actions.cta-actions-stack .btn,
  .cta-actions.cta-actions-stack .btn:first-child,
  .cta-actions.cta-actions-stack .btn:last-child { flex: 1 1 100%; width: 100%; }

  /* Mobile: kill rotating conic-gradient + glass layers on all action buttons */
  .btn::before, .btn::after { display: none !important; }
  .btn { background: linear-gradient(135deg, #ffe8c4 0%, #ffcdb2 40%, #fdc2d2 75%, #fab0c8 100%); border: 1px solid rgba(255, 255, 255, 0.6); }
  .btn-primary { background: linear-gradient(135deg, #ffe8c4 0%, #ffcdb2 40%, #fdc2d2 75%, #fab0c8 100%); }
  .btn-secondary { background: linear-gradient(135deg, #e2d6ff 0%, #cfd6ff 40%, #c7e2ff 75%, #bfeef8 100%); }
  .btn:hover { transform: none; }
  .canvas-actions { flex-direction: row; width: 100%; flex-wrap: nowrap; }
  .canvas-actions .btn { justify-content: center; min-width: 0; }
  .canvas-actions .btn-primary { flex: 0 0 40%; }
  .canvas-actions .btn-secondary { flex: 0 0 60%; }
  .wallpaper-actions { flex-direction: row; width: 100%; flex-wrap: nowrap; }
  .wallpaper-actions .btn { justify-content: center; min-width: 0; }
  .wallpaper-actions .btn-primary { flex: 0 0 40%; }
  .wallpaper-actions .btn-secondary { flex: 0 0 60%; }
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-copy .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .ticker-item { font-size: 11px !important; padding: 8px 12px !important; }
  .ticker-icon svg { width: 12px !important; height: 12px !important; }
  .ticker-icon { margin-right: 6px !important; }
  .ticker-wrap { margin: -12px auto 28px; }
  .hero-stats .stat { padding: 18px; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-head h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-head p { font-size: 0.88rem; }
  .hero-visual { min-height: 300px; }
  .hero-stats .stat { padding: 14px 12px; }
  .stat-num { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .mini-card { padding: 22px 18px; }
  .cta-box { padding: 22px 18px; gap: 20px; }
  .ticker-item { font-size: 12px; padding: 8px 12px; }
  .ticker-mask { width: 60px; }
  .projects-grid { gap: 16px; }
  .project-card .project-image { height: auto; aspect-ratio: 4 / 3; }
  .feature-grid,
  .experience-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { gap: 14px; }
  .experience-grid { gap: 14px; }
}

.mobile-sticky-cta {
  display: none;
}
@media (max-width: 760px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 32px);
    max-width: 420px;
  }
  .mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.95rem;
    padding: 15px 20px;
    box-shadow: 0 8px 32px rgba(249,115,22,0.35);
  }
  .mobile-sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .mobile-sticky-cta:not(.hidden) {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}

.ticker-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin: -24px auto 40px;
  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-item:nth-child(1) { background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.15); }
.ticker-item:nth-child(2) { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.15); }
.ticker-item:nth-child(3) { background: rgba(244, 63, 94, 0.08); border-color: rgba(244, 63, 94, 0.15); }
.ticker-item:nth-child(4) { background: rgba(124, 58, 237, 0.08); border-color: rgba(124, 58, 237, 0.15); }
.ticker-item:nth-child(5) { background: rgba(5, 150, 105, 0.08); border-color: rgba(5, 150, 105, 0.15); }
.ticker-item:nth-child(6) { background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.15); }
.ticker-item:nth-child(7) { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.15); }
.ticker-item:nth-child(8) { background: rgba(244, 63, 94, 0.08); border-color: rgba(244, 63, 94, 0.15); }
.ticker-item:nth-child(9) { background: rgba(124, 58, 237, 0.08); border-color: rgba(124, 58, 237, 0.15); }

.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%);
  }
}

/* Global VAT notice shown beneath price blocks */
.price-vat-note {
  margin: 18px auto 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted, #64748b);
  text-align: center;
  font-style: normal;
}

