:root {
  --bg: #120a14;
  --bg-alt: #180d1c;
  --surface: #1e1120;
  --surface-hover: #26142b;
  --border: #33203a;
  --pink: #ff2f92;
  --pink-soft: #ff6bb3;
  --violet: #8b5cf6;
  --ink: #f8eef4;
  --ink-dim: #b9a3bd;
  --ink-faint: #7d6584;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-lg: 22px;
  --radius-md: 14px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* =====================================================
   MAIN PAGE
===================================================== */
.main-page {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.main-page.visible {
  opacity: 1;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 10, 20, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-mark i { color: var(--pink); font-size: 1rem; }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mute-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.mute-btn:hover { border-color: var(--pink); color: var(--pink-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--pink);
  color: #17081a;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--pink-soft); transform: translateY(-1px); }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 100px;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 82% 8%, rgba(255, 47, 146, 0.16), transparent 65%),
    radial-gradient(500px 350px at 8% 90%, rgba(139, 92, 246, 0.12), transparent 65%);
}
.web-svg {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 460px;
  height: 460px;
  color: var(--pink);
  opacity: 0.16;
}
@media (max-width: 780px) {
  .web-svg { width: 300px; height: 300px; top: -40px; right: -100px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-soft);
  background: rgba(255, 47, 146, 0.1);
  border: 1px solid rgba(255, 47, 146, 0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  min-height: 1.3em;
}
.typewriter { color: var(--ink); }
.typewriter .accent { color: var(--pink); }
.type-cursor {
  display: inline-block;
  color: var(--pink);
  animation: blink 1s step-end infinite;
  font-weight: 400;
}

.hero-sub {
  margin-top: 22px;
  max-width: 52ch;
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--pink);
  color: #17081a;
}
.btn-primary:hover { background: var(--pink-soft); }

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink-soft); }

/* ---------- Hero Spider-Woman Banner ---------- */
.hero-banner {
  margin-top: 46px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255,47,146,0.05), rgba(139,92,246,0.04));
}
.banner-svg { width: 100%; height: auto; display: block; }
.swing-figure {
  transform-origin: 700px 20px;
  animation: swing 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes swing {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(8deg); }
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-infinity { font-size: 2.2rem; }
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ---------- Activity graph card (replaces old mute button slot) ---------- */
.graph-card {
  margin-top: 28px;
  max-width: 420px;
  background: linear-gradient(160deg, var(--surface) 0%, #201225 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px 16px;
}
.graph-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.graph-card-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-dim);
}
.graph-card-label i { color: var(--pink-soft); font-size: 0.75rem; }

.graph-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255, 47, 146, 0.5);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 47, 146, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(255, 47, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 47, 146, 0); }
}

.graph-svg { width: 100%; height: 64px; display: block; }
.graph-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: graph-draw 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@keyframes graph-draw {
  to { stroke-dashoffset: 0; }
}
.graph-area { opacity: 0; animation: graph-fade 0.8s ease 1.2s forwards; }
@keyframes graph-fade { to { opacity: 1; } }
.graph-dot {
  animation: dot-ping-small 2s ease-out 1.8s infinite;
}
@keyframes dot-ping-small {
  0%, 60% { r: 4; opacity: 1; }
  100% { r: 8; opacity: 0; }
}

.graph-card-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.68rem;
  color: var(--ink-faint);
}

@media (prefers-reduced-motion: reduce) {
  .graph-line { animation: none; stroke-dashoffset: 0; }
  .graph-area { animation: none; opacity: 1; }
  .graph-dot { animation: none; }
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-alt { background: var(--bg-alt); max-width: 100%; }
.section-alt > * { max-width: 1180px; margin-left: auto; margin-right: auto; }

.section-head {
  max-width: 60ch;
  margin: 0 0 44px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink-soft);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 12px;
}
.section-desc {
  color: var(--ink-dim);
  font-size: 1rem;
}

/* =====================================================
   CAROUSEL — single card, futuristic
===================================================== */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-single {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-width: 0;
}
.carousel-single::-webkit-scrollbar { display: none; }

.card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--surface) 0%, #201225 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  scroll-snap-align: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
  contain: content;
}
.card:hover { border-color: rgba(255, 47, 146, 0.45); }

/* scanning light sweep — futuristic touch, GPU-cheap (transform only),
   and only runs on the currently active/visible card to avoid jank
   from many simultaneous animations in the scroll container */
.card-scan {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 47, 146, 0.1) 50%, transparent 100%);
  transform: translateX(0);
  will-change: auto;
}
.card.is-active .card-scan {
  animation: scan-sweep 3.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes scan-sweep {
  0% { transform: translateX(0); }
  100% { transform: translateX(280%); }
}
@media (prefers-reduced-motion: reduce) {
  .card.is-active .card-scan { animation: none; }
}

.card-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: 0.7;
}
.card-corner-tl { top: 14px; left: 14px; border-top: 1.5px solid var(--pink); border-left: 1.5px solid var(--pink); border-top-left-radius: 8px; }
.card-corner-br { bottom: 14px; right: 14px; border-bottom: 1.5px solid var(--pink); border-right: 1.5px solid var(--pink); border-bottom-right-radius: 8px; }

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 47, 146, 0.1);
  border: 1px solid rgba(255, 47, 146, 0.28);
  font-size: 1.5rem;
  color: var(--pink-soft);
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(255, 47, 146, 0.12);
}

.card-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 48ch;
}

.card-progress {
  margin-top: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
}
.card-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  border-radius: 2px;
  transition: width 0.4s ease;
}

@media (max-width: 780px) {
  .card { padding: 32px 24px; }
  .card-tag { top: 30px; right: 28px; }
}

/* ---------- Carousel arrows: fixed at vertical center of card row ---------- */
.car-btn-side {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  z-index: 2;
}
.car-btn-side:hover { border-color: var(--pink); color: var(--pink-soft); background: rgba(255,47,146,0.08); }
.car-btn-side:disabled { opacity: 0.3; cursor: default; }
.car-btn-side:disabled:hover { border-color: var(--border); color: var(--ink); background: var(--surface); }

@media (max-width: 640px) {
  .car-btn-side { width: 36px; height: 36px; font-size: 0.75rem; }
  .carousel-wrap { gap: 8px; }
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}
.dot-el {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.dot-el.active {
  background: var(--pink);
  width: 22px;
  border-radius: 4px;
}

/* =====================================================
   SOCIAL CARD — Instagram
===================================================== */
.sosmed-section { padding-bottom: 70px; }

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, var(--surface) 0%, #201225 100%);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* animated gradient border ring */
.social-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--ang, 0deg), var(--pink), var(--violet), #ffd23f, var(--pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: rotate-ring 4s linear infinite;
}
@keyframes rotate-ring {
  from { --ang: 0deg; }
  to { --ang: 360deg; }
}
@property --ang {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(255, 47, 146, 0.22);
}
.social-card:hover::before { opacity: 1; }

.social-card-scan {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 47, 146, 0.1) 50%, transparent 100%);
  transform: translateX(0);
}
.social-card:hover .social-card-scan {
  animation: scan-sweep 2.6s ease-in-out infinite;
}

.social-card-web {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  color: var(--pink);
  opacity: 0.1;
  pointer-events: none;
}
.social-card-web svg { width: 100%; height: 100%; }

.social-card-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.social-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #ffd23f 0%, #ff2f92 45%, #8b5cf6 100%);
  box-shadow: 0 0 26px rgba(255, 47, 146, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-card:hover .social-icon {
  transform: rotate(-8deg) scale(1.08);
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.social-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  font-weight: 600;
}
.social-handle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card-right {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-soft);
  white-space: nowrap;
  transition: gap 0.25s ease;
}
.social-card:hover .social-cta { gap: 12px; }

.social-pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  flex: 0 0 auto;
}
.social-pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pink);
  animation: dot-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes dot-ping {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

@media (max-width: 640px) {
  .social-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    gap: 20px;
  }
  .social-card-right { align-self: flex-end; }
  .social-handle { font-size: 1.1rem; }
}

/* ---------- Kontak ---------- */
.kontak-section { padding-bottom: 100px; }
.kontak-card {
  position: relative;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 32px;
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}
.kontak-card .section-eyebrow { justify-content: center; display: inline-flex; }
.kontak-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 8px 0 12px;
}
.kontak-card .section-desc { margin-bottom: 30px; }
.kontak-card .btn { margin: 0 auto; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--ink-faint);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
.footer i { color: var(--pink); margin: 0 2px; }

/* =====================================================
   reveal-up: previously animated drop-in on scroll.
   Now static (always visible) per user request — no auto-scroll-triggered animation.
===================================================== */
.reveal-up {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero { padding: 90px 20px 70px; }
  .section { padding: 64px 20px; }
  .hero-stats { gap: 32px; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 2px;
}

/* =====================================================
   WELCOME GATE (merged back in — single file version)
===================================================== */
.welcome-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, #1e1023 0%, #120a14 65%, #0c0710 100%);
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.welcome-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.welcome-web {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 140vw);
  height: min(900px, 140vw);
  transform: translate(-50%, -50%);
  color: var(--pink);
  opacity: 0.14;
  animation: web-spin 90s linear infinite;
  will-change: transform;
}
@keyframes web-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.welcome-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.welcome-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pink-soft);
  opacity: 0.5;
  animation: particle-float linear infinite;
  will-change: transform, opacity;
}
@keyframes particle-float {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.welcome-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  max-width: 520px;
}

.welcome-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 47, 146, 0.1);
  border: 1px solid rgba(255, 47, 146, 0.35);
  font-size: 1.6rem;
  color: var(--pink);
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 47, 146, 0.3); }
  50% { box-shadow: 0 0 0 14px rgba(255, 47, 146, 0); }
}

.welcome-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.welcome-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 4rem);
  background: linear-gradient(120deg, var(--pink) 20%, var(--pink-soft) 50%, var(--violet) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.cursor-blink {
  display: inline-block;
  animation: blink 1.1s step-end infinite;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
}
@keyframes blink { 50% { opacity: 0; } }

.welcome-sub {
  color: var(--ink-dim);
  font-size: 1rem;
  margin-bottom: 36px;
}

.btn-enter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, var(--pink), var(--violet));
  color: #17081a;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(255, 47, 146, 0.28);
}
.btn-enter:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 36px rgba(255, 47, 146, 0.4); }
.btn-enter:active { transform: translateY(0) scale(0.98); }

.btn-enter-ring {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 47, 146, 0.4);
  animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-web, .welcome-particles span, .welcome-badge, .btn-enter-ring { animation: none; }
}
