:root {
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --blue: oklch(65% 0.22 240);
  --violet: oklch(60% 0.22 290);
  --blue-dim: oklch(65% 0.12 240);
  --text: #e8e8f0;
  --muted: #6b6b85;
  --card-bg: rgba(255,255,255,0.035);
  --card-border: rgba(255,255,255,0.07);
  --glow-blue: oklch(65% 0.22 240 / 0.18);
  --glow-violet: oklch(60% 0.22 290 / 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.mono { font-family: 'JetBrains Mono', monospace; }
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13px; font-weight: 500; padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  color: var(--text); text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.2s;
  background: rgba(255,255,255,0.04);
}
.nav-cta:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 280px; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, oklch(65% 0.22 240 / 0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, oklch(60% 0.22 290 / 0.10) 0%, transparent 70%);
  bottom: -50px; right: 100px;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 860px; padding: 0 32px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-name {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.0;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300; color: var(--muted); letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.hero-location {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px; color: var(--muted); margin-bottom: 48px;
}
.hero-location svg { opacity: 0.5; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 14px; letter-spacing: 0.02em; text-decoration: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 0 40px oklch(65% 0.22 240 / 0.3);
  transition: all 0.25s; font-family: 'Sora', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px oklch(65% 0.22 240 / 0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 500;
  font-size: 14px; letter-spacing: 0.02em; text-decoration: none;
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  transition: all 0.25s; font-family: 'Sora', sans-serif;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: float-up 2s ease-in-out infinite;
}
@keyframes float-up {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
}

/* ─── SECTIONS ─── */
.section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 60px;
  overflow: hidden;
}
.section-inner {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.section-inner.reverse { direction: rtl; }
.section-inner.reverse > * { direction: ltr; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--blue);
}
.section-heading {
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  max-width: 440px; margin-bottom: 32px;
}
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 8px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-size: 28px; font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag {
  padding: 4px 12px; border-radius: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
  color: var(--muted); letter-spacing: 0.04em;
}

/* ─── SECTION GLOWS ─── */
.section::before {
  content: ''; position: absolute;
  border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0;
}
#sberspasibo::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, oklch(65% 0.22 240 / 0.08) 0%, transparent 70%);
  top: 50%; left: -200px; transform: translateY(-50%);
}
#bonus::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, oklch(60% 0.22 290 / 0.07) 0%, transparent 70%);
  top: 50%; right: -200px; left: auto; transform: translateY(-50%);
}
#playcure::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, oklch(55% 0.22 300 / 0.09) 0%, transparent 70%);
  top: 50%; left: -200px; transform: translateY(-50%);
}

/* ─── ANIMATE ON SCROLL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── POS TERMINAL MOCKUP (tablet-on-pedestal) ─── */
.pos-container {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
  perspective: 900px;
}
.pos-scene {
  position: relative;
  transform-style: preserve-3d;
  animation: pos-idle 5s ease-in-out infinite;
}
@keyframes pos-idle {
  0%,100% { transform: none; }
  50%      { transform: translateY(-4px); }
}
.pos-tablet {
  width: 240px; height: 260px;
  background: linear-gradient(160deg, #2a2d35 0%, #1a1c22 60%, #141518 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 18px 14px 14px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    6px 12px 40px rgba(0,0,0,0.7),
    -2px -2px 8px rgba(255,255,255,0.04),
    0 0 60px oklch(55% 0.18 145 / 0.12);
}
.pos-camera {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a0a0e;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.15), 0 0 0 1.5px rgba(255,255,255,0.07);
}
.pos-side-btn {
  position: absolute; right: -3px; top: 60px;
  width: 3px; height: 32px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #2e3038, #1e2026);
}
.pos-neck {
  width: 28px; height: 70px; margin: 0 auto;
  background: linear-gradient(180deg, #1f2128 0%, #2a2d35 40%, #1a1c22 100%);
  clip-path: polygon(25% 0, 75% 0, 85% 100%, 15% 100%);
}
.pos-base-disc {
  width: 200px; height: 36px;
  background: linear-gradient(180deg, #252830 0%, #1a1c22 50%, #141618 100%);
  border-radius: 50%;
  border-top: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 24px; position: relative;
}
.pos-usb {
  width: 12px; height: 5px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12); background: #0a0a0e;
}
.pos-card {
  position: absolute; bottom: -8px; left: -28px;
  width: 170px; height: 105px;
  background: linear-gradient(135deg, #1e2535 0%, #151c2e 40%, #0f1520 100%);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 4px 8px 30px rgba(0,0,0,0.6);
  padding: 12px; transform: rotate(-8deg);
  overflow: hidden;
}
.pos-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 55%);
}
.pos-card-chip {
  width: 22px; height: 17px; border-radius: 3px;
  background: linear-gradient(135deg, #b8962a, #e8c94e, #b8962a);
  margin-bottom: 18px;
}
.pos-card-nfc {
  position: absolute; top: 12px; right: 12px; opacity: 0.4;
}
.pos-card-num {
  font-size: 7px; letter-spacing: 0.18em; color: rgba(255,255,255,0.3);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 5px;
}
.pos-card-name {
  font-size: 8px; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.pos-terminal {
  width: 260px;
  background: linear-gradient(160deg, #1a1a28 0%, #12121e 100%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 20px 20px 28px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px oklch(65% 0.22 240 / 0.1);
}
.pos-screen {
  background: #060612; border-radius: 12px;
  padding: 16px; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05); min-height: 140px;
  overflow: hidden; position: relative;
}
.pos-screen-header {
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
  display: flex; justify-content: space-between;
}
.pos-screen-header span { color: oklch(65% 0.22 240 / 0.7); }
/* ─── POS SCREEN CONTENT ─── */
.pos-screen {
  width: 100%; height: 100%;
  background: #050709;
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.9);
}
.pos-screen::before {
  content: ''; position: absolute;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, oklch(55% 0.22 145 / 0.22) 0%, transparent 70%);
  top: 10px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.pos-clover {
  width: 72px; height: 72px; margin-bottom: 14px;
  filter: drop-shadow(0 0 16px oklch(55% 0.24 145 / 0.8));
  animation: clover-pulse 2.4s ease-in-out infinite;
}
@keyframes clover-pulse {
  0%,100% { filter: drop-shadow(0 0 14px oklch(55% 0.24 145 / 0.7)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 28px oklch(65% 0.26 145 / 1)); transform: scale(1.06); }
}
.pos-bonus-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); margin-bottom: 4px; font-family: 'Sora', sans-serif;
}
.pos-bonus-value {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: #fff;
  opacity: 0; animation: count-up 2s ease-out forwards;
}
@keyframes count-up {
  0%   { opacity: 0; transform: translateY(8px); }
  20%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}
.pos-check {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; font-size: 11px;
  color: oklch(65% 0.22 145);
  font-family: 'JetBrains Mono', monospace;
  opacity: 0; animation: fade-in-check 0.5s 2.4s forwards;
}
@keyframes fade-in-check {
  from { opacity: 0; transform: translateY(3px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pos-check svg { flex-shrink: 0; }

/* ─── PHONE MOCKUP ─── */
.phone-wrapper {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.phone {
  width: 240px; height: 480px;
  background: linear-gradient(160deg, #181828 0%, #0e0e1c 100%);
  border-radius: 40px; border: 1px solid rgba(255,255,255,0.12);
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7), 0 0 80px oklch(60% 0.22 290 / 0.12);
  position: relative; overflow: hidden;
  transform: perspective(800px) rotateY(-10deg) rotateX(4deg);
  transition: transform 0.6s ease;
}
.phone:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.phone-notch {
  width: 70px; height: 20px; border-radius: 0 0 14px 14px;
  background: #0a0a0f; margin: 0 auto 8px; position: relative; z-index: 2;
}
.phone-screen {
  background: #07070f; border-radius: 28px; height: calc(100% - 28px);
  overflow: hidden; padding: 16px 12px;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8px; color: var(--muted); font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
}
.phone-app-header {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.phone-app-sub {
  font-size: 9px; color: var(--muted); font-family: 'JetBrains Mono', monospace; margin-bottom: 14px;
}
.transaction-list { display: flex; flex-direction: column; gap: 8px; }
.txn-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px 10px;
  display: grid; grid-template-columns: 24px 1fr auto; gap: 8px; align-items: center;
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.4s, transform 0.4s;
}
.txn-item.show { opacity: 1; transform: translateX(0); }
.txn-icon {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.txn-name { font-size: 10px; font-weight: 500; color: var(--text); }
.txn-meta { font-size: 8px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.txn-amount { font-size: 10px; font-weight: 600; color: oklch(65% 0.22 155); font-family: 'JetBrains Mono', monospace; }
.txn-bonus {
  font-size: 8px; text-align: right; margin-top: 2px;
  color: var(--violet); font-family: 'JetBrains Mono', monospace;
}
.bonus-matched-banner {
  margin-top: 10px; padding: 8px 10px; border-radius: 8px;
  background: linear-gradient(135deg, oklch(65% 0.22 240 / 0.12) 0%, oklch(60% 0.22 290 / 0.12) 100%);
  border: 1px solid oklch(65% 0.22 240 / 0.2);
  font-size: 9px; font-family: 'JetBrains Mono', monospace; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.6s 1.2s;
}
.bonus-matched-banner.show { opacity: 1; }
.pulse-circle {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  animation: pulse-dot 1.5s infinite;
}

/* ─── GAME CARDS (PlayCure) ─── */
.games-display {
  position: relative; height: 420px; width: 420px; z-index: 1;
  flex-shrink: 0;
}
.game-card {
  position: absolute; width: 200px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  opacity: 0;
}
.game-card:hover { transform: translateY(-8px) scale(1.02) !important; }
.game-card-img {
  height: 120px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.game-card-body { padding: 14px; }
.game-card-genre {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace; margin-bottom: 4px;
}
.game-card-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.game-card-meta { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.match-score {
  margin-left: auto; font-size: 11px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── TERMINAL ─── */
.terminal {
  background: #06060e; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px 24px; font-family: 'JetBrains Mono', monospace;
  font-size: 13px; line-height: 1.8; margin-top: 24px;
  box-shadow: 0 0 40px oklch(60% 0.22 290 / 0.08);
}
.terminal-bar {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.terminal-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.t-red { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green { background: #28c840; }
.t-prompt { color: oklch(60% 0.22 290 / 0.8); }
.t-text { color: var(--muted); }
.t-hl { color: var(--violet); }
.t-blue { color: var(--blue); }
.t-green-text { color: oklch(65% 0.2 155); }
.cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--violet); opacity: 0.8; vertical-align: -2px;
  animation: blink 1.2s steps(1) infinite;
}
@keyframes blink { 0%,50% { opacity: 0.8; } 51%,100% { opacity: 0; } }
.terminal-line { overflow: hidden; white-space: nowrap; }
.terminal-line.typed { animation: type-in 0.5s steps(30) forwards; opacity: 0; }
.terminal-line.typed.go { opacity: 1; }
@keyframes type-in { from { max-width: 0; opacity: 1; } to { max-width: 100%; opacity: 1; } }

/* ─── ABOUT / STACK ─── */
#about {
  min-height: auto; padding: 120px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
}
.about-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: start;
}
.about-bio {
  font-size: 17px; line-height: 1.8; color: var(--muted);
}
.about-bio strong { color: var(--text); font-weight: 500; }
.about-bio p + p { margin-top: 16px; }
.about-contacts { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 10px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  text-decoration: none; color: var(--text); font-size: 14px;
  transition: all 0.2s;
}
.contact-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: translateX(4px); }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, oklch(65% 0.22 240 / 0.15), oklch(60% 0.22 290 / 0.15));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-meta { display: flex; flex-direction: column; }
.contact-label { font-size: 11px; color: var(--muted); }

/* ─── STACK GRID ─── */
.stack-heading {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px; font-family: 'JetBrains Mono', monospace;
}
.stack-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px; margin-bottom: 60px;
}
.stack-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: all 0.2s; cursor: default;
}
.stack-item:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stack-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.stack-name {
  font-size: 11px; font-weight: 500; color: var(--muted);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; text-align: center;
}

/* ─── FOOTER ─── */
footer {
  text-align: center; padding: 40px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px; color: var(--muted); letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── DIVIDER LINE ─── */
.section-divider {
  max-width: 1200px; margin: 0 auto;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-inner.reverse { direction: ltr; }
  .about-top { grid-template-columns: 1fr; gap: 48px; }
  #about { padding: 80px 24px; }
  .hero-content { padding: 0 20px; }
  .loyalty-card { display: none; }
  .pos-terminal { width: 220px; }
}

/* ─── APPLE-STYLE SCROLL SCENES ─── */
.scroll-scene { position: relative; }
.scroll-track { height: 300vh; }
.scroll-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 60px;
}
.scene-layout {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.scene-layout.reverse { direction: rtl; }
.scene-layout.reverse > * { direction: ltr; }
.scene-text { will-change: transform, opacity; }
.scene-device {
  display: flex; align-items: center; justify-content: center;
  will-change: transform, opacity;
}

/* stat counter animation */
.stat-value.counting { transition: none; }

@media (max-width: 900px) {
  .scroll-sticky {
    padding: 88px 24px 32px;
    align-items: flex-start;
  }
  .scene-layout { grid-template-columns: 1fr; gap: 40px; }
  .scene-layout.reverse { direction: ltr; }
}
