/* =========================================================
   INDEEM DEFINITION PAGE
   Standalone definition and philosophy page.
========================================================= */

.indeem-main {
  padding-top: 42px;
}

.indeem-hero,
.indeem-panel,
.indeem-difference {
  border: 1px solid var(--ind-border);
  border-radius: var(--ind-radius);
  background:
    linear-gradient(145deg, rgba(255, 170, 60, 0.08), transparent 42%),
    var(--ind-panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.indeem-hero {
  padding: 50px;
}

.indeem-label {
  margin: 0 0 14px;
  color: var(--ind-orange);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indeem-hero h1,
.indeem-panel h2,
.indeem-difference h2 {
  margin: 0;
  color: #fff8eb;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.indeem-hero > p,
.indeem-panel p,
.indeem-difference p {
  max-width: 900px;
  color: var(--ind-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.indeem-definition-card {
  max-width: 860px;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(255, 170, 60, 0.24);
  border-radius: 20px;
  background: rgba(2, 8, 16, 0.68);
}

.indeem-definition-card h2 {
  margin: 0;
  color: var(--ind-orange);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.indeem-definition-card h2 span {
  color: var(--ind-muted);
  font-size: 0.52em;
}

.indeem-definition-card p {
  margin: 14px 0 0;
  color: #fff8eb;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  line-height: 1.35;
}

.indeem-panel,
.indeem-difference {
  margin-top: 30px;
  padding: 42px;
}

.indeem-why strong,
.indeem-difference strong {
  display: block;
  margin-top: 18px;
  color: var(--ind-orange);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.15;
}

.indeem-history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.indeem-history-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 170, 60, 0.14);
  border-radius: 18px;
  background: rgba(2, 8, 16, 0.54);
}

.indeem-history-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.indeem-history-grid h3 {
  margin: 18px 0 12px;
  color: #fff8eb;
  font-size: 1.35rem;
}

.indeem-history-grid p {
  margin: 12px 0 0;
}

.indeem-history-grid span {
  display: block;
  color: var(--ind-orange);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.indeem-marketers {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(620px, 1.22fr);
  gap: 32px;
  align-items: center;
}

.indeem-marketers h2 {
  margin-top: 20px;
  color: var(--ind-orange);
}

.indeem-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.indeem-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255, 170, 60, 0.16);
  border-radius: 14px;
  background: rgba(2, 8, 16, 0.58);
  color: #fff8eb;
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.indeem-flow span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  z-index: 2;
  color: var(--ind-orange);
  text-shadow: 0 0 14px rgba(255, 138, 31, 0.7);
}

.indeem-difference {
  background:
    radial-gradient(520px 260px at 75% 10%, rgba(255, 138, 31, 0.16), transparent 68%),
    var(--ind-panel);
}

@media (max-width: 1180px) {
  .indeem-marketers,
  .indeem-history-grid {
    grid-template-columns: 1fr;
  }

  .indeem-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .indeem-flow span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .indeem-main {
    padding-top: 18px;
  }

  .indeem-hero,
  .indeem-panel,
  .indeem-difference {
    padding: 24px;
    border-radius: 16px;
  }

  .indeem-hero h1,
  .indeem-panel h2,
  .indeem-difference h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .indeem-flow {
    grid-template-columns: 1fr;
  }
}
