/* ============================================================
   Orbis.Nft — vanilla port of motionsites Orbis_NFT spec
   Dark space theme · Cloudfront videos · Anton + Condiment + mono
   Color: bg #010828 · cream #EFF4FF · neon #6FFF00
   Liquid-glass effect · texture overlay · 4 sections
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; min-height: 100%; background: #010828; color: #EFF4FF; font-family: "JetBrains Mono", ui-monospace, monospace; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
img, video, svg { display: block; max-width: 100%; }
button, a { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; text-decoration: none; }

/* ===== Demo banner ===== */
.orb-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(1,8,40,.78); color: rgba(239,244,255,.78);
  font-family: "Anton", sans-serif;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 8px 16px; backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(111,255,0,.15);
}

/* ===== Texture overlay ===== */
.orb-texture {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 30%, rgba(111,255,0,.04), transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(120,80,255,.06), transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 2px, transparent 2px 4px);
  mix-blend-mode: lighten;
  opacity: .6;
}

/* ===== Liquid-glass effect (spec) ===== */
.liquid-glass {
  background: rgba(255,255,255,.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,.45) 0%,
    rgba(255,255,255,.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,.15) 80%,
    rgba(255,255,255,.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ===== Deck container ===== */
.orb-deck {
  position: relative;
  width: 100%;
  background: #010828;
}

/* ===== Section base ===== */
.orb-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.orb-hero, .orb-about {
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
}
.orb-hero { border-radius: 0 0 32px 32px; }

/* Background video covering each section */
.orb-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Container max-width 1831px centered with responsive padding */
.orb-container {
  position: relative; z-index: 5;
  max-width: 1831px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ===== Cursive accent text — Condiment, neon green, mix-blend ===== */
.orb-cursive {
  font-family: "Condiment", cursive;
  color: #6FFF00;
  mix-blend-mode: exclusion;
  opacity: .9;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* =====================================================================
   SECTION 1 — HERO
   ===================================================================== */
.orb-header {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 0;
}
.orb-logo {
  font-family: "Anton", sans-serif;
  font-size: 16px; text-transform: uppercase;
  letter-spacing: .04em;
  color: #EFF4FF;
}
.orb-nav {
  display: flex; gap: 32px;
  border-radius: 28px;
  padding: 24px 52px;
  font-family: "Anton", sans-serif;
}
.orb-nav a {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: .05em;
  color: #EFF4FF;
  transition: color .2s;
}
.orb-nav a:hover { color: #6FFF00; }

.orb-hero-content {
  position: relative;
  padding: 80px 0 64px;
  margin-left: 0;
}
.orb-hero-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 90px);
  line-height: 1;
  max-width: 780px;
  position: relative;
  margin-left: 0;
  color: #EFF4FF;
}
.orb-hero-accent {
  position: absolute;
  right: 8%;
  top: -6%;
  font-size: clamp(24px, 3.4vw, 48px);
  transform: rotate(-1deg);
  display: inline-block;
}

/* Social stack (desktop top-right) */
.orb-social-stack {
  position: absolute;
  top: 80px; right: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.orb-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  color: #EFF4FF;
  transition: background .25s;
}
.orb-social:hover { background: rgba(255,255,255,.10); }
.orb-social svg { width: 20px; height: 20px; }

/* =====================================================================
   SECTION 2 — ABOUT / INTRO
   ===================================================================== */
.orb-about { padding: 64px 0; }
.orb-about .orb-container {
  display: flex; flex-direction: column;
  gap: 64px;
  padding: 96px 24px;
}
.orb-about-top {
  display: flex; flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}
.orb-about-title {
  position: relative;
  font-family: "Anton", sans-serif;
  text-transform: uppercase; font-weight: 400;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1;
  color: #EFF4FF;
}
.orb-about-accent {
  position: absolute;
  bottom: -12%; right: -12%;
  font-size: clamp(36px, 4.6vw, 68px);
  transform: rotate(-2deg);
  display: inline-block;
}
.orb-about-desc {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(14px, 1vw, 16px);
  text-transform: uppercase;
  letter-spacing: .03em;
  max-width: 266px;
  color: #EFF4FF;
  line-height: 1.5;
}
.orb-about-bottom {
  display: flex; justify-content: space-between;
  gap: 64px;
}
.orb-about-col {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 320px;
}
.orb-about-faded {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
  opacity: .10;
  line-height: 1.5;
}

/* =====================================================================
   SECTION 3 — NFT COLLECTION GRID
   ===================================================================== */
.orb-gallery {
  background: #010828;
  padding: 96px 0;
}
.orb-gallery-head {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 64px;
}
.orb-gallery-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase; font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  color: #EFF4FF;
}
.orb-gallery-indent { display: block; padding-left: clamp(48px, 6vw, 128px); }
.orb-gallery-accent {
  font-size: 1em;
  vertical-align: baseline;
  margin-right: .15em;
}
.orb-see-all {
  position: relative;
  display: inline-flex; align-items: flex-end;
  gap: 16px;
  padding-bottom: 18px;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  color: #EFF4FF;
}
.orb-see-big { font-size: clamp(32px, 5vw, 60px); line-height: 1; }
.orb-see-stack {
  display: flex; flex-direction: column;
  font-size: clamp(20px, 3vw, 36px);
  line-height: .95;
}
.orb-see-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(6px, .8vw, 10px);
  background: #6FFF00;
  border-radius: 2px;
}

.orb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.orb-card {
  border-radius: 32px;
  padding: 18px;
  transition: background .25s;
}
.orb-card:hover { background: rgba(255,255,255,.10); }
.orb-card-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #06122e;
}
.orb-card-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.orb-card-bar {
  margin-top: 16px;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.orb-card-meta { display: flex; flex-direction: column; gap: 2px; }
.orb-card-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(239,244,255,.7);
  text-transform: uppercase;
}
.orb-card-value {
  font-family: "Anton", sans-serif;
  font-size: 16px; letter-spacing: .03em;
  color: #EFF4FF;
}
.orb-card-cta {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b724ff, #7c3aed);
  box-shadow: 0 6px 18px rgba(124,58,237,.5);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s;
  color: #fff;
}
.orb-card-cta:hover { transform: scale(1.10); }
.orb-card-cta svg { width: 18px; height: 18px; }

/* =====================================================================
   SECTION 4 — CTA / FINAL
   ===================================================================== */
.orb-cta {
  position: relative;
  width: 100%;
  background: #010828;
  min-height: 100dvh;
  display: flex;
}
.orb-cta-video {
  width: 100%;
  height: auto;
  display: block;
}
.orb-cta-content {
  position: absolute;
  right: clamp(32px, 20%, 280px);
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  max-width: 60%;
  z-index: 10;
}
.orb-cta-accent {
  display: inline-block;
  position: relative;
  font-size: clamp(17px, 4vw, 68px);
  margin-bottom: 8px;
}
.orb-cta-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase; font-weight: 400;
  font-size: clamp(16px, 4.2vw, 60px);
  line-height: 1;
  color: #EFF4FF;
  display: flex; flex-direction: column; gap: 8px;
}
.orb-cta-line { display: block; }
.orb-cta-first { margin-bottom: clamp(4px, 1.2vw, 12px); }

.orb-cta-social {
  position: absolute;
  left: 8%; bottom: clamp(32px, 14%, 160px);
  z-index: 10;
  display: flex; flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.orb-cta-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(64px, 11vw, 160px);
  height: clamp(64px, 11vw, 160px);
  color: #EFF4FF;
  transition: background .25s;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.orb-cta-social-btn:last-child { border-bottom: 0; }
.orb-cta-social-btn:hover { background: rgba(255,255,255,.10); }
.orb-cta-social-btn svg { width: clamp(20px, 2vw, 28px); height: clamp(20px, 2vw, 28px); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .orb-nav { display: none; }
  .orb-social-stack {
    position: relative; top: auto; right: auto;
    flex-direction: row; justify-content: center;
    margin-top: 48px;
  }
  .orb-about-top { flex-direction: column; gap: 32px; }
  .orb-about-bottom { flex-direction: column; }
  .orb-about-col-right { display: none; }
  .orb-grid { grid-template-columns: repeat(2, 1fr); }
  .orb-cta-content { max-width: 92%; right: 24px; }
  .orb-cta-social { left: 24px; bottom: 24px; }
  .orb-cta-social-btn { width: 64px; height: 64px; }
}
@media (max-width: 640px) {
  .orb-banner { font-size: 10px; padding: 6px 10px; letter-spacing: .14em; }
  .orb-container { padding: 24px 18px; }
  .orb-header { flex-direction: row; gap: 16px; padding-top: 36px; }
  .orb-grid { grid-template-columns: 1fr; }
  .orb-gallery-head { flex-direction: column; gap: 24px; }
  .orb-cta-content { right: 24px; max-width: 88%; }
  .orb-cta-title { font-size: clamp(20px, 7vw, 36px); }
}
