/* Base */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --blue: #2563eb;
  --blue-600: #1d4ed8;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1200px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }

.h1{
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
}

.h2{
  font-size: 22px;
  margin: 0;
}

.divider{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

/* Topbar */
.topbar{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.product-head {
  margin-bottom: 20px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand__img{
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-block;
}
.brand__name{
  font-weight: 650;
  font-size: 18px;
}
.brand:hover{
  text-decoration: none;
}
.signin{
  font-weight: 600;
  color: #0f172a;
}

/* Page layout */
.page{ padding: 26px 0 34px; }

.hero{
  display: grid;
  grid-template-columns: 1.5fr .50fr;
  gap: 28px;
}

.hero__left {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

/* Gallery */
.gallery{ margin-bottom: 30px; }

.gallery-main{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1220;
}
.slide-card{
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 10px;
  color: #e2e8f0;
  background:
    radial-gradient(1000px 400px at 10% 10%, rgba(59,130,246,.25), transparent 55%),
    radial-gradient(900px 350px at 90% 30%, rgba(236,72,153,.18), transparent 50%),
    radial-gradient(900px 350px at 20% 90%, rgba(34,197,94,.14), transparent 55%),
    #0b1220;
}
.img-slider {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide-card__eyebrow{
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
  opacity: .9;
}
.slide-card__headline{
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.slide-card__sub{
  opacity: .9;
}

.gallery-thumbs{
  margin-top: 12px;
}
.thumb-card{
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b1220;
  color: #cbd5e1;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.img-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.gallery-thumbs .swiper-slide{
  opacity: .55;
}
.gallery-thumbs .swiper-slide-thumb-active{
  opacity: 1;
}
.gallery-thumbs .swiper-slide-thumb-active .thumb-card{
  border-color: rgba(37,99,235,.65);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}

/* Swiper buttons */
.swiper-button-prev,
.swiper-button-next{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}
.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 14px;
  color: #fff;
}

/* Product head */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.pill__icon{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  border: 1px solid var(--line);
}

.meta-row{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.meta-row__value{ color: #0f172a; font-weight: 700; }
.meta-row__dot{ opacity: .7; }
.meta-row__tag{ color: var(--muted); }

.stars{ display: inline-flex; gap: 2px; transform: translateY(-1px); }
.star{ font-size: 14px; color: #cbd5e1; }
.star.is-on{ color: #f59e0b; }

.trophy{
  margin-top: 12px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text);
}
.trophy strong{ font-weight: 800; }

.copy-block{
  margin-top: 18px;
}
.copy-block p{
  margin: 8px 0 0;
  color: #334155;
  max-width: 72ch;
}

/* Pricing card */
.hero__right{
  position: relative;
}
.pricing-card{
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow);
}
.plan{
  display: flex;
  gap: 12px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
}
.plan + .plan{ margin-top: 10px; }
.plan--active{
  border-color: rgba(37,99,235,.75);
  box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.plan__radio{ accent-color: var(--blue); }
.plan__inner{ flex: 1; display: flex; justify-content: space-between; gap: 12px; }
.plan__amount{ font-weight: 800; }
.plan__term{ color: var(--muted); font-weight: 600; margin-left: 6px; }
.badge{
  margin-left: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 2px 8px;
}

.btn{
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
}
.btn--primary{
  margin-top: 12px;
  background: var(--blue);
  color: white;
}
.btn--primary:hover{ background: var(--blue-600); }
.btn--secondary{
  background: #fff;
  border: 1px solid var(--line);
  color: #0f172a;
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.members{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-head--split{
  margin-bottom: 16px;
}

/* Features list */
.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #0f172a;
}
.checklist__item:first-child{ border-top: 0; }
.check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37,99,235,.10);
  color: var(--blue);
  font-weight: 900;
}

/* Reviews */
.reviews-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
}
@media (max-width: 980px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

.reviews-summary{
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
@media (max-width: 980px){
  .reviews-summary{ border-right: 0; padding-right: 0; }
}

.summary-rating__value{ margin-top: 6px; }
.summary-rating__count{ margin-top: 2px; font-size: 13px; }

.bars{ margin-top: 16px; display: grid; gap: 10px; }
.bar-row{
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.bar{
  height: 8px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.bar__fill{
  height: 100%;
  display: block;
  background: #f59e0b;
  border-radius: 999px;
}

.reviews-feed{ display: grid; gap: 20px; }
.review{ padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.review:last-of-type{ border-bottom: 0; padding-bottom: 0; }
.review__header{ display: flex; gap: 12px; align-items: center; }
.avatar{
  width: 34px; height: 34px; border-radius: 999px;
  background: #0f172a;
  color: white;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 12px;
}
.avatar--img{
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid var(--line);
  font-size: 16px;
}
.review__name{ font-weight: 900; }
.review__text{ margin: 10px 0 0; color: #334155; max-width: 75ch; }

.see-all{
  justify-self: start;
  color: var(--blue);
  font-weight: 800;
}
.see-all:hover{ text-decoration: underline; }

/* Creator */
.creator-card{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.creator-left{ display: flex; gap: 14px; align-items: center; }
.creator-avatar{
  width: 54px; height: 54px; border-radius: 999px;
  background: #0b1220;
  color: #e2e8f0;
  display: grid; place-items: center;
  font-size: 22px;
}
.creator-name{ font-weight: 900; }
.creator-social{ margin-top: 8px; display: flex; gap: 8px; }

.icon-btn{
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: #fff;
  font-weight: 900;
}

.message-box{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.message-box input{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
}
.send-btn{
  width: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}
.send-btn:hover{
  background: #f8fafc;
}

/* FAQ */
.faq-list{
  border-top: 1px solid var(--line);
}
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-q{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  background: transparent;
  border: 0;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
}
.chev{
  width: 12px; height: 12px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-right: 2px;
}
.faq-item.is-open .chev{
  transform: rotate(-135deg);
}
.faq-a{
  color: #334155;
  font-size: 14px;
  padding: 0 0 14px;
  max-width: 80ch;
  display: none;
}
.faq-item.is-open .faq-a{ display: block; }

/* Footer */
.footer{
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.list-tools li {
  margin-bottom: 10px;
}

button {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
.join-discord {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto 18px;
  width: 100%;
  background: rgb(102 121 199);
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;

  transform: translateZ(0) scale(1);
  box-shadow: 0 0 0 rgba(102,121,199,0);

  -webkit-tap-highlight-color: transparent;
}
.join-discord:hover {
  background: rgb(88 105 183);
  text-decoration: none;
  background: #5869B7;
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(102,121,199,.35);
}
.join-discord img {
  width: 28px;
  display: inline-block;
  margin-right: 8px;
}

@keyframes ani-discord {
    0%{
      transform: scale(1);
      box-shadow: 0 0 0 rgba(102,121,199,0);
    }

    40%{
      transform: scale(1.02);
      box-shadow: 0 14px 36px rgba(102,121,199,.35);
    }

    60%{
      transform: scale(1.02);
      box-shadow: 0 14px 36px rgba(102,121,199,.35);
    }

    100%{
      transform: scale(1);
      box-shadow: 0 0 0 rgba(102,121,199,0);
    }
}

.animate-discord {
    animation: ani-discord 1.8s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.swiper-button-next,
.swiper-button-prev,
.hero__left,
.gallery,
.gallery * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
  box-shadow: none;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

