/* ===== Base ===== */
:root {
  --bg: #07080c;
  --bg-2: #0c0e15;
  --surface: #11141d;
  --surface-2: #161a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8ebf2;
  --text-dim: #9aa3b2;
  --text-faint: #6b7385;
  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;
  --grad: linear-gradient(135deg, #7c5cff 0%, #22d3ee 50%, #f472b6 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid #b8a8ff;
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Keyframes ===== */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
}
@keyframes drift {
  0%   { transform: translate(-50%, 0) rotate(0deg); }
  50%  { transform: translate(-48%, 18px) rotate(2deg); }
  100% { transform: translate(-50%, 0) rotate(0deg); }
}
@keyframes float-y {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-6px); }
}
@keyframes shine {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ===== Background atmosphere ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.bg-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  background:
    radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.35), transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(34, 211, 238, 0.25), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.20), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: drift 18s ease-in-out infinite;
  will-change: transform;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 8, 12, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--easing), background 0.3s var(--easing);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 8, 12, 0.85);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--grad);
  color: #06070b;
  font-weight: 800;
  margin-right: 6px;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
}
.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 8px 20px -6px rgba(124, 92, 255, 0.6);
}
.logo-text { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s var(--easing);
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--easing), opacity 0.25s var(--easing);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--easing), background 0.2s var(--easing),
              border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
  white-space: nowrap;
}
.btn-primary {
  position: relative;
  background: var(--grad);
  color: #06070b;
  box-shadow: 0 10px 30px -10px rgba(124, 92, 255, 0.55);
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px rgba(124, 92, 255, 0.7); }
.btn-primary:hover::after { animation: shine 0.9s var(--easing) forwards; }
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.28); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
  padding: 10px 18px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); }

/* ===== Hero ===== */
.hero {
  padding: 90px 0 110px;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
  animation: pulse-dot 2.4s var(--easing) infinite;
}
.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 26px;
  max-width: 980px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 70px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
}
.stat {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: transform 0.3s var(--easing), border-color 0.3s var(--easing), background 0.3s var(--easing);
}
.stat:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-label {
  color: var(--text-faint);
  font-size: 13px;
}

/* ===== Sections ===== */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(124, 92, 255, 0.10), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(34, 211, 238, 0.08), transparent 60%);
  pointer-events: none;
}
.section-cta { padding: 90px 0 130px; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
  padding: 4px 0;
}
.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 12px;
}
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-lead {
  color: var(--text-dim);
  font-size: 17px;
  margin: 12px 0 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 0 18px;
}
.about-text strong { color: var(--text); font-weight: 600; }

/* ===== Service cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  transition: transform 0.3s var(--easing), border-color 0.3s var(--easing), background 0.3s var(--easing);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--easing);
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.14);
  color: #b8a8ff;
  margin-bottom: 18px;
  transition: transform 0.4s var(--easing), background 0.3s var(--easing), color 0.3s var(--easing);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.5s var(--easing);
}
.card:hover .card-icon {
  transform: translateY(-2px);
  background: rgba(124, 92, 255, 0.22);
  color: #d8ccff;
}
.card:hover .card-icon svg { transform: rotate(8deg) scale(1.08); }
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 0;
}

/* ===== Products ===== */
.product-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  border: 1px solid rgba(124, 92, 255, 0.28);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(34, 211, 238, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}
.product-hero-content { display: flex; flex-direction: column; gap: 14px; }
.product-hero-content .product-badge { align-self: flex-start; }
.product-hero-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
}
.product-hero-content p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
  max-width: 520px;
}
.product-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.product-hero-visual {
  display: grid;
  place-items: center;
  min-height: 220px;
  position: relative;
}
.ticket-shape {
  --notch: 16px;
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 44px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1f2e 0%, #11141d 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 30px 60px -25px rgba(124, 92, 255, 0.55);
  transform: rotate(-6deg);
  transition: transform 0.4s var(--easing);
  -webkit-mask:
    radial-gradient(circle at 50% 0, transparent var(--notch), #000 calc(var(--notch) + 0.5px)) top / 100% 50% no-repeat,
    radial-gradient(circle at 50% 100%, transparent var(--notch), #000 calc(var(--notch) + 0.5px)) bottom / 100% 50% no-repeat;
          mask:
    radial-gradient(circle at 50% 0, transparent var(--notch), #000 calc(var(--notch) + 0.5px)) top / 100% 50% no-repeat,
    radial-gradient(circle at 50% 100%, transparent var(--notch), #000 calc(var(--notch) + 0.5px)) bottom / 100% 50% no-repeat;
}
.ticket-shape { animation: float-y 5s ease-in-out infinite; }
.product-hero:hover .ticket-shape {
  animation: none;
  transform: rotate(-3deg) translateY(-4px);
}
.ticket-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(124, 92, 255, 0.45));
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--easing), border-color 0.3s var(--easing);
  overflow: hidden;
}
.product:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.product-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.18);
  color: #c4b5ff;
  border: 1px solid rgba(124, 92, 255, 0.35);
}
.product-stores {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.store-badge-android { background: rgba(34, 211, 238, 0.10); color: #92e6f1; border-color: rgba(34, 211, 238, 0.3); }

.product h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin: 4px 0 0;
  letter-spacing: -0.02em;
}

.product-desc {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
  flex: 1;
}
.product-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.product-tags li {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: background 0.2s var(--easing), color 0.2s var(--easing), border-color 0.2s var(--easing);
}
.product-tags li:hover {
  background: rgba(124, 92, 255, 0.12);
  color: #c4b5ff;
  border-color: rgba(124, 92, 255, 0.3);
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--easing), border-color 0.2s var(--easing), gap 0.2s var(--easing);
  align-self: flex-start;
}
.product-link:hover {
  color: #c4b5ff;
  border-bottom-color: rgba(196, 181, 255, 0.6);
  gap: 10px;
}
.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}

.product-video-el {
  display: block;
  margin: 4px auto 0;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
}

.product-wide {
  grid-column: span 2;
}
.product-wide h3 { font-size: 26px; }

.desktop-mockup {
  margin: 8px 0 2px;
}
.desktop-frame {
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #1a1d27, #11141d);
  box-shadow:
    0 30px 60px -25px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  transition: transform 0.4s var(--easing);
}
.product:hover .desktop-frame { transform: translateY(-3px); }
.desktop-frame img { transition: transform 0.6s var(--easing); }
.product:hover .desktop-frame img { transform: scale(1.012); }
.desktop-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #1d2030, #161a26);
}
.desktop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.desktop-dot--r { background: #ff5f57; }
.desktop-dot--y { background: #febc2e; }
.desktop-dot--g { background: #28c840; }
.desktop-url {
  margin-left: 14px;
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  max-width: 260px;
  margin-right: 28px;
}
.desktop-frame img {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f6f8;
}

.product-mockup {
  display: flex;
  justify-content: center;
  margin: 6px 0 2px;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 220px;
  padding: 10px 10px 12px;
  background: linear-gradient(160deg, #2b2f3a 0%, #14171f 70%, #0c0f17 100%);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 60px -25px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.4s var(--easing);
}
.product:hover .phone-frame {
  transform: translateY(-4px) rotate(-1deg) scale(1.015);
}
.phone-frame img { transition: transform 0.6s var(--easing); }
.product:hover .phone-frame img { transform: scale(1.02); }
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  background: #000;
}

/* ===== CTA ===== */
.cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px;
  border-radius: 28px;
  border: 1px solid rgba(124, 92, 255, 0.25);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(124, 92, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(34, 211, 238, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  font-weight: 700;
}
.cta-sub {
  color: var(--text-dim);
  font-size: 16px;
  margin: 0;
  max-width: 420px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  justify-self: end;
  min-width: 240px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 8, 12, 0.6);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-faint);
  font-size: 14px;
  margin: 14px 0 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.2s var(--easing);
}
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-prr {
  display: flex;
  justify-content: center;
  padding-top: 4px;
  padding-bottom: 16px;
}
.footer-prr a {
  display: block;
  width: 100%;
  max-width: 460px;
}
.footer-prr img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Legal pages ===== */
.legal {
  padding: 90px 0 80px;
  position: relative;
  z-index: 1;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 12px 0 12px;
  font-weight: 700;
}
.legal .legal-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 4px 0;
}
.legal .legal-meta {
  color: var(--text-faint);
  font-size: 13.5px;
  margin: 0 0 36px;
}
.legal h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 38px 0 12px;
  font-weight: 600;
}
.legal h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 17px;
  margin: 24px 0 10px;
  font-weight: 600;
  color: var(--text);
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal p { margin: 0 0 14px; }
.legal a {
  color: #c4b5ff;
  border-bottom: 1px solid rgba(196, 181, 255, 0.3);
  transition: border-color 0.2s var(--easing);
}
.legal a:hover { border-bottom-color: #c4b5ff; }
.legal ul, .legal ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 14.5px;
}
.legal-table th, .legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: var(--text-dim);
}
.legal-table th {
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 13, 19, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--easing), opacity 0.4s var(--easing);
}
.cookie-banner.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.cookie-text a {
  color: #c4b5ff;
  border-bottom: 1px solid rgba(196, 181, 255, 0.4);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn { padding: 9px 16px; font-size: 13.5px; }

@media (max-width: 720px) {
  .cookie-banner { padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .product-wide { grid-column: span 2; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; }
  .product-wide { grid-column: auto; }
  .product-hero { grid-template-columns: 1fr; padding: 36px; gap: 28px; }
  .product-hero-visual { min-height: 200px; }
  .product-hero-content h3 { font-size: clamp(30px, 6vw, 40px); }
  .cta { grid-template-columns: 1fr; padding: 40px; }
  .cta-actions { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }

  .nav-links {
    position: absolute;
    inset: 64px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(11, 13, 19, 0.97);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--easing), transform 0.25s var(--easing);
  }
  .nav-links.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); }
  .nav-links .btn-ghost { margin-top: 6px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 72px; }
  .hero-cta { margin-bottom: 48px; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  .cards { grid-template-columns: 1fr; }
  .product { padding: 26px; }
  .product h3 { font-size: 22px; }
  .product-hero { padding: 28px; border-radius: 22px; }
  .ticket-shape { max-width: 280px; padding: 36px 28px; }
  .ticket-logo { max-width: 140px; }
  .cta { padding: 32px; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .legal h2 { font-size: 19px; }
  .legal h1 { font-size: clamp(28px, 8vw, 40px); }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(34px, 9vw, 44px); }
  .footer-cols { grid-template-columns: 1fr; }
  .product-hero-cta .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition-delay: 0ms !important; }
  .ticket-shape { animation: none; }
  .bg-glow { animation: none; }
}
