/* BizdenPOS — animasyonlu tanıtım sayfası */

:root {
  --bg: #0c0e14;
  --bg-elevated: #12151e;
  --bg-card: #161a24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f5;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --accent: #d4a853;
  --accent-light: #f0d78c;
  --accent-dark: #a67c2e;
  --accent-glow: rgba(212, 168, 83, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, sans-serif;
  --max: 1120px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

/* ─── Animasyon keyframes ─── */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212, 168, 83, 0); }
}

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 36px var(--accent-glow), 0 0 60px rgba(212, 168, 83, 0.15); }
}

@keyframes particle-drift {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes stat-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ─── Arka plan ─── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: float 18s ease-in-out infinite;
}

.orb-a {
  width: 560px;
  height: 560px;
  background: var(--accent-glow);
  top: -140px;
  right: -100px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: rgba(96, 165, 250, 0.12);
  bottom: 5%;
  left: -120px;
  animation-delay: -6s;
  animation-duration: 22s;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: rgba(212, 168, 83, 0.15);
  top: 45%;
  left: 50%;
  animation-delay: -12s;
  animation-duration: 25s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: particle-drift 12s linear infinite;
}

.particle:nth-child(5) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(6) { left: 25%; animation-delay: 2s; width: 3px; height: 3px; }
.particle:nth-child(7) { left: 45%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(8) { left: 60%; animation-delay: 1s; }
.particle:nth-child(9) { left: 78%; animation-delay: 6s; animation-duration: 18s; }
.particle:nth-child(10) { left: 92%; animation-delay: 3s; width: 5px; height: 5px; }

/* ─── Giriş animasyonları ─── */
.anim-fade-up {
  animation: fade-up 0.8s var(--ease-out) both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.35s; }
.anim-delay-4 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards .reveal:nth-child(2) { transition-delay: 0.05s; }
.cards .reveal:nth-child(3) { transition-delay: 0.1s; }
.cards .reveal:nth-child(4) { transition-delay: 0.15s; }
.cards .reveal:nth-child(5) { transition-delay: 0.2s; }
.cards .reveal:nth-child(6) { transition-delay: 0.25s; }

.module-group.reveal:nth-child(2) { transition-delay: 0.08s; }
.module-group.reveal:nth-child(3) { transition-delay: 0.12s; }
.module-group.reveal:nth-child(4) { transition-delay: 0.16s; }
.module-group.reveal:nth-child(5) { transition-delay: 0.2s; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: rgba(12, 14, 20, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  animation: fade-up 0.6s var(--ease-out);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover { text-decoration: none; }

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.brand:hover .brand__logo {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Eski harf logosu — geriye dönük */
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #1a1408;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: brand-pulse 3s ease-in-out infinite;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-size: 0.9375rem; letter-spacing: 0.06em; }
.brand__text small { font-size: 0.6875rem; color: var(--text-dim); }

.nav { display: flex; gap: 1.25rem; }

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover { color: var(--text); text-decoration: none; }
.nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-panel__short { display: none; }

@media (max-width: 768px) {
  .header {
    flex-wrap: nowrap;
    padding: 0.75rem 1rem;
    gap: 0.65rem;
  }

  .brand__text small { display: none; }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .btn-panel {
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .btn-panel__full { display: none; }
  .btn-panel__short { display: inline; }

  .brand__logo {
    width: 36px;
    height: 36px;
  }

  .brand__text strong {
    font-size: 0.875rem;
  }
}

/* ─── Buttons ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #1a1408;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: shine 3s ease-in-out infinite;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn-lg { padding: 0.8rem 1.5rem; font-size: 0.9375rem; }
.btn-block { width: 100%; }

/* ─── Hero ─── */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* ─── Hero uzay derinliği & restoran animasyonu ─── */
.hero-scene {
  position: absolute;
  inset: -2rem -1.5rem 0;
  z-index: 0;
  pointer-events: none;
  perspective: 900px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}

.hero-scene__layer--sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(212, 168, 83, 0.08), transparent 55%),
    radial-gradient(ellipse 90% 60% at 80% 20%, rgba(96, 165, 250, 0.06), transparent 50%),
    linear-gradient(180deg, #0a0c12 0%, var(--bg) 70%, rgba(12, 14, 20, 0.95) 100%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-stars--far {
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 40% 15%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 55% 60%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 92% 18%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 18% 72%, rgba(240, 215, 140, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 62% 82%, rgba(240, 215, 140, 0.35), transparent);
  background-size: 100% 100%;
  animation: star-twinkle 6s ease-in-out infinite;
}

.hero-stars--mid {
  background-image:
    radial-gradient(1.5px 1.5px at 15% 35%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 32% 68%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 48% 28%, rgba(212, 168, 83, 0.55), transparent),
    radial-gradient(1px 1px at 63% 48%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 78% 22%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 88% 70%, rgba(255, 255, 255, 0.35), transparent);
  animation: star-drift 22s linear infinite, star-twinkle 4s ease-in-out infinite reverse;
}

.hero-stars--near {
  background-image:
    radial-gradient(2px 2px at 22% 40%, rgba(240, 215, 140, 0.7), transparent),
    radial-gradient(2px 2px at 58% 25%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(2.5px 2.5px at 74% 58%, rgba(212, 168, 83, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 38% 62%, rgba(255, 255, 255, 0.55), transparent);
  animation: star-drift 14s linear infinite reverse, star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes star-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, 12px, 0); }
}

.hero-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.hero-nebula--gold {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 168, 83, 0.22), transparent 70%);
  animation: nebula-pulse 9s ease-in-out infinite;
}

.hero-nebula--green {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  bottom: 18%;
  right: 8%;
  background: radial-gradient(circle, rgba(34, 160, 80, 0.12), transparent 70%);
  animation: nebula-pulse 12s ease-in-out infinite reverse;
}

@keyframes nebula-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.85; transform: translateX(-50%) scale(1.12); }
}

.hero-nebula--green {
  animation-name: nebula-pulse-green;
}

@keyframes nebula-pulse-green {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.15); }
}

.hero-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 45%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(212, 168, 83, 0.04) 40%, rgba(212, 168, 83, 0.12) 100%);
  transform: perspective(400px) rotateX(52deg);
  transform-origin: center bottom;
  opacity: 0.9;
}

.hero-steam {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  height: 120px;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 5rem);
  opacity: 0.35;
}

.hero-steam span {
  width: 3px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(240, 215, 140, 0.5), transparent);
  animation: steam-rise 4s ease-in-out infinite;
}

.hero-steam span:nth-child(1) { animation-delay: 0s; height: 50px; }
.hero-steam span:nth-child(2) { animation-delay: 0.8s; height: 65px; }
.hero-steam span:nth-child(3) { animation-delay: 1.6s; height: 45px; }
.hero-steam span:nth-child(4) { animation-delay: 2.2s; height: 55px; }
.hero-steam span:nth-child(5) { animation-delay: 3s; height: 40px; }

@keyframes steam-rise {
  0% { transform: translateY(20px) scaleX(1); opacity: 0; }
  30% { opacity: 0.6; }
  100% { transform: translateY(-60px) scaleX(1.8); opacity: 0; }
}

.hero-orbit {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: min(520px, 95vw);
  height: 120px;
  margin-left: calc(min(520px, 95vw) / -2);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 50%;
  transform: perspective(500px) rotateX(68deg);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.08);
  animation: orbit-glow 5s ease-in-out infinite;
}

@keyframes orbit-glow {
  0%, 100% { border-color: rgba(212, 168, 83, 0.1); box-shadow: 0 0 30px rgba(212, 168, 83, 0.06); }
  50% { border-color: rgba(212, 168, 83, 0.25); box-shadow: 0 0 50px rgba(212, 168, 83, 0.14); }
}

.hero-food-belt {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(640px, 100%);
  height: 140px;
  transform: translateX(-50%);
  transform-style: preserve-3d;
}

.hero-food {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transform-style: preserve-3d;
  animation: food-orbit var(--dur, 14s) linear infinite;
  animation-delay: calc(var(--i) * -1.75s);
  opacity: 0;
}

.hero-food__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 9vw, 48px);
  height: clamp(36px, 9vw, 48px);
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  border-radius: 50%;
  background: rgba(18, 21, 30, 0.85);
  border: 1px solid rgba(212, 168, 83, 0.35);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(212, 168, 83, 0.12);
  backdrop-filter: blur(6px);
}

.hero-food__tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.2);
  white-space: nowrap;
}

@keyframes food-orbit {
  0% {
    transform: translate3d(-50%, 0, -180px) scale(0.35);
    opacity: 0;
  }
  8% { opacity: 0.85; }
  50% {
    transform: translate3d(calc(-50% + var(--tx, 0px)), -55px, 40px) scale(1);
    opacity: 1;
  }
  92% { opacity: 0.7; }
  100% {
    transform: translate3d(calc(-50% + var(--tx2, 0px)), -95px, 120px) scale(0.55);
    opacity: 0;
  }
}

.hero-food--1 { --tx: -140px; --tx2: -160px; --dur: 13s; }
.hero-food--2 { --tx: -95px;  --tx2: -110px; --dur: 14s; }
.hero-food--3 { --tx: -45px;  --tx2: -50px;  --dur: 15s; }
.hero-food--4 { --tx: 10px;   --tx2: 15px;   --dur: 14s; }
.hero-food--5 { --tx: 55px;   --tx2: 65px;   --dur: 13s; }
.hero-food--6 { --tx: 100px;  --tx2: 115px;  --dur: 15s; }
.hero-food--7 { --tx: 130px;  --tx2: 145px;  --dur: 14s; }
.hero-food--8 { --tx: -120px; --tx2: -130px; --dur: 16s; }

@media (max-width: 768px) {
  .hero-scene {
    inset: -1rem -1rem 0;
    mask-image: linear-gradient(to bottom, black 0%, black 48%, transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 48%, transparent 92%);
  }

  .hero-stars--near { opacity: 0.6; }
  .hero-nebula--gold { width: 90vw; height: 90vw; top: 0; }
  .hero-nebula--green { width: 55vw; height: 55vw; bottom: 12%; right: -5%; }
  .hero-orbit { width: 110vw; margin-left: -55vw; bottom: 8%; height: 90px; }
  .hero-food-belt { height: 110px; bottom: 4%; }
  .hero-steam { bottom: 5%; opacity: 0.25; gap: 1.5rem; }
  .hero-steam span:nth-child(4),
  .hero-steam span:nth-child(5) { display: none; }

  .hero-food--5,
  .hero-food--6,
  .hero-food--7,
  .hero-food--8 { display: none; }

  .hero-food--1 { --tx: -90px;  --tx2: -100px; }
  .hero-food--2 { --tx: -35px;  --tx2: -40px; }
  .hero-food--3 { --tx: 25px;   --tx2: 30px; }
  .hero-food--4 { --tx: 80px;   --tx2: 90px; }
}

@media (max-width: 420px) {
  .hero { padding-top: 3.5rem; }
  .hero-food__tag { display: none; }
  .hero-orbit { opacity: 0.6; }
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 760px;
  margin: 0 auto;
}

.gradient-text {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(120deg, var(--accent), var(--accent-light), var(--accent), var(--accent-light));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 5s ease infinite;
}

.hero__lead {
  margin-top: 1.35rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.25rem;
}

.stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stats li { text-align: center; }

.stat-pop {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  animation: stat-bounce 4s ease-in-out infinite;
}

.stats li:nth-child(2) .stat-pop { animation-delay: 0.5s; }
.stats li:nth-child(3) .stat-pop { animation-delay: 1s; }
.stats li:nth-child(4) .stat-pop { animation-delay: 1.5s; }

.stats span { font-size: 0.8125rem; color: var(--text-dim); }

/* ─── Preview / Panel demo ─── */
.preview {
  position: relative;
  max-width: 980px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.preview__glow {
  position: absolute;
  inset: 15% 5% 5%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  filter: blur(48px);
  animation: pulse-glow 5s ease-in-out infinite;
  pointer-events: none;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: live-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.panel-demo__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.panel-demo__intro h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.65rem;
}

.panel-demo__intro p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

.panel-demo__shell {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 83, 0.22);
  background: #0e1018;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(212, 168, 83, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.panel-demo__shell:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 83, 0.15) inset,
    0 48px 110px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(212, 168, 83, 0.1);
}

.panel-demo__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1rem;
  background: #12151e;
  border-bottom: 1px solid var(--border);
}

.panel-demo__chrome span:not(.live-dot) {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.45;
}

.panel-demo__chrome em {
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  font-style: normal;
  color: var(--text-dim);
  flex: 1;
}

.panel-demo__chrome .live-dot {
  margin-left: auto;
}

.panel-demo__app {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 400px;
}

.panel-demo__sidebar {
  padding: 0.85rem 0.65rem;
  background: #12151e;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.panel-demo__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.35rem 0.65rem;
}

.panel-demo__brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.panel-demo__brand strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.panel-demo__brand small {
  font-size: 0.625rem;
  color: var(--text-dim);
}

.panel-demo__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.panel-demo__quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #161a24;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
}

.panel-demo__quick-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.panel-demo__quick-btn:hover,
.panel-demo__quick-btn.active {
  transform: translateY(-1px);
}

.panel-demo__quick-btn--waiter:hover,
.panel-demo__quick-btn--waiter.active {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
}

.panel-demo__quick-btn--pos:hover,
.panel-demo__quick-btn--pos.active {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.35);
  color: var(--accent);
}

.panel-demo__quick-btn--kitchen:hover,
.panel-demo__quick-btn--kitchen.active {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.panel-demo__quick-btn--courier:hover,
.panel-demo__quick-btn--courier.active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #f59e0b;
}

.panel-demo__nav-label {
  display: block;
  padding: 0 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.panel-demo__nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0.5rem;
  margin-bottom: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.panel-demo__nav-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.65;
  flex-shrink: 0;
}

.panel-demo__nav-link:hover {
  background: #161a24;
  color: var(--text);
}

.panel-demo__nav-link.active {
  background: rgba(212, 168, 83, 0.14);
  color: var(--accent-light);
  font-weight: 600;
}

.panel-demo__nav-link.active svg { opacity: 1; }

.panel-demo__branch {
  margin-top: auto;
  padding: 0.55rem 0.5rem;
  border-radius: 8px;
  background: #161a24;
  border: 1px solid var(--border);
}

.panel-demo__branch small {
  display: block;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.panel-demo__branch span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.panel-demo__main {
  display: flex;
  flex-direction: column;
  background: #0c0e14;
  min-width: 0;
}

.panel-demo__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 21, 30, 0.6);
}

.panel-demo__crumb {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.panel-demo__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0.1rem 0 0;
  transition: opacity 0.25s;
}

.panel-demo__branch-tag {
  font-size: 0.625rem;
  color: var(--text-dim);
}

.panel-demo__topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.panel-demo__clock {
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: #161a24;
  border: 1px solid var(--border);
}

.panel-demo__live {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.panel-demo__live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: live-blink 1.5s ease-in-out infinite;
}

.panel-demo__mobile-tabs {
  display: none;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

.panel-demo__mobile-tabs button {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #161a24;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.panel-demo__mobile-tabs button.active {
  background: rgba(212, 168, 83, 0.15);
  border-color: rgba(212, 168, 83, 0.35);
  color: var(--accent-light);
}

.panel-demo__views {
  position: relative;
  flex: 1;
  padding: 0.85rem 1rem 1rem;
  min-height: 300px;
}

.panel-demo__view {
  position: absolute;
  inset: 0.85rem 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.45s var(--ease-out),
    visibility 0.4s;
  pointer-events: none;
}

.panel-demo__view.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.panel-demo__hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.panel-demo__hero-row h4 {
  font-size: 0.875rem;
  font-weight: 700;
}

.panel-demo__date {
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.panel-demo__badge {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
  color: var(--accent-light);
  white-space: nowrap;
}

.panel-demo__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.panel-demo__stat {
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  background: #161a24;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.panel-demo__stat:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-2px);
}

.panel-demo__stat span {
  display: block;
  font-size: 0.5625rem;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.panel-demo__stat strong {
  font-size: 0.8125rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.panel-demo__stat--accent strong { color: var(--accent-light); }

.panel-demo__chart {
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #161a24;
  border: 1px solid var(--border);
}

.panel-demo__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100px;
  margin-bottom: 0.5rem;
}

.panel-demo__bars i {
  flex: 1;
  display: block;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0.85;
}

.panel-demo__anim.is-animating .panel-demo__bars i {
  animation: panel-bar-grow 0.7s var(--ease-out) forwards;
}

.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(1) { animation-delay: 0.04s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(2) { animation-delay: 0.08s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(3) { animation-delay: 0.12s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(4) { animation-delay: 0.16s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(5) { animation-delay: 0.2s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(6) { animation-delay: 0.24s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(7) { animation-delay: 0.28s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(8) { animation-delay: 0.32s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(9) { animation-delay: 0.36s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(10) { animation-delay: 0.4s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(11) { animation-delay: 0.44s; }
.panel-demo__anim.is-animating .panel-demo__bars i:nth-child(12) { animation-delay: 0.48s; }

@keyframes panel-bar-grow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 0.85; }
}

.panel-demo__chart p {
  font-size: 0.625rem;
  color: var(--text-dim);
  text-align: center;
}

.panel-demo__floor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.panel-demo__floor-head h4 { font-size: 0.8125rem; font-weight: 700; }

.panel-demo__legend {
  display: flex;
  gap: 0.5rem;
  font-size: 0.5625rem;
  color: var(--text-dim);
}

.panel-demo__legend span::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.panel-demo__legend span[data-s="free"]::before { background: #34d399; }
.panel-demo__legend span[data-s="busy"]::before { background: #f87171; }
.panel-demo__legend span[data-s="bill"]::before { background: var(--accent); }

.panel-demo__floor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.panel-demo__table {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid transparent;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.25s;
  background: #161a24;
  color: var(--text);
}

.panel-demo__table[data-state="free"] {
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.2);
}

.panel-demo__table[data-state="busy"] {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.08);
  animation: table-pulse 2.5s ease-in-out infinite;
}

.panel-demo__table[data-state="bill"] {
  border-color: rgba(212, 168, 83, 0.55);
  background: rgba(212, 168, 83, 0.1);
}

.panel-demo__table:hover { transform: scale(1.05); }
.panel-demo__table.is-tapped { transform: scale(0.92); }

@keyframes table-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(248, 113, 113, 0); }
}

.panel-demo__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.panel-demo__order {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #161a24;
  border: 1px solid var(--border);
  animation: panel-slide-in 0.45s var(--ease-out) both;
}

.panel-demo__anim.is-animating .panel-demo__order:nth-child(1) { animation-delay: 0.05s; }
.panel-demo__anim.is-animating .panel-demo__order:nth-child(2) { animation-delay: 0.12s; }
.panel-demo__anim.is-animating .panel-demo__order:nth-child(3) { animation-delay: 0.19s; }

@keyframes panel-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

.panel-demo__order strong { display: block; font-size: 0.8125rem; }
.panel-demo__order span { font-size: 0.625rem; color: var(--text-dim); }
.panel-demo__order em { font-size: 0.8125rem; font-style: normal; font-weight: 700; color: var(--accent-light); }

.panel-demo__pill {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.panel-demo__pill--kitchen { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.panel-demo__pill--courier { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.panel-demo__pill--new { background: rgba(52, 211, 153, 0.15); color: #34d399; }

.panel-demo__pos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.65rem;
  height: 100%;
}

.panel-demo__pos-menu {
  padding: 0.65rem;
  border-radius: 10px;
  background: #161a24;
  border: 1px solid var(--border);
}

.panel-demo__pos-menu > span {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  color: var(--text-dim);
  cursor: default;
}

.panel-demo__pos-menu > span.active {
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent);
}

.panel-demo__pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.panel-demo__pos-grid button {
  padding: 0.55rem 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.3;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0c0e14;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
}

.panel-demo__pos-grid button em {
  display: block;
  font-style: normal;
  font-size: 0.625rem;
  color: var(--accent);
  margin-top: 0.15rem;
}

.panel-demo__pos-grid button:hover,
.panel-demo__pos-grid button.is-tapped {
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(212, 168, 83, 0.08);
  transform: scale(1.03);
}

.panel-demo__pos-cart {
  padding: 0.65rem;
  border-radius: 10px;
  background: #161a24;
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  flex-direction: column;
}

.panel-demo__pos-cart h4 {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
}

.panel-demo__pos-cart ul {
  list-style: none;
  flex: 1;
  font-size: 0.6875rem;
}

.panel-demo__pos-cart li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--text-muted);
}

.panel-demo__pos-cart footer {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  margin-top: 0.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
}

.panel-demo__pos-cart footer strong { color: var(--accent-light); }

.panel-demo__pay-btn {
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #1a1408;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.panel-demo__pay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.panel-demo__kds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.panel-demo__ticket {
  padding: 0.6rem;
  border-radius: 10px;
  background: #161a24;
  border: 1px solid var(--border);
  border-left: 3px solid #38bdf8;
  animation: panel-slide-in 0.45s var(--ease-out) both;
  transition: opacity 0.4s, transform 0.4s;
}

.panel-demo__ticket--urgent {
  border-left-color: #f87171;
  animation: ticket-urgent 3s ease-in-out infinite, panel-slide-in 0.45s var(--ease-out) both;
}

.panel-demo__anim.is-animating .panel-demo__ticket:nth-child(1) { animation-delay: 0.05s; }
.panel-demo__anim.is-animating .panel-demo__ticket:nth-child(2) { animation-delay: 0.12s; }
.panel-demo__anim.is-animating .panel-demo__ticket:nth-child(3) { animation-delay: 0.19s; }

@keyframes ticket-urgent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.2); }
  50% { box-shadow: 0 0 0 4px rgba(248, 113, 113, 0); }
}

.panel-demo__ticket.is-done {
  opacity: 0;
  transform: scale(0.9) translateY(-8px);
}

.panel-demo__ticket header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
}

.panel-demo__timer {
  font-size: 0.625rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #f87171;
}

.panel-demo__ticket ul {
  list-style: none;
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.panel-demo__ticket footer button {
  width: 100%;
  padding: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
  cursor: pointer;
  transition: background 0.2s;
}

.panel-demo__ticket footer button:hover {
  background: rgba(52, 211, 153, 0.2);
}

.panel-demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
  background: #12151e;
}

.panel-demo__footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.panel-demo__footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .panel-demo__app {
    grid-template-columns: 1fr;
  }

  .panel-demo__sidebar { display: none; }

  .panel-demo__mobile-tabs { display: flex; }

  .panel-demo__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-demo__kds {
    grid-template-columns: 1fr;
  }

  .panel-demo__pos {
    grid-template-columns: 1fr;
  }

  .panel-demo__views {
    min-height: 340px;
  }

  .panel-demo__footer {
    flex-direction: column;
    text-align: center;
  }

  .panel-demo__footer .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .panel-demo__floor {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }

  .panel-demo__table {
    font-size: 0.75rem;
    border-radius: 8px;
  }
}

/* ─── Eski preview (legacy) ─── */
.anim-float {
  animation: float-slow 6s ease-in-out infinite;
}

.preview__frame { display: none; }

.chart {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 110px;
  margin-bottom: 0.6rem;
}

.bars i {
  flex: 1;
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
  transform-origin: bottom;
  animation: bar-grow 1s var(--ease-out) both;
}

.bars i:nth-child(1)  { height: 42%; animation-delay: 0.05s; }
.bars i:nth-child(2)  { height: 68%; animation-delay: 0.1s; }
.bars i:nth-child(3)  { height: 50%; animation-delay: 0.15s; }
.bars i:nth-child(4)  { height: 82%; animation-delay: 0.2s; }
.bars i:nth-child(5)  { height: 58%; animation-delay: 0.25s; }
.bars i:nth-child(6)  { height: 90%; animation-delay: 0.3s; }
.bars i:nth-child(7)  { height: 72%; animation-delay: 0.35s; }
.bars i:nth-child(8)  { height: 88%; animation-delay: 0.4s; }
.bars i:nth-child(9)  { height: 62%; animation-delay: 0.45s; }
.bars i:nth-child(10) { height: 95%; animation-delay: 0.5s; }
.bars i:nth-child(11) { height: 78%; animation-delay: 0.55s; }
.bars i:nth-child(12) { height: 86%; animation-delay: 0.6s; }

.chart p {
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-align: center;
}

/* ─── Sections ─── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.section--alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section--pricing {
  padding-bottom: 5rem;
}

.section__head { margin-bottom: 2.5rem; }
.section__head--center { text-align: center; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section__head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section__head p {
  margin-top: 0.6rem;
  color: var(--text-muted);
  max-width: 520px;
}

.section__head--center p { margin-left: auto; margin-right: auto; }

/* ─── Cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}

.card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 168, 83, 0.08);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease-spring);
}

.card:hover .card__icon { transform: rotate(90deg) scale(1.1); }

.card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; position: relative; }
.card p { font-size: 0.875rem; color: var(--text-muted); position: relative; }

/* ─── Modül kataloğu ─── */
.section--modules {
  max-width: none;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 20%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--modules > .section__head,
.section--modules > .module-catalog,
.section--modules > .module-catalog__note {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.module-catalog {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.module-group {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(18, 21, 30, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.module-group__head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.module-group__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
  font-variant-numeric: tabular-nums;
}

.module-group__head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.module-group__head p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.55;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.module-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.module-card {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    transform 0.35s var(--ease-spring),
    border-color 0.25s,
    box-shadow 0.35s;
  overflow: hidden;
}

.module-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.module-card:hover::after { opacity: 1; }

.module-card--wide {
  grid-column: 1 / -1;
}

.module-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.module-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.module-card__icon[data-tone="gold"] {
  background: rgba(212, 168, 83, 0.18);
  color: var(--accent-light);
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.module-card__icon[data-tone="blue"] {
  background: rgba(96, 165, 250, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.module-card__icon[data-tone="teal"] {
  background: rgba(45, 212, 191, 0.12);
  color: #5eead4;
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.module-card__icon[data-tone="orange"] {
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
  border: 1px solid rgba(251, 146, 60, 0.25);
}

.module-card__icon[data-tone="green"] {
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.module-card__icon[data-tone="purple"] {
  background: rgba(167, 139, 250, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.module-card__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.module-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.module-card > p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.module-card ul {
  list-style: none;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.module-card li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.module-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0.7;
}

.module-catalog__note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  background: rgba(212, 168, 83, 0.06);
  border: 1px dashed rgba(212, 168, 83, 0.25);
}

.module-catalog__note strong {
  color: var(--accent-light);
}

.link-btn {
  display: inline;
  margin-left: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-btn:hover { color: var(--accent-light); }

/* ─── Tek paket fiyat ─── */
.price-single {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(212, 168, 83, 0.12), var(--bg-card) 45%);
  border: 1px solid rgba(212, 168, 83, 0.35);
  box-shadow:
    0 0 80px rgba(212, 168, 83, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.price-single__ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent, var(--accent-light), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ring-spin 8s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

.price-single__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  color: #1a1408;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.price-single h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-single__amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
  margin: 0.5rem 0;
}

.price-single__currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
}

.price-single__value {
  font-size: clamp(3.5rem, 12vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 20%, var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-single.is-loading .price-single__currency,
.price-single.is-loading .price-single__cents {
  display: none;
}

.price-single.is-loading .price-single__value {
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text-muted);
  animation: price-pulse 1.4s ease-in-out infinite;
}

.is-price-loading {
  color: var(--text-muted);
  animation: price-pulse 1.4s ease-in-out infinite;
}

@keyframes price-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.price-single__cents {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-top: 0.35rem;
}

.price-single__period {
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.price-single__features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-single__features li {
  padding: 0.45rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-single__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-single__calc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.price-single__calc strong {
  font-size: 1.25rem;
  color: var(--accent-light);
}

/* ─── İletişim / Demo formu ─── */
.section--contact {
  padding-top: 4rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.04), transparent 40%);
}

.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.contact-intro > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-perks {
  list-style: none;
  margin-bottom: 1.75rem;
}

.contact-perks li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-mail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  margin-bottom: 1.25rem;
}

.contact-mail:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.contact-mail__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-mail small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-mail strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--accent-light);
  font-weight: 600;
}

.contact-price-hint {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.contact-price-hint strong {
  color: var(--accent);
}

.contact-form-panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 83, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.demo-form__hint {
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin: -0.25rem 0 0;
}

.demo-form__status {
  min-height: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0;
}

.demo-form__status.is-error {
  color: #f87171;
}

.demo-form__status.is-success {
  color: #34d399;
}

.demo-form__status.is-loading {
  color: var(--accent);
}

.btn__spinner {
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(26, 20, 8, 0.25);
  border-top-color: #1a1408;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

.btn__spinner:not([hidden]) {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

/* ─── Demo modal ─── */
body.modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.demo-modal[hidden] {
  display: none !important;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.demo-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.25);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  animation: modal-in 0.35s var(--ease-spring);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.demo-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.demo-modal__close:hover {
  color: var(--text);
  border-color: rgba(212, 168, 83, 0.4);
}

.demo-modal__head {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.demo-modal__head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.25rem 0;
}

.demo-modal__head p {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ─── Davet modalı (6 sn) ─── */
.invite-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.invite-modal[hidden] {
  display: none !important;
}

.invite-modal.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.invite-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.invite-modal.is-visible .invite-modal__backdrop {
  opacity: 1;
}

.invite-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(22, 26, 36, 0.98), rgba(12, 14, 20, 0.98));
  border: 1px solid rgba(212, 168, 83, 0.28);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.55s var(--ease-spring);
}

.invite-modal.is-visible .invite-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.invite-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.invite-modal__close:hover {
  color: var(--text);
  border-color: rgba(212, 168, 83, 0.4);
}

.invite-modal__logo {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Eski harf ikonu */
.invite-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  color: #1a1408;
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.invite-modal__dialog .eyebrow {
  margin-bottom: 0.35rem;
}

.invite-modal__dialog h2 {
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.invite-modal__lead {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.invite-modal__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.invite-modal__perks li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.18);
}

.invite-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.invite-modal__foot {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.invite-modal__foot a {
  font-weight: 600;
  margin-left: 0.25rem;
}

@media (max-width: 480px) {
  .invite-modal {
    align-items: flex-end;
    padding: 0;
  }

  .invite-modal__dialog {
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.75rem 1.25rem 1.5rem;
    transform: translateY(100%);
  }

  .invite-modal.is-visible .invite-modal__dialog {
    transform: translateY(0);
  }
}

/* ─── CTA (legacy) ─── */
.cta {
  max-width: var(--max);
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.cta__inner {
  position: relative;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.14), rgba(18, 21, 30, 0.95));
  border: 1px solid rgba(212, 168, 83, 0.3);
  overflow: hidden;
}

.cta__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}

.cta h2 {
  position: relative;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta p {
  position: relative;
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.cta__email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-light) !important;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 999px;
  text-decoration: none !important;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}

.cta__email:hover {
  transform: scale(1.04);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  text-decoration: none !important;
}

.cta__email-icon {
  font-size: 1.25rem;
  animation: stat-bounce 2s ease-in-out infinite;
}

.cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ─── Footer ─── */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer a { font-weight: 600; }

.footer__copy {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .anim-fade-up { animation: none; opacity: 1; }
  .hero-scene .hero-food { animation: none; opacity: 0.75; transform: translate3d(-50%, -30px, 0) scale(0.85); }
  .hero-scene .hero-stars,
  .hero-scene .hero-nebula,
  .hero-scene .hero-steam span,
  .hero-scene .hero-orbit { animation: none; }
  .panel-demo__view { transition: none; }
  .panel-demo__anim.is-animating .panel-demo__bars i { animation: none; transform: scaleY(1); opacity: 0.85; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .price-single { padding: 2rem 1.25rem; }
  .module-grid,
  .module-grid--4 { grid-template-columns: 1fr; }
  .module-group { padding: 1.25rem; }
  .module-group__head { flex-direction: column; gap: 0.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .demo-form__row { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .hero__cta .btn { width: 100%; }
  .cta__email { font-size: 0.95rem; padding: 0.75rem 1rem; }
}
