/* ============================================================
   BUSINESS OPPORTUNITY — Full page redesign (self-contained)
   Typography: Plus Jakarta Sans (scoped to this page)
============================================================ */

.opp-page-body {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  background: #f0f4fa;
  scroll-padding-top: 148px;
}

/* ── Hero ─────────────────────────────────────────────────── */

.opp-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.opp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.opp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.opp-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(8, 18, 42, 0.94) 0%, rgba(17, 79, 199, 0.72) 42%, rgba(8, 18, 42, 0.55) 100%),
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(77, 136, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.opp-hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 6% 72px;
}

.opp-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 13px;
  font-weight: 500;
}

.opp-crumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.opp-crumb a:hover {
  color: #fff;
}

.opp-crumb span {
  color: #fff;
  font-weight: 600;
}

.opp-crumb i {
  font-size: 16px;
  opacity: 0.6;
}

.opp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.opp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.opp-hero__copy h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 14ch;
}

.opp-hero__lead {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-bottom: 32px;
}

.opp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.opp-hero__cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.opp-hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.opp-hero-card--main {
  grid-row: span 2;
  position: relative;
  min-height: 280px;
}

.opp-hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.opp-hero-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(8, 18, 42, 0.85));
}

.opp-hero-card__overlay strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.opp-hero-card__overlay span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

.opp-hero-card:not(.opp-hero-card--main) {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.opp-hero-card:not(.opp-hero-card--main) i {
  font-size: 22px;
  color: #7eb3ff;
  margin-bottom: 6px;
}

.opp-hero-card:not(.opp-hero-card--main) strong {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.opp-hero-card:not(.opp-hero-card--main) span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.8;
}

.opp-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

.opp-hero__scroll i {
  font-size: 20px;
  animation: opp-bounce 2s ease infinite;
}

@keyframes opp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Buttons ─────────────────────────────────────────────── */

.opp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 2px solid transparent;
}

.opp-btn--light {
  background: #fff;
  color: #114fc7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.opp-btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.opp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.opp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.opp-btn--primary {
  background: #276cf5;
  color: #fff;
}

.opp-btn--primary:hover {
  background: #1f5fe0;
  transform: translateY(-2px);
}

.opp-btn--outline {
  background: #fff;
  color: #276cf5;
  border-color: rgba(39, 108, 245, 0.3);
}

.opp-btn--outline:hover {
  background: #dce8ff;
}

/* ── Dock nav ────────────────────────────────────────────── */

/* =========================================================
   FLOATING SIDEBAR NAV
========================================================= */

.opp-dock{

  position:fixed;

  top:0;
  left:0;

  width:260px;
  height:100vh;

  background:#fff;

  z-index:1000;

  padding:90px 18px 30px;

  border-right:1px solid rgba(0,0,0,0.06);

  box-shadow:
  10px 0 40px rgba(15,23,42,0.08);

  overflow-y:auto;

  transform:translateX(-100%);

  transition:0.4s ease;

}

/* ACTIVE */

.opp-dock.active{

  transform:translateX(0);

}

/* INNER */

.opp-dock__inner{

  display:flex;
  flex-direction:column;

  gap:10px;

}

/* LINKS */

.opp-dock a{

  display:flex;
  align-items:center;

  gap:12px;

  padding:14px 18px;

  border-radius:14px;

  text-decoration:none;

  color:#5b6475;

  font-size:14px;
  font-weight:600;

  transition:0.3s ease;

}

.opp-dock a::before{

  content:"›";

  font-size:18px;

  color:#276cf5;

}

/* HOVER */

.opp-dock a:hover,
.opp-dock a.is-active{

  background:#dce8ff;

  color:#276cf5;

  transform:translateX(4px);

}

/* =========================================================
   TOGGLE BUTTON
========================================================= */

.opp-dock-toggle{

  position:fixed;

  top:50%;

  left:0;

  transform:translateY(-50%);

  width:46px;
  height:80px;

  border:none;

  border-radius:0 16px 16px 0;

  background:#276cf5;

  color:#fff;

  font-size:28px;

  display:flex;

  align-items:center;
  justify-content:center;

  cursor:pointer;

  z-index:1002;

  box-shadow:
  0 10px 25px rgba(39,108,245,0.28);

  transition:0.3s ease;

}

.opp-dock-toggle:hover{

  width:52px;

}

/* =========================================================
   OVERLAY
========================================================= */

.opp-dock-overlay{

  position:fixed;

  inset:0;

  background:rgba(0,0,0,0.45);

  backdrop-filter:blur(4px);

  z-index:999;

  opacity:0;
  visibility:hidden;

  transition:0.3s ease;

}

.opp-dock-overlay.active{

  opacity:1;
  visibility:visible;

}
/* ── Main layout ─────────────────────────────────────────── */

.opp-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6% 80px;
}

.opp-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 8px;
  background: #dce8ff;
  color: #276cf5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.opp-label--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.opp-block__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.opp-block__head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 14px;
}

.opp-block__head p {
  font-size: 16px;
  line-height: 1.75;
  color: #5b6475;
}

.opp-block__head--light h2,
.opp-block__head--light p {
  color: #fff;
}

.opp-block {
  padding: 80px 0;
}

/* Disclaimer */
.opp-disclaimer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 40px 0 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.opp-disclaimer i {
  font-size: 22px;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.opp-disclaimer p {
  font-size: 14px;
  line-height: 1.7;
  color: #78350f;
}

/* Pillars */
.opp-pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 48px 0 0;
}

.opp-pillars article {
  padding: 24px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.opp-pillars article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(39, 108, 245, 0.12);
}

.opp-pillars i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #dce8ff;
  color: #276cf5;
  font-size: 22px;
}

.opp-pillars article:nth-child(2) i { background: #d1fae5; color: #059669; }
.opp-pillars article:nth-child(3) i { background: #ede9fe; color: #7c3aed; }
.opp-pillars article:nth-child(4) i { background: #fef3c7; color: #d97706; }
.opp-pillars article:nth-child(5) i { background: #ffe4e6; color: #e11d48; }
.opp-pillars article:nth-child(6) i { background: #cffafe; color: #0891b2; }

.opp-pillars h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.opp-pillars p {
  font-size: 12px;
  line-height: 1.55;
  color: #5b6475;
}

/* Model */
.opp-model {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.opp-model__visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.opp-model__visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.opp-model__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.opp-model__badge i {
  color: #276cf5;
  font-size: 18px;
}

.opp-model__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.opp-model__cards article {
  padding: 22px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s;
}

.opp-model__cards article:hover {
  transform: translateY(-3px);
}

.opp-model__cards article:nth-child(5) {
  grid-column: span 2;
}

.opp-model__cards span {
  font-size: 11px;
  font-weight: 800;
  color: #276cf5;
  opacity: 0.5;
}

.opp-model__cards i {
  display: block;
  font-size: 24px;
  color: #276cf5;
  margin: 8px 0 10px;
}

.opp-model__cards h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.opp-model__cards p {
  font-size: 13px;
  line-height: 1.6;
  color: #5b6475;
}

/* Dark timeline block */
.opp-block--dark {
  margin-left: calc(-6% - ((100vw - 100%) / 2));
  margin-right: calc(-6% - ((100vw - 100%) / 2));
  padding-left: calc(6% + ((100vw - 100%) / 2));
  padding-right: calc(6% + ((100vw - 100%) / 2));
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, #0a1628 0%, #114fc7 55%, #0a1628 100%);
  color: #fff;
}

.opp-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.opp-timeline li {
  position: relative;
  padding-top: 8px;
}

.opp-timeline__dot {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 24px;
}

.opp-timeline__body span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.55;
}

.opp-timeline__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0 8px;
}

.opp-timeline__body p {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.75;
}

/* Start section */
.opp-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0;
}

.opp-start__copy h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #111827;
}

.opp-start__copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: #5b6475;
  margin-bottom: 24px;
}

.opp-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opp-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.opp-checks i {
  color: #276cf5;
  font-size: 18px;
}

.opp-start__media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
}

.opp-start__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.opp-start__float {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.opp-start__float i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #dce8ff;
  color: #276cf5;
  font-size: 24px;
}

.opp-start__float strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.opp-start__float span {
  font-size: 12px;
  color: #5b6475;
}

/* Income bento */
.opp-income {
  padding: 80px 0;
}

.opp-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}

.opp-bento__item {
  position: relative;
  padding: 26px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.opp-bento__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(39, 108, 245, 0.14);
}

.opp-bento__item--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  min-height: 340px;
  color: #fff;
  border: none;
}

.opp-bento__item--hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opp-bento__item--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(17, 79, 199, 0.92), rgba(8, 18, 42, 0.75));
}

.opp-bento__content {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.opp-bento__num {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

.opp-bento__item--hero .opp-bento__num,
.opp-bento__item--hero h3,
.opp-bento__item--hero p {
  color: #fff;
}

.opp-bento__item--hero i {
  font-size: 32px;
  margin: 12px 0;
  opacity: 0.9;
}

.opp-bento__item:not(.opp-bento__item--hero) .opp-bento__num {
  display: block;
  color: #276cf5;
  margin-bottom: 10px;
}

.opp-bento__item:not(.opp-bento__item--hero) i {
  font-size: 26px;
  color: #276cf5;
  margin-bottom: 12px;
  display: block;
}

.opp-bento__item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.opp-bento__item p {
  font-size: 13px;
  line-height: 1.65;
  color: #5b6475;
}

.opp-bento__item--hero h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.opp-bento__item--hero p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.opp-income__note {
  margin-top: 28px;
  text-align: center;
}

.opp-income__note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #276cf5;
  text-decoration: none;
}

.opp-income__note a:hover {
  text-decoration: underline;
}

/* Bonuses */
.opp-bonuses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.opp-bonuses article {
  padding: 32px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.25s;
}

.opp-bonuses article:hover {
  transform: translateY(-6px);
}

.opp-bonuses__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #dce8ff, #fff);
  font-size: 28px;
  color: #276cf5;
}

.opp-bonuses article:nth-child(2) .opp-bonuses__icon { background: linear-gradient(135deg, #d1fae5, #fff); color: #059669; }
.opp-bonuses article:nth-child(3) .opp-bonuses__icon { background: linear-gradient(135deg, #fef3c7, #fff); color: #d97706; }
.opp-bonuses article:nth-child(4) .opp-bonuses__icon { background: linear-gradient(135deg, #ede9fe, #fff); color: #7c3aed; }

.opp-bonuses h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.opp-bonuses p {
  font-size: 13px;
  line-height: 1.65;
  color: #5b6475;
}

/* Ranks */
.opp-ranks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 0;
}

.opp-ranks__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.opp-ranks__card--star {
  direction: rtl;
}

.opp-ranks__card--star > * {
  direction: ltr;
}

.opp-ranks__visual {
  position: relative;
  min-height: 320px;
}

.opp-ranks__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.opp-ranks__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opp-ranks__body h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #111827;
}

.opp-ranks__body > p {
  font-size: 14px;
  line-height: 1.75;
  color: #5b6475;
  margin-bottom: 20px;
}

.opp-ranks__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opp-ranks__body li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.opp-ranks__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #276cf5;
}

.opp-ranks__card--star .opp-ranks__body li::before {
  background: #7c3aed;
}

.opp-star-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
  justify-content: center;
}

.opp-star-badge i {
  font-size: 28px;
}

.opp-star-badge span {
  font-size: 11px;
  letter-spacing: 1px;
}

/* Travel rewards */
/* =========================================================
   TRAVEL REWARDS SECTION
========================================================= */

.opp-rewards{

  position:relative;

  margin:
  0 calc(-6% - ((100vw - 100%) / 2));

  min-height:560px;

  display:flex;

  align-items:center;

  overflow:hidden;

  isolation:isolate;

  background:#081229;

}

/* BACKGROUND WRAPPER */

.opp-rewards__bg{

  position:absolute;

  inset:0;

  z-index:-3;

}

/* IMAGE */

.opp-rewards__bg img{

  width:100%;
  height:100%;

  object-fit:cover;

  object-position:center;

  transform:scale(1.03);

}

/* DARK PREMIUM OVERLAY */

.opp-rewards::before{

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  110deg,
  rgba(4,12,24,0.92) 0%,
  rgba(10,28,52,0.84) 35%,
  rgba(20,72,170,0.42) 72%,
  rgba(255,255,255,0.02) 100%
  );

  z-index:-2;

}

/* LIGHT GLOW EFFECT */

.opp-rewards::after{

  content:"";

  position:absolute;

  width:700px;
  height:700px;

  top:-180px;
  left:-120px;

  background:
  radial-gradient(
  circle,
  rgba(39,108,245,0.20) 0%,
  transparent 72%
  );

  z-index:-1;

  pointer-events:none;

}

/* CONTENT AREA */

.opp-rewards__content{

  width:min(1240px,92%);

  margin:auto;

  position:relative;

  z-index:5;

  display:flex;

  flex-direction:column;

  align-items:flex-start;

  padding:90px 0;

}

/* TAG */

.opp-rewards__tag{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:12px 22px;

  border-radius:40px;

  background:
  rgba(255,255,255,0.10);

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

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:13px;

  font-weight:600;

  margin-bottom:26px;

}

/* HEADING */

.opp-rewards__content h2{

  font-size:64px;

  line-height:1.08;

  font-weight:800;

  color:#fff;

  max-width:720px;

  margin-bottom:24px;

  letter-spacing:-1.5px;

}

/* PARAGRAPH */

.opp-rewards__content p{

  max-width:620px;

  font-size:18px;

  line-height:1.8;

  color:
  rgba(255,255,255,0.78);

  margin-bottom:40px;

}

/* DESTINATION LIST */

.opp-rewards__destinations{

  display:flex;

  flex-wrap:wrap;

  gap:14px;

  max-width:760px;

}

/* DESTINATION CHIP */

.opp-rewards__destinations span{

  padding:14px 22px;

  border-radius:14px;

  background:
  rgba(255,255,255,0.10);

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

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:14px;

  font-weight:600;

  transition:0.35s ease;

}

/* HOVER */

.opp-rewards__destinations span:hover{

  background:#276cf5;

  transform:translateY(-4px);

  border-color:#276cf5;

}

/* OPTIONAL FLOATING ICON */

.opp-rewards__plane{

  position:absolute;

  top:70px;
  right:90px;

  font-size:90px;

  color:
  rgba(255,255,255,0.10);

  transform:rotate(18deg);

  z-index:2;

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:992px){

  .opp-rewards{

    min-height:auto;

  }

  .opp-rewards__content{

    padding:90px 0 70px;

  }

  .opp-rewards__content h2{

    font-size:42px;

  }

}

@media(max-width:768px){

  .opp-rewards{

    margin:0;

    border-radius:0;

  }

  .opp-rewards__content{

    padding:70px 20px 60px;

  }

  .opp-rewards__content h2{

    font-size:32px;

    line-height:1.18;

  }

  .opp-rewards__content p{

    font-size:15px;

  }

  .opp-rewards__destinations{

    gap:10px;

  }

  .opp-rewards__destinations span{

    padding:11px 16px;

    font-size:12px;

  }

}
.opp-rewards__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 6%;
  color: #fff;
}

.opp-rewards__inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 16ch;
}

.opp-rewards__inner > p {
  font-size: 16px;
  opacity: 0.88;
  margin-bottom: 32px;
  max-width: 48ch;
}

.opp-rewards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(8, 18, 42, 0.92) 0%, rgba(8, 18, 42, 0.5) 55%, transparent 100%);
}

.opp-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opp-destinations span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.opp-destinations span:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Security */
.opp-security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

.opp-security__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.opp-security__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opp-security__body h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111827;
}

.opp-security__body > p {
  font-size: 15px;
  line-height: 1.75;
  color: #5b6475;
  margin-bottom: 24px;
}

.opp-security__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.opp-security__body li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.opp-security__body li i {
  font-size: 22px;
  color: #276cf5;
}

/* Tech */
.opp-tech {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #0a1628;
  color: #fff;
  margin: 80px 0;
  box-shadow: 0 24px 64px rgba(8, 18, 42, 0.2);
}

.opp-tech__visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.85;
}

.opp-tech__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opp-tech__content h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 14px;
}

.opp-tech__content > p {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.78;
  margin-bottom: 28px;
}

.opp-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opp-tech__grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
}

.opp-tech__grid i {
  font-size: 20px;
  color: #7eb3ff;
}

/* Why grid */
.opp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.opp-why__grid article {
  padding: 32px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s;
}

.opp-why__grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(39, 108, 245, 0.1);
}

.opp-why__grid em {
  display: block;
  font-size: 48px;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  color: #dce8ff;
  margin-bottom: 12px;
}

.opp-why__grid h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.opp-why__grid p {
  font-size: 13px;
  line-height: 1.65;
  color: #5b6475;
}

/* Mission */
.opp-mission {
  position: relative;
  margin: 80px calc(-6% - ((100vw - 100%) / 2)) 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.opp-mission > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opp-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39, 108, 245, 0.9), rgba(17, 79, 199, 0.85));
  z-index: 0;
}

.opp-mission__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 6%;
  color: #fff;
}

.opp-mission__inner h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 20ch;
}

.opp-mission__inner p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 56ch;
}

/* Join CTA */
.opp-join {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
  padding: 56px 48px;
  border-radius: 28px;
  background: #fff;
  border: 2px solid #dce8ff;
  box-shadow: 0 24px 64px rgba(39, 108, 245, 0.12);
}

.opp-join__copy h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.opp-join__copy p {
  font-size: 15px;
  line-height: 1.75;
  color: #5b6475;
  max-width: 52ch;
}

.opp-join__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .opp-pillars article,
  .opp-model__cards article,
  .opp-bento__item,
  .opp-bonuses article,
  .opp-why__grid article {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .opp-pillars.is-visible article,
  .opp-model__cards.is-visible article,
  .opp-bento.is-visible .opp-bento__item,
  .opp-bonuses.is-visible article,
  .opp-why__grid.is-visible article {
    opacity: 1;
    transform: translateY(0);
  }

  .opp-pillars.is-visible article:nth-child(1) { transition-delay: 0.05s; }
  .opp-pillars.is-visible article:nth-child(2) { transition-delay: 0.1s; }
  .opp-pillars.is-visible article:nth-child(3) { transition-delay: 0.15s; }
  .opp-pillars.is-visible article:nth-child(4) { transition-delay: 0.2s; }
  .opp-pillars.is-visible article:nth-child(5) { transition-delay: 0.25s; }
  .opp-pillars.is-visible article:nth-child(6) { transition-delay: 0.3s; }
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .opp-hero__grid,
  .opp-model,
  .opp-start,
  .opp-security,
  .opp-tech {
    grid-template-columns: 1fr;
  }

  .opp-hero__cards {
    grid-template-columns: 1fr 1fr;
  }

  .opp-hero-card--main {
    grid-row: auto;
    grid-column: span 2;
  }

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

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

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

  .opp-bento__item--hero {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }

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

  .opp-ranks__card,
  .opp-ranks__card--star {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .opp-join {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .opp-hero {
    min-height: auto;
  }

  .opp-hero__wrap {
    padding: 100px 5% 56px;
  }

  .opp-hero__copy h1 {
    max-width: none;
  }

  .opp-hero__cards {
    grid-template-columns: 1fr;
  }

  .opp-hero-card--main {
    grid-column: auto;
  }

  .opp-hero__scroll {
    display: none;
  }

  .opp-main {
    padding: 0 5% 56px;
  }

  .opp-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .opp-model__cards {
    grid-template-columns: 1fr;
  }

  .opp-model__cards article:nth-child(5) {
    grid-column: auto;
  }

  .opp-timeline {
    grid-template-columns: 1fr;
  }

  .opp-checks {
    grid-template-columns: 1fr;
  }

  .opp-bento {
    grid-template-columns: 1fr;
  }

  .opp-bento__item--hero {
    grid-column: auto;
    min-height: 260px;
  }

  .opp-bonuses,
  .opp-why__grid {
    grid-template-columns: 1fr;
  }

  .opp-ranks__body,
  .opp-security__body,
  .opp-tech__content {
    padding: 32px 24px;
  }

  .opp-join {
    padding: 36px 24px;
  }

  .opp-join__actions {
    width: 100%;
  }

  .opp-join__actions .opp-btn {
    width: 100%;
  }

  .opp-block {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .opp-pillars {
    grid-template-columns: 1fr;
  }
}
