.voucher-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 63, 252, 0.3), transparent 34%),
    radial-gradient(circle at 10% 26%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--color-bg);
}

.brand-nowrap {
  white-space: nowrap;
}

.voucher-hero {
  position: relative;
  min-height: 100vh;
  padding: 190px 40px 70px;
  overflow: hidden;
}

.voucher-hero-inner,
.voucher-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.voucher-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 34px;
}

.voucher-kicker,
.voucher-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent);
}

.voucher-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.voucher-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.voucher-hero-copy p,
.voucher-section-heading p,
.voucher-final-cta p {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.voucher-hero-actions,
.voucher-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.voucher-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: var(--radius-link);
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.voucher-button-primary {
  background-color: var(--color-accent);
  color: var(--color-text-on-accent);
  box-shadow: 0 0 28px rgba(183, 63, 252, 0.32);
}

.voucher-button-primary:hover {
  box-shadow: 0 0 28px rgba(183, 63, 252, 0.62);
}

.voucher-button-secondary {
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.voucher-console {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(31, 29, 29, 0.96), rgba(13, 13, 13, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46), 0 0 60px rgba(183, 63, 252, 0.2);
  overflow: hidden;
}

.voucher-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
}

.voucher-console-top {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.voucher-console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.voucher-console-top span:first-child {
  background-color: var(--color-accent);
}

.voucher-console-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.voucher-console-grid div,
.voucher-metrics div,
.voucher-usecase-grid article {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.voucher-console-grid div {
  padding: 18px;
}

.voucher-console-grid span,
.voucher-metrics span,
.voucher-metrics small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.voucher-console-grid strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
}

.voucher-console-line {
  position: relative;
  height: 1px;
  margin: 22px 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.12);
}

.voucher-console-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background-color: var(--color-accent);
  animation: voucher-scan 2.8s ease-in-out infinite;
}

.voucher-console p {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.voucher-orbit {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
}

.voucher-orbit span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: voucher-orbit 14s linear infinite;
}

.voucher-orbit span:nth-child(1) {
  width: 540px;
  height: 540px;
  right: -150px;
  top: 130px;
}

.voucher-orbit span:nth-child(2) {
  width: 760px;
  height: 760px;
  left: -260px;
  top: 210px;
  animation-duration: 22s;
}

.voucher-orbit span:nth-child(3) {
  width: 340px;
  height: 340px;
  left: 46%;
  top: 130px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.voucher-signal-row {
  position: relative;
  z-index: 1;
  width: calc(100% + 80px);
  margin: 70px -40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.04);
}

.voucher-signal-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 16px 0;
  animation: voucher-marquee 34s linear infinite;
}

.voucher-signal-track span {
  padding: 8px 18px;
  border-radius: 999px;
  background-color: rgba(183, 63, 252, 0.14);
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.voucher-section {
  padding: 100px 40px;
}

.voucher-section-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 42px;
}

.voucher-section-heading h2,
.voucher-rules-panel h2,
.voucher-final-cta h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.voucher-offers,
.voucher-usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.voucher-offer-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.voucher-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 63, 252, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36), 0 0 34px rgba(183, 63, 252, 0.2);
}

.voucher-card-index {
  display: block;
  margin-bottom: 54px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-accent);
}

.voucher-offer-card h3,
.voucher-step h3,
.voucher-usecase-grid h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.16;
  color: var(--color-text);
}

.voucher-offer-card p,
.voucher-step p,
.voucher-rules-panel p,
.voucher-usecase-grid p,
.voucher-offer-card li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.voucher-offer-card p {
  margin: 18px 0 22px;
}

.voucher-offer-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voucher-offer-card li {
  padding-left: 18px;
  position: relative;
}

.voucher-offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.voucher-dark-band {
  max-width: none;
  padding: 40px;
  background: linear-gradient(90deg, rgba(183, 63, 252, 0.24), rgba(255, 255, 255, 0.04), rgba(183, 63, 252, 0.18));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.voucher-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}

.voucher-metrics div {
  padding: 22px;
}

.voucher-metrics strong {
  display: block;
  margin: 10px 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: var(--color-text);
}

.voucher-calculator {
  padding-top: 110px;
}

.voucher-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.voucher-project-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.voucher-project-option,
.voucher-calculator-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border-radius: 24px;
}

.voucher-project-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 132px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.voucher-project-option:hover,
.voucher-project-option.is-active {
  transform: translateY(-3px);
  border-color: rgba(183, 63, 252, 0.72);
  box-shadow: 0 0 36px rgba(183, 63, 252, 0.18);
}

.voucher-project-option.is-active {
  background: linear-gradient(135deg, rgba(183, 63, 252, 0.22), rgba(255,255,255,0.055));
}

.voucher-project-option span,
.voucher-project-option small,
.voucher-result-card span,
.voucher-result-details span,
.voucher-calculator-panel label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

.voucher-project-option strong {
  margin: 10px 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
}

.voucher-calculator-panel {
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(183, 63, 252, 0.36), transparent 36%),
    linear-gradient(180deg, rgba(31, 29, 29, 0.96), rgba(13, 13, 13, 0.95));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.voucher-calculator-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}

.voucher-calculator-panel > * {
  position: relative;
  z-index: 1;
}

.voucher-company-size {
  width: 100%;
  min-height: 58px;
  margin: 10px 0 18px;
  padding: 0 18px;
  border: 1px solid rgba(183, 63, 252, 0.42);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}

.voucher-company-size:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(183, 63, 252, 0.16);
}

.voucher-result-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(183, 63, 252, 0.28), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(183, 63, 252, 0.38);
}

.voucher-result-card strong {
  display: block;
  margin: 12px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--color-text);
}

.voucher-result-card p,
.voucher-calculator-note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.voucher-result-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.voucher-result-details div {
  padding: 18px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voucher-result-details strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-text);
}

.voucher-calculator-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
}

.voucher-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.voucher-step {
  position: relative;
  padding: 24px;
  min-height: 280px;
  border-radius: 28px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.voucher-step span {
  display: inline-flex;
  margin-bottom: 52px;
  font-family: var(--font-heading);
  color: var(--color-accent);
}

.voucher-step p {
  margin: 18px 0 0;
}

.voucher-rules-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(183, 63, 252, 0.24), rgba(255, 255, 255, 0.05)),
    var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.voucher-rules-panel h2 {
  margin-top: 18px;
}

.voucher-rules-panel p {
  margin: 18px 0 0;
}

.voucher-rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voucher-rules-list p {
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  background-color: rgba(13, 13, 13, 0.44);
}

.voucher-rules-list strong {
  color: var(--color-accent);
}

.voucher-usecase-grid article {
  padding: 24px;
  min-height: 210px;
}

.voucher-usecase-grid p {
  margin: 16px 0 0;
}

.voucher-final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 90px 40px;
  text-align: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 63, 252, 0.55), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.voucher-final-cta h2,
.voucher-final-cta p,
.voucher-final-cta .voucher-button {
  position: relative;
  z-index: 1;
}

.voucher-final-orb {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 63, 252, 0.38), transparent 65%);
  animation: voucher-float 8s ease-in-out infinite;
}

[data-voucher-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes voucher-scan {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

@keyframes voucher-orbit {
  from { transform: rotate(0deg) translateX(10px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}

@keyframes voucher-float {
  0%, 100% { transform: translate3d(-20px, 8px, 0) scale(1); }
  50% { transform: translate3d(20px, -12px, 0) scale(1.08); }
}

@media (max-width: 1100px) {
  .voucher-hero-inner,
  .voucher-rules-panel,
  .voucher-calculator-grid {
    grid-template-columns: 1fr;
  }

  .voucher-offers,
  .voucher-timeline,
  .voucher-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .voucher-hero {
    min-height: auto;
    padding: 140px 16px 50px;
  }

  .voucher-section {
    padding: 64px 16px;
  }

  .voucher-hero h1 {
    font-size: 38px;
  }

  .voucher-hero-copy p,
  .voucher-final-cta p {
    font-size: 16px;
  }

  .voucher-console-grid,
  .voucher-offers,
  .voucher-timeline,
  .voucher-usecase-grid,
  .voucher-metrics,
  .voucher-result-details {
    grid-template-columns: 1fr;
  }

  .voucher-offer-card,
  .voucher-step {
    min-height: auto;
  }

  .voucher-card-index,
  .voucher-step span {
    margin-bottom: 32px;
  }

  .voucher-dark-band {
    padding: 30px 16px;
  }

  .voucher-rules-panel,
  .voucher-final-cta,
  .voucher-calculator-panel {
    padding: 28px;
    border-radius: 26px;
  }

  .voucher-project-option strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
