/* ═══════════════════════════════════════════════════════════════
   SupremacyRP – Boutique / style.css
   Palette moodboard : crème · bleu cobalt · mauve · violet · noir
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --cream:        #F2E8DC;
  --cream-card:   #FDFAF7;
  --dark:         #0C0C1E;
  --dark-soft:    #171728;
  --blue:         #3636C0;
  --blue-light:   #5252D4;
  --blue-faint:   rgba(54, 54, 192, .10);
  --rose:         #B87585;
  --purple:       #7854B0;
  --white:        #FFFFFF;
  --gray:         #9A9090;
  --gray-line:    #E4DAD0;

  --ff-head: 'Syne', sans-serif;
  --ff-body: 'Space Grotesk', sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-2xl: 48px;

  --sh-sm: 0 2px 8px  rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.10);
  --sh-lg: 0 20px 60px rgba(0,0,0,.14);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .3s;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.875rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .02em;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg,
.nav-discord svg,
.mobile-discord-btn svg,
.footer-disc svg {
  display: block;
  flex-shrink: 0;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(54,54,192,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(12,12,30,.3);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-white-solid {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white-solid:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: padding var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(242,232,220,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(54,54,192,.12);
  padding: .875rem 0;
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--dark);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:2px;
  background: var(--blue);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { width:100%; }
.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--dark);
  color: var(--cream);
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-discord:hover {
  background: var(--blue);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background var(--dur) var(--ease);
}
.mobile-close:hover { background: rgba(255,255,255,.18); }
.mobile-link {
  font-family: var(--ff-head);
  font-size: clamp(1.55rem, 8vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  text-align: center;
  transition: color var(--dur) var(--ease);
}
.mobile-link:hover { color: var(--blue-light); }
.mobile-menu nav {
  width: min(100%, 22rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
}
.mobile-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #5865F2;
  color: white;
  max-width: calc(100% - 2.5rem);
  text-align: center;
  padding: .875rem 1.4rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
  transition: opacity var(--dur) var(--ease);
}
.mobile-discord-btn:hover { opacity: .85; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

/* dot-grid texture */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(54,54,192,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* animated colour blobs */
.hero-blobs { position:absolute; inset:0; pointer-events:none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.b1 {
  width: 640px; height: 640px;
  background: var(--blue);
  top: -220px; right: -120px;
  opacity: .12;
  animation: blobDrift 9s ease-in-out infinite;
}
.b2 {
  width: 420px; height: 420px;
  background: var(--purple);
  bottom: -80px; left: -80px;
  opacity: .18;
  animation: blobDrift 11s ease-in-out infinite reverse;
}
.b3 {
  width: 320px; height: 320px;
  background: var(--rose);
  top: 40%; left: 18%;
  opacity: .14;
  animation: blobDrift 13s ease-in-out infinite 2s;
}
.b4 {
  width: 200px; height: 200px;
  background: var(--blue-light);
  bottom: 22%; right: 15%;
  opacity: .10;
  animation: blobDrift 8s ease-in-out infinite 1s;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(18px,-28px) scale(1.06); }
  66%      { transform: translate(-14px,14px) scale(.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(100%, 820px);
  min-width: 0;
  padding-inline: .25rem;
}
.hero-label {
  display: inline-block;
  background: var(--blue-faint);
  color: var(--blue);
  border: 1px solid rgba(54,54,192,.22);
  border-radius: 100px;
  padding: .375rem 1.125rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 8.2vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.008em;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  text-wrap: balance;
}
.hero-line-solid,
.hero-line-outline {
  display: inline-block;
  max-width: 100%;
}
.hero-line-solid { color: var(--dark); }
.hero-line-outline {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--blue);
  text-stroke: 1.6px var(--blue);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: rgba(12,12,30,.58);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  flex-wrap: wrap;
}
.hero-btns .btn { max-width: 100%; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  color: rgba(12,12,30,.38);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(12,12,30,.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(1.2); }
}

/* ─── Section skeleton ───────────────────────────────────────── */
.section { padding: 7rem 0; }
.bg-dark  { background: var(--dark); }
.bg-blue  { background: var(--blue); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec-header { text-align:center; margin-bottom: 4rem; }
.sec-tag {
  display: inline-block;
  background: var(--blue-faint);
  color: var(--blue);
  border-radius: 100px;
  padding: .375rem 1.125rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.sec-tag--light {
  background: rgba(242,232,220,.1);
  color: rgba(242,232,220,.85);
}
.sec-tag--white {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.sec-h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.006em;
  line-height: 1.05;
  margin-bottom: .875rem;
  text-wrap: balance;
}
.sec-p {
  font-size: 1.0625rem;
  color: rgba(12,12,30,.55);
  max-width: 560px;
  margin: 0 auto;
}

/* colour helpers */
.c-cream      { color: var(--cream); }
.c-cream-muted{ color: rgba(242,232,220,.6); }
.c-white      { color: var(--white); }
.c-white-muted{ color: rgba(255,255,255,.72); }

/* ─── Credits Grid ───────────────────────────────────────────── */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* card */
.c-card {
  background: var(--cream-card);
  border: 2px solid transparent;
  border-radius: var(--r-xl);
  padding: 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: default;
}
.c-card::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.c-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.c-card:hover::after { transform: scaleX(1); }

/* featured (100€) */
.c-card.featured {
  background: var(--dark);
  border-color: var(--blue);
}
.c-card.featured::after { transform:scaleX(1); background:var(--blue-light); }

/* badge row */
.c-badge-row { min-height:24px; }
.c-badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.c-badge-bonus {
  background: rgba(54,54,192,.12);
  color: var(--blue);
}
.c-badge-best {
  background: #FFD700;
  color: #1a1200;
}
.c-card.featured .c-badge-bonus {
  background: rgba(82,82,212,.3);
  color: #a0a8ff;
}

/* amount */
.c-amount {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue);
}
.c-card.featured .c-amount { color: var(--cream); }
.c-unit {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: .1rem;
}
.c-card.featured .c-unit { color: rgba(242,232,220,.5); }

/* divider */
.c-divider {
  height: 1px;
  background: var(--gray-line);
}
.c-card.featured .c-divider { background: rgba(242,232,220,.12); }

/* price row */
.c-price-row {
  display: flex;
  align-items: baseline;
  gap: .625rem;
}
.c-price {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
}
.c-card.featured .c-price { color: var(--cream); }
.c-ratio {
  font-size: .8125rem;
  color: var(--gray);
}
.c-card.featured .c-ratio { color: rgba(242,232,220,.45); }

/* actions */
.c-actions {
  display: flex;
  gap: .625rem;
  margin-top: auto;
  padding-top: .25rem;
  flex-wrap: wrap;
}
.c-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .625rem .875rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
}
.c-btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.c-btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(54,54,192,.3);
}
.c-card.featured .c-btn-primary {
  background: var(--blue-light);
  border-color: var(--blue-light);
}
.c-card.featured .c-btn-primary:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.c-btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(12,12,30,.18);
  font-size: .8125rem;
}
.c-btn-ghost:hover {
  border-color: var(--dark);
  background: rgba(12,12,30,.05);
}
.c-card.featured .c-btn-ghost {
  color: var(--cream);
  border-color: rgba(242,232,220,.25);
}
.c-card.featured .c-btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(242,232,220,.08);
}

/* ─── Packs Grid ─────────────────────────────────────────────── */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.p-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(242,232,220,.10);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.p-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(242,232,220,.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.p-icon { font-size: 2.25rem; line-height:1; }
.p-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.004em;
  line-height: 1.22;
  color: var(--cream);
}
.p-desc {
  font-size: .9375rem;
  color: rgba(242,232,220,.6);
  line-height: 1.65;
  flex: 1;
}
.p-limits {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.p-limit {
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: 100px;
  background: rgba(242,232,220,.08);
  color: rgba(242,232,220,.65);
  border: 1px solid rgba(242,232,220,.12);
}
.p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242,232,220,.1);
  gap: .875rem;
  flex-wrap: wrap;
}
.p-price {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -.03em;
}
.p-actions { display:flex; gap:.625rem; flex-wrap:wrap; }

/* dark-section card buttons */
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.125rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
}
.p-btn-primary {
  background: var(--blue-light);
  color: var(--white);
  border-color: var(--blue-light);
}
.p-btn-primary:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-1px);
}
.p-btn-ghost {
  background: transparent;
  color: rgba(242,232,220,.8);
  border-color: rgba(242,232,220,.22);
  font-size: .8125rem;
}
.p-btn-ghost:hover {
  border-color: rgba(242,232,220,.55);
  color: var(--cream);
}

/* ─── Premium Grid ───────────────────────────────────────────── */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pm-card {
  background: var(--cream-card);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.pm-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.pm-visual {
  height: 210px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pm-visual--vehicle {
  background: linear-gradient(135deg, #0a0a1e 0%, #1a1a4e 50%, #2a1a40 100%);
}
.pm-visual--villa {
  background: linear-gradient(135deg, #1e0a2a 0%, #3c1d5e 50%, var(--purple) 100%);
}
.pm-visual--vip {
  background: linear-gradient(135deg, #24123d 0%, #4b2a7c 45%, #b87585 100%);
}
.pm-visual-emoji {
  font-size: 5.5rem;
  filter: drop-shadow(0 0 36px rgba(255,255,255,.25));
  animation: floatEmoji 4s ease-in-out infinite;
}
@keyframes floatEmoji {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}
/* subtle abstract circle decoration */
.pm-visual::before {
  content:'';
  position:absolute;
  width:240px; height:240px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.06);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.pm-visual::after {
  content:'';
  position:absolute;
  width:340px; height:340px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,.04);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.pm-body { padding: 2rem 2rem 2rem; }
.pm-title {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.006em;
  line-height: 1.2;
  margin-bottom: .625rem;
}
.pm-desc {
  font-size: .9375rem;
  color: rgba(12,12,30,.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pm-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.pm-feat {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9rem;
  color: rgba(12,12,30,.7);
  line-height: 1.55;
}
.pm-feat-check {
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  font-weight: 800;
  margin-top: .1rem;
}
.pm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-line);
  flex-wrap: wrap;
}
.pm-price {
  font-family: var(--ff-head);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
}
.pm-actions { display:flex; gap:.625rem; flex-wrap:wrap; }
.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .625rem 1.25rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 2px solid transparent;
}
.pm-btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.pm-btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(54,54,192,.3);
}
.pm-btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(12,12,30,.2);
  font-size: .8125rem;
}
.pm-btn-ghost:hover {
  border-color: var(--dark);
  background: rgba(12,12,30,.05);
}

/* ─── Process Steps ──────────────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .875rem;
  flex: 1;
  max-width: 240px;
}
.step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin-top: 3.5rem;
  align-self: flex-start;
}
.step-num {
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}
.step-circle {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--white);
  transition: all var(--dur) var(--ease);
}
.step:hover .step-circle {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
  transform: scale(1.08);
}
.step-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.step-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.process-cta { display:flex; justify-content:center; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark-soft);
  color: var(--cream);
  padding: 5rem 0 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: .875rem;
}
.footer-tagline {
  font-size: .9375rem;
  color: rgba(242,232,220,.5);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.footer-disc {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #5865F2;
  color: white;
  padding: .5625rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  transition: opacity var(--dur) var(--ease);
}
.footer-disc:hover { opacity:.82; }
.footer-nav-h {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(242,232,220,.38);
  margin-bottom: 1.25rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-nav a {
  font-size: .9375rem;
  color: rgba(242,232,220,.65);
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(242,232,220,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8125rem; color: rgba(242,232,220,.3); }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12,12,30,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--cream-card);
  border-radius: var(--r-2xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(54,54,192,.25) transparent;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal::-webkit-scrollbar { width:5px; }
.modal::-webkit-scrollbar-thumb { background:rgba(54,54,192,.25); border-radius:4px; }
.modal-topbar {
  position: sticky;
  top: 0;
  background: rgba(253,250,247,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.25rem .75rem;
  z-index: 2;
  border-bottom: 1px solid transparent;
}
.modal-close {
  width: 38px; height: 38px;
  background: rgba(12,12,30,.07);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background var(--dur) var(--ease);
}
.modal-close:hover { background: rgba(12,12,30,.13); }
.modal-body { padding: 0 2.5rem 2.5rem; }

/* modal typography */
.m-icon { font-size: 2.25rem; margin-bottom: .75rem; display:block; }
.m-title {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.006em;
  margin-bottom: .375rem;
  line-height: 1.2;
}
.m-price {
  font-family: var(--ff-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-line);
}
.m-sec { margin-bottom: 1.375rem; }
.m-sec-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(12,12,30,.38);
  margin-bottom: .625rem;
}
.m-text {
  font-size: .9375rem;
  color: rgba(12,12,30,.72);
  line-height: 1.7;
}
.m-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.m-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: rgba(12,12,30,.72);
  line-height: 1.55;
}
.m-list li::before {
  content:'';
  min-width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: .5rem;
  flex-shrink: 0;
}
.m-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  counter-reset: mstep;
}
.m-steps li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .9375rem;
  color: rgba(12,12,30,.72);
  counter-increment: mstep;
  line-height: 1.55;
}
.m-steps li::before {
  content: counter(mstep);
  min-width: 26px; height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.m-notice {
  background: rgba(54,54,192,.06);
  border: 1px solid rgba(54,54,192,.14);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: rgba(12,12,30,.62);
  line-height: 1.65;
}
.m-notice strong { color: var(--blue); font-weight: 600; }
.m-actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-line);
  margin-top: 1.75rem;
}

.c-card,
.p-card,
.pm-card,
.step,
.footer-brand,
.footer-nav,
.m-actions > * {
  min-width: 0;
}

.sec-p,
.p-desc,
.pm-desc,
.step-desc,
.footer-tagline,
.m-text,
.m-list li,
.m-steps li {
  overflow-wrap: anywhere;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
  .packs-grid   { grid-template-columns: 1fr; }
  .steps-row    { flex-wrap: wrap; gap:2rem; justify-content:center; }
  .step-connector { display:none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1000px) {
  .nav-links  { display:none; }
  .nav-toggle { display:flex; }
}
@media (max-width: 860px) {
  .premium-grid { grid-template-columns:1fr; }
  .hero-h1 { font-size: clamp(2.1rem, 11vw, 4.1rem); }
}
@media (max-width: 640px) {
  .section { padding:5rem 0; }
  .container { padding: 0 1rem; }
  .hero { padding: 7rem 1rem 4rem; }
  .hero-h1 { font-size: clamp(1.85rem, 10.5vw, 3.1rem); }
  .hero-line-outline {
    -webkit-text-stroke: 1.2px var(--blue);
    text-stroke: 1.2px var(--blue);
  }
  .sec-h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }
  .hero-sub br { display:none; }
  .hero-scroll { display:none; }
  .credits-grid { grid-template-columns:1fr; }
  .step { max-width:100%; }
  .footer-inner { grid-template-columns:1fr; gap:2.5rem; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .modal-body { padding:0 1.5rem 2rem; }
  .m-actions { flex-direction:column; }
  .c-actions  { flex-direction:column; }
  .p-footer   { flex-direction:column; align-items:flex-start; }
  .pm-footer  { flex-direction:column; align-items:flex-start; }
  .btn,
  .c-btn,
  .p-btn,
  .pm-btn {
    white-space: normal;
    text-align: center;
  }
}
@media (max-height: 760px) {
  .hero-scroll { display: none; }
}
@media (max-width: 420px) {
  .hero-h1 {
    font-size: clamp(1.55rem, 9.5vw, 2.45rem);
    letter-spacing: -.004em;
  }
  .hero-btns { flex-direction:column; align-items:stretch; }
  .btn { justify-content:center; }
}
