/* ===================================================================
   Bright Future Community Development Services Inc.
   Enhancements: Platform section, Donate/GoFundMe section,
   scroll-reveal animations, and interactive hover states.
   Loaded AFTER the page's inline <style> so these rules take effect.
   =================================================================== */

/* ---------------- Scroll reveal ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > * {
  animation: bfcds-fade-up 0.6s ease forwards;
}

.reveal-stagger > *:nth-child(1) { animation-delay: 0.02s; }
.reveal-stagger > *:nth-child(2) { animation-delay: 0.10s; }
.reveal-stagger > *:nth-child(3) { animation-delay: 0.18s; }
.reveal-stagger > *:nth-child(4) { animation-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { animation-delay: 0.34s; }
.reveal-stagger > *:nth-child(6) { animation-delay: 0.42s; }

@keyframes bfcds-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   REDESIGNED NAV — consolidated top-level items + dropdowns
   ========================================================== */

.nav-links {
  gap: 6px !important;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-item > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--deep-green);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.86;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.nav-item > a:hover,
.nav-item > .nav-trigger:hover,
.nav-item.open > .nav-trigger {
  background: rgba(19, 34, 22, 0.06);
  color: var(--gold-dark);
  opacity: 1;
}

.nav-trigger .caret {
  font-size: 9px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.nav-item.has-dropdown:hover .caret,
.nav-item.open .caret {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--white);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(19, 34, 22, 0.18);
  border: 1px solid rgba(19, 34, 22, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--deep-green);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown a small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
  opacity: 0.9;
}

.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--gold-dark);
  transform: translateX(3px);
}

.nav-cta {
  margin-left: 6px;
  padding: 12px 22px !important;
  background: var(--gold);
  color: var(--deep-green);
  font-weight: 800 !important;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217, 163, 41, 0.22);
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

/* Kill the old underline hover on the redesigned nav-items */
.nav-links a:not(.nav-cta)::after {
  display: none;
}

/* Mobile nav dropdowns */
@media (max-width: 980px) {
  .nav-item,
  .nav-item > a,
  .nav-item > .nav-trigger {
    width: 100%;
  }

  .nav-item > a,
  .nav-item > .nav-trigger {
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(19, 34, 22, 0.04);
    border-radius: 12px;
    margin: 4px 0 6px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    width: 100%;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .nav-item.has-dropdown:hover .nav-dropdown {
    /* on mobile, only .open (click) reveals it, not hover */
    display: none;
  }

  .nav-item.has-dropdown.open:hover .nav-dropdown {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ---------------- Global interactive polish ---------------- */

.card,
.step,
.program,
.event,
.highlight-card,
.platform-card,
.other-profile-card,
.nft-card,
.creator-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.platform-card:hover,
.nft-card:hover,
.creator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(19, 34, 22, 0.16);
  border-color: rgba(217, 163, 41, 0.45);
}

.step:hover .step-number {
  transform: scale(1.12) rotate(-6deg);
  background: var(--gold);
  color: var(--deep-green);
}

.step-number {
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.program:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(19, 34, 22, 0.12);
}

.event:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 36px rgba(19, 34, 22, 0.12);
}

.event-date {
  transition: transform 0.3s ease;
}

.event:hover .event-date {
  transform: scale(1.06);
}

.btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.btn:active {
  transform: translateY(0);
}

.nav-links a {
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gold-dark);
  transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.brand img {
  transition: transform 0.4s ease;
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.hero-card {
  animation: bfcds-float 6s ease-in-out infinite;
}

@keyframes bfcds-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.program-chip {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-chip:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 22px rgba(19, 34, 22, 0.10);
}

/* ---------------- Badges ---------------- */

.badge-soon {
  display: inline-block;
  background: rgba(19, 34, 22, 0.08);
  color: var(--deep-green);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================
   PLATFORM SECTION (NFT / Web & Mobile marketplace overview)
   ========================================================== */

.platform-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.platform-intro {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.platform-intro p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 17px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 34, 22, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 16px 42px rgba(19, 34, 22, 0.08);
}

.platform-card .platform-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--deep-green);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.platform-card h3 {
  font-size: 19px;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.platform-card p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 14px;
}

.platform-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: rgba(19, 34, 22, 0.10);
  color: var(--deep-green);
}

.btn-disabled:hover {
  transform: none;
  filter: none;
}

/* ==========================================================
   DONATE / GOFUNDME SECTION
   ========================================================== */

.donate-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 163, 41, 0.18), transparent 32%),
    var(--cream-2);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.donate-campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(19, 34, 22, 0.08);
}

.donate-campaign-card h2 {
  font-size: 38px;
  color: var(--deep-green);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.donate-campaign-card > p.donate-lede {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.donate-progress-wrap {
  margin-bottom: 22px;
}

.donate-progress-numbers {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.donate-raised {
  font-size: 30px;
  font-weight: 900;
  color: var(--deep-green);
}

.donate-raised span {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}

.donate-goal {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.donate-progress-bar {
  width: 100%;
  height: 20px;
  background: var(--soft-green);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 6px rgba(19, 34, 22, 0.12);
}

.donate-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.donate-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: bfcds-shimmer 2.2s linear infinite;
}

@keyframes bfcds-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.donate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 28px;
}

.donate-stat {
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(19, 34, 22, 0.08);
}

.donate-stat strong {
  display: block;
  font-size: 26px;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.donate-stat span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

/* Fund allocation toggle + panel */

.allocation-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.allocation-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.allocation-panel.open {
  max-height: 900px;
  opacity: 1;
  margin-top: 26px;
}

.allocation-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px dashed rgba(19, 34, 22, 0.18);
}

.allocation-chart-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.allocation-legend {
  display: grid;
  gap: 12px;
}

.allocation-legend-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
}

.allocation-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.allocation-legend-item strong {
  color: var(--deep-green);
  font-weight: 800;
}

/* Pledge / donation form card */

.donate-form-card {
  background: var(--deep-green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}

.donate-form-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}

.donate-form-card .form-sub {
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group .optional-tag {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

textarea.form-control {
  resize: vertical;
  min-height: 70px;
}

.amount-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.amount-chip {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.amount-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.amount-chip.selected {
  background: var(--gold);
  color: var(--deep-green);
  border-color: var(--gold);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.pledge-submit-btn {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.5;
}

.form-feedback {
  font-family: Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(217, 163, 41, 0.18);
  color: var(--gold);
}

.form-feedback.error {
  display: block;
  background: rgba(220, 90, 90, 0.18);
  color: #ff9d9d;
}

/* Supporters wall */

.supporters-wall {
  margin-top: 44px;
}

.supporters-wall-title {
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  text-align: center;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.supporter-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(19, 34, 22, 0.08);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.supporter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(19, 34, 22, 0.12);
}

.supporter-card .supporter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.supporter-card .supporter-name {
  font-weight: 800;
  color: var(--deep-green);
  font-size: 15px;
}

.supporter-card .supporter-amount {
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 14px;
}

.supporter-card .supporter-message {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.supporters-empty {
  text-align: center;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 14px;
  grid-column: 1 / -1;
}

.supporter-badge {
  display: inline-block;
  margin-top: 8px;
  background: rgba(217, 163, 41, 0.16);
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

/* ==========================================================
   PAYMENT METHOD TABS (Pledge / Card)
   ========================================================== */

.pay-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pay-tab {
  flex: 1;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-tab:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.pay-tab.active {
  background: var(--gold);
  color: var(--deep-green);
  box-shadow: 0 8px 20px rgba(217, 163, 41, 0.28);
}

.pay-pane {
  display: none;
  animation: bfcds-fade-up 0.35s ease;
}

.pay-pane.active {
  display: block;
}

/* Stripe card mount + form */

.stripe-card-mount {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.stripe-card-mount.StripeElement--focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

.stripe-card-mount.StripeElement--invalid {
  border-color: #ff9d9d;
}

.stripe-error {
  display: none;
  margin-top: 8px;
  color: #ff9d9d;
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
}

.stripe-test-hint {
  margin-top: 6px;
  padding: 10px 12px;
  background: rgba(217, 163, 41, 0.12);
  border: 1px dashed rgba(217, 163, 41, 0.35);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.stripe-test-hint strong {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.stripe-test-hint code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 11.5px;
}

.stripe-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 14px;
}

.stripe-badge-row .stripe-mark {
  background: linear-gradient(135deg, #635bff, #7d3cff);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

.stripe-submit-btn {
  width: 100%;
  margin-top: 10px;
  background: var(--gold);
  color: var(--deep-green);
}

.form-feedback.info {
  display: block;
  background: rgba(99, 91, 255, 0.18);
  color: #cbc6ff;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 980px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .allocation-inner {
    grid-template-columns: 1fr;
  }

  .supporters-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .donate-stats {
    grid-template-columns: 1fr;
  }

  .donate-campaign-card,
  .donate-form-card {
    padding: 28px 22px;
  }

  .supporters-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   NFT SCAPE EXPANSION — process rows, marketplace preview,
   creators, benefits, utility, features, journey, footer links
   (Reuses .card, .platform-card, .platform-grid, .step,
   .step-number, .btn, .cta-box, .platform-cta-row wherever
   possible — see index.html for usage.)
   ========================================================== */

/* ---- Horizontal step/process rows (How the Marketplace Works, Your Journey) ---- */

.process-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.process-row .step {
  flex: 1 1 190px;
  max-width: 230px;
}

.process-arrow {
  flex: 0 0 auto;
  align-self: center;
  color: var(--gold-dark);
  font-size: 26px;
  font-weight: 900;
  opacity: 0.55;
  padding-top: 28px;
}

/* ---- Marketplace Preview: NFT cards ---- */

.nft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.nft-card {
  padding: 0;
  overflow: hidden;
}

.nft-thumb {
  height: 168px;
  display: grid;
  place-items: center;
  font-size: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-green), var(--green));
}

.nft-card-body {
  padding: 22px 24px 26px;
}

.nft-card-body h3 {
  color: var(--deep-green);
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.nft-meta {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.nft-meta strong {
  color: var(--text);
}

.nft-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.nft-price {
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--gold-dark);
  font-size: 16px;
}

.badge-utility {
  display: inline-block;
  background: rgba(217, 163, 41, 0.16);
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.nft-card-body .btn {
  width: 100%;
}

.section-note {
  text-align: center;
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  margin: -26px auto 36px;
  max-width: 640px;
}

/* ---- Featured Creators ---- */

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.creator-card {
  text-align: center;
}

.creator-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.creator-card small {
  display: block;
  font-family: Arial, sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 11px;
  margin-bottom: 8px;
}

.creator-card h3 {
  color: var(--deep-green);
  font-size: 22px;
  margin-bottom: 8px;
}

.creator-nft-count {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 18px;
}

.creator-card .btn {
  width: 100%;
}

/* ---- NFT Utility grid (small icon cards inside .grid-3 .card) ---- */

.utility-grid .card .platform-icon {
  margin-bottom: 14px;
}

/* ---- CTA banner with multiple buttons ---- */

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ---- Footer quick links ---- */

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 6px 0 22px;
  font-family: Arial, sans-serif;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-dark);
  opacity: 1;
}

/* ---- Responsive ---- */

@media (max-width: 980px) {
  .nft-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .creator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-row {
    flex-direction: column;
    align-items: stretch;
  }

  .process-row .step {
    max-width: 100%;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    align-self: center;
  }
}

@media (max-width: 560px) {
  .nft-grid {
    grid-template-columns: 1fr;
  }

  .creator-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 8px 14px;
  }
}
