:root {
  --bg: #0a0a0a;
  --card: #141414;
  --orange: #ff5b1f;
  --orange-2: #ff7a3d;
  --muted: #9a9a9a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.card {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
}

.chip {
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.chip .dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #262626;
  border-radius: 999px;
  font-size: 13px;
  color: #ddd;
  background: #111;
}

.pill .pdot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #666;
  display: inline-block;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s, background 0.3s;
}

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

.arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.arrow-white {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 14px;
}

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

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.index-num {
  color: #fff;
  opacity: 0.85;
  font-weight: 700;
  font-size: 13px;
}

.card-hover {
  transition: transform 0.5s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
}

.price-card {
  background: #161616;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.price-card.pro {
  background: linear-gradient(180deg, #ff5b1f, #e0430e);
  color: #fff;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

.pro .check {
  background: rgba(255, 255, 255, 0.25);
}

#pinnedSection {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#pinnedOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8a4c 0%, #ff5b1f 45%, #7a1e08 100%);
  z-index: 5;
  will-change: clip-path, opacity;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.marquee-track {
  display: inline-flex;
  gap: 64px;
  padding: 22px 0;
  animation: scroll 30s linear infinite;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #efe7dd;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.nav-link {
  font-size: 14px;
  color: #f2f2f2;
}

.nav-link:hover {
  color: var(--orange);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,91,31,0.85) 0%, rgba(255,91,31,0.55) 40%, rgba(255,91,31,0.1) 70%, transparent 100%);
}

.stroke-num {
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  color: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

/* Navbar — capsule on scroll */
#mainNav.scrolled {
  max-width: min(800px, calc(100% - 48px));
  border-radius: 999px;
  padding: 8px 24px;
  top: 12px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* Hamburger active state */
#menuToggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
#menuToggle.active span:nth-child(2) {
  opacity: 0;
}
#menuToggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile menu open state (override Tailwind translate-x-full) */
#mobileMenu.open {
  transform: translateX(0);
}
