#tagmi-about,
#faq,
#gift,
#bcta {
  --s-bg: #010e24;
  --s-bg2: #021336;
  --s-acc: #dcf12b;
  --s-acc2: #e8f60a;
  --s-a10: rgba(220, 241, 43, 0.1);
  --s-bdr: rgba(220, 241, 43, 0.3);
  --s-w: #ffffff;
  --s-w70: rgba(255, 255, 255, 0.72);
  --s-w60: rgba(255, 255, 255, 0.62);
  --s-sep: rgba(255, 255, 255, 0.07);
  --s-fd: "Exo 2", "Segoe UI", Arial, sans-serif;
  --s-fb: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --s-r: 10px;
  --s-ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

#tagmi-about {
  background-color: var(--s-bg2);
  margin: 30px 0px 60px 0;
  border-radius: 12px;
}

.prod-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.prod-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(1, 10, 28, 0.4);
  border-right: 1px solid var(--s-sep);
  padding: 48px 40px;
}

.prod-visual-col img {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
}

.prod-text-col {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-eyebrow {
  font-family: var(--s-fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--s-acc);
  margin-bottom: 10px;
}

.prod-h2 {
  font-family: var(--s-fd);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--s-w);
  margin-bottom: 16px;
  margin-top: 0px !important;
}

.prod-def {
  font-family: var(--s-fb);
  font-size: 15px;
  color: var(--s-w70);
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 3px solid rgba(220, 241, 43, 0.4);
  padding-left: 14px;
}

.specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.spec {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--s-r);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--s-ease);
}

@media (hover: hover) {
  .spec:hover {
    border-color: var(--s-bdr);
  }
}

.spec-ico {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
  background: var(--s-a10);
  border: 1px solid var(--s-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-acc);
  margin-top: 1px;
}

.spec strong {
  display: block;
  font-family: var(--s-fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--s-w);
  margin-bottom: 2px;
}

.spec span {
  font-family: var(--s-fb);
  font-size: 12px;
  color: var(--s-w60);
}

#tagmi-about .btn-cta,
#faq .btn-cta,
#gift .btn-cta,
#bcta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--s-fd);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #010e24;
  background: var(--s-acc);
  border: none;
  border-radius: var(--s-r);
  padding: 13px 28px;
  cursor: pointer;
  transition:
    background var(--s-ease),
    transform var(--s-ease),
    box-shadow var(--s-ease);
  width: fit-content;
  text-decoration: none;
}

#tagmi-about .btn-cta .arr,
#faq .btn-cta .arr,
#gift .btn-cta .arr,
#bcta .btn-cta .arr {
  transition: transform var(--s-ease);
}

@media (hover: hover) {
  #tagmi-about .btn-cta:hover,
  #faq .btn-cta:hover,
  #gift .btn-cta:hover,
  #bcta .btn-cta:hover {
    background: var(--s-acc2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220, 241, 43, 0.28);
  }
  #tagmi-about .btn-cta:hover .arr,
  #faq .btn-cta:hover .arr,
  #gift .btn-cta:hover .arr,
  #bcta .btn-cta:hover .arr {
    transform: translateX(5px);
  }
}

#faq {
  padding: 72px 0;
  background-color: var(--s-bg2);
  margin: 30px 0px 60px 0;
  border-radius: 12px;
}

#faq .ctr {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

#faq .slbl,
#gift .slbl {
  font-family: var(--s-fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--s-acc);
  margin-bottom: 10px;
}

#faq .sh2 {
  font-family: var(--s-fd);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--s-w);
  margin-bottom: 0;
  margin-top: 0px !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-side p {
  font-family: var(--s-fb);
  font-size: 14.5px;
  color: var(--s-w70);
  line-height: 1.65;
  margin: 12px 0 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--s-r);
  overflow: hidden;
  transition: border-color var(--s-ease);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(220, 241, 43, 0.22);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--s-fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--s-w);
  user-select: none;
}

.faq-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(220, 241, 43, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--s-acc);
  transition: all var(--s-ease);
  font-family: monospace;
  line-height: 1;
}

.faq-item.open .faq-ico {
  background: var(--s-acc);
  color: #021336;
  border-color: var(--s-acc);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 12px 20px 17px;
  font-family: var(--s-fb);
  font-size: 13.5px;
  color: var(--s-w70);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item.open .faq-a {
  display: block;
}

#gift {
  padding: 72px 0;
  background-color: var(--s-bg);
  position: relative;
  overflow: hidden;
  margin: 30px 0px 60px 0;
}

#gift::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(220, 241, 43, 0.012) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

#gift .ctr {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.gift-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gift-h2 {
  font-family: var(--s-fd);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--s-w);
  margin-bottom: 20px;
  margin-top: 0px !important;
}

.gift-h2 em {
  color: var(--s-acc);
  font-style: italic;
  display: block;
}

.gift-tagline {
  font-family: var(--s-fb);
  font-size: 15px;
  color: var(--s-w70);
  line-height: 1.6;
  max-width: 340px;
  padding-left: 14px;
  border-left: 2px solid rgba(220, 241, 43, 0.28);
}

.gift-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gift-chips {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gchip {
  display: block;
  font-family: var(--s-fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--s-w70);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--s-r);
  padding: 10px 18px;
  transition: all var(--s-ease);
  cursor: default;
}

.gchip:nth-child(even) {
  transform: translateX(10px);
}

@media (hover: hover) {
  .gchip:hover {
    background: var(--s-a10);
    border-color: var(--s-bdr);
    color: var(--s-acc);
    transform: translateX(0) !important;
  }
}

.gift-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gift-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.gift-trust-row .tp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--s-fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--s-w70);
  line-height: 1;
}

.gift-trust-row .tp-ico {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(220, 241, 43, 0.18);
  border: 1.5px solid var(--s-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-acc);
}

#bcta {
  padding: 80px 0;
  text-align: center;
  background-color: var(--s-bg);
  position: relative;
  overflow: hidden;
  margin: 30px 0px 60px 0;
}

#bcta::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(220, 241, 43, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#bcta .ctr {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.bcta-in {
  position: relative;
  z-index: 2;
}

.bcta-h2 {
  font-family: var(--s-fd);
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--s-w);
  margin-bottom: 12px;
}

.bcta-h2 em {
  color: var(--s-acc);
  font-style: italic;
}

.bcta-sub {
  font-family: var(--s-fb);
  font-size: 15px;
  color: var(--s-w70);
  margin-bottom: 28px;
}

@media (max-width: 940px) {
  .prod-content-wrap {
    grid-template-columns: 1fr;
  }

  .prod-visual-col {
    border-right: none;
    border-bottom: 1px solid var(--s-sep);
    padding: 32px 20px;
    min-height: 240px;
  }

  .prod-text-col {
    padding: 32px 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gift-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gchip:nth-child(even) {
    transform: translateX(0);
  }

  #bcta::before {
    width: 90vw;
  }
}

@media (max-width: 640px) {
  #faq {
    padding: 52px 0;
  }

  .prod-def {
    font-size: 14px;
  }

  .spec strong {
    font-size: 12.5px;
  }

  .prod-h2 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1.5px;
  }

  .faq-q {
    font-size: 13.5px;
    padding: 14px 16px;
  }

  .faq-a {
    padding: 10px 16px 14px;
    font-size: 13px;
  }

  #gift {
    padding: 52px 0;
  }

  .gift-h2 {
    font-size: clamp(48px, 14vw, 68px);
    letter-spacing: -2.5px;
  }

  .gift-chips {
    gap: 4px;
  }

  .gchip {
    font-size: 12.5px;
    padding: 9px 14px;
  }

  .gift-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #bcta {
    padding: 56px 0;
  }

  .bcta-h2 {
    font-size: clamp(32px, 10vw, 52px);
    letter-spacing: -2px;
  }
}

@media (max-width: 390px) {
  .gift-h2 {
    font-size: clamp(40px, 13vw, 56px);
  }
}
