/* myHOLE — recreated from the live site */

:root {
  --primary: #65ac62;
  --primary-hover: #4f9a4d;
  --primary-foreground: #c6e1c2;
  --dark: #101828;
  --dark-hover: #0c111d;
  --secondary-text: #475467;
  --muted-foreground: #98a2b3;
  --light-gray-bg: #f2f4f7;
  --muted: #def1db;
  --border: #eaecf0;
  --input: #d0d5dd;
  --text-green: #31732e;
  --medium-green: #8cd289;
  --registered-green: #00d694;
  --button-border: #afbcdb;
  --radius: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  line-height: 1.5;
  background: #fff;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  color: inherit;
}

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

/* ================= HEADER ================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-desktop {
  display: none;
  height: 64px;
  width: 100%;
  max-width: 80rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.5rem;
}

.header-mobile {
  display: flex;
  height: 64px;
  width: 100%;
  padding-inline: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1280px) {
  .header-desktop { display: flex; }
  .header-mobile { display: none; }
}

.header-logo {
  height: 42px;
  width: auto;
}

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

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background: var(--primary);
  color: #fff;
}

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

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--dark);
  transition: background-color 0.2s ease;
}

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

.btn-green {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--primary);
  transition: background-color 0.2s ease;
  width: 100%;
}

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

.lang-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-gray-bg);
  border: 0;
  border-radius: var(--radius);
  padding: 0 0.75rem;
  height: 36px;
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.lang-select img {
  width: 26px;
  height: 14px;
  border-radius: 2px;
}

.lang-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.menu-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* ================= HERO ================= */
.main { padding-top: 64px; }

.hero {
  width: 100%;
  background: var(--light-gray-bg);
}

.hero-inner {
  max-width: 96rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  background-image: url("assets/images/landing-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

@media (min-width: 768px) {
  .hero-inner {
    background-position: right top;
  }
}

@media (min-width: 1280px) {
  .hero-inner { background-size: contain; }
}

.hero-content {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.hero-text {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-text { padding-top: 6.5rem; }
}

.hero-title-slot {
  position: relative;
  height: 200px;
}

@media (min-width: 640px) {
  .hero-title-slot { height: 310px; }
}

.landing-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.05;
  opacity: 0;
  position: absolute;
  inset: 0;
}

@media (min-width: 640px) {
  .landing-title { font-size: 3.75rem; }
}

@media (min-width: 768px) {
  .landing-title-2 { font-size: 6rem; }
}

.text-primary { color: var(--primary); }

.landing-title-1 { animation: ani1 10s infinite; }
.landing-title-2 { animation: ani2 10s infinite; }

@keyframes ani1 {
  0%  { opacity: 0; }
  10% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes ani2 {
  50% { opacity: 0; }
  60% { opacity: 1; }
  90% { opacity: 1; }
  100%{ opacity: 0; }
}

.hero-cta {
  width: fit-content;
  margin-block: 2.5rem;
  padding-inline: 1.5rem;
}

.partners {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  .partners {
    flex-direction: row;
    align-items: flex-end;
  }
}

.partners-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .partners-col { width: 50%; }
}

.dialog-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.partners-placeholder {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partner-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: var(--secondary-text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.partner-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
}

.social-col {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .social-col {
    flex-direction: column;
    width: 40px;
  }
}

.social-col img { width: 40px; height: 40px; }

/* ================= WHY SECTION ================= */
.section {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

.section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-big-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.card-data-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-text);
  text-align: center;
}

@media (min-width: 640px) {
  .card-data-text { font-size: 1.25rem; }
}

.why-sub {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .why-sub { margin-bottom: 5rem; }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s ease;
}

.why-card:hover { transform: scale(1.08); }

.why-icon-box {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
}

.why-icon-box img { width: 24px; height: 24px; }

.why-icon-box svg { width: 24px; height: 24px; color: var(--primary); }

.why-number {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.why-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  max-width: 22ch;
  line-height: 1.3;
}

@media (min-width: 640px) { .why-card-title { font-size: 1.25rem; } }

.why-card-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--secondary-text);
  font-weight: 400;
  line-height: 1.55;
  white-space: pre-line;
  max-width: 32ch;
}

.why-cta {
  width: 200px;
  margin-top: 2rem;
}

@media (min-width: 768px) { .why-cta { margin-top: 5rem; } }

/* ================= WATCH SECTION ================= */
.watch {
  background: var(--light-gray-bg);
}

.watch-inner {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) { .watch-inner { padding-block: 6rem; } }

.watch-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 1.875rem;
  padding-bottom: 2rem;
  max-width: 80%;
  line-height: 1.15;
}

@media (min-width: 768px) { .watch-title { font-size: 3rem; } }

.devices {
  position: relative;
  height: 550px;
}

.devices .desktop {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 810px;
  max-width: 100%;
  display: none;
}
@media (min-width: 768px) { .devices .desktop { display: block; } }

.devices .tablet {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 336px;
  max-width: 60%;
}
@media (min-width: 640px) { .devices .tablet { left: 10%; } }
@media (min-width: 768px) { .devices .tablet { top: 80px; left: 0; } }
@media (min-width: 1024px) { .devices .tablet { top: 60px; left: 90px; } }

.devices .phone {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 30;
  width: 210px;
  max-width: 40%;
}
@media (min-width: 640px) { .devices .phone { left: 40%; right: auto; } }
@media (min-width: 768px) { .devices .phone { top: 140px; left: 30%; } }

/* ================= WHO WE ARE ================= */
.who {
  background: var(--muted);
}

.who-inner {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) { .who-inner { padding-block: 6rem; } }

.who-video {
  display: block;
  margin-inline: auto;
  border-radius: 1rem;
  width: 100%;
  max-width: 458px;
  aspect-ratio: 458 / 815;
  border: 0;
}

/* ================= PACKAGES ================= */
.packages-wrap {
  max-width: 96rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) { .packages-wrap { padding-block: 6rem; } }

.packages-sub { margin-bottom: 4rem; font-weight: 700; }

.package-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2rem;
}

@media (min-width: 768px) {
  .package-grid { gap: 4rem 2rem; }
}

.package {
  width: 100%;
  max-width: 400px;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 640px) { .package { max-width: 300px; } }
@media (min-width: 1024px) { .package { max-width: 390px; } }

.package-tag {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.package-body {
  padding: 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-img {
  width: 240px;
  height: 240px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.package-img--player { width: 168px; height: 240px; }
.package-img--sponsor { width: 220px; height: 240px; padding-block: 0.625rem; }

.package-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.875rem;
  text-align: center;
}

.package-title--free { font-size: 3rem; }

.package-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 640px) { .package-subtitle { font-size: 1.25rem; } }

.package-list {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.package-li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.package-li svg {
  color: var(--primary);
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.package-li-text {
  font-family: "Poppins", sans-serif;
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ================= STATS ================= */
.stats-wrap { background: var(--muted); }

.stats-inner {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) { .stats-inner { padding-block: 6rem; } }

.stats-title { margin-bottom: 2rem; }
@media (min-width: 768px) { .stats-title { margin-bottom: 4rem; } }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  min-height: 3.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) { .stat-value { font-size: 3rem; } }

.stat-label {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

@media (min-width: 768px) { .stat-label { font-size: 1.25rem; } }

/* ================= FAQ ================= */
.faq-wrap {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) { .faq-wrap { padding-block: 6rem; } }

.faq-title { margin-bottom: 1.25rem; }
.faq-sub   { font-weight: 400; margin-bottom: 2rem; }
@media (min-width: 768px) { .faq-sub { margin-bottom: 4rem; } }

.faq-list { width: 100%; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  width: 100%;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

@media (min-width: 640px) { .faq-trigger { font-size: 1.25rem; } }

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-toggle-icon .circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: var(--muted-foreground);
  border: 1.5px solid currentColor;
}

.faq-item.open .faq-toggle-icon .circle {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
  border-color: var(--primary);
}

.faq-toggle-icon svg { width: 16px; height: 16px; }

.faq-plus { display: block; }
.faq-minus { display: none; }
.faq-item.open .faq-plus { display: none; }
.faq-item.open .faq-minus { display: block; }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 0 1.25rem 0;
  color: var(--secondary-text);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 65ch;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--primary);
  width: 100%;
  color: #fff;
}

.footer-inner {
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 6rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-socials { display: flex; gap: 0.75rem; align-items: center; }
.footer-socials img { width: 24px; height: 24px; }
.footer-socials img.youtube { width: 30px; height: 30px; }

.footer-logo-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-logo-row { flex-direction: row; align-items: center; }
}
.footer-logo-row img { width: 110px; height: auto; }

.footer-small { font-size: 0.875rem; line-height: 1.55; opacity: 0.95; }
.footer-small a { text-decoration: underline; }

.footer-cols {
  display: flex;
  gap: 3rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .footer-cols { gap: 5rem; } }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-title {
  font-weight: 600;
  padding-bottom: 0.25rem;
}

.footer-col a:hover { text-decoration: underline; }

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 40;
  padding: 1.5rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a { padding: 0.75rem 0.5rem; border-radius: var(--radius); font-weight: 700; }
.mobile-menu a:hover { background: var(--muted); color: var(--text-green); }

.mobile-menu .btn-primary { margin-top: 0.75rem; width: 100%; }
