/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --gold:     #8A1538;
  --gold-lt:  #D9536F;
  --gold-dim: rgba(138,21,56,0.1);

  --bg:     #0A0A0A;
  --text:   #F2F0EE;
  --muted:  #847F7B;
  --border: rgba(255,255,255,0.08);

  --nav-h:  82px;
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; background: var(--bg); }

body {
  background: transparent;
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SITE BACKGROUND ─────────────────────────────────── */

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── PROGRESS ────────────────────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.9), rgba(255,255,255,0.4));
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  animation: nav-drop 0.65s var(--ease) 0.1s both;
}

@keyframes nav-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* glass background */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,22,0.92);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}

/* animated gold bottom line */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%, transparent 15%,
    rgba(180,180,185,0.4) 38%, rgba(220,220,225,0.65) 50%, rgba(180,180,185,0.4) 62%,
    transparent 85%, transparent 100%
  );
  background-size: 220% 100%;
  animation: bar-sweep 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bar-sweep {
  0%   { background-position: 100% 0; opacity: 0.5; }
  100% { background-position:   0% 0; opacity: 1; }
}

/* diagonal light */
.nav__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%, transparent 30%,
    rgba(217,83,111,0.05) 48%, rgba(138,21,56,0.04) 50%, rgba(217,83,111,0.05) 52%,
    transparent 70%, transparent 100%
  );
  background-size: 300% 100%;
  animation: bar-light 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bar-light {
  0%   { background-position: 0%   0; }
  100% { background-position: 100% 0; }
}

.nav__inner {
  position: relative;
  z-index: 1;
  height: var(--nav-h);
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* ── LOGO ────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  animation: fade-up 0.5s var(--ease) 0.55s both;
}
.logo__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 1s var(--ease);
}
.logo:hover .logo__avatar { background: rgba(255,255,255,0.11); transform: rotate(90deg); }
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo__name {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}
.logo__name strong { font-weight: 700; }
.logo__sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.32);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
}

/* ── LOGO WRAP + OWNER AVATAR ───────────────────────── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-owner {
  position: relative;
  flex-shrink: 0;
}
.nav-owner__img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nav-owner:hover .nav-owner__img {
  border-color: #fff;
  box-shadow: 0 0 0 2px #fff, 0 0 18px rgba(255,255,255,0.5);
}
.nav-owner__card {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 11px;
  padding: 11px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-owner:hover .nav-owner__card {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-owner__row {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.nav-owner__row:hover { color: #fff; }

/* ── NAV LINKS ───────────────────────────────────────── */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nl {
  position: relative;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.22s var(--ease);
}
.nl:hover { color: #fff; }

.nl:nth-child(1) { animation: fade-up 0.45s var(--ease) 0.65s both; }
.nl:nth-child(2) { animation: fade-up 0.45s var(--ease) 0.72s both; }
.nl:nth-child(3) { animation: fade-up 0.45s var(--ease) 0.79s both; }
.nl:nth-child(4) { animation: fade-up 0.45s var(--ease) 0.86s both; }

/* ── RIGHT ───────────────────────────────────────────── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  animation: fade-up 0.45s var(--ease) 0.9s both;
}

/* ── LANGUAGE SWITCH ───────────────────────────────────── */
.lang-switch { position: relative; }
.lang-switch__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transform: rotate(0deg);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.3s var(--ease);
}
.lang-switch__icon { width: 16px; height: 16px; }
.lang-switch__btn:hover { border-color: rgba(255,255,255,0.35); color: #fff; transform: rotate(8deg); }
.lang-switch.open .lang-switch__btn { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 140px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s 0.2s;
  z-index: 50;
}
.lang-switch.open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s;
}

.lang-switch__opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.lang-switch__opt:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lang-switch__opt.active { color: var(--gold-lt); font-weight: 700; }

/* ── LOGIN LINK ──────────────────────────────────────── */
.nav__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 100px;
  transition: color 0.2s var(--ease);
}
.nav__login:hover { color: rgba(255,255,255,0.85); }

/* ── CTA ─────────────────────────────────────────────── */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.nav__cta:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ── BURGER ──────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 9px;
  justify-self: end;
  transition: border-color 0.2s, border-radius 0.3s var(--ease);
}
.burger:hover { border-color: rgba(255,255,255,0.35); }
.burger.open { border-color: rgba(255,255,255,0.35); border-radius: 50%; }
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.25s;
}
.burger span:last-child { width: 65%; margin-left: auto; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────── */
.nav__mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
  position: relative;
  z-index: 0;
}
.nav__mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nav__mobile.open { max-height: 340px; }

.mobile__owner {
  position: relative;
  display: none;
  align-items: center;
  align-items: center;
  gap: 12px;
  margin: 6px 20px 2px;
  padding: 10px 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile__owner-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.mobile__owner-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile__owner-row {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile__owner-row:hover { color: #fff; }

.mobile__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 20px 0;
  gap: 2px;
}
.mn {
  display: block;
  padding: 9px 6px;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: color 0.2s, background 0.2s, padding-left 0.22s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mn:hover { color: var(--text); background: rgba(255,255,255,0.05); padding-left: 12px; }
.mn--login { color: rgba(255,255,255,0.5); }
.mn--login:hover { color: var(--text); }
.nav__mobile.open .mn                 { opacity: 1; transform: translateX(0); }
.nav__mobile.open .mn:nth-child(1)    { transition-delay: 0.06s; }
.nav__mobile.open .mn:nth-child(2)    { transition-delay: 0.12s; }
.nav__mobile.open .mn:nth-child(3)    { transition-delay: 0.18s; }
.nav__mobile.open .mn:nth-child(4)    { transition-delay: 0.24s; }

.mobile__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 16px 16px 24px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), opacity 0.3s var(--ease) 0.28s, transform 0.3s var(--ease) 0.28s;
}
.nav__mobile.open .mobile__cta { opacity: 1; transform: translateY(0); }
.mobile__cta:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); color: #fff; }
.nav__mobile.open .mobile__login { opacity: 1; }
.mobile__login:hover { color: rgba(255,255,255,0.75); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 72px) 52px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}

.hero__title {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  animation: fade-up 0.7s var(--ease) 0.1s both;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
  animation: fade-up 0.7s var(--ease) 0.2s both;
}
.hero__sub strong { color: rgba(255,255,255,0.95); font-weight: 700; }

.hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: fade-up 0.7s var(--ease) 0.28s both;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.hero__chip--founder {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.85);
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--gold);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  animation: fade-up 0.7s var(--ease) 0.35s both;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--spring);
}
.hero__cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── SCROLL CUE ──────────────────────────────────────── */
.hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  text-decoration: none;
  animation: fade-up 0.7s var(--ease) 0.55s both;
}
.hero__scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-size: 20px;
  animation: arrow-bounce 2s ease-in-out infinite;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.hero__scroll:hover .hero__scroll-arrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
@keyframes arrow-ping {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── HERO MOCKUP ─────────────────────────────────────── */
.hero__visual {
  width: 100%;
  max-width: 820px;
  margin-top: 52px;
  display: flex;
  justify-content: center;
  animation: fade-up 0.8s var(--ease) 0.45s both;
}

.hero-mock {
  position: relative;
  width: min(820px, 100%);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 50px 90px -24px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.18s linear;
  animation: fade-up 0.8s var(--ease) 0.35s both;
}

.hero-mock__bar {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-mock__dot { display: none; }
.hero-mock__url { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }

.hero-mock__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-mock__brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
}
.hero-mock__navlink { width: 30px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.2); }
.hero-mock__navbtn { margin-left: auto; width: 54px; height: 18px; border-radius: 100px; background: var(--gold); }

.hero-mock__body {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 30px 22px 26px;
  min-height: 210px;
}
.hero-mock__text { flex: 1; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.hero-mock__kicker { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-lt); }
.hero-mock__headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-mock__line { width: 70%; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.18); }
.hero-mock__btn { width: 90px; height: 26px; border-radius: 7px; background: #fff; margin-top: 6px; }

.hero-mock__image {
  position: relative;
  flex: 0 0 38%;
  align-self: center;
  height: 170px;
  border-radius: 12px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--gold) 55%, transparent), rgba(20,8,11,0.92));
}
.hero-mock__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  pointer-events: none;
}
.hero-mock__badge {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 5px 9px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-mock__strip { display: flex; gap: 8px; padding: 0 22px 22px; }
.hero-mock__strip span {
  flex: 1;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--gold-lt);
}

@media (max-width: 980px) {
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .hero__chips { gap: 6px; }
  .hero__visual { margin-top: 36px; }
  .hero-mock { transform: none; }
}

/* ── CE ESTE CEL MAI IMPORTANT ─────────────────────────── */
.ctrl-section {
  padding: 120px 40px 100px;
  position: relative;
  background: #0a0a0a;
}
.ctrl-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ctrl-section__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
}
.ctrl-section__lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(242,240,238,0.65);
  max-width: 680px;
  margin-bottom: 80px;
}
.ctrl-section__lead em {
  font-style: normal;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.ctrl-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ctrl-item {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  background: #0A0A0A;
  overflow: hidden;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ctrl-item:first-child  { border-radius: 20px 0 0 0; }
.ctrl-item:nth-child(2) { border-radius: 0 20px 0 0; }
.ctrl-item:nth-child(3) { border-radius: 0 0 0 20px; }
.ctrl-item:last-child   { border-radius: 0 0 20px 0; }
.ctrl-item:hover {
  background: #111114;
  border-color: rgba(255,255,255,0.15);
}
.ctrl-item__num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.ctrl-item__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.3;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
  align-self: flex-start;
}
.ctrl-item__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  align-self: flex-start;
}

/* ── PHONE MOCKUP ─────────────────────────────────────── */
.ctrl-phone-wrap {
  position: relative;
  width: 162px;
  margin-bottom: 28px;
  flex-shrink: 0;
}
/* Power button — right */
.ctrl-phone-wrap::before {
  content: '';
  position: absolute;
  right: -3.5px; top: 94px;
  width: 3.5px; height: 60px;
  background: linear-gradient(180deg, #303030 0%, #1e1e1e 50%, #303030 100%);
  border-radius: 0 2.5px 2.5px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
/* Volume + mute — left (3 buttons via gradient) */
.ctrl-phone-wrap::after {
  content: '';
  position: absolute;
  left: -3.5px; top: 76px;
  width: 3.5px; height: 96px;
  border-radius: 2.5px 0 0 2.5px;
  border-left: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg,
    #2a2a2a 0px,   #2a2a2a 18px,
    transparent 18px, transparent 24px,
    #2a2a2a 24px,  #2a2a2a 56px,
    transparent 56px, transparent 62px,
    #2a2a2a 62px,  #2a2a2a 96px
  );
}
.ctrl-phone {
  width: 162px;
  background: linear-gradient(170deg, #2e2e2e 0%, #1a1a1a 55%, #262626 100%);
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.13);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,0,0,0.7),
    0 36px 72px -10px rgba(0,0,0,0.9),
    0 16px 32px -6px rgba(0,0,0,0.55);
  padding: 0 9px 14px;
}
.ctrl-phone__island {
  width: 58px; height: 14px;
  background: #000;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 4px;
  position: relative;
}
.ctrl-phone__island::after {
  content: '';
  position: absolute;
  right: 11px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.06);
}
.ctrl-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px 6px;
}
.ctrl-phone__time {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.ctrl-phone__sig {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}
.ctrl-phone__sig::before {
  content: '';
  display: block;
  width: 12px; height: 7px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 1.5px;
  position: relative;
}
.ctrl-phone__sig::after {
  content: '';
  position: absolute;
  width: 4px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 0.5px;
  right: 13px;
  margin-top: 1px;
}
.ctrl-phone__screen {
  padding: 8px 8px 12px;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #0a0a0a;
  border-radius: 2px 2px 28px 28px;
}

/* bar */
.cp-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2px;
}
.cp-bar__title { font-size: 8.5px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }
.cp-bar__add { font-size: 12px; color: rgba(255,255,255,0.3); }

/* rows */
.cp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 4px;
  border-radius: 5px;
  background: rgba(255,255,255,0.025);
}
.cp-row__name { font-size: 8px; color: rgba(255,255,255,0.45); }
.cp-row__val  { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.75); }

/* toggle */
.cp-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4px 0;
  margin-top: auto;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-toggle {
  width: 26px; height: 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.cp-toggle::after {
  content: '';
  position: absolute;
  left: 2px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.cp-on { background: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.85); }
.cp-on::after { left: auto; right: 2px; background: #111; }

/* barbers */
.cp-barbers { display: flex; flex-direction: column; gap: 5px; }
.cp-barber {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.cp-barber--sel { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.cp-barber__av {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.cp-barber__name { font-size: 8.5px; color: rgba(255,255,255,0.55); flex: 1; }
.cp-barber--sel .cp-barber__name { color: rgba(255,255,255,0.88); }
.cp-barber__tag { font-size: 7px; color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); padding: 2px 5px; border-radius: 4px; }
.cp-add-row {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 8px;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* confirm screen */
.cp-screen--confirm {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
}
.cp-check-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.cp-confirm-title { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,0.85); }
.cp-confirm-detail { font-size: 7.5px; color: rgba(255,255,255,0.38); }
.cp-stat-pill {
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.cp-stat__num {
  font-size: 18px; font-weight: 800;
  font-family: 'Unbounded', sans-serif;
  color: rgba(255,255,255,0.88); line-height: 1;
}
.cp-stat__label { font-size: 6.5px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; text-transform: uppercase; }

/* cost screen */
.cp-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 4px;
  font-size: 8px;
}
.cp-cost-row span:first-child { color: rgba(255,255,255,0.38); }
.cp-cost__val { font-weight: 600; color: rgba(255,255,255,0.75); }
.cp-zero { color: rgba(255,255,255,0.9) !important; }
.cp-saved {
  margin-top: auto;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  font-size: 7.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.4;
}
.ctrl-item::before { content: none; }
.ctrl-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
  transition: height 0.45s var(--ease);
  border-radius: 0 0 2px 0;
}
.ctrl-item:hover::after { height: 100%; }

@media (max-width: 700px) {
  .ctrl-section { padding: 80px 24px 60px; }
  .ctrl-section__grid { grid-template-columns: 1fr; gap: 2px; }
  .ctrl-item:first-child  { border-radius: 20px 20px 0 0; }
  .ctrl-item:nth-child(2) { border-radius: 0; }
  .ctrl-item:nth-child(3) { border-radius: 0; }
  .ctrl-item:last-child   { border-radius: 0 0 20px 20px; }
}

/* ── ORIGIN STORY ───────────────────────────────────────── */
.origin-section {
  position: relative;
  padding: 100px 52px 100px;
}
.origin-section::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 100vw; top: 0; bottom: 0;
  background: #0a0a0a;
  z-index: -1;
}
.origin__inner {
  max-width: 720px;
  margin: 0 auto;
}
.origin__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.origin__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gold-lt);
  margin-bottom: 40px;
}
.origin__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 28px;
}
.origin__body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}
.origin__body p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── SISTEME (galerie testabilă) ───────────────────────── */
.showcase-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 52px 90px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
}
.showcase-section::before,
.statement::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0; bottom: 0;
  background: #0a0a0a;
  z-index: -1;
}
.showcase-section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.showcase-section__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
}
.showcase-section__title em {
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

/* ── TOGGLE ──────────────────────────────────────────── */
.hero__toggle {
  position: relative;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: color-mix(in srgb, var(--bg) 88%, var(--text) 12%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.22);
  margin-bottom: 40px;
  animation: fade-up 0.6s var(--ease) 0.1s both;
}
.toggle__indicator {
  position: absolute;
  top: 4px; left: 0;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.4s var(--spring), width 0.4s var(--spring);
  z-index: 0;
}
.ht {
  position: relative;
  z-index: 1;
  padding: 9px 24px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.ht:hover { color: var(--text); }
.ht.active { color: rgba(255,255,255,0.9); }

/* ── SHOWCASE ────────────────────────────────────────── */
.showcase { width: 100%; position: relative; }
.showcase__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  animation: fade-up 0.6s var(--ease) 0.18s both;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
}
.showcase__track[hidden] { display: none; }
.showcase__track::-webkit-scrollbar { display: none; }

.show-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
  opacity: 0;
  transition: transform 0.4s var(--spring), border-color 0.35s var(--ease);
}
.showcase.is-visible .show-card { animation: card-in 0.6s var(--ease) both; }
.showcase.is-visible .show-card:nth-child(1) { animation-delay: 0.06s; }
.showcase.is-visible .show-card:nth-child(2) { animation-delay: 0.13s; }
.showcase.is-visible .show-card:nth-child(3) { animation-delay: 0.2s; }
.showcase.is-visible .show-card:nth-child(4) { animation-delay: 0.27s; }

.show-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
}

.show-card--live::before {
  content: '● LIVE';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 3px 10px;
  z-index: 5;
  pointer-events: none;
}

.show-card__frame {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.show-card:hover .show-card__frame { transform: scale(1.04); }

.show-card--soon .show-card__frame::after {
  content: 'SOON';
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
  z-index: 4;
  border-radius: inherit;
}

.show-card--site .show-card__frame::before { display: none; }

/* ── MINI SITE / SYSTEM MOCKUPS (in showcase frames) ──── */
.mockup {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 70%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  pointer-events: none;
}
.mockup__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mockup__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }
.mockup__navlink { height: 4px; width: 20px; border-radius: 2px; background: rgba(255,255,255,0.22); }
.mockup__navlink.short { width: 13px; margin-left: auto; background: var(--gold-lt); opacity: 0.8; }

.mockup__line { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.85); }
.mockup__line.sm { height: 4px; background: rgba(255,255,255,0.4); }
.mockup__line.lg { width: 70%; }
.mockup__line.short { width: 42%; }
.mockup__btn { width: 32%; height: 9px; border-radius: 5px; background: var(--gold-lt); margin-top: 5px; }

/* variant A — promo centrat */
.mockup__hero--center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.mockup__hero--center .mockup__line.lg { width: 78%; }
.mockup__hero--center .mockup__line.sm { width: 56%; }

/* variant B — text + imagine */
.mockup__split { flex: 1; display: flex; gap: 10px; align-items: center; }
.mockup__split-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mockup__split-img {
  flex: 1;
  height: 72%;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
}

/* variant C — galerie grid */
.mockup__gallery { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mockup__block {
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}

/* variant D — dashboard / sistem */
.mockup--d { flex-direction: row; gap: 12px; }
.mockup--d .mockup__sidebar {
  width: 26%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mockup__side-item { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); }
.mockup__side-item:first-of-type { background: var(--gold-lt); width: 70%; opacity: 0.9; }
.mockup--d .mockup__content { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.mockup__rows { display: flex; flex-direction: column; gap: 6px; }
.mockup__row { height: 13px; border-radius: 5px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); }

/* ── TOMBOLA CARD FRAME ─────────────────────────────── */
.frame-tombola {
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.frame-tombola__ticket {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(95,216,166,0.04);
  border: 1px solid rgba(95,216,166,0.15);
  border-radius: 11px;
  padding: 16px 24px;
}
.frame-tombola__ticket::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1.5px;
  background: linear-gradient(90deg, transparent, #5FD8A6 50%, transparent);
  border-radius: 100px;
}
.frame-tombola__label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: #5FD8A6;
  font-family: 'Unbounded', sans-serif;
}
.frame-tombola__sep {
  display: block;
  width: 100%;
  border-top: 1px dashed rgba(95,216,166,0.2);
}
.frame-tombola__num {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: 'Unbounded', sans-serif;
}
.frame-tombola__b1,
.frame-tombola__b2,
.frame-tombola__b3,
.frame-tombola__b4 {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  color: rgba(255,255,255,0.5);
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.08);
}
.frame-tombola__b1 { background: #222; top: 17%; left: 12%; }
.frame-tombola__b2 { background: #1c1c1c; bottom: 18%; left: 10%; }
.frame-tombola__b3 { background: #2a2a2a; top: 15%; right: 11%; }
.frame-tombola__b4 { background: #1f1f1f; bottom: 16%; right: 9%; }

/* ── WHEEL CARD FRAME ───────────────────────────────── */
.show-card__frame--wheel { background: #000; }

.frame-wheel__ptr {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #C9A84C;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,0.5));
}
.frame-wheel {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    #9b2226 0deg 45deg,
    #1c1c1c 45deg 90deg,
    #9b2226 90deg 135deg,
    #1c1c1c 135deg 180deg,
    #9b2226 180deg 225deg,
    #1c1c1c 225deg 270deg,
    #9b2226 270deg 315deg,
    #1c1c1c 315deg 360deg
  );
  border: 3px solid #C9A84C;
  box-shadow: 0 0 28px rgba(201,168,76,0.2), 0 14px 40px rgba(0,0,0,0.85), inset 0 0 18px rgba(0,0,0,0.55);
  transition: none;
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}
.show-card:hover .frame-wheel { animation: wheel-spin 2.8s linear infinite; }
.frame-wheel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.12) 0%, transparent 45%);
}
.frame-wheel__hub {
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #E8C96A, #C9A84C 70%);
  border: 2px solid #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.show-card__play {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(20,20,18,0.45);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  backdrop-filter: blur(6px);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--spring);
}
.show-card:hover .show-card__play { transform: translate(-50%, -50%) scale(1.15); }

.show-card__label {
  padding: 18px 20px 6px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.show-card__tag {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  margin-top: 2px;
}

.show-card__test {
  display: block;
  width: calc(100% - 36px);
  margin: auto 18px 18px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.show-card__test:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .hero { padding: calc(var(--nav-h) + 40px) 24px 64px; }
  .statement { padding: 4px 24px 60px; }
}

/* ── OFFER ───────────────────────────────────────────── */
.offer {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 52px 110px;
}
.offer::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0; bottom: 0;
  background:
    radial-gradient(ellipse 90% 65% at 50% 52%,
      rgba(200,200,210,0.13) 0%,
      rgba(180,180,190,0.05) 45%,
      transparent 70%
    ),
    #0A0A0A;
  z-index: -1;
}

.offer__label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.offer__title {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255,255,255,0.95);
  margin-bottom: 48px;
}
.offer__title em {
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.offer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.offer-card {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(145deg, #1c1c22 0%, #0d0d10 60%, #0a0a0a 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.offer__grid.is-visible .offer-card { animation: card-in 0.6s var(--ease) both; }
.offer__grid.is-visible .offer-card:nth-child(1) { animation-delay: 0.05s; }
.offer__grid.is-visible .offer-card:nth-child(2) { animation-delay: 0.1s; }
.offer__grid.is-visible .offer-card:nth-child(3) { animation-delay: 0.15s; }
.offer__grid.is-visible .offer-card:nth-child(4) { animation-delay: 0.2s; }
.offer__grid.is-visible .offer-card:nth-child(5) { animation-delay: 0.25s; }
.offer__grid.is-visible .offer-card:nth-child(6) { animation-delay: 0.3s; }

.offer-card__bg { display: none; }

/* Card 1 — browser window (site ownership) */
.offer-card:nth-child(1) .offer-card__bg {
  background-size: 78%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150'%3E%3Crect x='5' y='5' width='190' height='140' rx='12' fill='none' stroke='rgb(217,83,111)' stroke-width='2' opacity='0.5'/%3E%3Crect x='5' y='5' width='190' height='36' rx='12' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Cline x1='5' y1='41' x2='195' y2='41' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.25'/%3E%3Ccircle cx='24' cy='23' r='6' fill='rgb(217,83,111)' fill-opacity='0.4'/%3E%3Ccircle cx='40' cy='23' r='6' fill='rgb(217,83,111)' fill-opacity='0.3'/%3E%3Ccircle cx='56' cy='23' r='6' fill='rgb(217,83,111)' fill-opacity='0.2'/%3E%3Crect x='72' y='13' width='110' height='20' rx='10' fill='none' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='83' cy='23' r='4' fill='rgb(217,83,111)' fill-opacity='0.3'/%3E%3Crect x='92' y='20' width='70' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.25'/%3E%3Crect x='20' y='56' width='100' height='10' rx='5' fill='rgb(217,83,111)' fill-opacity='0.18'/%3E%3Crect x='20' y='74' width='155' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.1'/%3E%3Crect x='20' y='86' width='130' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.1'/%3E%3Crect x='20' y='98' width='90' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.1'/%3E%3Crect x='148' y='56' width='40' height='62' rx='6' fill='rgb(138,21,56)' fill-opacity='0.25'/%3E%3C/svg%3E");
}

/* Card 2 — scissors (design personalizat, on-brand pentru frizerie) */
.offer-card:nth-child(2) .offer-card__bg {
  background-size: 62%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Ccircle cx='30' cy='42' r='20' fill='none' stroke='rgb(217,83,111)' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='30' cy='42' r='8' fill='rgb(138,21,56)' fill-opacity='0.55'/%3E%3Ccircle cx='30' cy='100' r='20' fill='none' stroke='rgb(217,83,111)' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='30' cy='100' r='8' fill='rgb(138,21,56)' fill-opacity='0.55'/%3E%3Cline x1='48' y1='38' x2='152' y2='152' stroke='rgb(217,83,111)' stroke-width='3' opacity='0.5' stroke-linecap='round'/%3E%3Cline x1='48' y1='104' x2='152' y2='8' stroke='rgb(217,83,111)' stroke-width='3' opacity='0.5' stroke-linecap='round'/%3E%3Ccircle cx='88' cy='71' r='6' fill='rgb(138,21,56)' fill-opacity='0.45'/%3E%3C/svg%3E");
}

/* Card 3 — calendar cu programări marcate */
.offer-card:nth-child(3) .offer-card__bg {
  background-size: 72%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 168 152'%3E%3Crect x='4' y='12' width='160' height='136' rx='10' fill='none' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.4'/%3E%3Crect x='4' y='12' width='160' height='34' rx='10' fill='rgb(138,21,56)' fill-opacity='0.28'/%3E%3Cline x1='4' y1='46' x2='164' y2='46' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.2'/%3E%3Cline x1='40' y1='3' x2='40' y2='18' stroke='rgb(217,83,111)' stroke-width='2.5' opacity='0.5' stroke-linecap='round'/%3E%3Cline x1='128' y1='3' x2='128' y2='18' stroke='rgb(217,83,111)' stroke-width='2.5' opacity='0.5' stroke-linecap='round'/%3E%3Crect x='52' y='22' width='64' height='14' rx='7' fill='rgb(217,83,111)' fill-opacity='0.2'/%3E%3Crect x='10' y='52' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='32' y='52' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='54' y='52' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.4'/%3E%3Crect x='76' y='52' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='98' y='52' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.4'/%3E%3Crect x='120' y='52' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='142' y='52' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='10' y='72' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='32' y='72' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.35'/%3E%3Crect x='54' y='72' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='76' y='72' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='98' y='72' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.35'/%3E%3Crect x='120' y='72' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='142' y='72' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='10' y='92' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Crect x='32' y='92' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='54' y='92' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='76' y='92' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='98' y='92' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='120' y='92' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Crect x='10' y='112' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='32' y='112' width='18' height='14' rx='3' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Crect x='54' y='112' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3Crect x='76' y='112' width='18' height='14' rx='3' fill='rgb(217,83,111)' fill-opacity='0.08'/%3E%3C/svg%3E");
}

/* Card 4 — simbol ∞ + grafic uptime (hosting gratuit pe viață) */
.offer-card:nth-child(4) .offer-card__bg {
  background-size: 78%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160'%3E%3Cpath d='M40 80 Q40 52 68 52 Q96 52 100 80 Q104 52 132 52 Q160 52 160 80 Q160 108 132 108 Q104 108 100 80 Q96 108 68 108 Q40 108 40 80Z' fill='none' stroke='rgb(217,83,111)' stroke-width='3' opacity='0.45'/%3E%3Crect x='12' y='126' width='16' height='28' rx='3' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Crect x='34' y='113' width='16' height='41' rx='3' fill='rgb(217,83,111)' fill-opacity='0.32'/%3E%3Crect x='56' y='105' width='16' height='49' rx='3' fill='rgb(217,83,111)' fill-opacity='0.38'/%3E%3Crect x='78' y='99' width='16' height='55' rx='3' fill='rgb(138,21,56)' fill-opacity='0.42'/%3E%3Crect x='100' y='101' width='16' height='53' rx='3' fill='rgb(217,83,111)' fill-opacity='0.38'/%3E%3Crect x='122' y='108' width='16' height='46' rx='3' fill='rgb(217,83,111)' fill-opacity='0.32'/%3E%3Crect x='144' y='117' width='16' height='37' rx='3' fill='rgb(138,21,56)' fill-opacity='0.3'/%3E%3Crect x='166' y='127' width='16' height='27' rx='3' fill='rgb(217,83,111)' fill-opacity='0.25'/%3E%3Cline x1='8' y1='156' x2='186' y2='156' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.15'/%3E%3C/svg%3E");
}

/* Card 5 — rachetă + timeline cu 3 milestone-uri (gata în 2 săptămâni) */
.offer-card:nth-child(5) .offer-card__bg {
  background-size: 42%;
  background-position: right -8px bottom -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 200'%3E%3Cpath d='M80 8 C96 8 112 30 112 72 L80 92 L48 72 C48 30 64 8 80 8Z' fill='rgb(138,21,56)' fill-opacity='0.28' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.45'/%3E%3Ccircle cx='80' cy='50' r='13' fill='none' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.45'/%3E%3Cpath d='M48 72 L28 96 L50 86Z' fill='rgb(138,21,56)' fill-opacity='0.35'/%3E%3Cpath d='M112 72 L132 96 L110 86Z' fill='rgb(138,21,56)' fill-opacity='0.35'/%3E%3Cpath d='M68 92 Q80 132 80 148 Q80 132 92 92' fill='rgb(217,83,111)' fill-opacity='0.22'/%3E%3Cline x1='20' y1='28' x2='20' y2='168' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.3' stroke-dasharray='4,5'/%3E%3Ccircle cx='20' cy='28' r='5' fill='rgb(217,83,111)' fill-opacity='0.45'/%3E%3Ccircle cx='20' cy='98' r='5' fill='rgb(138,21,56)' fill-opacity='0.6'/%3E%3Ccircle cx='20' cy='168' r='6' fill='rgb(217,83,111)' fill-opacity='0.5'/%3E%3Cpath d='M12 163 L18 170 L30 157' fill='none' stroke='rgb(217,83,111)' stroke-width='2.5' opacity='0.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='30' y1='28' x2='62' y2='28' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.2'/%3E%3Cline x1='30' y1='98' x2='62' y2='98' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.2'/%3E%3Cline x1='30' y1='168' x2='62' y2='168' stroke='rgb(217,83,111)' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
}

/* Card 6 — bule de chat (consultanță constantă) */
.offer-card:nth-child(6) .offer-card__bg {
  background-size: 78%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 170'%3E%3Crect x='10' y='10' width='120' height='52' rx='16' fill='rgb(138,21,56)' fill-opacity='0.25' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M24 62 L14 78 L38 62Z' fill='rgb(138,21,56)' fill-opacity='0.25'/%3E%3Crect x='22' y='22' width='80' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.25'/%3E%3Crect x='22' y='34' width='62' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.18'/%3E%3Crect x='22' y='46' width='42' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.12'/%3E%3Crect x='70' y='86' width='120' height='52' rx='16' fill='rgb(138,21,56)' fill-opacity='0.2' stroke='rgb(217,83,111)' stroke-width='1.5' opacity='0.35'/%3E%3Cpath d='M176 138 L186 154 L162 138Z' fill='rgb(138,21,56)' fill-opacity='0.2'/%3E%3Crect x='82' y='98' width='90' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.2'/%3E%3Crect x='82' y='110' width='72' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.15'/%3E%3Crect x='82' y='122' width='52' height='6' rx='3' fill='rgb(217,83,111)' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.offer-card::before {
  content: none;
  position: absolute;
  top: -14px; right: 6px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--gold-lt) 14%, transparent);
  pointer-events: none;
  z-index: 0;
}
.offer-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-50%);
  transition: width 0.45s var(--ease);
}
.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,0.18);
  background: #111111;
  box-shadow: 0 26px 52px -22px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.offer-card:hover::after { width: 60%; }

.offer-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  margin-bottom: 20px;
  transition: transform 0.45s var(--spring), background 0.3s var(--ease);
}
.offer-card:hover .offer-card__icon { transform: scale(1.08) rotate(-6deg); }

.offer-card__title {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}
.offer-card__text {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.offer-card__text em { font-style: normal; color: rgba(255,255,255,0.75); }
.offer-card__text strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.offer-card__text .card-emphasis { color: #fff; font-weight: 700;
}

/* ── BENTO GRID PLACEMENT ───────────────────────────────── */
.offer-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.offer-card:nth-child(2) { grid-column: 1; grid-row: 2; }
.offer-card:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
.offer-card:nth-child(4) { grid-column: 3; grid-row: 1; }
.offer-card:nth-child(5) { grid-column: 3; grid-row: 2; }

/* ── OFFER CARD LABEL (eyebrow) ─────────────────────────── */
.offer-card__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* ── FEATURED CARD (Programări) ─────────────────────────── */
.offer-card--featured {
  display: flex;
  flex-direction: column;
}
.offer-card--featured .offer-card__title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

/* ── BOOKING MOCKUP ─────────────────────────────────────── */
.booking-mock {
  margin-top: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Steps */
.booking-mock__steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.bm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.bm-step__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.bm-step__label {
  font-size: 9.5px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.bm-step--done .bm-step__num {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.65);
}
.bm-step--active .bm-step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.bm-step--active .bm-step__label { color: rgba(255,255,255,0.75); font-weight: 600; }
.bm-step__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 6px;
  margin-bottom: 14px;
}
/* Month header */
.booking-mock__month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.booking-mock__month span:first-child,
.booking-mock__month span:last-child {
  color: rgba(255,255,255,0.35);
  cursor: default;
  font-size: 13px;
}
.booking-mock__cal {
  padding: 12px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-mock__daynames,
.booking-mock__dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-size: 10.5px;
}
.booking-mock__daynames {
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
  font-weight: 600;
}
.booking-mock__dates span {
  padding: 5px 2px;
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  cursor: default;
}
.booking-mock__dates .bmd--off { color: rgba(255,255,255,0.18); }
.booking-mock__dates .bmd--sel {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}
.booking-mock__slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 14px;
}
.bms {
  font-size: 11px;
  text-align: center;
  padding: 6px 4px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: default;
}
.bms--free {
  color: var(--gold-lt);
  border-color: color-mix(in srgb, var(--gold-lt) 30%, transparent);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
}
.bms--sel {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 700;
}
.bms--taken {
  color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  text-decoration: line-through;
}
.booking-mock__cta {
  margin: 0 14px 14px;
  padding: 10px;
  border-radius: 9px;
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  letter-spacing: 0.03em;
}

.offer-scroll-hint {
  max-width: 360px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.45);
}
.offer-scroll-hint em {
  font-style: italic;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 900px) {
  .offer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4),
  .offer-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .offer-card:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .offer { padding: 16px 20px 60px; }
  .offer__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4),
  .offer-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .offer-card { padding: 24px 20px 20px; }
  .booking-mock { margin-top: 16px; }
}

/* ── STATEMENT ───────────────────────────────────────── */
.statement {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 52px 80px;
  text-align: left;
  position: relative;
}
.statement__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.statement__text {
  max-width: 640px;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--muted);
}
.statement__text em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .nav__links       { display: none; }
  .nav__cta         { display: none; }
  .nav-owner        { display: none; }
  .mobile__owner    { display: flex; }
  .nav__login-text  { display: none; }
  .nav__login       { width: 34px; height: 34px; padding: 0; justify-content: center; border-radius: 50%; border: 1px solid var(--border); }
  .nav__right       { flex-direction: row-reverse; justify-content: flex-end; gap: 6px; }
  .burger           { display: flex; justify-self: end; margin-left: 14px; }
  .nav__inner       { grid-template-columns: 1fr auto auto; }
}

@media (max-width: 600px) {
  .nav__inner { padding: 0 16px; }
}

/* ── DEMO MODAL ──────────────────────────────────────── */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.demo-modal.open { opacity: 1; pointer-events: auto; }

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.demo-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000;
  border-radius: 0;
  padding: 90px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(26px) scale(0.98);
  transition: transform 0.45s var(--spring);
}
.demo-modal.open .demo-modal__box { transform: translateY(0) scale(1); }

.demo-modal__close {
  position: fixed;
  top: 26px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s, transform 0.25s var(--spring);
}
.demo-modal__close:hover { background: rgba(255,255,255,0.1); color: #fff; transform: rotate(90deg); }

.demo-modal__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.demo-modal__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 420px;
}

.demo-modal__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-modal__placeholder {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  padding: 26px 8px 8px;
}

/* ── ROATA NOROCULUI WIDGET ────────────────────────────── */
.rw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
}

.rw-info-btn {
  position: relative;
  align-self: flex-end;
  margin-right: clamp(12px, 6vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(220,50,50,0.12);
  border: 1px solid rgba(220,50,50,0.45);
  color: #e98080;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.rw-info-btn:hover { background: rgba(220,50,50,0.22); border-color: rgba(220,50,50,0.85); }
.rw-info-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(220,50,50,0.25);
  border: 1px solid rgba(220,50,50,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.rw-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  transform: translateY(-4px);
  width: 270px;
  background: #0a0a0a;
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 60;
  text-align: left;
}
.rw-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%; right: 16px;
  border: 6px solid transparent;
  border-bottom-color: rgba(220,50,50,0.3);
}
.rw-info-btn.open .rw-tooltip { opacity: 1; pointer-events: auto; transform: translateY(0); }
.rw-tooltip-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e05555;
  margin-bottom: 10px;
}
.rw-tooltip-rule {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  padding-left: 12px;
  position: relative;
  margin-bottom: 6px;
}
.rw-tooltip-rule::before { content: '·'; position: absolute; left: 0; color: #e05555; }

.rw-note {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 44px;
  transform: translateY(-50%);
  width: 230px;
  padding: 18px 20px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  box-shadow: 0 16px 36px -12px color-mix(in srgb, var(--gold) 30%, transparent);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  text-align: left;
  z-index: 5;
}
.rw-note__tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.rw-note strong { color: var(--gold-lt); font-weight: 700; }

@media (max-width: 760px) {
  .rw-note {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
    transform: none;
    text-align: center;
  }
}

@media (min-width: 761px) {
  .rw {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "info  info   info"
      "prog  wheel  ."
      "demo  wheel  .";
    column-gap: 48px;
    row-gap: 20px;
    align-items: start;
  }
  .rw-info-btn      { grid-area: info; margin-right: 0; justify-self: end; }
  .rw-progress-card { grid-area: prog; max-width: 260px; width: 100%; justify-self: end; }
  .rw-wheel-area    { grid-area: wheel; align-self: center; justify-self: center; }
  .rw-demo-controls { grid-area: demo; max-width: 260px; width: 100%; margin-top: 0; justify-self: end; }
}

.rw-progress-card {
  width: 100%;
  max-width: 380px;
  text-align: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.rw-prog-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.rw-cuts-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
.rw-cut {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(239,68,68,0.4);
  background: rgba(239,68,68,0.07);
  color: rgba(239,68,68,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.rw-cut.filled {
  border-color: color-mix(in srgb, var(--gold) 60%, transparent);
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--gold-lt);
  box-shadow: 0 0 18px color-mix(in srgb, var(--gold) 35%, transparent);
}
.rw-prog-sub { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

.rw-wheel-area { display: flex; flex-direction: column; align-items: center; gap: 0; }
.rw-pointer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2px;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(201,168,76,0.7));
}
.rw-wheel-container { position: relative; margin-bottom: 26px; }
#rwCanvas {
  display: block;
  width: min(300px, 76vw);
  height: min(300px, 76vw);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(0,0,0,0.9), 0 0 0 2px rgba(201,168,76,0.3);
  transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 1);
}
.rw-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: min(300px, 76vw);
  height: min(300px, 76vw);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.5s;
}
.rw-lock-overlay.unlocked { opacity: 0; pointer-events: none; }
.rw-lock-icon { font-size: 22px; opacity: 0.7; }
.rw-lock-text { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.rw-spin-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  background-size: 200% auto;
  border: none;
  border-radius: 100px;
  padding: 15px 44px;
  cursor: pointer;
  box-shadow: 0 8px 26px color-mix(in srgb, var(--gold) 40%, transparent);
  transition: background-position 0.5s, transform 0.2s var(--spring), box-shadow 0.2s;
}
.rw-spin-btn:hover:not(:disabled) { background-position: right center; transform: scale(1.04); box-shadow: 0 12px 34px color-mix(in srgb, var(--gold) 50%, transparent); }
.rw-spin-btn:disabled { opacity: 0.4; cursor: not-allowed; filter: grayscale(0.4); box-shadow: none; }

.rw-demo-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.rw-demo-title { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.rw-demo-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.rw-demo-btn {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.rw-demo-btn:hover { border-color: color-mix(in srgb, var(--gold) 55%, transparent); color: var(--gold-lt); }

/* reward result overlay */
.rw-reward-overlay {
  position: absolute;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.rw-reward-overlay.visible { opacity: 1; pointer-events: auto; }
.rw-reward-box {
  background: linear-gradient(160deg, #0a0a0a, #000);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: 22px;
  padding: 44px 32px 32px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  position: relative;
  overflow: hidden;
  transform: scale(0.86);
  transition: transform 0.4s var(--spring);
}
.rw-reward-overlay.visible .rw-reward-box { transform: scale(1); }
.rw-reward-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--gold) 65%, transparent) 50%, transparent);
}
.rw-reward-confetti { font-size: 38px; margin-bottom: 14px; }
.rw-reward-label { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 10px; }
.rw-reward-name { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 8px; }
.rw-reward-desc { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5); margin-bottom: 18px; letter-spacing: 0.01em; }
.rw-reward-email-note {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.01em;
  line-height: 1.6;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 26px;
}
.rw-reward-close {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border: none;
  border-radius: 100px;
  padding: 13px 30px;
  cursor: pointer;
  transition: transform 0.25s var(--spring);
}
.rw-reward-close:hover { transform: translateY(-2px); }

/* ── TOMBOLE WIDGET ────────────────────────────────── */
.tb {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Info card */
.tb-card {
  border-radius: 16px;
  background: linear-gradient(145deg, #0a1a12, #040d08);
  border: 1px solid rgba(95,216,166,0.18);
  padding: 18px 20px 16px;
  position: relative;
  overflow: hidden;
}
.tb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95,216,166,0.55) 50%, transparent);
}
.tb-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tb-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  flex: 1;
}
.tb-live {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.tb-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff5252;
  animation: tb-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.tb-live-label {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ff5252;
}
.tb-prizes {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}
.tb-prize {
  flex: 1;
  background: rgba(95,216,166,0.05);
  border: 1px solid rgba(95,216,166,0.12);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tb-prize-rank {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.tb-prize-val {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
}
.tb-card__footer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
}
.tb-card__footer strong { color: rgba(255,255,255,0.82); font-weight: 700; }
.tb-participants {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #5FD8A6;
  background: rgba(95,216,166,0.08);
  border: 1px solid rgba(95,216,166,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* tb-rule */
.tb-rule {
  font-size: 11px;
  font-weight: 600;
  color: rgba(95,216,166,0.7);
  text-align: center;
  padding: 8px 12px;
  background: rgba(95,216,166,0.05);
  border-radius: 8px;
  margin-bottom: 4px;
}

/* Scan phase — simplified */
.tb-scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 8px 0 4px;
  transition: opacity 0.4s var(--ease);
}
.tb-scan__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.tb-cuts-row {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.tb-cut {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}
.tb-cut__icon {
  font-size: 22px;
  color: rgba(255,255,255,0.14);
  transition: color 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  display: block;
}
.tb-cut--done {
  border-color: #5FD8A6;
  background: rgba(95,216,166,0.1);
  box-shadow: 0 0 20px rgba(95,216,166,0.18);
}
.tb-cut--done .tb-cut__icon {
  color: #5FD8A6;
  transform: scale(1.18);
}
.tb-scan__status {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  text-align: center;
  min-height: 20px;
  transition: color 0.3s;
}
.tb-scan__status--ok { color: #5FD8A6; }

/* Result / Ticket phase */
.tb-result {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.tb-result.tb-visible {
  display: flex;
  animation: tb-fade-up 0.55s cubic-bezier(0.34,1.26,0.64,1) forwards;
}

/* Raffle ticket */
.tb-ticket {
  width: 100%;
  background: linear-gradient(145deg, #0c1a12, #061009);
  border: 1px solid rgba(95,216,166,0.28);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.tb-ticket::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #5FD8A6 50%, transparent);
}
.tb-ticket__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(95,216,166,0.1);
}
.tb-ticket__salon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(95,216,166,0.65);
}
.tb-ticket__badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #5FD8A6;
  background: rgba(95,216,166,0.1);
  border: 1px solid rgba(95,216,166,0.3);
  border-radius: 100px;
  padding: 3px 10px;
}
.tb-ticket__event {
  padding: 14px 18px 8px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.tb-ticket__fields {
  display: flex;
  gap: 0;
  padding: 0 18px 14px;
}
.tb-ticket__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tb-ticket__field-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.tb-ticket__field-value {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}
.tb-ticket__num {
  font-size: 20px;
  font-weight: 800;
  color: #5FD8A6;
  letter-spacing: 0.04em;
}
/* Perforare clasica raffle ticket */
.tb-ticket__perf {
  display: flex;
  align-items: center;
  padding: 0 0;
  margin: 0 -1px;
  position: relative;
}
.tb-ticket__perf-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(95,216,166,0.15);
  flex-shrink: 0;
}
.tb-ticket__perf-line {
  flex: 1;
  border-top: 2px dashed rgba(95,216,166,0.2);
  margin: 0 4px;
}
.tb-ticket__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 18px 16px;
}
.tb-ticket__footer-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.tb-ticket__footer-val {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
}

.tb-result-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  line-height: 1.65;
  max-width: 340px;
}
.tb-countdown {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  background: rgba(95,216,166,0.05);
  border: 1px solid rgba(95,216,166,0.14);
  border-radius: 14px;
}
.tb-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 40px;
}
.tb-cd-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tb-cd-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.tb-cd-sep {
  font-size: 20px;
  font-weight: 700;
  color: rgba(95,216,166,0.38);
  padding-bottom: 14px;
  align-self: flex-end;
}
.tb-social-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.tb-social-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}
.tb-social-sub { color: rgba(255,255,255,0.32); }
.tb-tiktok-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #000;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.tb-tiktok-btn:hover { border-color: rgba(255,255,255,0.42); transform: translateY(-2px); }
.tb-result-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.tb-demo-controls {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tb-demo-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.tb-demo-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tb-demo-btn {
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tb-demo-btn:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); color: #fff; }

/* Auth gate in demo modal */
.demo-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 32px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}
.demo-gate__icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}
.demo-gate__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.demo-gate__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  max-width: 300px;
}
.demo-gate__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 280px;
  margin-top: 4px;
}
.demo-gate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--spring), opacity 0.2s;
}
.demo-gate__btn--primary {
  background: var(--gold);
  color: #fff;
  border: none;
}
.demo-gate__btn--primary:hover { opacity: 0.88; transform: translateY(-2px); }
.demo-gate__btn--secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.14);
}
.demo-gate__btn--secondary:hover { background: rgba(255,255,255,0.11); color: #fff; transform: translateY(-1px); }

.demo-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
  max-width: 340px;
  margin: 0 auto;
}
.demo-soon__icon { font-size: 48px; line-height: 1; }
.demo-soon__title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.demo-soon__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

@keyframes tb-pulse  { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes tb-fade-up { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes tb-pop    { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }

/* ── PIXEL CHAT ──────────────────────────────────────── */
.pixel {
  position: relative;
  margin: 50px auto 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.pixel__launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 100px;
  background: var(--gold);
  color: #FFFFFF;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--gold) 40%, transparent);
  transition: transform 0.3s var(--spring), padding 0.3s var(--ease);
}
.pixel__launcher:hover { transform: translateY(-2px); }
.pixel__launcher-open {
  display: flex;
  align-items: center;
  gap: 9px;
  transition: opacity 0.2s, transform 0.2s;
}
.pixel__launcher-mark { font-size: 14px; }
.pixel__launcher-text { font-size: 13px; font-weight: 700; white-space: nowrap; }
.pixel__launcher-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.pixel.open .pixel__launcher { padding: 14px 17px; }
.pixel.open .pixel__launcher-open { opacity: 0; transform: rotate(90deg) scale(0.6); }
.pixel.open .pixel__launcher-close { opacity: 1; transform: rotate(0deg) scale(1); }

.pixel__panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(360px, 92vw);
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(0.97);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--spring);
}
.pixel.open .pixel__panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }

.pixel__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pixel__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.pixel__head-info { display: flex; flex-direction: column; }
.pixel__head-info strong { font-size: 13.5px; color: #fff; }
.pixel__head-info small { font-size: 11px; color: rgba(255,255,255,0.45); }

.pixel__msgs {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  scroll-behavior: smooth;
}
.pixel__msgs::-webkit-scrollbar { width: 3px; }
.pixel__msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

.pm {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  animation: pm-in 0.25s var(--spring) both;
}
.pm--bot {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-radius: 12px 12px 12px 3px;
  align-self: flex-start;
}
/* ── STICKY CTA ──────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 7px 7px 7px 36px;
  border-radius: 100px;
  background: #18181f;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta__text > span:first-child {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}
.sticky-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.sticky-cta__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex-shrink: 0;
}
.sticky-cta__btn { cursor: pointer; }
.sticky-cta__btn svg { width: 17px; height: 17px; }

/* ── AUTH TOAST ──────────────────────────────────────── */
.auth-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  background: #1c1c22;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.auth-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.auth-toast svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.auth-toast a { color: #fff; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.3); }
.auth-toast a:hover { border-color: #fff; }

/* ── PROCESS SECTION ────────────────────────────────── */
.process-section {
  padding: 80px 52px 90px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.process__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.process__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 52px;
  line-height: 1.15;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process__step {
  flex: 1;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}
.process__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  font-family: 'Unbounded', sans-serif;
  flex-shrink: 0;
}
.process__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.process__step-text {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin: 0;
}
.process__connector {
  font-size: 22px;
  color: rgba(255,255,255,0.15);
  padding-top: 14px;
  flex-shrink: 0;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .process-section { padding: 60px 24px 70px; }
  .process__steps { flex-direction: column; align-items: center; gap: 8px; }
  .process__step { max-width: 100%; flex-direction: row; text-align: left; gap: 16px; padding: 0; }
  .process__num { flex-shrink: 0; }
  .process__connector { padding-top: 0; align-self: center; transform: rotate(90deg); }
}

/* ── How it works toggle ─────────────────────────────── */
.contact__how-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  background: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.contact__how-btn:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.contact__how-btn-arrow {
  transition: transform 0.25s;
  flex-shrink: 0;
}
.contact__how-btn[aria-expanded="true"] .contact__how-btn-arrow {
  transform: rotate(180deg);
}
.contact__how-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.contact__how-panel.open { max-height: 800px; }
.contact__how-perks {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 860px) {
  .contact__how-perks { display: flex; }
}
.contact__how-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0 4px;
}
.contact__how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__how-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact__how-step strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
}
.contact__how-step p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
}

/* ── WhatsApp button ─────────────────────────────────── */
.cform__or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cform__or::before, .cform__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.cform__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.06);
  color: #25D366;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  margin-bottom: 4px;
}
.cform__whatsapp:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.55);
  transform: translateY(-1px);
}

.contact__social {
  margin-top: 40px;
  text-align: center;
}
.social-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.social-icon svg {
  display: block;
  padding: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  box-sizing: content-box;
  transition: border-color 0.2s, background 0.2s;
}
.social-icon:hover {
  color: #fff;
  transform: translateY(-2px);
}
.social-icon:hover svg {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
}
.social-icon__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 100px 52px 120px;
}
.contact-section::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 100vw; top: 0; bottom: 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #0e0e12 100%);
  z-index: -1;
}
.contact__inner { max-width: 1100px; margin: 0 auto; }
.contact__head { text-align: center; margin-bottom: 64px; }
.contact__label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.contact__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 16px;
}
.contact__title em { font-style: normal; color: rgba(255,255,255,0.38); }
.contact__sub {
  font-size: 15px; color: rgba(255,255,255,0.38);
  max-width: 460px; margin: 0 auto; line-height: 1.65;
}
.contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact__perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 12px;
}
.contact__perk {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.55;
}
.contact__perk strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.contact__perk-icon { color: rgba(255,255,255,0.2); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.contact__perk-link { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.25); transition: color 0.2s, text-decoration-color 0.2s; }
.contact__perk-link:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }

/* form card */
.contact__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact__auth-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 20px;
  text-align: center;
}
.contact__auth-overlay.hidden { display: none; }
.contact__auth-msg {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 280px;
}
.contact__auth-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact__auth-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); }
.cform { display: flex; flex-direction: column; gap: 20px; }
.cform__field { display: flex; flex-direction: column; gap: 8px; }
.cform__label {
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 0.02em;
}
.cform__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 13px 16px;
  font-family: inherit; font-size: 14px; color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.cform__input::placeholder { color: rgba(255,255,255,0.18); }
.cform__input:focus {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.07);
}
.cform__phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cform__phone-flag {
  position: absolute;
  left: 14px;
  font-size: 17px;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.cform__phone-flag:not(:empty) ~ .cform__input { padding-left: 42px; }

.cform__input--locked {
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  user-select: none;
}
.cform__input--locked:focus { outline: none; box-shadow: none; border-color: rgba(255,255,255,0.04); background: rgba(255,255,255,0.02); }
.cform__phone-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}
.cform__phone-hint--modified {
  color: rgba(255,255,255,0.18);
}
.cform__submit {
  margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; border: none;
  background: var(--text); color: var(--bg);
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.cform__submit:hover { background: #fff; transform: translateY(-1px); }
.cform__note {
  margin-top: 14px; font-size: 12.5px;
  color: rgba(255,255,255,0.28); text-align: center;
}
.cform__note strong { color: rgba(255,255,255,0.48); }
.cform__have-account {
  margin-top: 10px; text-align: center;
  font-size: 12.5px; color: rgba(255,255,255,0.25);
}
.cform__have-account a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cform__have-account a:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.45); }
.cform__success { text-align: center; padding: 28px 0; }
.cform__success-icon {
  display: inline-flex; width: 52px; height: 52px;
  border-radius: 50%; background: rgba(255,255,255,0.06);
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.cform__success p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cform__success-sub { font-size: 13.5px; color: rgba(255,255,255,0.38); margin-top: 8px; }

@media (max-width: 860px) {
  .contact__body { grid-template-columns: 1fr; }
  .contact__perks { display: none; }
}
@media (max-width: 600px) {
  .contact-section { padding: 80px 20px 100px; }
  .contact__head { margin-bottom: 40px; }
  .contact__card { padding: 24px 20px; }
}

.pm--user {
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 12px 12px 3px 12px;
  align-self: flex-end;
}
.pm--reveal {
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  color: #fff;
  border-radius: 12px;
  align-self: stretch;
  max-width: 100%;
}
.pm--reveal strong { color: var(--gold-lt); }
a.pm--cta {
  display: block;
  text-align: center;
  align-self: stretch;
  max-width: 100%;
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s var(--spring);
}
a.pm--cta:hover { transform: translateY(-2px); opacity: 0.92; }

@keyframes pm-in {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ptyping {
  display: flex;
  gap: 4px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px 12px 12px 3px;
  align-self: flex-start;
  animation: pm-in 0.25s var(--spring) both;
}
.ptyping span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: pdot 1.2s infinite; }
.ptyping span:nth-child(2) { animation-delay: 0.2s; }
.ptyping span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pdot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30%            { transform: translateY(-4px); opacity: 1; }
}

.pixel__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px 12px;
}
.pquick {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--spring);
}
.pquick:hover { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 14%, transparent); transform: translateY(-1px); }

.pixel__amount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px 2px 8px;
}
.pixel__amount-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.pixel__amount-input:focus { border-color: rgba(255,255,255,0.35); }
.pixel__amount-input::placeholder { color: rgba(255,255,255,0.28); }
.pixel__amount-ron {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  flex-shrink: 0;
}
.pixel__amount-btn {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.pixel__amount-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }

.pixel__input-row {
  display: none;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pixel__input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.pixel__ron {
  position: absolute;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.pixel__input-wrap input {
  width: 100%;
  padding-right: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 12.5px;
  color: #fff;
}
.pixel__input-row input::placeholder { color: rgba(255,255,255,0.35); }
.pixel__input-row input:focus { outline: none; border-color: var(--gold); }
.pixel__send {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s var(--spring);
}
.pixel__send:hover { transform: scale(1.08); }

@media (max-width: 480px) {
  .pixel__launcher-text { display: none; }
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 0.18s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0px); }

/* ── KEYFRAMES ───────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
