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

:root {
  --bg: #f7f8f9;
  --bg-alt: #ffffff;
  --bg-dark: #000000;
  --bg-dark-soft: #111111;
  --text: #000000;
  --text-light: #666666;
  --text-white: #ffffff;
  --accent: #d1ff4f;
  --accent-hover: #bceb3b;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.1);
  --radius: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Space Mono", monospace;
  --max-w: 1240px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #eef4f9 0%, #f8fafc 30%, #eef3f7 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.subtitle {
  max-width: 640px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(7, 27, 45, 0.04);
  border: 1px solid rgba(7, 27, 45, 0.08);
  color: #10304b;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.6rem;
  padding: 0 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 16px 30px rgba(220, 255, 79, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  box-shadow: 0 18px 34px rgba(7, 27, 45, 0.18);
}

.btn-dark:hover {
  background: #0d2740;
}

.btn-ghost {
  background: rgba(7, 27, 45, 0.18);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  background: rgba(7, 27, 45, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(9, 24, 39, 0.12);
  color: var(--text);
}

.btn-outline:hover {
  border-color: #10304b;
  color: #10304b;
}

.btn .arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 0.94rem;
  transition: transform var(--transition);
}

.btn-dark .arrow,
.btn-ghost .arrow {
  background: rgba(255, 255, 255, 0.14);
}

.navbar {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.6rem;
  padding: 0 1.35rem;
  border-radius: 1.8rem;
  background: rgba(7, 27, 45, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(4, 20, 35, 0.08);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled .navbar-shell {
  background: rgba(7, 27, 45, 0.84);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 50px rgba(4, 20, 35, 0.22);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.95rem;
  background: rgba(220, 255, 79, 0.96);
  color: var(--bg-dark);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta .btn {
  min-height: 3rem;
  padding: 0 1.2rem;
  font-size: 0.74rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
  background: transparent;
}

.mobile-toggle span {
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text-white);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(0.44rem) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-0.44rem) rotate(-45deg);
}

.hero {
  padding-top: 14px;
}

.hero-shell {
  position: relative;
  height: 100svh;
  margin: 0 14px;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #1875c7 0%, #2f92e1 54%, #59b5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -10% -5% 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 24%), url("assets/hero-bg.png") center/cover;
  mix-blend-mode: screen;
  opacity: 0.22;
}

.hero-shell::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -8%;
  height: 34%;
  background:
    radial-gradient(circle at 15% 70%, rgba(255, 255, 255, 0.75), transparent 36%),
    radial-gradient(circle at 45% 60%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.62), transparent 30%),
    radial-gradient(circle at 88% 55%, rgba(255, 255, 255, 0.48), transparent 24%);
  filter: blur(38px);
  opacity: 0.94;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  padding: 7.2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 56rem;
}

.hero .label {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero h1 {
  margin: 1.2rem 0 1.4rem;
  color: var(--text-white);
  font-size: clamp(3rem, 6.3vw, 4.95rem);
  line-height: 0.92;
}

.hero h1 span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.hero .subtitle {
  margin: 0 auto 2.2rem;
  color: rgba(247, 251, 255, 0.88);
  max-width: 40rem;
  font-size: 0.98rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pass-swiper {
  width: 100%;
  padding: 60px 0;
  overflow: visible;
}

.pass-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.pass-swiper .swiper-slide {
  width: 280px;
  height: auto;
  transition: transform 0.3s ease;
}

.pass-swiper .swiper-slide-active {
  transform: scale(1.05);
  z-index: 10;
}

.hero-stage-item {
  width: 100%;
  height: 100%;
}

.wallet-pass {
  position: relative;
  width: 100%;
  aspect-ratio: 0.68;
  padding: 1rem 0.95rem 0.9rem;
  border-radius: 1.32rem;
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 40px rgba(8, 22, 37, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  overflow: hidden;
  color: var(--text-white);
  backdrop-filter: blur(10px);
}

.wallet-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.3), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 45%);
  pointer-events: none;
}

.wallet-pass::after {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.wallet-pass-top,
.wallet-pass h3,
.wallet-pass p,
.wallet-pass-meter,
.wallet-pass-meta,
.wallet-pass-barcode,
.wallet-pass-footer {
  position: relative;
  z-index: 1;
}

.wallet-pass-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wallet-pass-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.wallet-pass-badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.wallet-pass-code {
  opacity: 0.74;
}

.wallet-pass h3 {
  font-size: 1.22rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.wallet-pass p {
  min-height: 2.2rem;
  font-size: 0.68rem;
  line-height: 1.45;
  opacity: 0.86;
}

.wallet-pass-meter {
  height: 0.44rem;
  margin: 0.7rem 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.wallet-pass-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.48));
}

.wallet-pass-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.wallet-pass-chip {
  flex: 1;
  min-width: 0;
  padding: 0.32rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-mono);
  font-size: 0.44rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wallet-pass-barcode {
  height: 1.9rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.88));
  overflow: hidden;
}

.wallet-pass-barcode::before {
  content: "";
  position: absolute;
  inset: 0.35rem 0.65rem;
  background: repeating-linear-gradient(90deg, #081c31 0 2px, transparent 2px 4px, #081c31 4px 5px, transparent 5px 8px);
  opacity: 0.8;
}

.wallet-pass-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.44rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.76;
}

.wallet-pass.violet {
  background: linear-gradient(155deg, #9f71ff 0%, #6d45bf 45%, #241338 100%);
}

.wallet-pass.emerald {
  background: linear-gradient(155deg, #5fdc8a 0%, #2f8f5a 50%, #11281f 100%);
}

.wallet-pass.amber {
  background: linear-gradient(155deg, #f3c65e 0%, #b37a26 50%, #34200c 100%);
}

.wallet-pass.cyan {
  background: linear-gradient(155deg, #63d8ff 0%, #1b82bf 50%, #0d2537 100%);
}

.wallet-pass.rose {
  background: linear-gradient(155deg, #ff8fa7 0%, #c0497c 50%, #361326 100%);
}

.wallet-pass.slate {
  background: linear-gradient(155deg, #41536b 0%, #202d3f 54%, #0a131f 100%);
}

.wallet-pass.ink {
  background: linear-gradient(155deg, #1f2431 0%, #0f1726 50%, #05080f 100%);
}

.hero-rating {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.hero-rating p {
  margin-bottom: 0.55rem;
  font-size: 0.98rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(8, 28, 49, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.star {
  color: var(--accent);
  font-size: 1.05rem;
}

.star-copy {
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-ticker {
  padding: 1.4rem 0 0;
}

.ticker-shell {
  width: min(var(--max-w), calc(100% - 28px));
  margin: 0 auto;
  padding: 1.6rem 0 1.45rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 24, 39, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ticker-label {
  margin-bottom: 1rem;
  text-align: center;
  color: #5b7086;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-mask {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 1rem;
  animation: ticker 26s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: #f5f9fc;
  border: 1px solid rgba(9, 24, 39, 0.06);
  color: #15314b;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #a5ddff, #1d81cf);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: 6.5rem 0;
}

.section-header {
  max-width: 46rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header .label {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .subtitle {
  margin: 0 auto;
}

.features-grid,
.card-types-grid,
.pricing-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.type-card,
.pricing-card,
.showcase-image {
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.feature-card {
  padding: 2.1rem 1.9rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.type-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
}

.feature-card:hover {
  border-color: rgba(24, 117, 199, 0.2);
  box-shadow: 0 34px 80px rgba(11, 39, 65, 0.12);
}

.feature-icon {
  width: 3.65rem;
  height: 3.65rem;
  margin-bottom: 1.35rem;
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1875c7, #6cc2ff);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.how-it-works,
.testimonials,
.cta-section,
.footer {
  margin: 0 14px;
  border-radius: 2.4rem;
}

.how-it-works,
.testimonials {
  background: linear-gradient(180deg, #0a2137 0%, #081724 100%);
  color: var(--text-white);
  box-shadow: 0 40px 90px rgba(6, 18, 31, 0.18);
}

.how-it-works .label,
.testimonials .label {
  background: rgba(220, 255, 79, 0.12);
  border-color: rgba(220, 255, 79, 0.16);
  color: var(--accent);
}

.how-it-works .subtitle,
.testimonials .subtitle {
  color: rgba(247, 251, 255, 0.76);
}

.cta-section .subtitle {
  color: var(--text-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  padding: 2.25rem 1.8rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #c4ef37);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: rgba(247, 251, 255, 0.68);
  font-size: 0.94rem;
}

.showcase .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}

.showcase-image {
  padding: 1rem;
  overflow: hidden;
}

.showcase-image img {
  border-radius: calc(var(--radius-lg) - 0.55rem);
}

.showcase-content .label {
  margin-bottom: 1.1rem;
}

.showcase-content h2 {
  margin-bottom: 1rem;
}

.showcase-content .subtitle {
  margin-bottom: 1.8rem;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-size: 0.95rem;
}

.check-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(24, 117, 199, 0.08);
  color: #1875c7;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.type-card {
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.type-card-visual {
  display: grid;
  place-items: center;
  height: 14rem;
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.type-card-visual.purple {
  background: linear-gradient(140deg, #8854ff, #311661);
}

.type-card-visual.green {
  background: linear-gradient(140deg, #43be7a, #0f3a28);
}

.type-card-visual.amber {
  background: linear-gradient(140deg, #f4bd53, #4f2905);
}

.type-card-body {
  padding: 1.8rem;
}

.type-card-body h3 {
  margin-bottom: 0.55rem;
}

.type-card-body p {
  color: var(--text-light);
  font-size: 0.94rem;
}

.pricing-grid {
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 2.35rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card.featured {
  border-color: rgba(24, 117, 199, 0.18);
  box-shadow: 0 38px 80px rgba(11, 39, 65, 0.15);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 0.45rem;
}

.price-desc {
  color: var(--text-light);
  font-size: 0.92rem;
}

.price {
  margin: 1.1rem 0 1.4rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.94rem;
}

.check {
  color: #1875c7;
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.testimonial-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(220, 255, 79, 0.18);
}

.testimonial-stars {
  margin-bottom: 0.95rem;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
}

.testimonial-text {
  margin-bottom: 1.45rem;
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #5dc9ff);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 0.92rem;
}

.testimonial-info .role {
  color: rgba(247, 251, 255, 0.56);
  font-size: 0.8rem;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: inset 0 1px 0 var(--border), 0 40px 90px rgba(0, 0, 0, 0.04);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/cta-bg.png") center/cover;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  text-align: center;
}

.cta-section h2 {
  max-width: 44rem;
  margin: 1rem auto 1rem;
  color: var(--bg-dark);
}

.cta-section .subtitle {
  margin: 0 auto 2.35rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  padding: 5.3rem 0 2rem;
  margin-top: 1.25rem;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #061523 0%, #081b2d 100%);
  color: var(--text-white);
  box-shadow: 0 30px 80px rgba(4, 15, 26, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 19rem;
  margin-bottom: 1.5rem;
  color: rgba(247, 251, 255, 0.66);
  font-size: 0.94rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-white);
  padding: 0.9rem 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(247, 251, 255, 0.34);
}

.newsletter-form button {
  min-height: 2.9rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color var(--transition), transform var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: rgba(247, 251, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(247, 251, 255, 0.74);
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.45);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom-links a {
  color: rgba(247, 251, 255, 0.45);
  transition: color var(--transition);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.2, 1, 0.3, 1), transform 0.85s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 1080px) {
  .features-grid,
  .card-types-grid,
  .pricing-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase .container,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-image {
    order: -1;
  }

  .hero-stage {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.active {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: rgba(7, 27, 45, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 40px rgba(4, 20, 35, 0.25);
  }

  .nav-links.active a {
    color: var(--text-white);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--max-w), calc(100% - 28px));
  }

  .hero-shell,
  .how-it-works,
  .testimonials,
  .cta-section,
  .footer {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 1.9rem;
  }

  .ticker-shell {
    width: calc(100% - 20px);
    border-radius: 1.6rem;
  }

  .section {
    padding: 4.8rem 0;
  }

  .hero-inner {
    min-height: 100%;
    height: 100%;
    padding: 7.2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero .subtitle,
  .hero-rating p {
    font-size: 0.98rem;
  }

  .hero-shell {
    height: calc(100svh - 20px);
    min-height: 760px;
  }

  .hero-stage {
    height: 250px;
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .features-grid,
  .card-types-grid,
  .pricing-grid,
  .testimonials-grid,
  .steps-grid,
  .showcase .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured::before {
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
  }

  .cta-section .container {
    padding: 5rem 0;
  }

  .cta-buttons,
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn,
  .hero-buttons .btn {
    width: min(100%, 21rem);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .navbar-shell {
    min-height: 4.2rem;
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .logo-icon {
    width: 2.3rem;
    height: 2.3rem;
  }

  .hero-shell {
    min-height: 700px;
  }

  .hero-stage {
    height: 210px;
  }

  .wallet-pass h3 {
    font-size: 1rem;
  }

  .wallet-pass p {
    min-height: 1.8rem;
    font-size: 0.6rem;
  }

  .stars {
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
  }

  .star-copy {
    font-size: 0.6rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 1.5rem;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
  width: 100%;
}

.bento-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.bento-card.card-large {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
  align-items: center;
}

.bento-card.card-tall {
  grid-column: span 1;
  grid-row: span 2;
  justify-content: center;
}

.bento-card.card-wide {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row-reverse;
  align-items: center;
}

.bento-card.card-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
}

.bento-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.stat-countup {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bg-dark);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 8px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--border);
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.bento-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .bento-card.card-large,
  .bento-card.card-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.card-large,
  .bento-card.card-tall,
  .bento-card.card-wide,
  .bento-card.card-medium {
    grid-column: span 1;
    grid-row: auto;
  }
}

/* Pass Types Stack */
.pass-types-stack {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.pass-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.pass-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pass-row:nth-child(even) {
  flex-direction: row-reverse;
}

.pass-row-content {
  flex: 1;
}

.pass-row-content .label {
  margin-bottom: 1rem;
}

.pass-row-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pass-row-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pass-row-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 400px;
}

.pass-row-visual .wallet-pass {
  transform: scale(1.1);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
  .pass-row, .pass-row:nth-child(even) {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  .pass-row-visual {
    width: 100%;
    padding: 2rem;
  }
}

/* Bento Box Colors */
.bento-blue {
  background: linear-gradient(135deg, #1875c7, #2f92e1);
  color: var(--text-white);
  border: none;
}
.bento-blue h3, .bento-blue p, .bento-blue .feature-icon {
  color: var(--text-white);
}
.bento-blue .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.bento-lime {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
}
.bento-lime h3, .bento-lime p {
  color: var(--bg-dark);
}
.bento-lime .feature-icon {
  background: var(--bg-alt);
  border-color: rgba(0,0,0,0.1);
  color: var(--bg-dark);
}

.bento-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  border: none;
}
.bento-dark h3 {
  color: var(--text-white);
}
.bento-dark p {
  color: rgba(255,255,255,0.7);
}
.bento-dark .feature-icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-white);
}

/* Pass Grid System */
.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.pass-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.pass-tall {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 500px;
}
.pass-short {
  grid-column: 2;
  min-height: 280px;
}
.pass-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pass-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.pass-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 80%;
}
.btn-learn-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text);
  margin-top: auto;
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 999px;
  width: max-content;
  transition: var(--transition);
}
.btn-learn-more:hover {
  background: var(--text);
  color: var(--bg-alt);
}
.pass-graphic {
  position: absolute;
  right: -20px;
  bottom: -20px;
  opacity: 0.9;
  pointer-events: none;
}
.pass-tall .pass-graphic {
  right: 20px;
  bottom: 20px;
}

/* Graphic Mockups */
.mini-pass {
  width: 140px;
  height: 180px;
  background: var(--bg-alt);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  transform: rotate(-5deg);
}
.mini-pass.pass-back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  background: var(--bg-dark);
  transform: rotate(5deg);
  opacity: 0.8;
}
.mp-head { height: 20px; background: var(--bg); border-radius: 6px; }
.mp-body { height: 60px; background: var(--bg); border-radius: 6px; }
.mp-foot { flex: 1; background: var(--accent); border-radius: 6px; }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 160px;
  height: 120px;
  background: var(--bg-alt);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 16px;
  transform: rotate(-3deg);
}
.mini-chart .bar {
  flex: 1;
  background: var(--bg);
  border-radius: 4px;
}

.mini-metrics {
  width: 160px;
  background: var(--bg-alt);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 16px;
  transform: rotate(3deg);
}
.mini-metrics .m-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.mini-metrics .pos {
  font-size: 0.8rem;
  color: #10b981;
}
.mini-metrics .m-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-block;
}

@media (max-width: 900px) {
  .pass-grid {
    grid-template-columns: 1fr;
  }
  .pass-tall, .pass-short {
    grid-column: 1;
  }
}

/* Swiper Hover Animation */
.pass-swiper .swiper-slide {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.pass-swiper .swiper-slide:hover {
  transform: scale(1.06) !important;
  z-index: 100 !important;
}
.pass-swiper .wallet-pass {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.pass-swiper .swiper-slide:hover .wallet-pass {
  box-shadow: 0 24px 50px rgba(0,0,0,0.15);
}

/* Workflow Accordion */
.workflow-accordion {
  display: flex;
  gap: 16px;
  height: 540px;
}
.workflow-panel {
  flex: 1;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.workflow-panel:hover, .workflow-panel.panel-active {
  flex: 2.2;
}
.workflow-panel:hover {
  flex: 2.2 !important;
}
.workflow-accordion:hover .workflow-panel.panel-active:not(:hover) {
  flex: 1;
}

.panel-content h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.panel-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
}
.panel-desc p {
  overflow: hidden;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.5;
}
.workflow-panel:hover .panel-desc, .workflow-panel.panel-active .panel-desc {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 12px;
}
.workflow-accordion:hover .workflow-panel.panel-active:not(:hover) .panel-desc {
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
}

.panel-visual {
  flex: 1;
  border-radius: var(--radius);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.workflow-panel:hover .panel-visual, .workflow-panel.panel-active .panel-visual {
  opacity: 1;
  transform: translateY(0);
}
.workflow-accordion:hover .workflow-panel.panel-active:not(:hover) .panel-visual {
  opacity: 0;
  transform: translateY(20px);
}
.panel-visual.bg-blue { background: linear-gradient(135deg, #1875c7, #2f92e1); }
.panel-visual.bg-lime { background: var(--accent); }
.panel-visual.bg-dark { background: var(--bg-dark); }

@media (max-width: 900px) {
  .workflow-accordion {
    flex-direction: column;
    height: auto;
  }
  .workflow-panel {
    min-height: 120px;
  }
  .workflow-panel:hover, .workflow-panel.panel-active {
    min-height: 400px;
  }
}

.btn:hover .arrow {
  transform: rotate(45deg);
}

.cta-section .label {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text);
}

/* Wallet Pass Image Integration */
.wallet-pass-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-radius: 0 0 calc(1.32rem - 2px) calc(1.32rem - 2px);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.wallet-pass.has-image {
  padding-bottom: 0;
}

.wallet-pass.has-image .wallet-pass-footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-weight: 500;
}
.wallet-pass.has-image .wallet-pass-barcode {
  display: none;
}
.wallet-pass-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Image Testimonials */
.testimonial-card.image-card {
  padding: 0;
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: none;
}
.testimonial-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.testimonial-card.image-card .testimonial-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  width: 100%;
}
.testimonial-card.image-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.testimonial-card.image-card p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}
.testimonial-card.image-card .testimonial-author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
