*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

:root {
  --bg: #080808;
  --white: #efefef;
  --yellow: #F5C518;
  --gray: #444;
  --border: #1a1a1a;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  cursor: none;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  will-change: left, top;
}

.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: left, top;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 64px; height: 64px;
  background: rgba(245,197,24,0.08);
  border-color: var(--yellow);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: difference;
}

.nav-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s;
}

.nav-item:hover { opacity: 0.5; }

.nav-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 48px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.88;
  position: relative;
  min-height: calc(clamp(72px, 13vw, 200px) * 0.88 * 3);
}

.ht-line {
  display: block;
  font-size: clamp(72px, 13vw, 200px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(40px);
  transition: clip-path 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.ht-line:nth-child(1) { transition-delay: 0.05s; }
.ht-line:nth-child(2) { transition-delay: 0.15s; }
.ht-line:nth-child(3) { transition-delay: 0.25s; }

/* Second line outline */
.ht-variant-a .ht-line:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

/* Variant wrapper */
.ht-variant {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Word swap inside line */
.ht-line-swap {
  position: relative;
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.ht-word-a,
.ht-word-b {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ht-word-b {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(12px);
  -webkit-text-stroke: 0;
}

/* Glitch keyframes */
@keyframes glitch {
  0%   { clip-path: inset(40% 0 50% 0); transform: translate(-4px, 0); }
  15%  { clip-path: inset(10% 0 80% 0); transform: translate(4px, 0); }
  30%  { clip-path: inset(70% 0 10% 0); transform: translate(-3px, 0); }
  45%  { clip-path: inset(20% 0 60% 0); transform: translate(3px, 0); }
  60%  { clip-path: inset(80% 0 5%  0); transform: translate(-2px, 0); }
  75%  { clip-path: inset(0%  0 0%  0); transform: translate(2px, 0); }
  100% { clip-path: inset(0%  0 0%  0); transform: translate(0, 0); }
}

.ht-line-swap.glitching {
  animation: glitch 0.35s steps(2) forwards;
}

/* Show VEOS */
.ht-line-swap.show-veos .ht-word-a {
  opacity: 0;
  transform: translateY(-12px);
}

.ht-line-swap.show-veos .ht-word-b {
  opacity: 1;
  transform: translateY(0);
}

.hero.loaded .ht-line {
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
}

.hero-bottom {
  position: absolute;
  bottom: 72px;
  left: 48px;
  right: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #888;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.6s ease, transform 0.8s 0.6s ease;
}

.hero.loaded .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--yellow);
  padding: 14px 28px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.7s ease, transform 0.8s 0.7s ease, background 0.2s;
}

.hero.loaded .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta:hover { background: #fff; }

/* Marquee */
.hero-marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 13px 0;
  opacity: 0;
  transition: opacity 0.8s 0.9s ease;
}

.hero.loaded .hero-marquee-wrap { opacity: 1; }

.hero-marquee {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  will-change: transform;
}

.hero-marquee span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  flex-shrink: 0;
}

.hm-sep {
  color: rgba(245,197,24,0.3) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
}

/* ── MARQUEES ── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.marquee-row:last-child { border-bottom: none; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  flex-shrink: 0;
}

.marquee-sep, .hm-sep {
  color: rgba(245,197,24,0.3) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
}

.marquee-trusted {
  color: #444 !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
}

.marquee-brand {
  color: #ccc !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

/* ── ABOUT ── */
.about {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
  position: relative;
}

.about-label, .work-label, .contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 48px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-title-wrap {
  position: relative;
  display: inline-block;
}

.about-title {
  font-size: clamp(72px, 12vw, 180px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px #333;
  position: relative;
  z-index: 1;
}

.about-title-fill {
  position: absolute;
  inset: 0;
  font-size: clamp(72px, 12vw, 180px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--yellow);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  z-index: 2;
  pointer-events: none;
  background: var(--bg);
  padding: 0 4px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #888;
  margin-bottom: 56px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

.stat-n {
  display: block;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}

.stat.counted .stat-n {
  color: var(--yellow);
}

.stat-l {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s 0.3s ease, transform 0.5s 0.3s ease;
}

.stat.counted .stat-l {
  opacity: 1;
  transform: translateY(0);
}

/* ── WORK ── */
.work {
  padding: 140px 48px 0;
  border-top: 1px solid var(--border);
}

.projects { position: relative; }

.proj {
  height: 120vh;
  position: relative;
}

.proj-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-bg-color {
  position: absolute;
  inset: 0;
  background: var(--proj-bg, #080808);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.proj.in-view .proj-bg-color { opacity: 1; }

.proj-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proj-center-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s 0s cubic-bezier(0.16,1,0.3,1), opacity 0.6s 0s ease;
}

.proj.in-view .proj-center-num { transform: translateY(0); opacity: 1; }

.proj-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
  transform: scale(0.88);
  opacity: 0;
  transition: transform 1s 0.08s cubic-bezier(0.16,1,0.3,1),
              opacity 0.8s 0.08s ease,
              color 0.7s 0.5s ease,
              -webkit-text-stroke-width 0.7s 0.5s ease;
}

.proj.in-view .proj-logo-text {
  transform: scale(1);
  opacity: 1;
  color: currentColor;
  -webkit-text-stroke-width: 0px;
}

.proj-center-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-top: 20px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.6s 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.6s 0.2s ease;
}

.proj.in-view .proj-center-tag { transform: translateY(0); opacity: 1; }

.proj-logo-img {
  max-width: min(420px, 55vw);
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  transform: scale(0.88);
  opacity: 0;
  transition: transform 1s 0.08s cubic-bezier(0.16,1,0.3,1), opacity 0.8s 0.08s ease;
}

.proj.in-view .proj-logo-img {
  transform: scale(1);
  opacity: 1;
}

.proj-logo-box {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  transform: scale(0.88);
  opacity: 0;
  transition: transform 1s 0.08s cubic-bezier(0.16,1,0.3,1), opacity 0.8s 0.08s ease;
  overflow: hidden;
}

.proj.in-view .proj-logo-box {
  transform: scale(1);
  opacity: 1;
}

.proj-logo-box-text {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.proj-logo-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
}

.proj-logo-multicolor span {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
  transition: color 0.7s 0.5s ease, -webkit-text-stroke-width 0.7s 0.5s ease;
}

.proj.in-view .proj-logo-multicolor span {
  color: currentColor;
  -webkit-text-stroke-width: 0px;
}

.proj-bottom {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.7s 0.3s ease;
}

.proj.in-view .proj-bottom { transform: translateY(0); opacity: 1; }

.proj-bottom-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  max-width: 300px;
  margin-bottom: 12px;
}

.proj-bottom-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid #333;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.proj-bottom-link:hover {
  color: var(--proj-accent, var(--yellow));
  border-color: var(--proj-accent, var(--yellow));
}

.proj-top-right {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 3;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-16px);
  opacity: 0;
  transition: transform 0.6s 0.15s cubic-bezier(0.16,1,0.3,1), opacity 0.6s 0.15s ease;
}

.proj.in-view .proj-top-right { transform: translateY(0); opacity: 1; }

.proj-year, .proj-services {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
}

.proj-sticky::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--proj-accent, var(--yellow));
  transition: width 1s 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 4;
}

.proj.in-view .proj-sticky::after { width: 100%; }

@media (max-width: 900px) {
  .work { padding: 80px 24px 0; }
  .proj-bottom { left: 24px; bottom: 32px; }
  .proj-top-right { right: 24px; top: 32px; }
}

/* ── PROJ TWO-PHASE ── */
.proj-twophase { height: 400vh; }

.proj-phase-1,
.proj-phase-2 {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Phase 2 hidden by default */
.proj-phase-2 {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 3;
}

/* Controlled by JS via data attribute */
.proj-twophase[data-phase="2"] .proj-phase-1 {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.proj-twophase[data-phase="2"] .proj-phase-2 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.proj-phase2-text {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.8;
  color: var(--white);
  max-width: 520px;
  text-align: center;
  font-weight: 500;
}

.proj-bottom-big {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.proj-twophase[data-phase="2"] .proj-bottom-big {
  opacity: 1;
  transform: translateY(0);
}
.contact {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}

.contact-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 56px;
}

.contact-yellow { color: var(--yellow); }

.contact-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--yellow);
  border: none;
  padding: 18px 40px;
  border-radius: 100px;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover {
  background: #fff;
  transform: scale(1.03);
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px;
  width: min(560px, 92vw);
  min-height: 360px;
  padding: 56px 48px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-overlay.open .popup { transform: translateY(0); }

.popup-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  cursor: none;
  transition: color 0.2s;
}

.popup-close:hover { color: var(--white); }

.popup-step {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.4s ease forwards;
}

.popup-step.active { display: flex; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.popup-disclaimer {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.popup-q-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.popup-q {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.popup-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.popup-opt {
  padding: 10px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  background: transparent;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font);
}

.popup-opt:hover { border-color: #444; color: var(--white); }

.popup-opt.selected {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245,197,24,0.06);
}

.popup-btn-main {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  font-family: var(--font);
}

.popup-btn-main:hover { background: #fff; transform: scale(1.03); }

.popup-fields { display: flex; flex-direction: column; gap: 12px; }

.popup-input {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}

.popup-input:focus { border-color: var(--yellow); }
.popup-input::placeholder { color: #333; }

.popup-agree-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.popup-agree-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.popup-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0;
}

.popup-done-icon { font-size: 40px; color: var(--yellow); }

.popup-done-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
}

.popup-done-text { font-size: 15px; color: #666; line-height: 1.7; }

.popup-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.popup-progress-bar {
  height: 100%;
  background: var(--yellow);
  width: 0%;
  transition: width 0.4s ease;
}

/* ── FOOTER ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .hero { padding: 0 24px; }
  .hero-bottom { left: 24px; right: 24px; flex-direction: column; gap: 24px; align-items: flex-start; }
  .about { padding: 80px 24px; }
  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .work { padding: 80px 24px 0; }
  .proj-sticky { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .proj-left { padding: 32px 24px; border-right: none; border-top: 1px solid var(--border); }
  .proj-num { left: 24px; }
  .contact { padding: 80px 24px; }
  footer { padding: 20px 24px; }
}

/* ── FOOTER QUESTIONS BUTTON ── */
.footer-questions-btn {
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 100px;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
}

.footer-questions-btn:hover {
  background: var(--yellow);
  transform: scale(1.04);
}

/* ── QUESTIONS POPUP ── */
.questions-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.questions-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.questions-popup {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px;
  width: min(560px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  padding: 56px 48px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.questions-overlay.open .questions-popup {
  transform: translateY(0);
}

.questions-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  cursor: none;
  transition: color 0.2s;
}

.questions-close:hover { color: var(--white); }

.questions-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.questions-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.questions-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.questions-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #888;
}

.questions-item p strong {
  color: var(--white);
}

.questions-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.questions-cta:hover {
  background: #fff;
  transform: scale(1.03);
}

@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}
