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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 90% 25%, rgba(130, 18, 18, 0.08), transparent 28%),
    linear-gradient(180deg, #020403 0%, #050706 45%, #010101 100%);
  color: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.28;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.82) 75%);
  pointer-events: none;
  z-index: -1;
}

.page {
  width: min(100% - 22px, 1180px);
  margin: 0 auto;
}

.nav {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5, 8, 7, 0.82);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 35px rgba(39, 255, 83, 0.06);
  position: sticky;
  top: 10px;
  z-index: 50;
}

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

.brand-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-xxt {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.brand-crew {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  color: #a5a5a5;
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}
.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-link:visited,
.brand-link:hover,
.brand-link:active {
  text-decoration: none;
  color: inherit;
}

.brand-link *,
.brand-link *:visited,
.brand-link *:hover,
.brand-link *:active {
  text-decoration: none;
  color: inherit;
}
.logo-image {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.04);
}

.mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 90px;
  height: 46px;

  border-radius: 14px;
  background: linear-gradient(145deg, #0c120e, #050706);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(57, 211, 83, 0.13);
}

.mobile-menu.active {
  border-color: rgba(57, 211, 83, 0.5);
  box-shadow: 0 0 24px rgba(57, 211, 83, 0.24);
}

.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  right: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(6, 8, 7, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
  flex-direction: column;
  gap: 6px;
  text-align: left;
  z-index: 60;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: 0.25s;
  background: rgba(255,255,255,0.025);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(57,211,83,0.08);
}

.telegram-btn {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  padding: 54px 0 30px;
}
.hero-clean {
  position: relative;
  overflow: visible;
}

.hero-clean::after {
    content: "";
    position: absolute;

    inset: 0;

    background-image: url("assets/images/hero-bull.png");
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: 100%;

    opacity: 0.35;

    pointer-events: none;

    z-index: 0;
}
.eyebrow {
  color: #39d353;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(43px, 14vw, 66px);
  line-height: 0.94;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255,255,255,0.06);
}

h1 .green {
  color: #39d353;
  text-shadow: 0 0 22px rgba(57,211,83,0.22);
}

.subtitle {
  color: #b9b9b9;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 28px;
}

.subtitle span {
  color: #fff;
  font-weight: 700;
}

.actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.xxt-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  min-height: 82px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, rgba(28,31,30,0.96), rgba(4,5,5,0.98));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -20px 35px rgba(0,0,0,0.35),
    0 18px 35px rgba(0,0,0,0.45),
    0 0 18px rgba(57, 211, 83, 0.11);
  transition: 0.25s ease;
  overflow: hidden;
}

.xxt-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-120%);
  transition: 0.55s;
}

.xxt-button:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 211, 83, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 24px 45px rgba(0,0,0,0.55),
    0 0 28px rgba(57, 211, 83, 0.22);
}

.xxt-button:hover::after {
  transform: translateX(120%);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(57,211,83,0.45);
  display: grid;
  place-items: center;
  color: #39d353;
  font-size: 22px;
  box-shadow: 0 0 18px rgba(57,211,83,0.16);
  flex: 0 0 auto;
}

.btn-title {
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}

.btn-sub {
  color: #9e9e9e;
  font-size: 12px;
  margin-top: 4px;
  text-transform: uppercase;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: #8d8d8d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust strong {
  display: block;
  color: #e9e9e9;
  font-size: 15px;
  margin-top: 7px;
}

.visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.bull {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(57,211,83,0.16), transparent 34%),
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 62%);
  filter: blur(1px);
  opacity: 0.75;
}

.bull::before {
  content: "♉";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 180px;
  color: rgba(255,255,255,0.08);
  text-shadow: 0 0 35px rgba(57,211,83,0.16);
}

.book-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 3;
  width: 100%;
}

.book {
  width: min(220px, 72vw);
  height: 320px;
  border-radius: 8px 18px 18px 8px;
  background: linear-gradient(90deg, #090909 0%, #171a17 12%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    28px 32px 60px rgba(0,0,0,0.65),
    0 0 45px rgba(57,211,83,0.14);
  transform: perspective(900px) rotateY(-13deg) rotateX(3deg);
  position: relative;
  overflow: hidden;
  animation: floatBook 5s ease-in-out infinite;
}

@keyframes floatBook {
  0%, 100% { transform: perspective(900px) rotateY(-13deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-13deg) rotateX(3deg) translateY(-10px); }
}

.book::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 65%, rgba(57,211,83,0.18), transparent 30%),
    linear-gradient(160deg, transparent 42%, rgba(57,211,83,0.15) 43%, transparent 70%);
}

.book::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 100%;
  background: linear-gradient(180deg, #1c1f1d, #050505);
  border-right: 1px solid rgba(255,255,255,0.12);
}

.book-title {
  position: absolute;
  top: 54px;
  left: 34px;
  right: 22px;
  font-size: 29px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.book-title span {
  color: #39d353;
  display: block;
  font-size: 29px;
}

.book-sub {
  position: absolute;
  left: 36px;
  right: 22px;
  bottom: 48px;
  color: #bcbcbc;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  z-index: 2;
}

.info-card {
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 18px;
  background: rgba(8,10,9,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.42);
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
  font-size: 14px;
  color: #dfdfdf;
}

.info-card li::before {
  content: "✦";
  color: #39d353;
  margin-right: 10px;
}

.price {
  margin-top: 22px;
  text-align: center;
}

.price small {
  color: #39d353;
  text-transform: uppercase;
  font-size: 11px;
}

.price strong {
  display: block;
  font-size: 34px;
  margin: 5px 0 14px;
}

.section {
  padding: 54px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.section-title small {
  color: #39d353;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
}

.section-title h2 {
  font-size: clamp(34px, 11vw, 54px);
  text-transform: uppercase;
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  min-height: 210px;
  padding: 26px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22,25,23,0.86), rgba(3,4,4,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  text-align: center;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(57,211,83,0.34);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5), 0 0 26px rgba(57,211,83,0.10);
}

.card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #39d353;
  font-size: 28px;
  background: rgba(57,211,83,0.06);
  border: 1px solid rgba(57,211,83,0.18);
  box-shadow: 0 0 24px rgba(57,211,83,0.12);
}

.card h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.5;
}

.preview {
  text-align: center;
  margin-top: 34px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  min-width: 220px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(20,23,21,0.9), rgba(4,5,5,0.98));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 22px rgba(57,211,83,0.12);
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s;
}

.ghost-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(57,211,83,0.45);
  box-shadow: 0 0 32px rgba(57,211,83,0.22);
}

footer {
  padding: 42px 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}

@media (min-width: 700px) {
  .page {
    width: min(100% - 40px, 1180px);
  }

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

  .trust {
    grid-template-columns: repeat(2, max-content);
    gap: 34px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 981px) {
  .nav {
    margin-top: 18px;
    padding: 18px 24px;
  }

  .logo-image {
    width: 78px;
    height: 78px;
  }

  .mobile-menu {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: 34px;
    text-align: left;
  }

  .nav-links a {
    padding: 0;
    font-size: 13px;
  }

  .nav-links a:hover {
    background: transparent;
  }

  .telegram-btn {
    display: inline-flex;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 15px 28px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0c120e, #050706);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      0 0 22px rgba(57, 211, 83, 0.18);
    transition: 0.25s;
  }

  .telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 0 28px rgba(57, 211, 83, 0.28);
  }

  .hero {
    min-height: 760px;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 50px;
    padding: 80px 0 40px;
  }

  .hero::before {
    top: 42%;
    font-size: clamp(170px, 28vw, 430px);
    letter-spacing: -18px;
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(70px, 7vw, 96px);
    letter-spacing: -4px;
    margin-bottom: 28px;
  }

  .subtitle {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .actions {
    max-width: 560px;
    gap: 18px;
    margin-bottom: 34px;
  }

  .visual {
    min-height: 620px;
  }

  .bull {
    width: 520px;
    height: 520px;
  }

  .bull::before {
    font-size: 270px;
  }

  .book-wrap {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .book {
    width: 250px;
    height: 360px;
    transform: perspective(900px) rotateY(-17deg) rotateX(3deg);
  }

  @keyframes floatBook {
    0%, 100% { transform: perspective(900px) rotateY(-17deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(900px) rotateY(-17deg) rotateX(3deg) translateY(-12px); }
  }

  .book-title {
    top: 60px;
    font-size: 34px;
  }

  .book-title span {
    font-size: 34px;
  }

  .info-card {
    width: 230px;
  }

  .section {
    padding: 45px 0;
  }

  .cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
.bible-image {
  width: min(280px, 78vw);
  max-width: 100%;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,0.65))
          drop-shadow(0 0 28px rgba(57,211,83,0.18));
  transition: 0.3s ease;
}

.starter-image {
  width: min(210px, 62vw);
  max-width: 100%;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,0.55))
          drop-shadow(0 0 20px rgba(57,211,83,0.12));
  transition: 0.3s ease;
}

.bible-image:hover,
.starter-image:hover {
  transform: translateY(-6px) scale(1.02);
}

.disabled-button {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.eyebrow {
  font-weight: 800;
}

.subtitle {
  color: #d0d0d0;
}
/* ===== XXT LANDING V2 PRODUCT SECTIONS ===== */

.hero-clean {
  min-height: auto;
  display: block;
  padding: 48px 0 8px;
}

.hero-clean .hero-content {
  max-width: 760px;
}

.trust-single {
  margin: 22px 0 26px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.trust-single > div {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(8, 10, 9, 0.68);
  border: 1px solid rgba(255,255,255,0.10);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 22px;
}

.product-card,
.access-card {
  border-radius: 26px;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(14,16,15,0.92), rgba(3,4,4,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 55px rgba(0,0,0,0.48);
}

.product-image-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.product-image {
  display: block;
  width: min(270px, 72vw);
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,0.66));
}

.bible-product-image {
  width: min(300px, 76vw);
}

.product-label {
  display: block;
  color: #9c9c9c;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: clamp(27px, 7vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-card p {
  color: #d7d7d7;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.product-list,
.access-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
}

.product-list li,
.access-list li {
  position: relative;
  padding-left: 22px;
  color: #ededed;
  font-size: 16px;
  line-height: 1.45;
}

.product-list li::before,
.access-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #39d353;
  font-weight: 900;
}

.product-btn {
  width: 100%;
  min-width: 0;
} 

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#bible {
  scroll-margin-top: 120px;
}

.access-section {
  padding-top: 34px;
}

.access-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 900px) {
  .product-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 42px;
    padding: 42px;
  }

  .product-image-wrap {
    margin-bottom: 0;
  }

  .product-btn {
    max-width: 420px;
  }
  
.product-actions {
  flex-direction: row;
  max-width: 520px;
}
  
  .access-card {
    padding: 30px 36px;
  }
}
/* ===== FOUNDER ===== */

.founder-section {
  max-width: 900px;
  padding-bottom: 24px;
  margin: 0 auto;
  text-align: center;
}

.founder-message {
  max-width: 760px;
  margin: 0 auto;
}

.founder-message p {
  color: #d2d2d2;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

.signature {
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
}

/* ===== SUPPORT ===== */

.support-section {
  text-align: center;
  padding-top: 24px;
padding-bottom: 28px;
}

.support-content {
  max-width: 700px;
  margin: 0 auto;
}

.support-content p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.support-btn {
  min-width: 280px;
}

/* ===== FOOTER ===== */

.footer {
  text-align: center;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.footer p {
  color: #b8b8b8;
  margin-bottom: 10px;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 22px auto 0;
  color: #7f7f7f;
  line-height: 1.7;
  font-size: 13px;
}
/* ===== XXT PREMIUM POLISH ===== */

.product-card,
.access-card,
.support-content,
.founder-message {
  transition: all 0.3s ease;
}

.product-card:hover,
.access-card:hover {
  transform: translateY(-2px);
  border-color: rgba(57,211,83,0.22);
  box-shadow:
  0 24px 48px rgba(0,0,0,0.50),
  0 0 8px rgba(57,211,83,0.035);
}

.product-image,
.bible-product-image,
.bible-image,
.starter-image {
  transition: transform 0.3s ease;
}

.product-image:hover,
.bible-product-image:hover,
.bible-image:hover,
.starter-image:hover {
  transform: scale(1.025);
}

.ghost-btn,
.xxt-button {
  transition: all 0.3s ease;
}

.ghost-btn:hover,
.xxt-button:hover {
  transform: translateY(-2px);
}

.section-title h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: 25px;
}

@media (max-width: 768px) {

  .product-card {
    padding: 24px 18px;
  }

  .product-list li {
    font-size: 15px;
  }

  .section-title h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .support-btn {
    width: 100%;
    min-width: 0;
  }

}
/* ===== PREVIEW PAGE ===== */

.preview-hero {
  padding: 52px 0 24px;
}

.preview-product-section {
  padding: 42px 0;
}

.preview-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14,16,15,0.92), rgba(3,4,4,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 55px rgba(0,0,0,0.48);
}

.preview-cover-wrap {
  display: grid;
  place-items: center;
}

.preview-cover {
  width: min(280px, 68vw);
  max-width: 100%;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.62));
}

.bible-preview-cover {
  width: min(280px, 68vw);
}

.preview-text p {
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===== PREVIEW CAROUSEL ===== */

.preview-carousel {
  position: relative;
  margin: 34px auto 0;
  max-width: 520px;
  display: grid;
  place-items: center;
}

.carousel-stage {
  width: min(360px, 78vw);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;

}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.preview-page-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(57,211,83,0.10), transparent 34%),
    linear-gradient(180deg, rgba(18,21,19,0.96), rgba(3,4,4,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 32px 70px rgba(0,0,0,0.65),
    0 0 14px rgba(57,211,83,0.055);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.preview-page-placeholder small {
  color: #39d353;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.preview-page-placeholder strong {
  display: block;
  font-size: 34px;
  text-transform: uppercase;
  margin-top: 10px;
}

.preview-page-placeholder span {
  color: #8e8e8e;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 8px;
}

.preview-slide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,10,9,0.88);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(0,0,0,0.42);
}

.carousel-prev {
  left: -18px;
}

.carousel-next {
  right: -18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  background: #39d353;
}

@media (min-width: 900px) {
  .preview-product-card {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    padding: 34px 40px;
  }

}
/* ===== FAQ MODAL ===== */

.faq-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.faq-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq-modal-content {
  width: min(900px, 100%);
  background: linear-gradient(
    180deg,
    rgba(14,16,15,0.97),
    rgba(3,4,4,0.99)
  );

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;

  padding: 36px;

  box-shadow:
  0 30px 70px rgba(0,0,0,0.72),
  0 0 10px rgba(57,211,83,0.035);

  position: relative;
  margin: 40px 0;
}

.faq-modal-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #bfbfbf;
  line-height: 1.7;
}

.faq-close {
  position: absolute;
  right: 20px;
  top: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 12px;

  cursor: pointer;

  background: rgba(255,255,255,0.06);
  color: white;

  font-size: 18px;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer a:hover {
  color: #22c55e;
}
@media (max-width: 980px) {
  .xxt-button {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.07),
      0 10px 22px rgba(0,0,0,0.35),
      0 0 6px rgba(57,211,83,0.035);
  }

  .xxt-button:hover {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 12px 24px rgba(0,0,0,0.38),
      0 0 8px rgba(57,211,83,0.05);
  }

  .product-card,
  .access-card,
  .preview-product-card {
    box-shadow:
      0 18px 36px rgba(0,0,0,0.42),
      0 0 6px rgba(57,211,83,0.025);
  }

  .product-card:hover,
  .access-card:hover {
    transform: none;
    box-shadow:
      0 18px 36px rgba(0,0,0,0.42),
      0 0 6px rgba(57,211,83,0.025);
  }
}
.menu-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
}

.menu-icon {
    font-size: 24px;
}

@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 82px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, #0c120e, #050706);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(57,211,83,0.13);
  }
}
@media (max-width: 980px) {
  .hero-clean::after {
    opacity: 0.22;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 12%,
      black 68%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 12%,
      black 68%,
      transparent 100%
    );
  }
}

/* ===== XXT PARTNERS PAGE CARDS ===== */

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.access-grid .access-card {
  max-width: none;
  min-height: 420px;
  padding: 34px 26px;
  text-align: left;
  display: grid;
  grid-template-rows: auto 64px 72px auto;
  align-content: start;
}

.access-grid .access-card h3 {
  text-align: center;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-grid .access-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-grid .access-card ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid rgba(57, 211, 83, 0.28);
  display: grid;
  gap: 14px;
}

.access-grid .access-card li {
  position: relative;
  padding-left: 28px;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.45;
}

.access-grid .access-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(57, 211, 83, 0.95);
  color: #071007;
  font-size: 12px;
  font-weight: 900;
}

@media (min-width: 981px) {
  .access-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* XXT Partners Icons */

.partners-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: rgba(57, 211, 83, 0.08);
  border: 1px solid rgba(57, 211, 83, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-card-icon i {
  font-size: 30px;
  color: #39d353;
}
@media (max-width: 980px) {
  .access-grid .access-card {
    min-height: 420px;
  }
}
/* ===== ACTIVE NAVIGATION ===== */

.nav-links a.active {
    color: #ffffff;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: #39d353;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(57,211,83,.45);
}
/* ===== MOBILE ACTIVE NAVIGATION ===== */

@media (max-width: 980px) {
  .nav-links a.active {
    color: #ffffff;
    padding-left: 14px;
    border-left: 3px solid #39d353;
    border-radius: 6px;
    background: rgba(57, 211, 83, 0.06);
    box-shadow: inset 8px 0 18px rgba(57, 211, 83, 0.04);
  }

  .nav-links a.active::after {
    display: none;
  }
}
.product-price{
    display:flex;
    align-items:center;
    gap:12px;
    margin:16px 0 22px;
}

.old-price{
    color:#7d7d7d;
    text-decoration:line-through;
    font-size:18px;
    font-weight:600;
    opacity:.8;
}

.new-price{
    color:#39d353;
    font-size:32px;
    font-weight:800;
    letter-spacing:-0.5px;
    text-shadow:0 0 12px rgba(57,211,83,.22);
}


/* ===== XXT BUY BUTTON LUXURY SHINE ===== */

.product-buy-btn {
    position: relative;
    overflow: hidden;
}

.product-buy-btn::before {
    content: "";
    position: absolute;

    top: -45%;
    left: -130%;

    width: 22%;
    height: 190%;

    transform: rotate(24deg);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(57,211,83,.20),
        rgba(255,255,255,.78),
        rgba(57,211,83,.20),
        transparent
    );

    pointer-events: none;

    animation: productShine 3.8s ease-in-out infinite;
}

@keyframes productShine {

    0%{
        left:-130%;
        opacity:0;
    }

    7%{
        opacity:1;
    }

    22%{
        left:135%;
        opacity:0;
    }

    100%{
        left:135%;
        opacity:0;
    }

}
/* ===== XXT ACCESS CENTER ===== */

.access-page {
  padding: 42px 0 10px;
}

.access-hero {
  display: block;
  min-height: auto;
  padding: 34px 0 18px;
}

.access-hero .hero-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.access-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #39d353;
  background: rgba(57, 211, 83, 0.07);
  border: 1px solid rgba(57, 211, 83, 0.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.access-hero h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(38px, 10vw, 70px);
  line-height: 1;
}

.access-hero .hero-lead {
  max-width: 670px;
  margin: 0 auto 28px;
  color: #c8c8c8;
  font-size: 16px;
  line-height: 1.7;
}

.status-card {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 18px;
  border-radius: 20px;
  text-align: left;
  background: linear-gradient(
    180deg,
    rgba(15, 18, 16, 0.94),
    rgba(4, 5, 5, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(57, 211, 83, 0.05);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #8d8d8d;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 700;
}

.status-item i {
  width: 22px;
  text-align: center;
  font-size: 18px;
}

.status-item.completed {
  color: #e8e8e8;
  border-color: rgba(57, 211, 83, 0.2);
  background: rgba(57, 211, 83, 0.05);
}

.status-item.completed i {
  color: #39d353;
}

.status-item.active {
  color: #ffffff;
  border-color: rgba(57, 211, 83, 0.28);
  box-shadow: inset 0 0 18px rgba(57, 211, 83, 0.035);
}

.status-item.active i {
  color: #39d353;
  animation: accessSpin 1.1s linear infinite;
}

@keyframes accessSpin {
  to {
    transform: rotate(360deg);
  }
}

.access-hero .btn {
  width: min(100%, 420px);
  min-height: 58px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.access-hero .btn-primary {
  background: linear-gradient(145deg, #16351d, #07100a);
  border: 1px solid rgba(57, 211, 83, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(57, 211, 83, 0.16);
}

.access-hero .btn.disabled {
  opacity: 0.48;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

.access-note {
  margin-top: 14px;
  color: #7f7f7f;
  font-size: 12px;
  line-height: 1.6;
}

.access-card {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 26px 20px;
  text-align: center;
}

.access-card h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 7vw, 34px);
  text-transform: uppercase;
}

.access-card > p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
}

.access-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #e2e2e2;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.feature i {
  width: 22px;
  color: #39d353;
  font-size: 18px;
  text-align: center;
}

@media (min-width: 700px) {
  .access-page {
    padding-top: 56px;
  }

  .access-hero {
    padding-top: 48px;
  }

  .status-card {
    padding: 22px;
  }

  .access-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature {
    min-height: 108px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .feature i {
    font-size: 23px;
  }
}

@media (max-width: 699px) {
  .access-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .access-hero .hero-lead {
    font-size: 14px;
  }

  .status-item {
    font-size: 13px;
  }

  .access-card {
    padding: 22px 16px;
  }
}
/* ===== XXT ACCESS CENTER FINAL POLISH ===== */

/* Header */

.access-header {
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 8, 7, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  box-shadow:
    0 16px 38px rgba(0,0,0,0.35),
    0 0 18px rgba(57,211,83,0.045);
}

.access-header .brand-text {
  pointer-events: none;
}

.access-header .brand-xxt {
  font-size: 38px;
}

.access-header .brand-crew {
  font-size: 15px;
}

.access-header .brand-sub {
  font-size: 9px;
  letter-spacing: 1.7px;
}

.access-header-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 13px;
  border-radius: 999px;

  color: #39d353;
  background: rgba(57,211,83,0.055);
  border: 1px solid rgba(57,211,83,0.18);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* Access background */

.access-page {
  position: relative;
  isolation: isolate;
  padding: 8px 0 14px;
}

.access-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image: url("assets/images/hero-bull.png");
  background-repeat: no-repeat;
  background-position: center 90px;
  background-size: min(900px, 92vw);

  opacity: 0.075;
  pointer-events: none;
}

.access-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(2,4,3,0.02) 0%,
      rgba(2,4,3,0.12) 22%,
      rgba(2,4,3,0.58) 74%,
      rgba(2,4,3,0.92) 100%
    );

  pointer-events: none;
}

/* Hero spacing */

.access-hero {
  padding: 24px 0 12px;
}

.access-hero .hero-copy {
  position: relative;
  z-index: 2;
}

.access-hero .badge {
  margin-bottom: 18px;
}

.access-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 0.96;
  letter-spacing: -2.4px;
}

.access-thanks {
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
}

.access-hero .hero-lead {
  margin-bottom: 24px;
}

/* Main status */

.status-card {
  backdrop-filter: blur(10px);
}

.status-item {
  transition: 0.25s ease;
}

.access-hero .btn-primary {
  background:
    linear-gradient(145deg, rgba(29,74,39,0.96), rgba(7,18,10,0.98));
}

.access-hero .btn.disabled {
  opacity: 0.56;
}

/* What next */

.access-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.access-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(57,211,83,0.075),
      transparent 40%
    );

  pointer-events: none;
}

.access-card > * {
  position: relative;
  z-index: 1;
}

.feature {
  min-height: 112px;
  padding: 18px;
}

.feature i {
  font-size: 24px;
}

/* Telegram + Support */

.access-extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  max-width: 720px;
  margin: 22px auto 0;
}

.access-extra-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;

  padding: 24px 20px;
  border-radius: 22px;

  text-align: left;

  background:
    linear-gradient(
      180deg,
      rgba(15,18,16,0.92),
      rgba(4,5,5,0.97)
    );

  border: 1px solid rgba(255,255,255,0.09);

  box-shadow:
    0 20px 42px rgba(0,0,0,0.38),
    0 0 14px rgba(57,211,83,0.035);

  backdrop-filter: blur(10px);
}

.access-extra-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(57,211,83,0.08),
      transparent 34%
    );

  pointer-events: none;
}

.access-extra-card > * {
  position: relative;
  z-index: 1;
}

.access-extra-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  color: #39d353;
  font-size: 24px;

  background: rgba(57,211,83,0.07);
  border: 1px solid rgba(57,211,83,0.20);
  box-shadow: 0 0 18px rgba(57,211,83,0.09);
}

.access-extra-label {
  display: block;
  margin-bottom: 8px;

  color: #39d353;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.access-extra-content h2 {
  margin: 0 0 10px;

  font-size: clamp(21px, 4vw, 28px);
  text-transform: uppercase;
}

.access-extra-content p {
  margin: 0 0 18px;

  color: #bcbcbc;
  font-size: 14px;
  line-height: 1.65;
}

.access-secondary-btn {
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: #ffffff;
  text-decoration: none;

  background:
    linear-gradient(
      145deg,
      rgba(22,27,24,0.96),
      rgba(6,8,7,0.98)
    );

  border: 1px solid rgba(255,255,255,0.13);

  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35px;

  transition: 0.25s ease;
}

.access-secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(57,211,83,0.35);
  box-shadow: 0 0 18px rgba(57,211,83,0.10);
}

.access-secondary-btn.disabled {
  opacity: 0.52;
  pointer-events: none;
  cursor: not-allowed;
}

/* Footer */

.access-page + .footer {
  margin-top: 52px;
}

/* Desktop */

@media (min-width: 700px) {
  .access-page {
    padding-top: 4px;
  }

  .access-hero {
    padding-top: 28px;
  }

  .access-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-extra-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .access-extra-icon {
    margin: 0 auto;
  }

  .access-secondary-btn {
    width: 100%;
  }
}

/* Mobile */

@media (max-width: 699px) {
  .access-header {
    padding: 12px 14px;
  }

  .access-header-label {
    display: none;
  }

  .access-header .brand-xxt {
    font-size: 34px;
  }

  .access-header .brand-crew {
    font-size: 14px;
  }

  .access-page::before {
    background-position: center 140px;
    background-size: 155vw;
    opacity: 0.065;
  }

  .access-hero {
    padding-top: 18px;
  }

  .access-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    letter-spacing: -1.8px;
  }

  .access-thanks {
    font-size: 18px;
  }

  .access-extra-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .access-extra-icon {
    margin: 0 auto;
  }

  .access-secondary-btn {
    width: 100%;
  }

  .access-page + .footer {
    margin-top: 38px;
  }
}
/* ===== ACCESS CENTER CLEANUP + BULL FIX ===== */

/* Менше порожнього місця після тексту "Что дальше?" */
.access-card > p {
  margin-bottom: 18px;
}

/* Telegram і Support одразу під описом */
.access-extra-grid {
  margin-top: 18px;
}

/* Бик на десктопі: правильні пропорції без сплющення */
.access-page::before {
  background-size: auto 520px;
  background-position: center 82px;
  opacity: 0.16;
}

/* Мобільний Access Center */
@media (max-width: 699px) {
  .access-page::before {
    background-size: auto 430px;
    background-position: center 145px;
    opacity: 0.15;
  }

  .access-card {
    margin-top: 26px;
  }

  .access-card > p {
    margin-bottom: 16px;
  }

  .access-extra-grid {
    margin-top: 16px;
  }
}
/* Smaller heading after removing XXT ACCESS CENTER */

.access-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.access-thanks {
    display: none;
}
/* ===== ACCESS FOOTER TEXT SHINE ===== */

.access-page + .footer h3 {
  color: transparent;
  background: linear-gradient(
    110deg,
    #707070 0%,
    #707070 42%,
    #bdbdbd 49%,
    #eeeeee 50%,
    #bdbdbd 51%,
    #707070 58%,
    #707070 100%
  );

  background-size: 260% 100%;
  background-position: 130% 0;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: accessFooterShine 9s ease-in-out infinite;
}

@keyframes accessFooterShine {
  0%,
  76% {
    background-position: 130% 0;
  }

  92%,
  100% {
    background-position: -130% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-page + .footer h3 {
    animation: none;
    background-position: center;
  }
}
/* ===== XXT LOGO SHINE V3 ===== */

.brand-main {
    position: relative;
    overflow: hidden;
}

.brand-main::after {
    content: "";

    position: absolute;

    top: -25%;
    left: -32%;

    width: 22%;
    height: 170%;

    transform: skewX(-22deg);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.10),
        rgba(255,255,255,.95),
        rgba(255,255,255,.10),
        transparent
    );

    filter: blur(3px);

    pointer-events: none;

    animation: logoShine 9s ease-in-out infinite;
}

@keyframes logoShine {

    0%,
    78%{
        left:-32%;
        opacity:0;
    }

    82%{
        opacity:1;
    }

    90%{
        left:112%;
        opacity:1;
    }

    94%{
        opacity:0;
    }

    100%{
        left:112%;
        opacity:0;
    }

}
/* ===== XXT ACCESS CENTER: TABLET + DESKTOP ADAPTATION ===== */

/* TABLET: 700px–980px */
@media (min-width: 700px) and (max-width: 980px) {
  .page {
    width: min(100% - 48px, 900px);
  }

  .access-header {
    padding: 14px 20px;
  }

  .access-header .brand-xxt {
    font-size: 40px;
  }

  .access-header .brand-crew {
    font-size: 15px;
  }

  .access-page {
    padding-top: 8px;
  }

  .access-page::before {
    background-size: auto 500px;
    background-position: center 105px;
    opacity: 0.14;
  }

  .access-hero {
    padding: 34px 0 16px;
  }

  .access-hero .hero-copy {
    max-width: 720px;
  }

  .access-hero h1 {
    max-width: 700px;
    font-size: clamp(50px, 7vw, 64px);
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .access-hero .hero-lead {
    max-width: 620px;
    font-size: 16px;
  }

  .status-card {
    max-width: 650px;
    padding: 22px;
  }

  .status-item {
    min-height: 54px;
    padding: 13px 16px;
    font-size: 14px;
  }

  .access-hero .btn {
    width: min(100%, 440px);
  }

  .access-card {
    max-width: 760px;
    padding: 30px 26px;
  }

  .access-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .feature {
    min-height: 118px;
    padding: 18px 14px;
  }

  .access-extra-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .access-extra-card {
    min-height: 270px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .access-extra-content {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .access-extra-content p {
    flex: 1;
  }

  .access-secondary-btn {
    width: 100%;
    margin-top: auto;
  }
}


/* DESKTOP: 981px+ */
@media (min-width: 981px) {
  .access-header {
    margin-top: 18px;
    padding: 16px 24px;
  }

  .access-header .brand-xxt {
    font-size: 42px;
  }

  .access-header .brand-crew {
    font-size: 16px;
  }

  .access-page {
    padding-top: 10px;
  }

  .access-page::before {
    background-size: auto 590px;
    background-position: center 75px;
    opacity: 0.15;
  }

  .access-hero {
    padding: 40px 0 18px;
  }

  .access-hero .hero-copy {
    max-width: 820px;
  }

  .access-hero h1 {
    max-width: 820px;
    font-size: clamp(58px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -2px;
  }

  .access-hero .hero-lead {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.75;
  }

  .status-card {
    max-width: 680px;
    padding: 24px;
  }

  .status-item {
    min-height: 56px;
    padding: 14px 17px;
    font-size: 14px;
  }

  .access-hero .btn {
    width: 440px;
    min-height: 60px;
  }

  .access-card {
    max-width: 820px;
    padding: 34px 30px;
  }

  .access-card h2 {
    font-size: 34px;
  }

  .access-card > p {
    max-width: 660px;
    font-size: 15px;
  }

  .access-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .feature {
    min-height: 122px;
    padding: 20px 16px;
    font-size: 14px;
  }

  .access-extra-grid {
    max-width: 820px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .access-extra-card {
    min-height: 290px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .access-extra-icon {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .access-extra-content {
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .access-extra-content h2 {
    font-size: 26px;
  }

  .access-extra-content p {
    flex: 1;
    font-size: 14px;
  }

  .access-secondary-btn {
    width: 100%;
    margin-top: auto;
  }

  .access-page + .footer {
    margin-top: 58px;
  }
}
/* ===== ACCESS CENTER BULL — SAME SCALE AS LANDING ===== */

/* Планшети */
@media (min-width: 700px) and (max-width: 980px) {
  .access-page::before {
    background-size: min(1050px, 120vw) auto;
    background-position: center 45px;
    opacity: 0.22;
  }
}

/* ПК */
@media (min-width: 981px) {
  .access-page::before {
    background-size: min(1280px, 100vw) auto;
    background-position: center 15px;
    opacity: 0.25;
  }
}
