/* =========================
BASE / GLOBAL
========================= */

*{
  box-sizing: border-box;
}

html,
body{
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(circle at 60% 10%, rgba(255,200,100,0.05), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,209,255,0.06), transparent 40%),
    linear-gradient(180deg, #050814 0%, #03060f 100%);
  color: white;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  text-align: center;
  overflow-x: hidden;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

body.page-transition{
  opacity: 0.15;
  transform: scale(1.01);
  filter: blur(4px);
}

/* =========================
HOMEPAGE / HOUSE
========================= */

.house-wrapper{
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at top, #09132a 0%, #050814 65%, #03050d 100%);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.top-row{
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  pointer-events: auto;
}

.logo img{
  width: 72px;
  height: auto;
  display: block;
}

/* =========================
GLASS PILL NAV
========================= */

.nav-links{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10, 18, 36, 0.45);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 0 12px rgba(255,255,255,0.04);
}

.nav-links a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-links a:hover{
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  transform: translateY(-1px);
  opacity: 1;
}

.nav-links a:active{
  transform: translateY(0) scale(0.98);
}

.nav-links a.nav-primary{
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 190, 90, 0.35);
}

.nav-links a.nav-primary:hover{
  background: linear-gradient(135deg, #f7ba5b, #ffdb84);
}

/* =========================
HERO CONTENT
========================= */

.hero-text{
  position: absolute;
  top: clamp(170px, 21vh, 225px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: min(92vw, 840px);
  padding: 0 20px;
}

.beamoco-title{
  position: relative;
  left: -18px; /* optical centre fix */

  display: block;
  margin: 0 auto 6px; /* was 6px or 8px */

  width: clamp(520px, 42vw, 820px);
  max-width: 92vw;

  filter:
    drop-shadow(0 0 6px rgba(255, 190, 90, 0.35))
    drop-shadow(0 0 16px rgba(255, 190, 90, 0.18));

  animation: beamocoTitleGlow 6s ease-in-out infinite;
}

@keyframes beamocoTitleGlow{
  0%,100%{
    filter:
      drop-shadow(0 0 6px rgba(255, 190, 90, 0.35))
      drop-shadow(0 0 16px rgba(255, 190, 90, 0.18));
  }

  50%{
    filter:
      drop-shadow(0 0 10px rgba(255, 215, 130, 0.5))
      drop-shadow(0 0 26px rgba(255, 190, 90, 0.25));
  }
}

.hero-tagline{
  position: relative;
  display: inline-block;
  padding: 11px 24px;
  margin: 0;
  
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffdca0;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 120, 0.22);
  background: linear-gradient(
    120deg,
    rgba(255, 190, 90, 0.12),
    rgba(255, 190, 90, 0.02),
    rgba(0, 209, 255, 0.06)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 18px rgba(255, 190, 90, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
  text-shadow: 0 0 10px rgba(255, 200, 120, 0.55);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-tagline{
  margin-top: -60px;
}

.hero-tagline::before{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: taglineShimmer 5s ease-in-out infinite;
}

@keyframes taglineShimmer{
  0%{ left: -130%; }
  50%{ left: 130%; }
  100%{ left: 130%; }
}

.hero-intro-text{
  max-width: 720px;
  margin: 16px auto 0;
  padding: 16px 22px;

  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: 0.01em;

  color: rgba(255,255,255,0.94);

  background: rgba(5, 12, 28, 0.28);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 12px 34px rgba(0,0,0,0.18),
    inset 0 0 22px rgba(255,255,255,0.035),
    0 0 28px rgba(0, 209, 255, 0.08);

  text-shadow:
    0 2px 10px rgba(0,0,0,0.45),
    0 0 12px rgba(255,255,255,0.08);
}

.hero-intro-text::after{
  content: "";
  position: absolute;
  inset: -12px -24px;
  z-index: -1;

  background: radial-gradient(
    circle at center,
    rgba(255, 200, 120, 0.07),
    rgba(0, 209, 255, 0.04),
    transparent 70%
  );

  filter: blur(22px);
  opacity: 0.7;
}

.explore-btn{
  margin-top: 12px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(255, 183, 77, 0.26),
    0 0 36px rgba(255, 195, 92, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.explore-btn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 36px rgba(255, 183, 77, 0.38),
    0 0 42px rgba(255, 195, 92, 0.18);
  filter: brightness(1.03);
}

.hero-text > *{
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpHero 0.8s ease forwards;
}

.hero-text > *:nth-child(1){ animation-delay: 0.15s; }
.hero-text > *:nth-child(2){ animation-delay: 0.28s; }
.hero-text > *:nth-child(3){ animation-delay: 0.42s; }
.hero-text > *:nth-child(4){ animation-delay: 0.56s; }

@keyframes fadeUpHero{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.house-stage{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 0;
}

.zoom-layer{
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0 auto;
  transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
  transform-origin: center center;
  z-index: 5;
}

.zoom-layer.room-zoom{
  transform: scale(1.06);
  filter: brightness(1.08);
}

.house-image{
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  animation: housePulse 4.2s ease-in-out infinite;
}

.house-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* =========================
HOUSE LIGHT EFFECTS
========================= */

.house-light-effects{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
}

.window-glow{
  position: absolute;
  border-radius: 18px;
  filter: blur(20px);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.window-glow.l1{
  left: 58%;
  top: 63%;
  width: 11%;
  height: 7%;
  background: radial-gradient(circle, rgba(255,190,90,0.45), rgba(255,140,50,0.12), transparent 72%);
  animation: windowFlicker1 4.6s ease-in-out infinite;
}

.window-glow.l2{
  left: 70%;
  top: 63%;
  width: 10%;
  height: 7%;
  background: radial-gradient(circle, rgba(255,200,110,0.42), rgba(255,150,60,0.12), transparent 72%);
  animation: windowFlicker2 5.4s ease-in-out infinite;
}

.window-glow.l3{
  left: 52%;
  top: 52%;
  width: 10%;
  height: 7%;
  background: radial-gradient(circle, rgba(255,185,85,0.38), rgba(255,135,50,0.10), transparent 72%);
  animation: windowFlicker3 6s ease-in-out infinite;
}

.window-glow.l4{
  left: 64%;
  top: 52%;
  width: 10%;
  height: 7%;
  background: radial-gradient(circle, rgba(255,200,100,0.36), rgba(255,150,55,0.10), transparent 72%);
  animation: windowFlicker4 5.2s ease-in-out infinite;
}

.window-glow.l5{
  left: 77%;
  top: 52%;
  width: 8%;
  height: 7%;
  background: radial-gradient(circle, rgba(255,215,120,0.32), rgba(255,165,65,0.10), transparent 72%);
  animation: windowFlicker5 4.8s ease-in-out infinite;
}

.room-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  mix-blend-mode: screen;
  opacity: 0.32;
}

.room-glow.r1{
  left: 54%;
  top: 58%;
  width: 18%;
  height: 10%;
  background: radial-gradient(circle, rgba(255,145,70,0.30), rgba(255,110,45,0.08), transparent 75%);
  animation: roomGlowPulse1 6.8s ease-in-out infinite;
}

.room-glow.r2{
  left: 68%;
  top: 58%;
  width: 19%;
  height: 10%;
  background: radial-gradient(circle, rgba(255,175,85,0.26), rgba(255,120,55,0.08), transparent 75%);
  animation: roomGlowPulse2 7.5s ease-in-out infinite;
}

.room-glow.r3{
  left: 58%;
  top: 47%;
  width: 16%;
  height: 10%;
  background: radial-gradient(circle, rgba(255,160,80,0.22), rgba(255,115,50,0.07), transparent 75%);
  animation: roomGlowPulse3 8.2s ease-in-out infinite;
}

/* =========================
ROOM INTERACTION
========================= */

.room{
  fill: rgba(255,255,255,0);
  stroke: rgba(255,255,255,0);
  stroke-width: 2;
  cursor: pointer;
  transition: fill 0.2s ease, stroke 0.2s ease, opacity 0.2s ease, transform 0.3s ease;
}

.room:hover{
  fill: rgba(0,209,255,0.10);
  stroke: rgba(0,209,255,0.55);
}

.room.room-selected{
  fill: rgba(0,209,255,0.22);
  stroke: rgba(0,209,255,0.95);
}

.item circle{
  fill: rgba(255,255,255,0);
  stroke: rgba(255,255,255,0);
  stroke-width: 0;
  pointer-events: all;
}

.item:hover circle{
  fill: rgba(255,255,255,0);
}

/* =========================
TOOLTIP / BUTTON / POPUP
========================= */

.tooltip{
  position: absolute;
  z-index: 30;
  display: none;
  min-width: 180px;
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8,12,22,0.94);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  color: white;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.reset-view{
  display: none;
}

.popup{
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(3, 8, 20, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content{
  width: min(92vw, 520px);
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,16,34,0.98), rgba(6,10,22,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.4);
  color: white;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
}

.popup.show .popup-content{
  transform: translateY(0) scale(1);
}

.popup-content h2{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.popup-content p{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.92;
}

.popup-close-btn{
  margin-top: 20px;
  padding: 11px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.popup-close-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* =========================
STARS / FIREFLIES
========================= */

.stars-overlay,
.fireflies-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
}

.star,
.firefly{
  position: absolute;
  border-radius: 50%;
}

.star{
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.95);
  box-shadow:
    0 0 6px rgba(255,255,255,0.8),
    0 0 12px rgba(255,255,255,0.45);
  animation: twinkle 3.4s infinite ease-in-out;
}

.firefly{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,225,130,1);
  box-shadow:
    0 0 10px rgba(255,225,130,1),
    0 0 22px rgba(255,205,90,0.85),
    0 0 40px rgba(255,185,60,0.55);
  animation: fireflyFloat 7s ease-in-out infinite;
  opacity: 0.95;
}

.s1{ top: 12%; left: 10%; animation-delay: 0s; }
.s2{ top: 8%; left: 22%; animation-delay: 0.8s; }
.s3{ top: 15%; left: 34%; animation-delay: 1.6s; }
.s4{ top: 10%; left: 46%; animation-delay: 0.5s; }
.s5{ top: 16%; left: 58%; animation-delay: 1.2s; }
.s6{ top: 7%; left: 70%; animation-delay: 0.9s; }
.s7{ top: 14%; left: 82%; animation-delay: 1.8s; }
.s8{ top: 20%; left: 90%; animation-delay: 0.4s; }
.s9{ top: 18%; left: 16%; animation-delay: 1.1s; }
.s10{ top: 11%; left: 62%; animation-delay: 1.5s; }

.f1{ left: 12%; top: 74%; animation-delay: 0s; }
.f2{ left: 78%; top: 66%; animation-delay: 1.4s; }
.f3{ left: 26%; top: 84%; animation-delay: 2.6s; }
.f4{ left: 88%; top: 76%; animation-delay: 3.8s; }
.f5{ left: 34%; top: 22%; animation-delay: 0.8s; }
.f6{ left: 72%; top: 18%; animation-delay: 1.9s; }
.f7{ left: 60%; top: 50%; animation-delay: 2.8s; }
.f8{ left: 58%; top: 27%; animation-delay: 3.2s; }
.f9{ left: 12%; top: 53%; animation-delay: 1.1s; }
.f10{ left: 90%; top: 40%; animation-delay: 2.2s; }

/* =========================
ANIMATIONS
========================= */

@keyframes twinkle{
  0%, 100%{
    opacity: 0.25;
    transform: scale(1);
  }
  50%{
    opacity: 1;
    transform: scale(1.8);
  }
}

@keyframes fireflyFloat{
  0%{
    transform: translateY(0) translateX(0) scale(0.9);
    opacity: 0.45;
  }
  20%{
    opacity: 1;
  }
  50%{
    transform: translateY(-18px) translateX(10px) scale(1.15);
    opacity: 0.95;
  }
  75%{
    transform: translateY(-8px) translateX(-8px) scale(1.02);
    opacity: 0.75;
  }
  100%{
    transform: translateY(0) translateX(0) scale(0.9);
    opacity: 0.45;
  }
}

@keyframes housePulse{
  0%, 100%{
    filter:
      brightness(1)
      saturate(1)
      drop-shadow(0 0 10px rgba(255, 185, 90, 0.18))
      drop-shadow(0 0 30px rgba(255, 145, 60, 0.12))
      drop-shadow(0 0 60px rgba(255, 110, 40, 0.08));
  }
  50%{
    filter:
      brightness(1.18)
      saturate(1.22)
      drop-shadow(0 0 28px rgba(255, 210, 110, 0.42))
      drop-shadow(0 0 80px rgba(255, 170, 80, 0.30))
      drop-shadow(0 0 150px rgba(255, 120, 50, 0.22));
  }
}

@keyframes windowFlicker1{
  0%, 100%{ opacity: 0.46; }
  18%{ opacity: 0.68; }
  20%{ opacity: 0.52; }
  52%{ opacity: 0.74; }
  55%{ opacity: 0.48; }
}

@keyframes windowFlicker2{
  0%, 100%{ opacity: 0.42; }
  30%{ opacity: 0.62; }
  34%{ opacity: 0.48; }
  70%{ opacity: 0.66; }
}

@keyframes windowFlicker3{
  0%, 100%{ opacity: 0.34; }
  22%{ opacity: 0.54; }
  24%{ opacity: 0.40; }
  62%{ opacity: 0.58; }
}

@keyframes windowFlicker4{
  0%, 100%{ opacity: 0.30; }
  40%{ opacity: 0.52; }
  43%{ opacity: 0.36; }
  74%{ opacity: 0.56; }
}

@keyframes windowFlicker5{
  0%, 100%{ opacity: 0.26; }
  26%{ opacity: 0.44; }
  29%{ opacity: 0.32; }
  68%{ opacity: 0.48; }
}

@keyframes roomGlowPulse1{
  0%, 100%{ opacity: 0.24; }
  50%{ opacity: 0.40; }
}

@keyframes roomGlowPulse2{
  0%, 100%{ opacity: 0.20; }
  50%{ opacity: 0.34; }
}

@keyframes roomGlowPulse3{
  0%, 100%{ opacity: 0.16; }
  50%{ opacity: 0.28; }
}

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowDrift{
  0%{
    transform: scale(1.06) translateY(0);
  }
  100%{
    transform: scale(1.1) translateY(-10px);
  }
}

@keyframes floatGlow{
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(20px); }
}

.page-transition{
  opacity: 0.98;
}



/* =========================
SECTION BLEND / HOMEPAGE FLOW
========================= */


.homepage-flow{
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      rgba(5,8,20,0.58) 0%,
      rgba(5,8,20,0.70) 28%,
      rgba(3,6,15,0.92) 100%
    ),
    url("../images/driveway-bg.png");

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.fireflies{
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.fireflies span{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: rgba(255,225,130,1);
  box-shadow:
    0 0 10px rgba(255,225,130,1),
    0 0 22px rgba(255,205,90,0.85),
    0 0 40px rgba(255,185,60,0.55);

  opacity: 0.9;
  animation: drivewayFireflyFloat 7s ease-in-out infinite;
}

/* spread them around */
.fireflies span:nth-child(1){ top: 18%; left: 12%; animation-delay: 0s; }
.fireflies span:nth-child(2){ top: 28%; left: 78%; animation-delay: 1.4s; }
.fireflies span:nth-child(3){ top: 44%; left: 28%; animation-delay: 2.6s; }
.fireflies span:nth-child(4){ top: 62%; left: 88%; animation-delay: 3.8s; }
.fireflies span:nth-child(5){ top: 72%; left: 42%; animation-delay: 0.8s; }
.fireflies span:nth-child(6){ top: 38%; left: 58%; animation-delay: 1.9s; }
.fireflies span:nth-child(7){ top: 56%; left: 68%; animation-delay: 2.8s; }
.fireflies span:nth-child(8){ top: 80%; left: 18%; animation-delay: 3.2s; }

@keyframes drivewayFireflyFloat{
  0%{
    transform: translateY(0) translateX(0) scale(0.85);
    opacity: 0.35;
  }

  20%{
    opacity: 1;
  }

  45%{
    transform: translateY(-22px) translateX(16px) scale(1.25);
    opacity: 0.95;
  }

  70%{
    transform: translateY(-8px) translateX(-14px) scale(1.05);
    opacity: 0.75;
  }

  100%{
    transform: translateY(0) translateX(0) scale(0.85);
    opacity: 0.35;
  }
}

.homepage-flow::after{
  display: none;
}

.room-browse-section{
  position: relative;
  z-index: 5;

  padding: 90px 20px 76px;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(20, 40, 90, 0.25),
      rgba(5, 8, 20, 1) 70%
    ),
    #050814;

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}


.room-browse-section .eyebrow{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffd36f;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255,211,111,0.35);
}

.room-browse-section h2{
  margin: 0;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 22px rgba(255,255,255,0.10),
    0 8px 28px rgba(0,0,0,0.35);
}

.room-subtext{
  margin: 18px auto 34px;
  max-width: 560px;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.65;
}

.room-browse-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.room-browse-grid a{
  position: relative;
  isolation: isolate;

  text-decoration: none;
  color: rgba(255,255,255,0.94);

  padding: 13px 20px;
  border-radius: 999px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 15px;
  font-weight: 750;

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.035),
    0 10px 28px rgba(0,0,0,0.22);

  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.room-browse-grid a::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,211,111,0.20),
    rgba(0,209,255,0.12),
    transparent
  );

  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.55s ease;
}

.room-browse-grid a:hover{
  transform: translateY(-3px) scale(1.03);
  color: #fff7df;
  border-color: rgba(255,211,111,0.45);

  box-shadow:
    0 0 24px rgba(255,190,90,0.22),
    0 0 34px rgba(0,209,255,0.10),
    inset 0 0 20px rgba(255,255,255,0.06);
}

.room-browse-grid a:hover::before{
  transform: translateX(120%) skewX(-18deg);
}

.homepage-bg-svg{
  display: none;
}


/* keep actual content above the background */
.how-it-works,
.why-beamoco,
.works-with,
.featured-products,
.site-footer{
  position: relative;
  z-index: 2;
  background: transparent;
}

.how-it-works,
.why-beamoco,
.works-with,
.featured-products,
.site-footer{
  position: relative;
  z-index: 2;
}

@keyframes homepageSvgDrift{
  0%{
    transform: scale(1.04) translateY(0px) translateX(0px);
  }
  100%{
    transform: scale(1.07) translateY(-22px) translateX(8px);
  }
}
/* =========================
ROOM PRODUCT PANEL / CARDS
========================= */

.product-panel-body{
  padding: 20px;
  overflow-y: auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card{
  height: 100%;
  min-height: 620px; /* adjust if needed */
  display: flex;
  flex-direction: column;

  background: rgba(22,26,36,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  transition: all 0.25s ease;
  position: relative;
}

.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.product-card-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-card h3{
  min-height: 72px;
  margin: 0 0 14px;
}

.product-card-description{
  min-height: 90px;
  margin: 0 0 18px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ecosystem-tags{
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
  margin-bottom: 20px;
}

.product-card-footer{
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 800px){
  .product-panel-body{
    grid-template-columns: 1fr;
  }

  .product-card{
    min-height: auto;
  }
}


/* =========================
CARD IMAGE SLIDER
========================= */

.product-slider{
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #111622;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-slider-track{
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.slider-image.active{
  opacity: 1;
  pointer-events: auto;
}

.product-slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(8,12,22,0.55);
  backdrop-filter: blur(6px);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-slider-btn:hover{
  background: rgba(8,12,22,0.75);
}

.product-slider-btn.prev{
  left: 10px;
}

.product-slider-btn.next{
  right: 10px;
}

.product-slider-dots{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,12,22,0.32);
  backdrop-filter: blur(6px);
}

.product-slider-dot{
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}

.product-slider-dot.active{
  background: white;
}

/* =========================
CARD CONTENT
========================= */

.product-card-content{
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 0;
  min-height: unset;
  box-sizing: border-box;
}

.product-card h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.product-card-description{
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.88;
}

/* =========================
ECOSYSTEM ICONS / TAGS
========================= */

.ecosystem-tags{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.ecosystem-tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  line-height: 1;
  opacity: 0.95;
}

.ecosystem-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.ecosystem-label{
  font-size: 12px;
  line-height: 1;
  color: white;
  opacity: 0.95;
}

.ecosystem-icon-only{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
  cursor: pointer;
}

.ecosystem-icon-only:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.ecosystem-logo{
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.ecosystem-tooltip{
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(8,12,22,0.95);
  color: white;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  border: 1px solid rgba(255,255,255,0.08);
}

.ecosystem-icon-only:hover .ecosystem-tooltip{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================
FOOTER (PRICE + BUTTON)
========================= */

.product-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.product-card-price{
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.product-card-button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  background: #00D1FF;
  color: #041019;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.product-card-button:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.product-hero-image{
  position: relative;
  width: 100%;
  height: 80vh;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.product-hero-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,8,20,0.85) 10%,
    rgba(5,8,20,0.4) 40%,
    rgba(5,8,20,0.1) 70%
  );
}

.hero-overlay-content{
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 520px;
  text-align: left;
  z-index: 2;
  animation: fadeUp 0.8s ease;
}

.product-title{
  font-size: 52px;
  line-height: 1.05;
  margin: 10px 0;
}

.product-headline{
  font-size: 18px;
  opacity: 0.92;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.product-price{
  font-size: 22px;
  font-weight: 700;
}

.product-buy{
  padding: 12px 20px;
  border-radius: 12px;
  background: #00D1FF;
  color: #041019;
  font-weight: 700;
  text-decoration: none;
}


/* =========================
HOW IT WORKS
========================= */

.how-it-works{
  position: relative;
  isolation: isolate;
  padding: 84px 24px 72px;
  overflow: hidden;
  text-align: center;
  background: transparent;
  border-top: none;
}

.how-it-works .section-fade{
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(5,8,20,0.08) 70%,
    rgba(5,8,20,0.16) 100%
  );
}

.how-it-works-inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works h2{
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #ffffff;
  text-shadow: 0 6px 24px rgba(0,0,0,0.24);
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.how-card{
  min-height: 220px;
}

.how-card{
  position: relative;
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.how-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(0,209,255,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}


.how-card:nth-child(2)::before{
  opacity: 0.85;
}

/* regular hover */
.how-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,209,255,0.22);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.28),
    0 0 30px rgba(0,209,255,0.08);
}

.how-card:hover::before{
  opacity: 1;
}

/* featured hover builds from featured state */
.how-card:nth-child(2):hover{
  transform: translateY(-14px) scale(1.04);
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,209,255,0.24);
  box-shadow:
    0 30px 72px rgba(0,0,0,0.34),
    0 0 38px rgba(0,209,255,0.10);
}

.how-card span{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.how-card h3{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #ffffff;
}

.how-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* =========================
WHY BEAMOCO
========================= */

.why-beamoco{
  position: relative;
  padding: 20px 24px;
  overflow: hidden;
  background: transparent;
  border-top: none;
}

.why-beamoco-inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-eyebrow{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.why-beamoco h2{
  margin: 0;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.why-intro{
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 40px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.why-card{
  position: relative;
  padding: 32px 26px;
  border-radius: 24px;
  text-align: left;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(0,209,255,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.why-card:hover{
  transform: translateY(-8px);
  border-color: rgba(0,209,255,0.22);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.24),
    0 0 30px rgba(0,209,255,0.08);
}

.why-card:hover::before{
  opacity: 1;
}

.why-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 22px rgba(255, 190, 90, 0.22);
}

.why-card h3{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #ffffff;
}

.why-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.76);
}

/* =========================
WORKS WITH
========================= */
.works-with{
  position: relative;
  padding: 50px 24px;
  overflow: hidden;
  background: transparent;
  border-top: none;
}

.works-with::after{
  display: none;
}

.works-with-inner{
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.works-eyebrow{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.works-with h2{
  margin: 0;
  font-size: 12px;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.works-intro{
  max-width: 760px;
  margin: 20px auto 20px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.works-carousel-wrap{
  position: relative;
  z-index: 2;
  margin-top: 54px;
  padding: 0 72px;
}

.works-carousel{
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.works-track{
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.works-card{
  flex: 0 0 calc((100% - 60px) / 4);
  min-height: 210px;
  padding: 28px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.works-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,209,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.works-card img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.works-card h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.works-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.works-carousel-btn.prev{
  left: 0;
}

.works-carousel-btn.next{
  right: 0;
}

.works-carousel-btn:hover{
  transform: translateY(-50%) scale(1.03);
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,209,255,0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

/* =========================
FEATURED PRODUCTS
========================= */

.featured-products{
  position: relative;
  padding: 50px 24px;
  overflow: hidden;
  background: transparent;
  border-top: none;
}

.featured-products::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(18,14,30,0.18),
      rgba(12,18,36,0.30)
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(255,190,90,0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(0,209,255,0.05),
      transparent 60%
    );
  z-index: 0;
}

.featured-products-inner{
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.featured-eyebrow{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-products h2{
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.featured-intro{
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.featured-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.featured-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  text-align: left;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-card:hover{
  transform: translateY(-8px);
  border-color: rgba(0,209,255,0.22);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.24),
    0 0 30px rgba(0,209,255,0.08);
}

.featured-card-image{
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #101726;
}

.featured-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card-content{
  padding: 22px 22px 24px;
}

.featured-card-brand{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.featured-card h3{
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.featured-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
}

.featured-card-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  box-shadow: 0 8px 22px rgba(255, 190, 90, 0.22);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.featured-card-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 12px 28px rgba(255, 190, 90, 0.28);
}

/* =========================
APPLE-STYLE GLASS FOOTER
========================= */

.site-footer{
  position: relative;
  margin-top: 0;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.site-footer::after{
  display: none;
}

.footer-container{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background: rgba(15, 20, 35, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-container::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,209,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255,170,70,0.10), transparent 40%);
}

.footer-left{
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.footer-logo{
  width: 90px;
  height: auto;
  margin-bottom: 12px;
  filter:
    drop-shadow(0 0 12px rgba(255,210,90,0.5))
    drop-shadow(0 0 24px rgba(255,210,90,0.25));
}

.footer-left h3{
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #ffffff;
}

.footer-left p{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

/* CONTACT */
.footer-contact{
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-contact-label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.2px;
}

.footer-contact-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #7fe4ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 12px rgba(0,0,0,0.2);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.footer-contact-link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(0,209,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 14px rgba(0,209,255,0.18);
}

.footer-contact-email{
  font-size: 14px;
}

/* SOCIALS */
.footer-socials{
  margin: 18px 0 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-socials a{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.footer-socials a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.footer-socials a:nth-child(1):hover{
  border-color: #e1306c;
  box-shadow: 0 0 14px rgba(225,48,108,0.32);
}

.footer-socials a:nth-child(2):hover{
  border-color: #00f2ea;
  box-shadow: 0 0 14px rgba(0,242,234,0.28);
}

.footer-socials a:nth-child(3):hover{
  border-color: #ffffff;
  box-shadow: 0 0 14px rgba(255,255,255,0.18);
}

.footer-socials a:nth-child(4):hover{
  border-color: #1877f2;
  box-shadow: 0 0 14px rgba(24,119,242,0.28);
}

.footer-socials svg{
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* LINKS */
.footer-links{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.footer-links a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover{
  color: #00D1FF;
  transform: translateY(-1px);
}

/* BOTTOM */
.footer-bottom{
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 10px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p{
  margin: 6px 0;
  color: rgba(255,255,255,0.82);
}

.affiliate-text{
  max-width: 700px;
  margin: 10px auto 0;
  text-align: center;
  opacity: 0.65;
  font-size: 13px;
  line-height: 1.6;
  display: block;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1100px){
  .works-card{
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .essentials-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .essentials-controls{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .featured-products{
    padding: 90px 20px;
  }

  .featured-products h2{
    font-size: 36px;
  }

  .featured-intro{
    font-size: 16px;
    line-height: 1.7;
  }

  .featured-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
  }

  .featured-card-image{
    height: 220px;
  }

  .featured-card h3{
    font-size: 24px;
  }

  .featured-card p{
    font-size: 15px;
  }
}

@media (max-width: 900px){
  .top-row{
    padding: 0 16px;
  }

  .logo img{
    width: 30px;
  }

  .nav-links{
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a{
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-text{
    width: min(94vw, 700px);
    gap: 10px;
    transform: translateX(-50%) translateY(-20px);
  }

.hero-text{
  left: 50%;
  transform: translateX(-50%);
}

  .hero-tagline{
    font-size: 15px;
  }

  .explore-btn{
    margin-top: 10px;
    padding: 10px 22px;
    font-size: 14px;
  }

  .house-stage{
    padding-top: 130px;
  }

  .zoom-layer{
    width: 98vw;
  }

  .product-panel-body{
    grid-template-columns: 1fr;
  }

  .product-slider{
    height: 240px;
  }

  .ecosystem-icon-only{
    width: 42px;
    height: 42px;
  }

  .ecosystem-logo{
    width: 22px;
    height: 22px;
  }

  .popup-content{
    padding: 24px 20px;
  }

  .popup-content h2{
    font-size: 26px;
  }

  .popup-content p{
    font-size: 16px;
  }

  .why-beamoco{
    padding: 90px 20px;
  }

  .why-beamoco h2{
    font-size: 18px;
  }

  .why-intro{
    font-size: 16px;
    line-height: 1.7;
  }

  .why-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  .why-card{
    padding: 26px 20px;
  }

  .why-card h3{
    font-size: 24px;
  }

  .why-card p{
    font-size: 15px;
  }

  .how-it-works{
    padding: 90px 20px;
  }

  .how-it-works h2{
    font-size: 36px;
  }

  .how-grid{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .how-card{
    padding: 24px 20px;
  }

  .how-card h3{
    font-size: 24px;
  }

  .how-card p{
    font-size: 15px;
  }

  .works-with{
    padding: 90px 20px;
  }

  .works-with h2{
    font-size: 36px;
  }

  .works-intro{
    font-size: 16px;
    line-height: 1.7;
  }

  .works-carousel-wrap{
    padding: 0 56px;
  }

  .works-card{
    flex: 0 0 calc((100% - 20px) / 2);
    min-height: 190px;
  }

  .works-card img{
    width: 64px;
    height: 64px;
  }

  .works-card h3{
    font-size: 18px;
  }
}

@media (max-width: 760px){
  .essentials-hero{
    padding: 52px 16px 18px;
  }

  .essentials-controls-wrap,
  .essentials-results{
    padding-left: 16px;
    padding-right: 16px;
  }

  .essentials-hero h1{
    font-size: 40px;
  }

  .essentials-intro{
    font-size: 16px;
    line-height: 1.7;
  }

  .essentials-filters{
    grid-template-columns: 1fr;
  }

  .essentials-grid{
    grid-template-columns: 1fr;
  }

  .essentials-card-image-wrap{
    height: 220px;
  }

  .essentials-card h3{
    font-size: 24px;
  }

  .essentials-card-footer{
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-card{
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions{
    justify-content: flex-end;
  }

  .cookie-modal-panel{
    width: min(94vw, 760px);
    margin-top: 4vh;
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .cookie-modal-header h2{
    font-size: 30px;
  }

  .cookie-option-card{
    align-items: flex-start;
  }

  .cookie-modal-footer{
    justify-content: stretch;
  }

  .cookie-modal-footer .cookie-btn{
    flex: 1 1 auto;
  }
}

@media (max-width: 700px){
  .site-footer{
    padding: 54px 18px 28px;
  }

  .footer-container{
    padding: 32px 20px;
    gap: 24px;
  }

  .footer-left h3{
    font-size: 28px;
  }

  .footer-left p{
    font-size: 16px;
  }

  .footer-contact-link{
    font-size: 14px;
  }

  .footer-contact-email{
    font-size: 13px;
  }

  .footer-links a{
    font-size: 13px;
  }

  .footer-bottom p{
    font-size: 12px;
  }

  .legal-page{
    padding: 46px 16px;
  }

  .legal-shell{
    padding: 24px 20px;
    border-radius: 22px;
    max-width: 820px;
  }

  .legal-shell h1{
    font-size: 36px;
  }

  .legal-section h2{
    font-size: 24px;
  }

  .legal-section h3{
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li{
    font-size: 15px;
    line-height: 1.7;
  }

  .support-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .featured-products{
    padding: 72px 16px;
  }

  .featured-products h2{
    font-size: 30px;
  }

  .how-it-works{
    padding: 72px 16px;
  }

  .how-it-works h2{
    font-size: 30px;
  }

  .why-beamoco{
    padding: 72px 16px;
  }

  .why-beamoco h2{
    font-size: 18px;
  }

  .works-with{
    padding: 72px 16px;
  }

  .works-with h2{
    font-size: 30px;
  }

  .works-carousel-wrap{
    padding: 0 46px;
  }

  .works-card{
    flex: 0 0 100%;
  }

  .works-carousel-btn{
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .top-row{
    top: 14px;
    padding: 0 12px;
  }

  .nav-links{
    gap: 5px;
    padding: 5px;
  }

  .nav-links a{
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero-text{
    width: 94vw;
    padding: 0 12px;
    gap: 9px;
    transform: translateX(-50%) translateY(-6px);
  }

  .explore-btn{
    padding: 10px 20px;
    font-size: 13px;
  }

  .footer-logo{
    width: 72px;
  }
}

/* =========================
LEGAL PAGES
========================= */

.legal-body{
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 209, 255, 0.08), transparent 28%),
    linear-gradient(to bottom, #050814 0%, #071122 100%);
  color: white;
  font-family: Arial, sans-serif;
  text-align: left;
}

.legal-page{
  min-height: 100vh;
  padding: 72px 20px;
}

.legal-shell{
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(169, 0, 141, 0.625);
  text-align: left;
}

.legal-shell::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 220px;
  background: radial-gradient(circle, rgba(0,209,255,0.10) 0%, rgba(120,90,255,0.08) 42%, transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.legal-shell > *{
  position: relative;
  z-index: 1;
}

.legal-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.legal-back:hover{
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,209,255,0.18);
  transform: translateY(-1px);
}

.legal-eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.legal-shell h1{
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #ffffff;
}

.legal-updated{
  margin: 0 0 30px;
  font-size: 15px;
  color: rgba(255,255,255,0.64);
}

.legal-section{
  margin-top: 34px;
}

.legal-section h2{
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.15;
  color: #ffffff;
}

.legal-section h3{
  margin: 22px 0 10px;
  font-size: 21px;
  line-height: 1.3;
  color: rgba(255,255,255,0.96);
}

.legal-section p{
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.legal-section ul{
  margin: 10px 0 18px 22px;
  padding: 0;
}

.legal-section li{
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}

/* =========================
COOKIE BANNER
========================= */

.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(22px);
  width: min(92vw, 860px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner-card{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  background: rgba(8, 14, 30, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.cookie-banner-copy{
  text-align: left;
  max-width: 620px;
}

.cookie-banner-eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.cookie-banner-copy h3{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.cookie-banner-copy p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.cookie-banner-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn{
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, filter 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.cookie-btn:hover{
  transform: translateY(-1px);
}

.cookie-btn-primary{
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  box-shadow: 0 8px 22px rgba(255, 190, 90, 0.22);
}

.cookie-btn-secondary{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.10);
}

.cookie-btn-secondary:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(0,209,255,0.18);
}

/* modal */

.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.cookie-modal.show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 20, 0.56);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-modal-panel{
  position: relative;
  width: min(92vw, 760px);
  max-height: min(84vh, 820px);
  overflow: auto;
  margin: 5vh auto 0;
  padding: 26px 26px 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(14, 22, 42, 0.96), rgba(8, 14, 28, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-modal-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.cookie-modal-header h2{
  margin: 0;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.cookie-icon-close{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-icon-close:hover{
  background: rgba(255,255,255,0.10);
}

.cookie-modal-body{
  margin-top: 20px;
  text-align: left;
}

.cookie-modal-intro{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}

.cookie-option-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px;
  margin-top: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.cookie-option-copy{
  text-align: left;
}

.cookie-option-copy h3{
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.15;
  color: #ffffff;
}

.cookie-option-copy p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.cookie-policy-note{
  margin: 18px 2px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}

.cookie-policy-note a{
  color: #00D1FF;
  text-decoration: none;
}

.cookie-policy-note a:hover{
  text-decoration: underline;
}

.cookie-modal-footer{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* switch */

.cookie-switch{
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 34px;
  flex-shrink: 0;
}

.cookie-switch input{
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cookie-slider::before{
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.24);
  transition: transform 0.25s ease;
}

.cookie-switch input:checked + .cookie-slider{
  background: linear-gradient(135deg, #00D1FF, #5de4ff);
  border-color: rgba(0,209,255,0.22);
}

.cookie-switch input:checked + .cookie-slider::before{
  transform: translateX(24px);
}

.cookie-switch.is-locked{
  opacity: 0.75;
}

/* =========================
SUPPORT PAGE
========================= */

.support-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.support-card{
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.support-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
}

.support-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.faq-item{
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-of-type{
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.faq-item h3{
  margin: 0 0 10px;
  font-size: 21px;
  color: #ffffff;
}

.faq-item p{
  margin: 0;
}

/* =========================
SUPPORT LINKS (UPGRADED)
========================= */

.support-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.support-link-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.support-link-card:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,209,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.support-link-card::after{
  content: "→";
  font-size: 16px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.support-link-card:hover::after{
  transform: translateX(4px);
  opacity: 1;
}

/* =========================
ABOUT PAGE
========================= */

.about-page{
  background:
    radial-gradient(circle at top, rgba(0,209,255,0.10), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(120,90,255,0.10), transparent 24%),
    linear-gradient(to bottom, #050814 0%, #071122 100%);
}

.about-shell{
  position: relative;
  overflow: hidden;
}

.about-shell::after{
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,255,0.08), rgba(120,90,255,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.about-hero{
  position: relative;
  padding: 6px 0 12px;
}

.about-hero-intro{
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
}

.about-stat-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-stat-card{
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-stat-card span{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.about-stat-card strong{
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
  color: #ffffff;
}

.about-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.about-feature-card{
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.about-feature-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,209,255,0.22);
  background: rgba(255,255,255,0.06);
}

.about-feature-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 22px rgba(255, 190, 90, 0.22);
}

.about-feature-card h3{
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  color: #ffffff;
}

.about-feature-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 800px){
  .about-stat-row{
    grid-template-columns: 1fr;
  }

  .about-feature-grid{
    grid-template-columns: 1fr;
  }

  .about-hero-intro{
    font-size: 17px;
  }

  .about-stat-card strong{
    font-size: 22px;
  }

  .about-feature-card h3{
    font-size: 22px;
  }
}

/* =========================
ESSENTIALS PAGE
========================= */

.essentials-page{
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,209,255,0.08), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(120,90,255,0.08), transparent 22%),
    linear-gradient(to bottom, #050814 0%, #071122 100%);
}

.essentials-hero{
  padding: 70px 20px 24px;
}

.essentials-hero-inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.essentials-hero h1{
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -1px;
  color: #ffffff;
}

.essentials-intro{
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.essentials-controls-wrap{
  padding: 0 20px 16px;
}

.essentials-controls{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: center;
}

.essentials-search input,
.essentials-filters select{
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 0 16px;
  font-size: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  outline: none;
}

.essentials-search input::placeholder{
  color: rgba(255,255,255,0.46);
}

.essentials-search input:focus,
.essentials-filters select:focus{
  border-color: rgba(0,209,255,0.24);
  box-shadow: 0 0 0 3px rgba(0,209,255,0.08);
}

.essentials-filters{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.essentials-results{
  padding: 10px 20px 70px;
}

.essentials-results-top{
  max-width: 1180px;
  margin: 0 auto 20px;
}

.essentials-count{
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.68);
}

.essentials-grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.essentials-card{
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.essentials-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0,209,255,0.22);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.24),
    0 0 30px rgba(0,209,255,0.08);
}

.essentials-card-image-wrap{
  height: 260px;
  background: #111622;
  overflow: hidden;
}

.essentials-card-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.essentials-card-content{
  padding: 20px 20px 22px;
}

.essentials-card-brand{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.essentials-card h3{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.essentials-card-description{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.essentials-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.essentials-tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  line-height: 1;
  color: rgba(255,255,255,0.92);
}

.essentials-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.essentials-card-price{
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.essentials-card-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #f4b14c, #ffd36f);
  color: #07111e;
  box-shadow: 0 8px 22px rgba(255, 190, 90, 0.22);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.essentials-card-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 12px 28px rgba(255, 190, 90, 0.28);
}

.essentials-empty{
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.essentials-empty h3{
  margin: 0 0 10px;
  font-size: 28px;
  color: #ffffff;
}

.essentials-empty p{
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.76);
}

.how-it-works{
  padding: 72px 24px 64px;
}

.why-beamoco,
.works-with,
.featured-products{
  padding: 64px 24px;
}

.site-footer{
  padding: 46px 20px;
}

.how-grid,
.why-grid,
.featured-grid{
  margin-top: 30px;
}

.works-carousel-wrap{
  margin-top: 32px;
}

.why-intro,
.works-intro,
.featured-intro{
  margin: 14px auto 0;
}

/* =========================
SECTION HEADER (PREMIUM 2026)
========================= */

.section-header{
  position: relative;
  display: inline-block;
  max-width: min(92vw, 980px);
  margin: 0 auto 42px;
  padding: 16px 26px;
  border-radius: 22px;
  text-align: center;

  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.25),
    0 0 30px rgba(0,209,255,0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.section-header::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(0,209,255,0.12), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.section-header::after{
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,209,255,0.55),
    rgba(120,90,255,0.35),
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

.section-header:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.042);
  border-color: rgba(0,209,255,0.14);
  box-shadow:
    0 16px 50px rgba(0,0,0,0.30),
    0 0 40px rgba(0,209,255,0.06);
}

.section-header h2{
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #ffffff;
  text-shadow:
    0 8px 30px rgba(0,0,0,0.22),
    0 0 24px rgba(255,255,255,0.03);
}

.section-header p{
  margin: 12px auto 0;
}

.section-header .why-eyebrow,
.section-header .works-eyebrow,
.section-header .featured-eyebrow{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.section-header .works-intro{
  max-width: 760px;
  margin: 18px auto 0;

  font-size: 19px;
  line-height: 1.75;

  color: rgba(255,255,255,0.88);
}

/* remove duplicate heading spacing inside wrapped sections */
.how-it-works .section-header{
  margin-bottom: 34px;
}

.why-beamoco .section-header,
.works-with .section-header,
.featured-products .section-header{
  margin-bottom: 38px;
}

/* mobile */
@media (max-width: 900px){
  .section-header{
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 30px;
  }

  .section-header h2{
    letter-spacing: -0.8px;
  }

  .section-header .why-intro,
  .section-header .works-intro,
  .section-header .featured-intro{
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 560px){
  .section-header{
    padding: 16px 16px;
    border-radius: 16px;
    max-width: 94vw;
  }

  .section-header .why-eyebrow,
  .section-header .works-eyebrow,
  .section-header .featured-eyebrow{
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-header .why-intro,
  .section-header .works-intro,
  .section-header .featured-intro{
    font-size: 15px;
  }
}

/* =========================
FINAL SECTION HEADER + WHY BEAMOCO FIXES
PASTE AT VERY BOTTOM OF styles.css
========================= */

/* section wrapper cards */
.section-header{
  position: relative;
  display: inline-block;
  max-width: min(92vw, 980px);
  margin: 0 auto 38px;
  padding: 16px 26px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.25),
    0 0 30px rgba(0,209,255,0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.section-header::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(0,209,255,0.12), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.section-header::after{
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,209,255,0.55),
    rgba(120,90,255,0.35),
    transparent
  );
  opacity: 0.5;
  pointer-events: none;
}

.section-header:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.035);
  border-color: rgba(0,209,255,0.14);
  box-shadow:
    0 16px 50px rgba(0,0,0,0.30),
    0 0 40px rgba(0,209,255,0.06);
}

/* main section headings */
.section-header h2{
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #ffffff;
  text-shadow:
    0 8px 30px rgba(0,0,0,0.22),
    0 0 24px rgba(255,255,255,0.03);
}

/* small titles: Why Beamoco / Works With / Featured Smart Picks */
.section-header .why-eyebrow,
.section-header .works-eyebrow,
.section-header .featured-eyebrow{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
}

/* default intro text inside section headers */
.section-header .why-intro,
.section-header .works-intro,
.section-header .featured-intro{
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.86);
}

/* HOW IT WORKS spacing */
.how-it-works .section-header{
  margin-bottom: 34px;
}

/* WHY BEAMOCO specifically */
.why-beamoco{
  padding: 64px 24px;
}

.why-beamoco .section-header{
  max-width: 880px;
  padding: 18px 26px;
  margin-bottom: 38px;
}

.why-beamoco .section-header h2{
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
}

.why-beamoco .why-intro{
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

/* WORKS WITH specifically */
.works-with{
  padding: 64px 24px;
}

.works-with .section-header{
  margin-bottom: 38px;
}

.works-with .works-intro{
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.86);
}

/* FEATURED PRODUCTS specifically */
.featured-products{
  padding: 64px 24px;
}

.featured-products .section-header{
  margin-bottom: 38px;
}

.featured-products .featured-intro{
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.86);
}

/* responsive */
@media (max-width: 900px){
  .section-header{
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 30px;
  }

  .section-header h2{
    letter-spacing: -0.8px;
  }

  .section-header .why-eyebrow,
  .section-header .works-eyebrow,
  .section-header .featured-eyebrow{
    font-size: 13px;
    letter-spacing: 2.2px;
  }

  .section-header .why-intro,
  .section-header .works-intro,
  .section-header .featured-intro,
  .why-beamoco .why-intro,
  .works-with .works-intro,
  .featured-products .featured-intro{
    font-size: 16px;
    line-height: 1.7;
  }

  .why-beamoco .section-header h2{
    font-size: clamp(30px, 6vw, 42px);
  }
}

@media (max-width: 560px){
  .section-header{
    padding: 16px 16px;
    border-radius: 16px;
    max-width: 94vw;
  }

  .section-header .why-eyebrow,
  .section-header .works-eyebrow,
  .section-header .featured-eyebrow{
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-header .why-intro,
  .section-header .works-intro,
  .section-header .featured-intro,
  .why-beamoco .why-intro,
  .works-with .works-intro,
  .featured-products .featured-intro{
    font-size: 15px;
  }

  .why-beamoco .section-header h2{
    font-size: clamp(28px, 8vw, 36px);
  }
}

/* =========================
CARD MICRO-INTERACTIONS
========================= */

.how-card,
.why-card,
.works-card,
.featured-card{
  position: relative;
  overflow: hidden;
}

.how-card::after,
.why-card::after,
.works-card::after,
.featured-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.06) 45%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  transition: left 0.7s ease, opacity 0.25s ease;
}

.how-card:hover::after,
.why-card:hover::after,
.works-card:hover::after,
.featured-card:hover::after{
  left: 150%;
  opacity: 1;
}

.how-card:hover,
.why-card:hover,
.works-card:hover,
.featured-card:hover{
  transform: translateY(-6px);
}

.section-reveal{
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.section-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
MOBILE RESPONSIVE
========================= */

.mobile-house{
  display: none;
}

@media (max-width: 768px){

 body{
  background: #050814;
}

  .house-wrapper{
  background-image: url("../images/mobile-bg.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.house-wrapper{
  position: relative;
  min-height: 500px;
}

.house-wrapper::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;

  background: linear-gradient(
    to bottom,
    rgba(5,8,20,0) 89%,
    #050814 100%
  );

  pointer-events: none;
}

  .desktop-house,
  .mobile-house,
  .house-overlay,
  .house-stage{
    display: none !important;
  }

  .homepage-flow,
  .room-browse-section,
  .room-browse-content,
  .how-it-works,
  .why-beamoco,
  .works-with,
  .featured-products,
  .site-footer{
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .homepage-flow::before,
  .homepage-flow::after,
  .image-blend-transition,
  .homepage-bg-svg{
    display: none !important;
  }

  .hero-text{
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: 94vw;
    margin: 90px auto 0;
    padding: 0 18px;
    gap: 10px;
  }

  .beamoco-title{
    width: clamp(300px, 82vw, 460px);
    left: 0;
    margin-bottom: 6px;
  }

  .hero-tagline{
    font-size: 11px;
    padding: 8px 14px;
    letter-spacing: 0.08em;
    margin-top: -23px;
  }

  .hero-intro-text{
    max-width: 92vw;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .explore-btn{
    padding: 11px 24px;
    font-size: 14px;
    margin-top: 12px;
  }
  

 .room-browse-section{
  padding: 120px 16px 60px;
}

  .room-browse-section h2{
    font-size: 38px;
  }

  .room-subtext{
    font-size: 14px;
  }

  .room-browse-grid{
    gap: 10px;
  }

  .room-browse-grid a{
    padding: 11px 15px;
    font-size: 14px;
  }

  .product-panel{
    width: 100%;
  }

  .product-panel-body{
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .product-card{
    min-height: auto;
  }

.mobile-room{
  fill: transparent;
  stroke: none;
  cursor: pointer;
}

.mobile-room-bubble{
  display: none;
}

.mobile-room-selected{
  fill: rgba(255, 190, 90, 0.18);
  stroke: rgba(255, 211, 111, 0.9);
  stroke-width: 3;
  animation: roomPulse 0.4s ease;
}

@media (max-width: 768px){

 @media (max-width: 768px){

  .house-wrapper{
    min-height: 1350px;
    background-size: 100% auto;
    background-position: center top;
  }

  .mobile-house-overlay{
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;

    width: 100%;
    height: auto;
    aspect-ratio: 384 / 1536; /* match your mobile-bg image */
    z-index: 18;
    pointer-events: auto;
  }
}

  .mobile-room:hover,
  .mobile-room.mobile-room-selected{
    fill: rgba(255, 190, 90, 0.12);
    stroke: rgba(255, 211, 111, 0.75);
    stroke-width: 3;
  }

  .mobile-room-bubble{
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(12px);
    z-index: 99999;

    width: min(88vw, 340px);
    padding: 14px 16px;
    border-radius: 18px;

    background: rgba(8,12,22,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    color: white;
    text-align: left;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-room-bubble.show{
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes roomPulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.02); }
  100%{ transform: scale(1); }
}
}

/* FORCE MOBILE POLYGONS OFF ON DESKTOP */
.mobile-house-overlay{
  display: none !important;
}

@media (max-width: 768px){
  .mobile-house-overlay{
    display: block !important;
  }
}

@media (max-width: 768px){

  .product-panel{
    width: 100%;
  }

  .product-panel-body{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 16px 32px;
  }

  .product-card{
    height: auto;
    min-height: auto;
  }
}
