/* ==========================================================================
   Market Media Wire — site layer
   Loaded after main.css / responsive.css. Holds only what the base theme
   does not: the sections added for this site, and the dark treatment for
   the inner pages so every page matches the home page.
   ========================================================================== */

/* ----------------------------------------------------------- typography ---- */

/*
 * The base theme lowercases every animated heading and lets the split-text
 * effect re-capitalise the first letter of each word. That turns PR into "Pr"
 * and SEO into "Seo" — the two words this site is built on. Keeping the source
 * casing gives the identical Title Case look with the acronyms intact.
 */
.title-animation {
  text-transform: none;
}

/* body { text-transform: capitalize } must not touch machine-readable values. */
[data-site-email],
a[href^="mailto:"],
.form-status,
input,
textarea,
select {
  text-transform: none;
}

/* Legal prose is unreadable in Title Case; keep it as authored. */
.terms .terms-group p,
.terms .terms-group li,
.terms .terms__content > p {
  text-transform: none;
}

.payment-methods .payment-method__intro h2 {
  letter-spacing: 2.25px;
}

/* A centred intro paragraph that should not run the full container width. */
.lead-narrow {
  max-width: 760px;
}

/* --------------------------------------------------------------- brand ---- */

.navbar-logo img,
.mobile-menu__header .logo img,
.footer__widget-intro .logo img {
  width: 140px;
  max-width: 140px;
  height: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #0e0a1a;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  inset-inline-start: 0;
}

/* ------------------------------------------------- inner page background --- */

.page-inner {
  background-color: #0e0a1a;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ------------------------------------------------------------ global map --- */

/*
 * The theme parks the dotted world map at z-index:-1 inside its own stacking
 * context, so it never actually appears. It is the whole point of the "global
 * reach" section, so bring it forward.
 */
.allocation .allocation__thumb img {
  z-index: 0;
  opacity: 0.85;
}

/* ------------------------------------------------- footer decoration ------- */

/* Keep the floating shapes clear of the newsletter opt-in they used to sit on. */
.footer-three .left-bottom-img,
.footer-three .right-top-img {
  pointer-events: none;
}

.footer-three .left-bottom-img {
  bottom: 60px;
  inset-inline-start: 24px;
  opacity: 0.7;
}

@media (max-width: 1399px) {
  .footer-three .left-bottom-img {
    display: none;
  }
}

/* ------------------------------------------------ feature lists in tabs ---- */

.allocation__tab-single .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 25px;
}

.allocation__tab-single .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(50% - 12px);
  min-width: 200px;
  color: var(--white);
  font-family: var(--oswald);
  font-size: 18px;
  font-weight: 500;
}

.allocation__tab-single .feature-list li::before {
  content: "\ea5e";
  font-family: "tabler-icons";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 15px;
  color: #0e0a1a;
  background-color: var(--primary-color);
}

/* --------------------------------------------------- results / projects ---- */

.results {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.results__single {
  height: 100%;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid #132b23;
  background: #0d0f0e;
  transition: var(--transition);
}

.results__single:hover {
  border-color: var(--quaternary-color);
  transform: translateY(-4px);
}

.results__single .results__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background-color: rgba(198, 231, 87, 0.12);
  color: var(--primary-color);
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.results__single h3 {
  font-family: var(--oswald);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 20px;
  background: linear-gradient(281deg, #57aa22 -0.51%, #99c92a 26.72%, #cfd431 43.79%, #e3af23 83.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results__single p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.results__note {
  color: rgba(255, 255, 255, 0.55);
}

.results__note a {
  color: var(--primary-color);
  font-weight: 600;
}

.results__note a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------ benefit tiles ------ */

.download__item-single .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.download__item-single .thumb i {
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(281deg, #57aa22 -0.51%, #99c92a 26.72%, #cfd431 43.79%, #e3af23 83.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download__item-single h6 {
  color: var(--white);
}

/* ------------------------------------------------------------ partners ---- */

.payment-methods .payment-method__single {
  width: 240px;
  height: 104px;
  text-decoration: none;
}

.payment-methods a.payment-method__single:hover {
  border-style: solid;
  border-color: rgba(198, 231, 87, 0.45);
}

.payment-methods .payment-method__single img {
  max-width: 180px;
  max-height: 68px;
  /* the theme sets object-fit:cover globally, which crops logos */
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition);
}

.payment-methods .payment-method__single:hover img {
  opacity: 1;
}

/* ------------------------------------------------------------ our team ---- */

.advisor .thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-color: #191d2b;
}

/* ----------------------------------------------------- process timeline ---- */

.tokenomics .tokenomics__single .date p {
  letter-spacing: 1px;
}

/* -------------------------------------------- contact cards (dark pages) --- */

.page-inner .contact-overview .contact-overview__wrapper::before {
  border-color: rgba(198, 231, 87, 0.35);
  background: linear-gradient(180deg, #57aa22 0%, #e3af23 100%);
  box-shadow: none;
  opacity: 0.55;
}

.page-inner .contact-overview .contact-overview__single {
  background: #0d0f0e;
  border-color: #132b23;
  box-shadow: none;
}

.page-inner .contact-overview h2,
.page-inner .contact-overview h5 {
  color: var(--white);
}

.page-inner .contact-overview a,
.page-inner .contact-overview p {
  color: rgba(255, 255, 255, 0.66);
}

.page-inner .contact-overview a:hover {
  color: var(--primary-color);
}

/* ---------------------------------------------- legal pages (dark pages) --- */

.page-inner .terms .terms__tab {
  background-color: #0d0f0e;
  border: 1px solid #132b23;
  position: sticky;
  top: 110px;
}

.page-inner .terms .terms__tab button {
  color: rgba(255, 255, 255, 0.6);
  text-align: start;
}

.page-inner .terms .terms__tab button:hover,
.page-inner .terms .terms__tab .active {
  color: var(--primary-color);
  border-color: #132b23;
}

.page-inner .terms .terms__tab .active::before {
  background-color: var(--primary-color);
}

.page-inner .terms .terms-group h4,
.page-inner .terms .terms-group h5 {
  color: var(--white);
}

.page-inner .terms .terms-group h5 {
  font-family: var(--oswald);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-inner .terms .terms-group p {
  color: rgba(255, 255, 255, 0.66);
}

.page-inner .terms .terms-group ul {
  color: rgba(255, 255, 255, 0.66);
  padding-inline-start: 20px;
}

.page-inner .terms .terms-group li {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--oswald);
  font-weight: 400;
}

.page-inner .terms .terms-group a {
  color: var(--primary-color);
}

.page-inner .terms .terms-group a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- sign in (dark pages) --- */

.page-inner .authentication .authentication__wrapper::after {
  border-color: rgba(198, 231, 87, 0.35);
  background: linear-gradient(180deg, #57aa22 0%, #e3af23 100%);
  box-shadow: none;
  opacity: 0.5;
  border-radius: 12px;
}

.page-inner .authentication .authentication__inner {
  background-color: #0d0f0e;
  border: 1px solid #132b23;
  border-radius: 12px;
}

.page-inner .authentication h4 {
  color: var(--white);
}

.page-inner .authentication input {
  background-color: #14121f;
  border-color: #132b23;
  color: var(--white);
}

.page-inner .authentication input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.page-inner .authentication p,
.page-inner .authentication .footer__newsletter-check label {
  color: rgba(255, 255, 255, 0.6);
}

.page-inner .authentication p a,
.page-inner .authentication .footer__newsletter-check label a {
  color: var(--primary-color);
}

/* -------------------------------------------------------- form feedback --- */

.form-status {
  display: none;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 10px;
  font-family: var(--oswald);
  font-size: 16px;
  line-height: 26px;
  border: 1px solid transparent;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #d8f39a;
  background-color: rgba(198, 231, 87, 0.1);
  border-color: rgba(198, 231, 87, 0.45);
}

.form-status.is-error {
  color: #ffc9c9;
  background-color: rgba(255, 99, 99, 0.1);
  border-color: rgba(255, 99, 99, 0.45);
}

.form-status.is-pending {
  color: rgba(255, 255, 255, 0.72);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

button[disabled],
.btn--primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.field-hint {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-top: 8px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------- contact form --- */

.contact-three__form .input-single select {
  width: 100%;
  padding: 20px 24px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--oswald);
  font-size: 18px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position: calc(100% - 26px) 50%, calc(100% - 19px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-three__form .input-single select option {
  background-color: #14121f;
  color: var(--white);
}

/* ------------------------------------------------------------ responsive --- */

@media (max-width: 991px) {
  .results__single {
    padding: 28px 22px;
  }

  .page-inner .terms .terms__tab {
    position: static;
  }
}

@media (max-width: 575px) {
  .allocation__tab-single .feature-list li {
    width: 100%;
  }

  .payment-methods .payment-method__single {
    width: 190px;
    height: 88px;
  }

  .payment-methods .payment-method__single img {
    max-width: 140px;
  }
}
