/* ═════════════════════════════════════════════════════════════
   Null Euro — Premium dark theme (Liquid-Glass inspired)
   ═════════════════════════════════════════════════════════════ */
:root {
  /* Surfaces */
  --bg:            #060A08;
  --bg-soft:       #0A130F;
  --surface:       rgba(255, 255, 255, .04);
  --surface-2:     rgba(255, 255, 255, .065);
  --surface-3:     rgba(255, 255, 255, .09);
  --border:        rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .18);

  /* Text */
  --text:     #E9F1EB;
  --text-dim: #A7B6AC;
  --text-mut: #74827A;

  /* Brand — "0 € / free" green */
  --violet:        #2FD576;   /* primary green (kept var name for reuse) */
  --violet-bright: #66EC9E;
  --indigo:        #14B8A6;   /* teal support */
  --cyan:          #34E0C0;   /* mint */
  --emerald:       #2FD576;
  --emerald-deep:  #12A05C;
  --discord:       #5865F2;
  --discord-dark:  #4752C4;

  /* Gradients */
  --grad:      linear-gradient(115deg, #7DF0AD 0%, #2FD576 48%, #14B8A6 100%);
  --grad-soft: linear-gradient(115deg, #34D579, #12A05C);
  --grad-emerald: linear-gradient(120deg, #66EC9E, #16B866);

  --radius:    16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, .61, .17, 1);
  --shadow:    0 24px 60px -22px rgba(0, 0, 0, .7);
  --glow-violet: 0 0 0 1px rgba(47, 213, 118, .4), 0 20px 60px -18px rgba(18, 166, 92, .7);

  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  line-height: 1.06; letter-spacing: -.02em; color: #fff; font-weight: 600;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(139, 92, 246, .35); color: #fff; }

/* ───────────────── Ambient background ───────────────── */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 78%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; will-change: transform; }
.orb-1 { top: -12%; left: -8%;  width: 620px; height: 620px; background: radial-gradient(circle at 30% 30%, #16B866, transparent 70%); }
.orb-2 { top: 4%;  right: -14%; width: 680px; height: 680px; background: radial-gradient(circle at 60% 40%, #0E9488, transparent 70%); opacity: .45; }
.orb-3 { top: 46%; left: 30%;   width: 560px; height: 560px; background: radial-gradient(circle at 50% 50%, #0B7355, transparent 70%); opacity: .35; }
.bg-grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ───────────────── Buttons ───────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 600; cursor: pointer; position: relative; isolation: isolate;
  border: 1px solid transparent; border-radius: 999px;
  padding: .85em 1.6em; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: .58em 1.15em; font-size: .9rem; }
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.ic { width: 1.2em; height: 1.2em; flex: none; }

.btn-primary { color: #fff; background: var(--grad-soft); box-shadow: 0 14px 40px -14px rgba(18,166,92,.8), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--grad); opacity: 0; transition: opacity .3s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 55px -14px rgba(20,184,166,.9), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-primary:hover::after { opacity: 1; }

.btn-discord { background: var(--discord); color: #fff; box-shadow: 0 14px 40px -14px rgba(88,101,242,.85), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-discord:hover { background: #6b76f5; transform: translateY(-2px); box-shadow: 0 22px 55px -14px rgba(88,101,242,1); }

.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--violet); color: #fff; transform: translateY(-2px); }
.btn-ghost .ic { transition: transform .28s var(--ease); }
.btn-ghost:hover .ic { transform: translateX(3px); }

.btn:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 3px; }

/* ───────────────── Header ───────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 1rem 1.5rem;
  transition: padding .3s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 9, 18, .6); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  opacity: 0; transition: opacity .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { padding-block: .7rem; }
.site-header.scrolled::before { opacity: 1; border-bottom-color: var(--border); }

.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: 1.2rem; color: #fff; font-family: "Space Grotesk", sans-serif; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); box-shadow: var(--glow-violet);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: -.04em; color: #04241A;
}
.brand-mark.sm { width: 26px; height: 26px; font-size: .82rem; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 500; font-size: .96rem; }
.nav a { color: var(--text-dim); transition: color .2s; }
.nav a:hover { color: #fff; }

/* ───────────────── Layout helpers ───────────────── */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section-head { max-width: 44ch; margin: 0 auto 3rem; text-align: center; }
.kicker {
  display: inline-block; font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet-bright); margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
.section-sub { color: var(--text-dim); margin-top: 1rem; font-size: 1.05rem; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ───────────────── Hero ───────────────── */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem 4rem; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: .45rem 1rem; font-size: .88rem; font-weight: 500; color: var(--text-dim);
  backdrop-filter: blur(8px); margin-bottom: 1.7rem;
}
.eyebrow #member-count { color: #fff; font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55);} 70% { box-shadow: 0 0 0 9px rgba(52,211,153,0);} 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0);} }

.hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.6rem); font-weight: 700; letter-spacing: -.03em; }
.lead { font-size: 1.18rem; margin: 1.6rem 0 2.2rem; max-width: 34ch; color: var(--text-dim); }
.lead strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.8rem; }
.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px; border-radius: 50%; margin-left: -12px;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: #fff;
  border: 2px solid var(--bg); background: var(--grad-soft);
}
.avatars span:nth-child(1) { margin-left: 0; }
.avatars span:nth-child(2) { background: var(--grad-emerald); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, var(--discord), var(--violet)); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, var(--cyan), var(--indigo)); }
.hero-trust p { font-size: .92rem; color: var(--text-mut); max-width: 24ch; }

/* Hero floating cards */
.hero-stage { position: relative; min-height: 440px; perspective: 1200px; }
.hero-glow {
  position: absolute; inset: 8% 6%; border-radius: 40%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(47,213,118,.5), transparent 62%);
  filter: blur(40px);
}
.float-cards {
  position: absolute; inset: 0; z-index: 1;
  transform-style: preserve-3d; transition: transform .2s var(--ease);
}
.fcard {
  position: absolute; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid var(--border-strong); backdrop-filter: blur(16px);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .3rem; min-width: 172px;
}
.fcard-big { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.55rem; line-height: 1; color: #fff; }
.fcard-big.price { font-size: 2.1rem; background: var(--grad-emerald); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fcard-sub { font-size: .86rem; color: var(--text-dim); }
.fcard-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .5rem; color: var(--violet-bright); background: rgba(47,213,118,.16); border: 1px solid rgba(47,213,118,.28); }
.fcard-ic svg { width: 22px; height: 22px; }
.fcard-ic.ic-grid { color: var(--cyan); background: rgba(52,224,192,.14); border-color: rgba(52,224,192,.28); }
.fcard-ic.ic-live { color: var(--emerald); background: rgba(52,211,153,.16); border-color: rgba(52,211,153,.3); }
.live-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 12px 2px rgba(52,211,153,.8); animation: pulse 2s infinite; }

.fcard-a { top: 4%;  left: 0;    }
.fcard-b { top: 0;   right: 4%;  }
.fcard-c { bottom: 6%; left: 8%; }
.fcard-d { bottom: 0; right: 0;  }
.fcard-c .fcard-big.price { font-size: 2.4rem; }

/* Hero "0 €" coin + orbiting chips */
.coin-wrap { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .2s var(--ease); }
.coin {
  position: absolute; width: 256px; height: 256px; top: calc(50% - 128px); left: calc(50% - 128px);
  display: grid; place-content: center; text-align: center; gap: .15rem; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(47,213,118,.30), rgba(47,213,118,.05) 58%, transparent 72%),
    linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(47,213,118,.45);
  box-shadow: inset 0 0 70px rgba(47,213,118,.16), 0 0 90px -12px rgba(47,213,118,.5), var(--shadow);
  backdrop-filter: blur(10px);
}
.coin::before { content: ""; position: absolute; inset: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.coin::after  { content: ""; position: absolute; inset: 32px; border-radius: 50%; border: 1px dashed rgba(47,213,118,.28); }
.coin-top, .coin-bottom { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.coin-bottom { text-transform: none; letter-spacing: .02em; font-size: .8rem; }
.coin-price {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 4.8rem; line-height: .9; letter-spacing: -.05em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 22px rgba(47,213,118,.35)); margin: .1rem 0;
}
.hchip {
  position: absolute; display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  border: 1px solid var(--border-strong); border-radius: 999px; padding: .55rem 1rem;
  font-size: .84rem; font-weight: 600; color: #fff; backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.hchip .hic { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px 2px rgba(47,213,118,.7); flex: none; }
.hchip .hic.live { animation: pulse 2s infinite; }
.hchip-1 { top: 3%;  left: -2%; }
.hchip-2 { top: 12%; right: -4%; }
.hchip-3 { bottom: 16%; left: 0; }
.hchip-4 { bottom: 3%; right: 2%; }

/* ───────────────── Cards (benefits) ───────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  padding: 2.1rem 1.9rem; backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(420px circle at 50% -10%, rgba(47,213,118,.14), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.3rem; position: relative; }
.card-ic svg { width: 27px; height: 27px; }
.ic-violet  { color: var(--violet-bright); background: rgba(47,213,118,.14); border: 1px solid rgba(47,213,118,.26); }
.ic-cyan    { color: var(--cyan);          background: rgba(52,224,192,.12);  border: 1px solid rgba(52,224,192,.26); }
.ic-emerald { color: var(--emerald);       background: rgba(52,211,153,.13);  border: 1px solid rgba(52,211,153,.28); }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--text-dim); }

/* ───────────────── Industries marquee ───────────────── */
.section-industries { overflow: hidden; }
.marquee { display: flex; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee + .marquee { margin-top: 1rem; }
.marquee-track { display: flex; gap: 1rem; padding-right: 1rem; flex: none; animation: scroll-x 42s linear infinite; }
.marquee-rev .marquee-track { animation-direction: reverse; animation-duration: 52s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  flex: none; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: .75rem 1.4rem; font-weight: 500; color: var(--text-dim); font-size: .98rem;
  transition: color .2s, border-color .2s, background .2s;
}
.marquee-track span:hover { color: #fff; border-color: var(--violet); background: var(--surface-2); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ───────────────── Steps ───────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.steps li {
  position: relative; padding: 2rem 1.8rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  backdrop-filter: blur(8px); transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.steps li:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.step-no {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.35rem; color: #fff;
  background: var(--grad-soft); box-shadow: 0 10px 30px -10px rgba(18,166,92,.8); margin-bottom: 1.2rem;
}
.steps h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.steps p { color: var(--text-dim); }

/* ───────────────── Signup ───────────────── */
.section-cta { max-width: 900px; }
.signup {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(165deg, rgba(47,213,118,.14), rgba(52,224,192,.05) 60%, transparent);
  border: 1px solid var(--border-strong);
  padding: clamp(2rem, 5vw, 3.5rem); backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.signup::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 120%; height: 80%; background: radial-gradient(circle, rgba(47,213,118,.28), transparent 68%); filter: blur(30px); pointer-events: none; }
.signup-head { text-align: center; margin-bottom: 2.4rem; position: relative; }
.signup-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
.signup-head p { color: var(--text-dim); margin-top: .75rem; }

.signup-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--text); }
.field input, .field select {
  font: inherit; padding: .9rem 1rem; border-radius: 13px; color: var(--text);
  border: 1px solid var(--border-strong); background: rgba(255,255,255,.04);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--text-mut); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23837D9B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field select option { background: #14121f; color: var(--text); }
.field input:focus, .field select:focus { outline: none; border-color: var(--violet); background: rgba(255,255,255,.07); box-shadow: 0 0 0 4px rgba(47,213,118,.18); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-strong);
  padding: .6rem 1.05rem; border-radius: 999px; cursor: pointer; font-size: .92rem; color: var(--text-dim);
  transition: background .2s, border-color .2s, color .2s;
}
.chip:hover { background: var(--surface-2); color: var(--text); }
.chip input { accent-color: var(--emerald); width: 16px; height: 16px; cursor: pointer; }
.chip:has(input:checked) { background: rgba(52,211,153,.16); border-color: var(--emerald); color: #fff; }

.form-note { font-size: .85rem; color: var(--text-mut); margin-bottom: 1.1rem; }
.join-note { text-align: center; margin: 1.1rem 0 0; position: relative; }
.join-cta { max-width: 520px; margin-inline: auto; }
.form-error { color: #FCA5A5; font-weight: 600; margin-top: .75rem; text-align: center; }

/* ───────────────── Footer ───────────────── */
.site-footer {
  max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap;
  font-size: .9rem; color: var(--text-mut); border-top: 1px solid var(--border);
}
.foot-brand { display: flex; align-items: center; gap: .5rem; color: var(--text-dim); font-weight: 600; font-family: "Space Grotesk", sans-serif; }
.footer-links a:hover { color: var(--violet-bright); }

/* ───────────────── Parallax decorations ───────────────── */
.hero, .section { position: relative; }
.hero-copy, .hero-stage, .section-head, .cards, .steps, .marquee, .signup { position: relative; z-index: 2; }
.deco { position: absolute; z-index: 0; pointer-events: none; will-change: transform; }

.ring { border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: inset 0 0 40px rgba(47,213,118,.12); }
.ring-lg { width: 360px; height: 360px; top: -10%; right: -14%; }
.ring-md { width: 240px; height: 240px; top: 6%; left: 2%; border-color: rgba(52,224,192,.14); }
.ring-sm { width: 130px; height: 130px; bottom: 4%; left: -5%; }

.dot { width: 13px; height: 13px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, var(--violet)); box-shadow: 0 0 18px 3px rgba(47,213,118,.6); }
.dot-1 { top: 18%; left: 42%; }
.dot-2 { bottom: 22%; right: 12%; background: radial-gradient(circle at 35% 35%, #fff, var(--cyan)); box-shadow: 0 0 18px 3px rgba(52,224,192,.6); }
.dot-3 { bottom: 12%; left: 46%; background: radial-gradient(circle at 35% 35%, #fff, var(--emerald)); box-shadow: 0 0 18px 3px rgba(52,211,153,.55); }

.plus { width: 26px; height: 26px; opacity: .55; }
.plus::before, .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--grad); border-radius: 2px; }
.plus::before { width: 100%; height: 2px; }
.plus::after { width: 2px; height: 100%; }
.plus-1 { top: 28%; right: 7%; }
.plus-2 { bottom: 16%; left: 6%; }

.shard { width: 92px; height: 118px; border-radius: 18px; rotate: -14deg;
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  border: 1px solid var(--border-strong); backdrop-filter: blur(6px); box-shadow: var(--shadow); }
.shard-1 { top: 18%; left: 3%; }

@media (max-width: 720px) { .deco { display: none; } }

/* ───────────────── Discord peek link ───────────────── */
.discord-peek {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem;
  font-size: .92rem; font-weight: 500; color: var(--text-dim); transition: color .2s, gap .2s;
}
.discord-peek .ic { width: 1.1em; height: 1.1em; color: var(--discord); }
.discord-peek span { transition: transform .2s var(--ease); }
.discord-peek:hover { color: #fff; gap: .62rem; }
.discord-peek:hover span { transform: translateX(3px); }

/* ───────────────── Scroll reveal ───────────────── */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
html.js .reveal.in { opacity: 1; transform: none; }
.cards .card:nth-child(2) { transition-delay: .08s; }
.cards .card:nth-child(3) { transition-delay: .16s; }
.steps li:nth-child(2) { transition-delay: .08s; }
.steps li:nth-child(3) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ───────────────── Responsive ───────────────── */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stage { min-height: 400px; max-width: 460px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 4.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .signup-form { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-stage { min-height: 340px; }
  .coin { width: 200px; height: 200px; top: calc(50% - 100px); left: calc(50% - 100px); }
  .coin-price { font-size: 3.5rem; }
  .hchip { font-size: .74rem; padding: .42rem .8rem; }
  .site-footer { flex-direction: column; text-align: center; }
}
