@font-face {
  font-family: "Vodafone";
  src: url("./assets/fonts/vodafone-light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Vodafone";
  src: url("./assets/fonts/vodafone-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vodafone";
  src: url("./assets/fonts/vodafone-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #e60000;
  --accent: #ff4040;
  --bg: #0a0a0a;
  --card: #151515;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --glow: 0 0 60px rgba(230, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Vodafone", "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(230, 0, 0, 0.32), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #040404 100%);
  max-width: 100%;
  overflow-x: clip;
}

img,
iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.14) 0%, rgba(230, 0, 0, 0) 68%);
  transform: translate(-50%, -50%);
  z-index: 2;
  mix-blend-mode: screen;
  will-change: transform;
}

.intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #020202;
  z-index: 30;
  overflow: hidden;
}

.intro__beam {
  position: absolute;
  inset: 50% -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px rgba(230, 0, 0, 0.7);
}

.intro__copy {
  position: relative;
  display: grid;
  gap: 0.2rem;
  text-align: center;
  font-family: "Vodafone", "Montserrat", sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro__copy .accent {
  color: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand__title,
.brand__subtitle,
.eyebrow,
.hero__title,
.section-heading h2,
.panel-title,
.reward-highlight__title,
.stat-card__value,
.testimonial-card h3,
.timeline__content h3,
.benefit-card h3,
.countdown-box strong,
.cta-panel h2 {
  font-family: "Vodafone", "Montserrat", sans-serif;
  text-transform: uppercase;
}

.brand__title {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.brand__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  opacity: 0.55;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.container--narrow {
  width: min(920px, calc(100% - 3rem));
}

.section {
  position: relative;
  padding: 7rem 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 64, 64, 0.12), transparent 25%),
    radial-gradient(circle at 80% 25%, rgba(230, 0, 0, 0.25), transparent 20%),
    linear-gradient(145deg, #040404 0%, #190606 40%, #050505 100%);
}

.hero__particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  animation: floatParticle linear infinite;
}

.hero__particles span:nth-child(1) { left: 8%; top: 20%; animation-duration: 12s; }
.hero__particles span:nth-child(2) { left: 18%; top: 70%; animation-duration: 15s; animation-delay: -3s; }
.hero__particles span:nth-child(3) { right: 12%; top: 18%; animation-duration: 18s; animation-delay: -7s; }
.hero__particles span:nth-child(4) { right: 24%; top: 68%; animation-duration: 13s; animation-delay: -2s; }
.hero__particles span:nth-child(5) { left: 52%; top: 14%; animation-duration: 17s; animation-delay: -8s; }
.hero__particles span:nth-child(6) { left: 62%; top: 82%; animation-duration: 14s; animation-delay: -1s; }

.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: rgba(255, 64, 64, 0.86);
}

.hero__title {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.hero__title span {
  display: inline;
  color: var(--accent);
  white-space: nowrap;
}

.hero__text,
.section-heading p,
.reward-highlight__text,
.testimonial-card p,
.benefit-card p,
.cta-panel p,
.timeline__content p {
  color: var(--muted);
  line-height: 1.9;
}

.hero__text {
  max-width: 40rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--red), #ff1e1e);
  box-shadow: var(--glow);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.primary-button--large,
.ghost-button--large {
  padding-inline: 2rem;
  min-height: 3.6rem;
}

.ghost-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
}

.ghost-button:hover {
  border-color: rgba(255, 64, 64, 0.4);
  color: var(--text);
}

.hero__card,
.stat-card,
.testimonial-card,
.benefit-card,
.countdown-panel,
.cta-panel,
.timeline__content {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
}

.hero__card {
  padding: 1.75rem;
  border-radius: 2rem;
  overflow: hidden;
  align-self: center;
}

.section--hidden {
  display: none !important;
}

.hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 64, 64, 0.78);
}

.panel-title {
  margin: 0.4rem 0 0;
  font-size: 2rem;
  letter-spacing: 0.14em;
}

.halo-orb {
  width: 6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(230, 0, 0, 0.08) 40%, transparent 70%);
  border: 1px solid rgba(255, 64, 64, 0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.75rem 0;
}

.feature-pill {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.reward-highlight {
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.2), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 64, 64, 0.18);
}

.reward-highlight__title {
  margin: 0.5rem 0;
  font-size: 3rem;
  letter-spacing: 0.12em;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.56);
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
}

.scroll-indicator div {
  width: 1px;
  height: 3.6rem;
  background: linear-gradient(180deg, #fff, transparent);
  animation: bob 2.3s ease-in-out infinite;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.1em;
}

.section-heading--compact h2,
.countdown-panel .section-heading h2 {
  font-size: clamp(2.25rem, 5.5vw, 3.8rem);
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.video-frame {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 0 30px rgba(230, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.6);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.stats-grid,
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  border-radius: 1.8rem;
  padding: 1.8rem;
}

.stat-card__icon {
  font-size: 2rem;
}

.stat-card__value {
  display: block;
  margin-top: 2rem;
  font-size: 4rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.stat-card__label {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-carousel {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 calc(33.333% - 0.7rem);
  width: calc(33.333% - 0.7rem);
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
  border-radius: 1.6rem;
  transition: transform 350ms ease, filter 350ms ease;
  will-change: transform;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.gallery-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-actions[hidden] {
  display: none;
}

.gallery-nav {
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0;
  font-size: 1.2rem;
  letter-spacing: normal;
}

.gallery-helper {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.gallery-button {
  min-width: 15rem;
}

.gallery-empty {
  display: grid;
  place-items: center;
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
}

.testimonial-card {
  border-radius: 1.8rem;
  padding: 1.8rem;
  transition: transform 220ms ease, border-color 220ms ease;
  opacity: 1;
  transform: none;
}

.testimonial-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(255, 64, 64, 0.35);
}

.testimonial-video {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  padding-top: 56.25%;
}

.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.testimonial-card h3 {
  margin: 1.75rem 0 0.35rem;
  font-size: 2.5rem;
  letter-spacing: 0.12em;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 0 0.25rem 0.5rem;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 0.7rem);
  width: calc(33.333% - 0.7rem);
  min-width: 0;
  max-width: 100%;
  scroll-snap-align: start;
}


.faq-list {
  display: grid;
  gap: 1.2rem;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.faq-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.faq-card__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
}

.faq-card h3 {
  margin: 0;
  font-family: "Vodafone", "Montserrat", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-card__toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 64, 64, 0.28);
  color: var(--accent);
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-card__input:checked + .faq-card__summary .faq-card__toggle {
  transform: rotate(45deg);
}

.faq-card__body {
  display: none;
  padding: 0 1.6rem 1.7rem;
}

.faq-card__input:checked + .faq-card__summary + .faq-card__body {
  display: block;
}

.faq-card p,
.faq-points {
  color: var(--muted);
  line-height: 1.9;
}

.faq-points {
  margin: 0;
  padding-left: 1.2rem;
}

.faq-points li + li {
  margin-top: 0.35rem;
}

.countdown-panel {
  padding: 2.2rem;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(230, 0, 0, 0.26), transparent 28%),
    linear-gradient(145deg, rgba(230, 0, 0, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 35px rgba(230, 0, 0, 0.18);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.countdown-box {
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
}

.countdown-box strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  letter-spacing: 0.12em;
}

.countdown-box span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230, 0, 0, 0.3), transparent 45%);
}

.cta-panel {
  padding: 4rem 2rem;
  border-radius: 2.4rem;
  text-align: center;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6.8vw, 4.7rem);
  letter-spacing: 0.12em;
}

.cta-panel p {
  width: min(42rem, 100%);
  margin: 1rem auto 2rem;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 1.5rem;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
}

.lightbox__nav--prev {
  left: 1.4rem;
}

.lightbox__nav--next {
  right: 1.4rem;
}

.lightbox__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) scale(1.3);
    opacity: 0;
  }
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 1100px) {
  .hero__content,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    flex-basis: calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
  }

  .testimonials-track .testimonial-card {
    flex-basis: calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
  }
}

@media (max-width: 820px) {
  .site-header {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .page-noise,
  .cursor-glow,
  .scroll-indicator {
    display: none;
  }

  .site-header,
  .footer__content,
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .footer__links {
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero__content,
  .stats-grid,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .gallery-actions {
    justify-content: center;
  }

  .gallery-carousel,
  .testimonial-carousel {
    width: 100%;
  }

  .gallery-track,
  .testimonials-track {
    padding-inline: 0.25rem;
  }

  .testimonials-track .testimonial-card {
    flex-basis: calc(82% - 0.25rem);
    width: calc(82% - 0.25rem);
  }

  .lightbox__nav {
    width: 3rem;
    height: 3rem;
  }

  .lightbox__nav--prev {
    left: 0.75rem;
  }

  .lightbox__nav--next {
    right: 0.75rem;
  }

  .hero__title {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .gallery-card {
    flex-basis: 82%;
    width: 82%;
  }

  .gallery-card img {
    height: 15rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .site-header {
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .hero {
    padding-top: 5.5rem;
  }

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

  .testimonials-track {
    gap: 0.75rem;
  }

  .testimonials-track .testimonial-card {
    flex-basis: calc(88% - 0.25rem);
    width: calc(88% - 0.25rem);
  }

  .hero__title {
    font-size: clamp(2.6rem, 15vw, 4rem);
    letter-spacing: 0.04em;
  }

  .gallery-card {
    flex-basis: 88%;
    width: 88%;
  }

  .gallery-card img {
    height: 13rem;
  }
}

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

  .page-noise,
  .cursor-glow,
  .scroll-indicator,
  .hero__particles {
    display: none;
  }

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