html { font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: auto;
}

section { position: relative; overflow: hidden; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
}

.section__title em {
  font-style: normal;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: transform 600ms var(--ease-expo),
              box-shadow 400ms, background 300ms, border-color 300ms;
  cursor: pointer;
  position: relative;
  /* NO overflow:hidden — it breaks backdrop-filter in Chrome */
  backdrop-filter: blur(32px) saturate(220%);
  -webkit-backdrop-filter: blur(32px) saturate(220%);
}

/* shimmer sweep — clipped via border-radius inherit */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.15) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 350ms;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* Top specular highlight — Apple Liquid Glass signature */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45) 40%,
    rgba(255,255,255,0.45) 60%,
    transparent
  );
  pointer-events: none;
}

.btn--primary {
  background: rgba(139, 47, 201, 0.10);
  color: var(--white);
  border: 1px solid rgba(168, 85, 247, 0.38);
  box-shadow:
    0 8px 32px rgba(139,47,201,0.28),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn--primary:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--yellow-warm);
  box-shadow:
    0 8px 32px rgba(245,197,24,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--outline:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--yellow-warm);
  box-shadow:
    0 8px 32px rgba(245,197,24,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn--nav {
  background: rgba(245, 197, 24, 0.12);
  color: var(--yellow-warm);
  font-size: 0.8rem;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(245, 197, 24, 0.35);
  box-shadow:
    0 4px 20px rgba(245,197,24,0.12),
    inset 0 1px 0 rgba(255,255,255,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--nav:hover {
  background: rgba(245, 197, 24, 0.22);
  border-color: rgba(245, 197, 24, 0.58);
  box-shadow:
    0 8px 30px rgba(245,197,24,0.25),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--full { width: 100%; justify-content: center; }

.btn--newsletter {
  background: rgba(139, 47, 201, 0.12);
  color: var(--white);
  border: 1px solid rgba(168, 85, 247, 0.38);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,47,201,0.25);
}
/* Ascunde linia decorativa liquid glass — nu arata bine pe cerc */
.btn--newsletter::before { display: none; }
.btn--newsletter:hover {
  background: rgba(139, 47, 201, 0.28);
  box-shadow:
    0 8px 28px rgba(139,47,201,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(139,47,201,0.5);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--purple-mid);
  letter-spacing: 0.05em;
}

.chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.85;
}
.chip svg { color: var(--yellow-main); flex-shrink: 0; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* Liquid Glass */
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  color: var(--grey);
  transition: background 300ms, border-color 300ms, color 300ms,
              box-shadow 300ms, transform 600ms var(--ease-expo);
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--yellow-warm);
  box-shadow:
    0 6px 24px rgba(245,197,24,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ─── Touch / mobile: freeze all button transforms ──────────────────────
   Prevents scramble chars and magnetic JS from shifting layout on tap.
   Uses pointer:coarse (touch screens) as the most reliable detector.    */
@media (pointer: coarse) {
  .btn,
  .btn--primary,
  .btn--outline,
  .btn--nav,
  .wa-float,
  [data-magnetic] {
    transform: none !important;
    transition: background 300ms, border-color 300ms, box-shadow 300ms !important;
    will-change: auto;
  }
  .btn::after { display: none; }
  [data-scramble] {
    min-width: max-content;
    overflow: hidden;
    white-space: nowrap;
  }
}
