:root {
  --ink: #0b1220;
  --navy: #101a2e;
  --accent: #1d4ed8;
  --accent-soft: #3b82f6;
  --paper: #f6f7f9;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.font-body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #eef1f5;
}
::-webkit-scrollbar-thumb {
  background: #1e3a8a;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1d4ed8;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1.5px;
  width: 0;
  background: #1d4ed8;
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: #0f172a;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1.5px;
  width: 0;
  background: #1d4ed8;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-size: 15px;
  transition: all 0.3s ease;
}
.soc-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #64748b;
}

.footer-link {
  color: #cbd5e1;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.footer-link:hover {
  color: #fff;
  padding-left: 6px;
}

.giant-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(148, 163, 184, 0.35);
  white-space: nowrap;
  transition:
    letter-spacing 0.6s ease,
    color 0.6s ease;
  cursor: default;
}
.giant-wordmark:hover {
  letter-spacing: 0.14em;
  color: rgba(59, 130, 246, 0.14);
  -webkit-text-stroke-color: rgba(59, 130, 246, 0.55);
}

.mm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 16, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.mobile-menu-open .mm-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.mm-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  background: #0b1220;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  overflow-y: auto;
}
.mobile-menu-open .mm-panel {
  transform: translateX(0);
}
.pachinkopl-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu-open .pachinkopl-mobile-menu {
  visibility: visible;
  pointer-events: auto;
}
.mm-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #e2e8f0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}
.mm-link:hover {
  background: rgba(59, 130, 246, 0.12);
  color: #fff;
}
.mm-link-sub {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  color: #94a3b8;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.mm-link-sub:hover {
  color: #fff;
  padding-left: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1d4ed8;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: #1d4ed8;
}
.eyebrow-light {
  color: #93c5fd;
}
.eyebrow-light::before {
  background: #60a5fa;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 12px 30px -10px rgba(29, 78, 216, 0.55);
}
.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(29, 78, 216, 0.65);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  background: #0b1220;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.btn-dark:hover {
  background: #16233c;
  transform: translateY(-2px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.hero-slide.is-active .hero-bg {
  transform: scale(1);
}
.hero-dot {
  width: 34px;
  height: 3px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 0.3s ease,
    width 0.3s ease;
  cursor: pointer;
}
.hero-dot.is-active {
  background: #fff;
  width: 52px;
}

.marquee {
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.accordion-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.accordion-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 4px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
.accordion-button:hover {
  color: #1d4ed8;
}
.accordion-button .acc-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    transform 0.3s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.accordion-item.is-open .accordion-button .acc-icon {
  transform: rotate(45deg);
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-item.is-open .accordion-body {
  max-height: 420px;
}

.roulette-wheel {
  border-radius: 9999px;
  background: repeating-conic-gradient(
    #0b1220 0deg 4.86deg,
    #16325f 4.86deg 9.73deg
  );
  background-color: #0b1220;
  box-shadow:
    inset 0 0 0 6px rgba(148, 163, 184, 0.2),
    inset 0 0 0 20px rgba(2, 6, 23, 0.92),
    0 0 0 10px rgba(148, 163, 184, 0.14),
    0 40px 90px -30px rgba(2, 6, 23, 0.9);
  animation: wheel-spin 90s linear infinite;
}
@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

.led-digit {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #93c5fd 55%, #1d4ed8 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(59, 130, 246, 0.35);
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background: #3b82f6;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.6);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.pulse-dot {
  animation: none;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(59, 130, 246, 0.7);
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.card-lift {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(11, 18, 32, 0.35);
}

.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-zoom:hover img {
  transform: scale(1.07);
}

.tier-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  transform-style: preserve-3d;
}
.tier-card:hover {
  transform: translateY(-10px) rotateX(4deg);
}
.tier-card.is-active {
  border-color: #1d4ed8;
  box-shadow: 0 30px 70px -25px rgba(29, 78, 216, 0.45);
}

.vinyl-disc {
  animation: vinyl-rotate 6s linear infinite;
}
@keyframes vinyl-rotate {
  to {
    transform: rotate(360deg);
  }
}

.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(380px, calc(100vw - 32px));
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #0b1220;
  color: #e2e8f0;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 20px 50px -18px rgba(2, 6, 23, 0.6);
  transform: translateY(16px);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast .toast-icon {
  color: #60a5fa;
  margin-top: 2px;
}
.toast.is-error {
  border-color: rgba(248, 113, 113, 0.5);
}
.toast.is-error .toast-icon {
  color: #f87171;
}

.field-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 13px 16px;
  font-size: 14px;
  color: #0b1220;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field-input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}
.field-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #ef4444;
}
.field-error.is-visible {
  display: block;
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}
.is-loading .spinner {
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  color: #0b1220;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px -18px rgba(2, 6, 23, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
#cookie-banner.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner .cookie-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #0b1220;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.cookie-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}
.cookie-btn:active {
  transform: scale(0.97);
}
.cookie-btn-accept {
  background: #0b1220;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #1d4ed8;
}
.cookie-btn-reject {
  background: #eef2f7;
  color: #0b1220;
}
.cookie-btn-reject:hover {
  background: #e2e8f0;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: inherit;
  transition: all 0.3s ease;
}
.step-item.is-active .step-dot {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.15);
}
.step-item.is-done .step-dot {
  background: #0b1220;
  border-color: #0b1220;
  color: #fff;
}

.tab-pill {
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.tab-pill.is-active {
  background: #0b1220;
  color: #fff;
  border-color: #0b1220;
}
.tab-pill-light.is-active {
  background: #fff;
  color: #0b1220;
  border-color: #fff;
}

.snap-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.snap-row::-webkit-scrollbar {
  display: none;
}
.snap-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.dish-tab {
  transition: all 0.25s ease;
}
.dish-tab.is-active {
  background: #0b1220;
  color: #fff;
  border-color: #0b1220;
}

.dish-panel {
  animation: dish-fade 0.5s ease;
}
@keyframes dish-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.text-balance {
  text-wrap: balance;
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-ghost,
  .btn-dark {
    width: 100%;
  }
  .giant-wordmark {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .vinyl-disc {
    animation: none;
  }
}

.legal-body p + p {
  margin-top: 0.875rem;
}
.legal-body ul {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-body ul li {
  position: relative;
  padding-left: 1.5rem;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: rgba(29, 78, 216, 0.15);
  box-shadow: inset 0 0 0 2px rgba(29, 78, 216, 0.55);
}
.legal-body a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(29, 78, 216, 0.35);
  text-underline-offset: 3px;
}
.legal-body a:hover {
  color: #1e40af;
}
.legal-body strong {
  color: #0f172a;
  font-weight: 600;
}
