/* === Base (largely unchanged, with a few small tweaks) === */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: rgba(255,255,255,0.94);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #000;
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0;
  transition: opacity 500ms ease;
}
body.ready { opacity: 1; }
body::-webkit-scrollbar { display: none; }

#veil { position: fixed; inset: 0; display: grid; place-items: center; background: rgba(0, 0, 0, 0.88); opacity: 1; transition: opacity .4s ease; z-index: 100; }
body.ready #veil { opacity: 0; pointer-events: none; }
#veil .dot { width: 6px; height: 6px; margin: 0 4px; border-radius: 50%; background: #e8f6ff; box-shadow: 0 0 12px #e8f6ff; display: inline-block; animation: blip 1s infinite; }
#veil .dot:nth-child(2){ animation-delay: .15s; } 
#veil .dot:nth-child(3){ animation-delay: .3s; }
@keyframes blip { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-6px); opacity: 1; } }

.bg-video { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; filter: saturate(1.12) contrast(1.03) brightness(0.85); }
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; mix-blend-mode: screen; opacity: 0.55; }
.vignette { position: fixed; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.45) 100%); z-index: -1; pointer-events: none; }

.nav { position: fixed; top: 0; left: 0; right: 0; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; z-index: 20;
  backdrop-filter: blur(8px) saturate(120%); background: linear-gradient(to bottom, rgba(12,14,20,0.35), rgba(12,14,20,0));
}
.brand { display: flex; align-items: center; gap: 10px; }
.logo-orb { width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, #dff 45%, #8ad 70%, #234 100%);
  box-shadow: 0 0 12px #cfe, 0 0 30px rgba(200,255,255,0.35); animation: orb 6s ease-in-out infinite alternate; }
@keyframes orb { from {transform: translateY(0) hue-rotate(0)} to {transform: translateY(2px) hue-rotate(20deg)} }
.wordmark { font-weight: 600; letter-spacing: 0.08em; font-size: 14px; text-transform: uppercase; color: rgba(255,255,255,0.95); text-shadow: 0 0 10px rgba(220,255,255,0.3); }
.nav nav a { color: rgba(255,255,255,0.9); text-decoration: none; margin-left: 18px; font-size: 14px; letter-spacing: 0.04em; position: relative; }
.nav nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0%; height: 1px; background: linear-gradient(90deg, rgba(220,240,255,0), rgba(220,240,255,0.85), rgba(220,240,255,0)); transition: width .35s ease; }
.nav nav a:hover::after { width: 100%; }

.sound-control { position: fixed; right: 16px; bottom: 16px; z-index: 30; display: flex; gap: 10px; align-items: center; }
#soundToggle { appearance: none; border: 0; padding: 10px 14px; border-radius: 999px; background: rgba(220,230,245,0.25); color: rgba(255,255,255,0.95);
  font-size: 12px; letter-spacing: 0.06em; cursor: pointer; transition: transform .2s ease, background .3s ease; box-shadow: 0 6px 24px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
#soundToggle:hover { transform: translateY(-1px); background: rgba(240,245,255,0.35); }
#vol { width: 120px; height: 4px; border-radius: 999px; background: rgba(230,245,255,0.35); accent-color: #eef; cursor: pointer; }

.section { min-height: 100svh; display: grid; place-items: center; position: relative; padding: 80px 20px 60px; }
.hero .hero-inner { display: grid; place-items: center; gap: 22px; text-align: center; animation: floatIn 1.3s ease both; }
@keyframes floatIn { from {opacity:0; transform: translateY(10px); filter: blur(6px);} to {opacity:1; transform: translateY(0); filter: blur(0);} }
.tagline { font-size: clamp(18px, 2.4vw, 19px); letter-spacing: 0.06em; text-shadow: 0 0 16px rgba(200,240,255,0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(210,235,255,0.8)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 3px 18px rgba(210,240,255,0.22)); }
.cta { border: 0; border-radius: 999px; padding: 12px 20px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  background: radial-gradient(120% 140% at 30% 30%, rgba(210,235,255,0.55), rgba(140,190,255,0.25) 60%, rgba(60,90,140,0.18)); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35), 0 10px 30px rgba(50,80,140,0.35); cursor: pointer; transition: transform .25s ease, box-shadow .3s ease, filter .25s ease; backdrop-filter: blur(4px); }
.cta:hover { transform: translateY(-2px); filter: brightness(1.07); }
.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; opacity: .8; }
.scroll-indicator span { width: 6px; height: 6px; border-radius: 50%; background: rgba(220,245,255,0.95); animation: scrollPulse 1.5s infinite ease-in-out; }
.scroll-indicator span:nth-child(2){ animation-delay: .2s; } .scroll-indicator span:nth-child(3){ animation-delay: .4s; }
@keyframes scrollPulse { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(6px); opacity: 1; } }

.showcase { padding-top: 120px; padding-bottom: 120px; }
.grid.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(220px, 340px)); gap: 24px; align-items: center; justify-content: center; width: 100%; }
.thumb { display: grid; gap: 8px; justify-items: center; }

/* Slightly transparent thumbnails until enlarged */
.vid {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.06);
  transition: opacity .25s ease, filter .25s ease, transform 2.25s ease;
}
.thumb-dim { opacity: 0.85; }
.thumb:hover .thumb-dim, .thumb:focus-within .thumb-dim { opacity: 1.0; }

.enlarge { border: 0; border-radius: 999px; padding: 8px 12px; font-size: 12px; letter-spacing: .06em; color: #fff;
  background: rgba(240,245,255,0.18); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); cursor: pointer; transition: transform .2s ease, background .3s ease; }
.enlarge:hover { transform: translateY(-1px); background: rgba(255,255,255,0.28); }
.hintline { margin-top: 14px; opacity: .85; font-size: 12px; letter-spacing: .06em; }

.lightbox { position: fixed; inset: 0; display: none; z-index: 60; }
.lightbox.active { display: block; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,10,0.75); backdrop-filter: blur(3px); }
.lb-content { position: relative; width: min(92vw, 1200px); margin: 6vh auto; display: grid; place-items: center; }
#lbVideo { width: 100%; height: auto; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 120px rgba(0,0,0,0.6); background: #000; }
.lb-close { position: absolute; top: -12px; right: -12px; width: 34px; height: 34px; border-radius: 999px; border: 0; color: #000; background: #fff; font-size: 20px; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

@media (max-width: 1100px) { .grid.grid-3 { grid-template-columns: repeat(2, minmax(220px, 340px)); } }
@media (max-width: 760px)  { .grid.grid-3 { grid-template-columns: 1fr; gap: 18px; } }

.about .copy { max-width: 900px; text-align: center; backdrop-filter: blur(6px); background: rgba(240,248,255,0.14);
  border-radius: 24px; padding: clamp(16px, 5vw, 34px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); }
.about h2 { margin: 0 0 10px 0; font-size: clamp(22px, 3.2vw, 36px); letter-spacing: .03em; text-shadow: 0 0 16px rgba(255,255,255,0.35); }
.about p { margin: 0; font-size: clamp(14px, 2.1vw, 18px); line-height: 1.65; color: rgba(255,255,255,0.96); }
.contact { padding-top: 80px; padding-bottom: 80px; }
.contact .card { backdrop-filter: blur(8px); background: rgba(240,248,255,0.14); border-radius: 20px; padding: 22px 24px; width: min(92vw, 520px); text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25), 0 40px 120px rgba(0,0,0,0.35); }
.contact .ghost-btn { display: inline-block; margin-top: 10px; border-radius: 999px; padding: 9px 14px; color: #fff; text-decoration: none; letter-spacing: .06em;
  background: rgba(240,248,255,0.18); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45); transition: transform .2s ease, background .3s ease; }
.contact .ghost-btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.28); }
.footnote { margin-top: 16px; font-size: 12px; opacity: .75; }
