@font-face {
  font-family: "Orbitron";
  src: url("media/fonts/Orbitron-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("media/fonts/Orbitron-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("media/fonts/Orbitron-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("media/fonts/Orbitron-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("media/fonts/Rajdhani-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("media/fonts/Rajdhani-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("media/fonts/Rajdhani-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("media/fonts/Rajdhani-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("media/fonts/Rajdhani-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Share Tech Mono";
  src: url("media/fonts/ShareTechMono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #020408;
  --bg-2: #050c14;
  --bg-3: #0a121d;
  --lime: #a4f957;
  --lime-2: #8fd93b;
  --violet: #635ae4;
  --violet-2: #8d88d8;
  --cyan: #00e5ff;
  --panel: rgba(14, 16, 24, 0.9);
  --border: rgba(168, 255, 62, 0.12);
  --border-strong: rgba(168, 255, 62, 0.24);
  --text: #e0f0e8;
  --muted: rgba(200, 230, 215, 0.55);
  --text-muted: rgba(200, 230, 215, 0.3);
  --grad: linear-gradient(90deg, #a4f957 0%, #9fdd74 24%, #9db9b0 50%, #8d88d8 72%, #635ae4 100%);
  --grad-t: linear-gradient(90deg, #a4f957 0%, #9fdd74 24%, #9db9b0 50%, #8d88d8 72%, #635ae4 100%);
  --grad-soft: linear-gradient(135deg, rgba(164, 249, 87, 0.14), rgba(99, 90, 228, 0.16));
  --font-head: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --max: 1240px;
  --corner: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  --bg-mx: 0;
  --bg-my: 0;
  --bg-scroll: 0;
  background:
    radial-gradient(circle at top right, rgba(99, 90, 228, 0.18), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(164, 249, 87, 0.11), transparent 24%),
    linear-gradient(180deg, #020408, #050c14 34%, #020408 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-color: var(--lime) var(--bg-2);
  scrollbar-width: thin;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  translate: calc(var(--bg-mx) * 8px) calc(var(--bg-my) * 8px);
}

.bg-canvas::before {
  content: "";
  position: absolute;
  inset: -22%;
  background:
    linear-gradient(135deg, rgba(4, 7, 16, 0.98), rgba(7, 10, 22, 0.94)),
    radial-gradient(ellipse 44% 38% at 18% 18%, rgba(96, 81, 237, 0.28), transparent 64%),
    radial-gradient(ellipse 40% 30% at 84% 18%, rgba(167, 255, 82, 0.16), transparent 68%),
    radial-gradient(ellipse 34% 28% at 22% 82%, rgba(167, 255, 82, 0.1), transparent 74%),
    radial-gradient(ellipse 32% 26% at 76% 76%, rgba(96, 81, 237, 0.18), transparent 70%);
  filter: saturate(118%);
  opacity: 1;
  animation: bgBaseDrift 18s linear infinite alternate;
}

@keyframes bgBaseDrift {
  0% { transform: translate3d(0, 0, 0) scale(1.02); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  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: 100% 3px, 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 0;
  height: 2px;
  background: var(--grad);
  box-shadow: 0 0 24px rgba(168, 255, 62, 0.45);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.008) 100%),
    rgba(4, 8, 14, 0.42);
  backdrop-filter: blur(16px) saturate(125%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.14);
}

.brand {
  width: 156px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(164, 249, 87, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.site-nav a {
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lime);
  border-color: rgba(168, 255, 62, 0.22);
  background: rgba(168, 255, 62, 0.05);
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 200ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--lime);
  border-color: rgba(168, 255, 62, 0.22);
  background: rgba(168, 255, 62, 0.05);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 190px;
  padding: 8px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.008) 100%),
    rgba(4, 8, 14, 0.92);
  backdrop-filter: blur(16px) saturate(125%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s 180ms;
  z-index: 400;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s 0s;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 150ms ease, background 150ms ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--lime);
  background: rgba(168, 255, 62, 0.06);
}

.nav-dropdown-menu a.active {
  color: var(--lime);
  background: rgba(168, 255, 62, 0.05);
  border-left: 2px solid var(--lime);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(168, 255, 62, 0.35);
  background: rgba(6, 6, 8, 0.82);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--lime);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 25px; }

body.nav-open .menu-toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(168, 255, 62, 0.35);
  background: rgba(6, 10, 23, 0.72);
  color: var(--lime);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 12px rgba(164, 249, 87, 0.08);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: rgba(164, 249, 87, 0.08);
  color: var(--lime);
}

/* Sections Layout */
.hero,
.section,
.site-footer {
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 132px;
  padding-bottom: 74px;
  overflow: hidden;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--lime);
  opacity: 0.5;
}

h1 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: var(--grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  filter: drop-shadow(0 0 30px rgba(99, 90, 228, 0.15));
}

.glow-text {
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

/* Comet cards */
.has-comet-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 38%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(140deg, rgba(164, 249, 87, 0.035) 0%, rgba(99, 90, 228, 0.035) 100%);
  clip-path: var(--corner);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.has-comet-card:hover {
  border-color: rgba(164, 249, 87, 0.28);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(99, 90, 228, 0.1);
}

.card-edge-comet {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.card-edge-comet::before,
.card-edge-comet::after {
  content: "";
  position: absolute;
  top: -30%;
  width: 2px;
  height: 34%;
  background: linear-gradient(180deg, rgba(164, 249, 87, 0) 0%, rgba(164, 249, 87, 0.9) 38%, rgba(164, 249, 87, 0.28) 100%);
  box-shadow: 0 0 12px rgba(164, 249, 87, 0.45);
  animation: cardEdgeComet 4.2s linear infinite;
  border-radius: 999px;
}

.card-edge-comet::before { left: 0; }
.card-edge-comet::after { right: 0; animation-delay: 2.1s; }

.card-edge-comet span,
.card-edge-comet strong {
  position: absolute;
  left: -18%;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, rgba(164, 249, 87, 0) 0%, rgba(164, 249, 87, 0.9) 38%, rgba(164, 249, 87, 0.28) 100%);
  box-shadow: 0 0 12px rgba(164, 249, 87, 0.45);
  animation: cardEdgeSweepHorizontal 4.2s linear infinite;
  border-radius: 999px;
}

.card-edge-comet span { top: 0; }
.card-edge-comet strong { bottom: 0; animation-delay: 2.1s; }

@keyframes cardEdgeComet {
  0% { top: -30%; opacity: 0; }
  10% { opacity: 1; }
  55% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

@keyframes cardEdgeSweepHorizontal {
  0% { left: -36%; opacity: 0; }
  10% { opacity: 1; }
  55% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Interactive Voucher lookup widget */
.voucher-lookup-widget {
  margin-top: 48px;
  width: 100%;
  max-width: 680px;
  padding: 24px;
}

.widget-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.widget-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.search-container {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.voucher-input-wrapper {
  position: relative;
  flex: 1;
}

.voucher-input {
  width: 100%;
  background: rgba(4, 7, 16, 0.8);
  border: 1px solid rgba(168, 255, 62, 0.2);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  padding: 12px 16px 12px 42px;
  outline: none;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.voucher-input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 12px rgba(164, 249, 87, 0.18);
  background: rgba(4, 7, 16, 0.95);
}

.search-icon-svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  transition: stroke 0.3s ease;
  pointer-events: none;
}

.voucher-input:focus + .search-icon-svg {
  stroke: var(--lime);
}

.btn-search {
  padding: 0 24px;
  background: var(--lime);
  border: 0;
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s ease;
  box-shadow: 0 0 16px rgba(164, 249, 87, 0.2);
}

.btn-search:hover {
  background: #b8ff73;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(164, 249, 87, 0.35);
}

.lookup-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.suggestion-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.suggestion-pill:hover {
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.03);
}

.lookup-result-area {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.status-placeholder {
  color: rgba(200, 230, 215, 0.35);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px 0;
}

.scanner-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.scanner-line {
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 10px var(--lime);
  animation: scanProgress 1.4s ease-in-out infinite alternate;
}

@keyframes scanProgress {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}

.scanner-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

/* Voucher Card Rendered */
.voucher-card {
  width: 100%;
  background: rgba(14, 18, 30, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  clip-path: var(--corner);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0, 229, 255, 0.08);
}

.voucher-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 229, 255, 0.05) 50%, transparent 52%);
  background-size: 100% 4px;
  pointer-events: none;
}

.voucher-card.status-active { border-color: rgba(164, 249, 87, 0.35); }
.voucher-card.status-active .status-badge { background: rgba(164, 249, 87, 0.12); color: var(--lime); border-color: rgba(164, 249, 87, 0.35); }
.voucher-card.status-allocated { border-color: rgba(0, 229, 255, 0.35); }
.voucher-card.status-allocated .status-badge { background: rgba(0, 229, 255, 0.12); color: var(--cyan); border-color: rgba(0, 229, 255, 0.35); }
.voucher-card.status-expired { border-color: rgba(99, 90, 228, 0.35); }
.voucher-card.status-expired .status-badge { background: rgba(99, 90, 228, 0.12); color: var(--violet-2); border-color: rgba(99, 90, 228, 0.35); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.card-title-group h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}

.card-title-group code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
}

.status-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 2px;
}

.card-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.card-detail-item {
  display: flex;
  flex-direction: column;
}

.card-detail-item label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-detail-item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.card-detail-item code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text);
}

.card-utility-group {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.card-utility-group label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.card-utility-list {
  margin: 0;
  padding: 0 0 0 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

.card-utility-list li {
  margin-bottom: 4px;
}

/* Sections general */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  background: var(--grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 0;
}

/* Grid Layouts */
.vouchers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.voucher-feature-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.card-topline span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
}

.card-topline .tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(164, 249, 87, 0.25);
  color: var(--lime);
  background: rgba(164, 249, 87, 0.04);
}

.voucher-feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.05em;
}

.voucher-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.voucher-specs {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.voucher-specs li {
  display: flex;
  flex-direction: column;
}

.voucher-specs li label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.voucher-specs li span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

/* Footer styling */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 60px;
  padding-bottom: 40px;
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(164, 249, 87, 0.1));
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.footer-brand small {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: block;
}

.footer-col h3 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 255, 62, 0.35);
  background: rgba(6, 10, 23, 0.8);
  color: var(--lime);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: rgba(164, 249, 87, 0.1);
  border-color: var(--lime);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    z-index: 600;
  }

  .site-header {
    z-index: 550;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    height: calc(100vh - 73px);
    height: calc(100dvh - 73px);
    z-index: 500;
    background: #020408;
    background-image: linear-gradient(180deg, rgba(164, 249, 87, 0.03) 0%, transparent 40%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 36px 24px;
    gap: 14px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-bottom: 1px solid rgba(164, 249, 87, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle {
    font-size: 1.2rem;
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    max-height: 0;
    background: rgba(4, 8, 14, 0.6);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    overflow: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
    max-height: 180px;
    padding: 4px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-dropdown-menu a {
    font-size: 1rem;
    text-align: center;
    padding: 10px 20px;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .vouchers-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .search-container {
    flex-direction: column;
    gap: 8px;
  }

  .btn-search {
    height: 46px;
    width: 100%;
  }

  .card-details {
    grid-template-columns: 1fr;
  }

  .voucher-specs {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/* Claim Form Specific Styles */
.form-card {
  width: 100%;
  max-width: 680px;
  padding: 34px;
  margin: 40px auto 80px;
  text-align: left;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(4, 7, 16, 0.85);
  border: 1px solid rgba(168, 255, 62, 0.15);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 12px rgba(164, 249, 87, 0.2);
  background: rgba(4, 7, 16, 0.98);
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-fieldset {
  border: 1px solid rgba(168, 255, 62, 0.12);
  padding: 24px;
  margin-bottom: 24px;
  clip-path: var(--corner);
  background: rgba(255, 255, 255, 0.01);
}

.form-fieldset legend {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 0 12px;
}

.form-disclaimer {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--violet-2);
  background: rgba(99, 90, 228, 0.08);
  border-left: 3px solid var(--violet);
  padding: 12px 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-submit-area {
  display: flex;
  justify-content: flex-end;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 30px;
  background: var(--lime);
  border: 0;
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 16px rgba(164, 249, 87, 0.2);
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background: #b8ff73;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(164, 249, 87, 0.35);
}

.form-feedback {
  margin-top: 20px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(164, 249, 87, 0.08);
  border: 1px solid rgba(164, 249, 87, 0.25);
  color: var(--lime);
}

.form-feedback.error {
  display: block;
  background: rgba(255, 94, 98, 0.08);
  border: 1px solid rgba(255, 94, 98, 0.25);
  color: #ff5e62;
}

.page-intro {
  margin-bottom: 30px;
  text-align: center;
}

.page-intro h2 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.2rem;
  background: var(--grad-t);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.page-intro p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
