:root {
  --bg: #000;
  --text: #fff;
  --muted: #c9c9c9;
  --gold: #FFD700;
  --gold-2: #ffec8b;
  --surface: #0c0c0c;
  --border: #1f1f1f;
  --ring: 0 0 0 3px color-mix(in oklab, var(--gold) 42%, transparent);
}

.process {
  background: #000;
  color: var(--text);
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

.process-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.process-head .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: .25rem .55rem;
  border-radius: .5rem;
  background: color-mix(in oklab, var(--gold) 78%, transparent);
  color: #111;
}

.process-head h2 {
  margin: .6rem 0 .4rem;
  font-size: clamp(1.6rem, 2.2vw + .8rem, 2.4rem);
  letter-spacing: -.01em;
}

.process-head .lead {
  color: var(--muted);
  max-width: 70ch;
}

/* Cards grid */
.process-cards {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .process-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .process-cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem 1.1rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 450px;
  max-width: 300px;
  margin: 0 auto;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(35% 35% at 20% 20%, color-mix(in oklab, var(--gold) 24%, transparent) 0, transparent 60%),
    radial-gradient(35% 35% at 80% 80%, color-mix(in oklab, var(--gold-2) 22%, transparent) 0, transparent 70%);
  filter: blur(40px);
  opacity: .18;
  pointer-events: none;
  transition: opacity .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--gold) 35%, var(--border));
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, .9);
}

.card:hover::before {
  opacity: .28;
}

.card .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: .75rem;
  margin-bottom: .6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 10px 28px -12px color-mix(in oklab, var(--gold) 60%, transparent);
}

.card .icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin: .2rem 0 .4rem;
  font-size: 1.15rem;
}

.card .desc {
  color: #dfe3ea;
  margin: 0 0 .6rem;
  min-height: 2.6rem;
}

.points {
  margin: 0 0 .7rem;
  padding-left: 1.1rem;
}

.points li {
  margin: .25rem 0;
  color: #cfd5de;
}

.points li::marker {
  color: var(--gold);
}

.more {
  position: absolute;
  bottom: 30px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  color: var(--text);
  transition: color .15s ease, border-color .15s ease;
  padding: 10px;
  background: rgba(27, 27, 27, 0.623);
  border-radius: 200px;
  right: 20px;
}

.more:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* CTA Row */
.process-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 0;
}

.btn {
  --btn-bg: #111;
  --btn-fg: #fff;
  --btn-bd: #232323;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.05rem;
  border-radius: .8rem;
  border: 1px solid var(--btn-bd);
  color: var(--btn-fg);
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--gold) 55%, transparent);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 36px -10px color-mix(in oklab, var(--gold) 70%, transparent);
}

.btn-ghost {
  background: var(--btn-bg);
}

.btn-ghost:hover {
  border-color: color-mix(in oklab, var(--gold) 40%, var(--btn-bd));
  box-shadow: var(--ring);
}

@media (prefers-reduced-motion: reduce) {

  .card,
  .btn {
    transition: none !important;
  }

  .card::before {
    display: none;
  }
}

.icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
