/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --bg-2:      #0f0f0f;
  --bg-3:      #161616;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.18);
  --text:      #ffffff;
  --text-muted:#8a8a8a;
  --text-dim:  #555;
  --accent:    #ffffff;
  --glow:      rgba(255,255,255,0.04);
  --radius:    14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--border-hi);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.35) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  top: -200px; left: -200px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.025);
  bottom: -150px; right: -150px;
}

/* ============================================
   SPOTLIGHTS
   ============================================ */
.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: blur(3px);
}

/* Top-left — shines down-right toward logo */
.spotlight-tl {
  background: conic-gradient(
    at 5% 0%,
    transparent 118deg,
    rgba(255,255,255,0.10) 128deg,
    rgba(255,255,255,0.26) 138deg,
    rgba(255,255,255,0.10) 148deg,
    transparent 158deg
  );
  transform-origin: 5% 0%;
  animation: sweepTL 3.2s ease-in-out infinite alternate;
}

/* Top-right — shines down-left toward logo */
.spotlight-tr {
  background: conic-gradient(
    at 95% 0%,
    transparent 202deg,
    rgba(255,255,255,0.10) 212deg,
    rgba(255,255,255,0.26) 222deg,
    rgba(255,255,255,0.10) 232deg,
    transparent 242deg
  );
  transform-origin: 95% 0%;
  animation: sweepTR 3.8s ease-in-out infinite alternate;
  animation-delay: -1.6s;
}

@keyframes sweepTL {
  from { transform: rotate(-22deg); opacity: 0.5; }
  to   { transform: rotate(22deg);  opacity: 1;   }
}
@keyframes sweepTR {
  from { transform: rotate(22deg);  opacity: 0.5; }
  to   { transform: rotate(-22deg); opacity: 1;   }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  z-index: 2;
}
.hero-logo {
  width: 520px;
  max-width: 90vw;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  border-radius: 16px;
  /* clip the white border artifact from the screenshot */
  clip-path: inset(6px 8px round 14px);
  /* reserve space before image loads — prevents layout shift (CLS) */
  aspect-ratio: 948 / 675;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, #777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.04);
}
.btn-outline-white {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  background: var(--bg-3);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg-2); position: relative; overflow: hidden; }
.pricing::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}
.pricing-featured {
  background: #fff;
  color: #000;
  border-color: transparent;
  transform: scale(1.04);
}
.pricing-featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-featured .pricing-desc,
.pricing-featured .price-note,
.pricing-featured li.muted { color: #555 !important; }
.pricing-featured .pricing-features li { color: #111; }
.pricing-featured .section-tag { color: #555; border-color: #ddd; }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-featured .pricing-tier-badge { color: #888; }

.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-featured .pricing-price { border-bottom-color: rgba(0,0,0,0.12); }
.price-currency {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-left: 4px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing-features li.muted { color: var(--text-dim); }
.pricing-featured .pricing-features li.muted { color: #bbb; }
.check { color: #fff; font-weight: 700; }
.pricing-featured .check { color: #000; }
.cross { color: var(--text-dim); }
.pricing-featured .cross { color: #ccc; }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}
.pricing-featured .pricing-divider { background: rgba(0,0,0,0.1); }

.pricing-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-featured .pricing-section-label { color: #888; }

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 40px;
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.work-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.work-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.work-img-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%);
}
.work-img-2 {
  background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 50%, #2a2a2a 100%);
}
.work-img-3 {
  background: linear-gradient(135deg, #161616 0%, #252525 50%, #0f0f0f 100%);
}
.work-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 21px
  );
}
.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}
.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}
.work-img-link {
  display: block;
}
.work-info {
  padding: 22px 22px 24px;
  background: var(--bg-2);
}
.work-preview-btn {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border-hi);
  padding: 7px 16px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}
.work-preview-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
}
.work-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.work-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.testi-stars {
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.testi-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.contact-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-icon { font-size: 1rem; }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  clip-path: inset(6px 8px round 14px);
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .popular-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px 20px; }
}

/* ============================================
   CUSTOM CURSOR (mouse devices only)
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  will-change: transform;
}
body.cursor-hover .cursor-dot {
  width: 14px; height: 14px;
  background: #fff;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(255,255,255,0.85);
}
body.cursor-clicked .cursor-dot {
  width: 6px; height: 6px;
}
body.cursor-clicked .cursor-ring {
  width: 28px; height: 28px;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
#splash {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.splash-logo {
  width: 520px;
  max-width: 85vw;
  height: auto;
  clip-path: inset(6px 8px round 14px);
  animation: splashLogoIn 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
  opacity: 0;
}
@keyframes splashLogoIn {
  0%   { opacity: 0; transform: scale(0.82) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.splash-bar {
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  animation: splashBar 1.8s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
@keyframes splashBar {
  0%   { width: 0; opacity: 1; }
  80%  { width: 320px; opacity: 1; }
  100% { width: 320px; opacity: 0; }
}
