:root {
  --soft-white: #f7f7f7;
  --cloud: #eef1f2;
  --cool-grey: #d9dde1;
  --silver: #bfc4c9;
  --mist: #a8b0b7;
  --charcoal: #20242a;
  --deep: #0d1116;
  --black: #07090b;
  --glass: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.68);
  --dark-text: #15191e;
  --dark-muted: #68717b;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --shadow-xl: 0 40px 110px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 6%, rgba(255,255,255,0.12), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(164,176,186,0.18), transparent 34%),
    linear-gradient(180deg, #0a0d10 0%, #11161b 52%, #07090b 100%);
  z-index: -3;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, #ffffff, #bfc4c9, #7f8994);
  box-shadow: 0 0 22px rgba(255,255,255,0.7);
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 64%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.68;
}

.site-header {
  position: fixed;
  inset: 22px 24px auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(9, 12, 15, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(255,255,255,0.18);
  background: rgba(9, 12, 15, 0.84);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,0.42);
  transform: skewY(-8deg);
}

.brand-mark span {
  position: relative;
  display: block;
  width: 2px;
  height: 25px;
  margin: 0 2px;
  background: rgba(255,255,255,0.68);
  transform: skewY(-8deg);
}

.brand-mark span:nth-child(2) {
  height: 31px;
  opacity: 0.92;
}

.brand-mark span:nth-child(3) {
  height: 20px;
  opacity: 0.44;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.brand-text small {
  margin-top: 7px;
  color: rgba(255,255,255,0.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  padding: 11px 13px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #11161b;
  background: rgba(255,255,255,0.92);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 6%;
}

.section-anchor {
  scroll-margin-top: 120px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: 132px 6% 96px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.075em;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.4vw, 112px);
  line-height: 0.88;
  font-weight: 500;
}

h1 span {
  display: block;
  color: rgba(255,255,255,0.58);
}

.hero-sub {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}

.hero-actions,
.product-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.button.primary {
  color: #0d1116;
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.94);
}

.button.secondary {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-meta span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-panel-card {
  position: relative;
  overflow: hidden;
  min-height: min(720px, 70vh);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.15), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.hero-room {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,8,0.12), rgba(4,6,8,0.54)),
    radial-gradient(circle at 70% 28%, rgba(240,246,250,0.2), transparent 30%),
    linear-gradient(160deg, #dde2e5 0%, #9fa8b1 36%, #111820 37%, #07090b 100%);
}

.ceiling-lines {
  position: absolute;
  inset: 0 0 auto;
  height: 37%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 54px);
  transform: perspective(900px) rotateX(56deg);
  transform-origin: top;
  opacity: 0.6;
}

.window-view {
  position: absolute;
  inset: 10% 0 38% 17%;
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px) 0 0 / 32% 100%,
    linear-gradient(180deg, rgba(240,246,250,0.58), rgba(175,184,192,0.16));
  opacity: 0.64;
}

.boardroom-table,
.demo-table {
  position: absolute;
  left: 31%;
  bottom: 27%;
  width: 37%;
  height: 9%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(20,23,27,0.92), rgba(5,7,9,0.96));
  box-shadow: 0 22px 44px rgba(0,0,0,0.38);
}

.boardroom-table::after,
.demo-table::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 74%;
  width: 8%;
  height: 160%;
  transform: translateX(-50%);
  background: #0a0d10;
}

.chair,
.demo-chair {
  position: absolute;
  bottom: 31%;
  width: 7%;
  height: 14%;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #2b3036, #07090b);
  box-shadow: 0 14px 24px rgba(0,0,0,0.32);
}

.chair-one { left: 26%; }
.chair-two { right: 29%; }
.c1 { left: 28%; }
.c2 { left: 47%; }
.c3 { right: 27%; }

.plant,
.demo-plant {
  position: absolute;
  right: 11%;
  bottom: 27%;
  width: 32px;
  height: 90px;
  background: linear-gradient(180deg, #363f39, #11161a);
  border-radius: 999px 999px 12px 12px;
  opacity: 0.8;
}

.plant::before,
.demo-plant::before {
  content: "";
  position: absolute;
  inset: -44px -36px auto;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(86,104,87,0.9), transparent 42%),
    radial-gradient(ellipse at 70% 70%, rgba(74,91,80,0.9), transparent 42%),
    radial-gradient(ellipse at 50% 22%, rgba(102,121,105,0.9), transparent 44%);
}

.hero-glass {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255,255,255,0.18);
  border-right: 1px solid rgba(255,255,255,0.18);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 1px, transparent 1px 19%),
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 38%, rgba(255,255,255,0.16));
  pointer-events: none;
}

.private-pane {
  opacity: 0.88;
  backdrop-filter: blur(12px);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.24) 0 1px, transparent 1px 19%),
    radial-gradient(circle at 54% 44%, rgba(255,255,255,0.48), rgba(216,223,228,0.74) 34%, rgba(185,195,202,0.62));
  transition: opacity 0.42s ease, backdrop-filter 0.42s ease;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0.08;
  backdrop-filter: blur(0);
}

.hero-control {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(7,9,11,0.62);
  backdrop-filter: blur(22px);
}

.hero-control span,
.mode-scale span {
  display: block;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-control strong {
  display: block;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.power-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

.power-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px rgba(255,255,255,0.86);
}

.mode-scale {
  position: absolute;
  top: 28px;
  right: 30px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.mode-scale div {
  position: relative;
  width: 2px;
  height: 118px;
  background: rgba(255,255,255,0.28);
}

.mode-scale i {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
  transition: bottom 0.42s ease;
}

.hero-panel-card.is-clear .mode-scale i {
  bottom: 100%;
}

.bottom-marquee {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  gap: 42px;
  overflow: hidden;
  padding: 18px 6%;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.demo-copy h2,
.brand-board-copy h2,
.quote-copy h2,
.process-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.7vw, 82px);
  line-height: 0.95;
  font-weight: 500;
}

.section-heading p,
.demo-copy p,
.brand-board-copy p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

.product-section {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--cloud) 52%, #dce1e5 100%);
  color: var(--dark-text);
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: auto -14% -28% auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(20,24,29,0.08);
}

.product-section .eyebrow,
.product-section .section-heading p,
.product-copy p {
  color: var(--dark-muted);
}

.product-grid {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

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

.feature-list div {
  padding: 24px;
  border: 1px solid rgba(20,24,29,0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 50px rgba(20,24,29,0.06);
  backdrop-filter: blur(18px);
}

.feature-list span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #98a1aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.feature-list p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.62;
}

.technical-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)),
    rgba(12, 18, 27, 0.94);
  box-shadow: 0 38px 110px rgba(0,0,0,0.28);
  color: #fff;
  overflow: hidden;
}

.technical-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.technical-heading span {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.technical-heading strong {
  max-width: 260px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.05;
  text-align: right;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.glass-breakdown {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at 50% 20%, rgba(190,220,255,0.18), transparent 44%),
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}

.ambient-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.ambient-ring.one {
  width: 360px;
  height: 360px;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}

.ambient-ring.two {
  width: 540px;
  height: 540px;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}

.glass-frame {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(340px, 54%);
  height: 350px;
  transform: translate(-50%, -50%) perspective(900px) rotateY(-18deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.glass-panel-back,
.glass-panel-front {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 24px;
  box-shadow: inset 0 0 34px rgba(255,255,255,0.08), 0 24px 80px rgba(0,0,0,0.32);
}

.glass-panel-back {
  transform: translate3d(28px, -18px, -70px);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  opacity: 0.66;
}

.glass-panel-front {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.02) 48%, rgba(255,255,255,0.12)),
    rgba(210,230,245,0.11);
  backdrop-filter: blur(4px);
}

.glass-panel-front::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 36px);
  opacity: 0.48;
}

.glass-shine {
  position: absolute;
  top: 0;
  left: 18%;
  width: 24%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  opacity: 0.62;
}

.film-layer {
  position: absolute;
  right: -54px;
  top: 11%;
  width: 80px;
  height: 78%;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  transform: translateZ(32px);
}

.layer-one { right: -38px; opacity: 0.76; }
.layer-two { right: -68px; opacity: 0.5; }
.layer-three { right: -98px; opacity: 0.28; }

.tech-pill,
.power-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(18px);
  white-space: nowrap;
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);
}

.tech-pill small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #101722;
  background: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 900;
}

.pill-glass { left: 26px; top: 56px; }
.pill-film { right: 26px; top: 176px; }
.pill-power { left: 34px; bottom: 74px; }

.power-node {
  right: 34px;
  bottom: 58px;
  border-radius: 16px;
  color: rgba(255,255,255,0.72);
  background: rgba(5,10,18,0.52);
  font-size: 12px;
}

.power-node span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.88);
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1.2fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.demo-copy {
  max-width: 560px;
}

.glass-stage {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-xl);
}

.demo-room {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, #e5e8ea 0%, #b9c0c6 45%, #1b2229 46%, #0b0f13 100%);
}

.demo-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 15%, rgba(255,255,255,0.9), transparent 26%);
  opacity: 0.56;
}

.demo-table {
  left: 34%;
  bottom: 27%;
}

.demo-plant {
  right: 16%;
}

.frosted-panel {
  position: absolute;
  inset: 0;
  width: 62%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.62), rgba(224,229,233,0.86) 38%, rgba(180,190,198,0.66)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.32) 0 1px, transparent 1px 24%);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255,255,255,0.78);
  box-shadow: 18px 0 45px rgba(0,0,0,0.18);
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 22px rgba(255,255,255,0.72);
}

.slider-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.92);
  background: rgba(7,9,11,0.58);
}

.stage-controls {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: rgba(7,9,11,0.74);
}

.stage-controls label {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input[type="range"] {
  accent-color: #fff;
}

.state-pill {
  min-width: 118px;
  text-align: center;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 800;
}

.spaces-section {
  background: var(--soft-white);
  color: var(--dark-text);
}

.spaces-section .eyebrow,
.spaces-section .section-heading p {
  color: var(--dark-muted);
}

.space-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.space-card {
  overflow: hidden;
  border: 1px solid rgba(20,24,29,0.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20,24,29,0.08);
}

.space-image {
  height: 220px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.26) 1px, transparent 1px) 0 0 / 34% 100%,
    linear-gradient(135deg, #e4e7e9, #aeb7bf 42%, #222a31 43%, #0d1116);
}

.space-image.home {
  background:
    radial-gradient(circle at 73% 30%, rgba(255,255,255,0.88), transparent 18%),
    linear-gradient(135deg, #f1f2f2, #d4d8db 48%, #111820 49%, #0b0f13);
}

.space-image.hospitality {
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.74), transparent 17%),
    linear-gradient(135deg, #c9cfd4, #8d98a3 44%, #14191f 45%, #060708);
}

.space-image.clinic {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.32) 1px, transparent 1px) 0 0 / 22% 100%,
    linear-gradient(135deg, #f8f8f8, #cdd3d8 54%, #202830 55%, #0c1014);
}

.space-card span,
.space-card h3,
.space-card p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.space-card span {
  margin-top: 22px;
  margin-bottom: 18px;
  color: #9ba3aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.space-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.space-card p {
  margin-bottom: 24px;
  color: var(--dark-muted);
  font-size: 14px;
  line-height: 1.62;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.brand-board-copy {
  max-width: 560px;
}

.brand-board {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-xl);
}

.brand-board img {
  width: 100%;
  height: auto;
}

.process-section {
  padding-top: 0;
}

.process-panel {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    radial-gradient(circle at 75% 12%, rgba(255,255,255,0.18), transparent 30%);
  box-shadow: var(--shadow-xl);
}

.process-panel h2 {
  max-width: 860px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.process-timeline div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.process-timeline strong {
  display: block;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.process-timeline span {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.04));
}

.quote-copy {
  max-width: 580px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(7,9,11,0.42);
  outline: none;
  resize: vertical;
}

.quote-form option {
  color: #11161b;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.42);
}

.form-note {
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px 6%;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.58);
}

.footer > span {
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .product-grid,
  .demo-section,
  .brand-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-panel-card,
  .demo-room {
    min-height: 560px;
  }

  .brand-board {
    max-width: 920px;
  }

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

@media (max-width: 860px) {
  .site-header {
    inset: 14px 14px auto;
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    letter-spacing: 0.18em;
  }

  .nav-cta {
    padding: 11px 14px;
  }

  .feature-list,
  .form-row,
  .space-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 118px 5% 78px;
  }

  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-panel-card,
  .demo-room {
    min-height: 480px;
  }

  .stage-controls {
    display: grid;
  }
}

@media (max-width: 600px) {
  .hero-actions,
  .hero-meta,
  .footer {
    display: grid;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .site-header {
    align-items: stretch;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-control {
    display: grid;
  }

  .technical-heading {
    display: block;
  }

  .technical-heading strong {
    display: block;
    margin-top: 10px;
    text-align: left;
  }

  .glass-breakdown {
    min-height: 430px;
  }

  .glass-frame {
    width: 56%;
    height: 285px;
  }

  .pill-glass,
  .pill-film,
  .pill-power,
  .power-node {
    left: 16px;
    right: auto;
  }

  .pill-glass { top: 22px; }
  .pill-film { top: auto; bottom: 112px; }
  .pill-power { bottom: 62px; }
  .power-node { bottom: 16px; }

  .mode-scale {
    display: none;
  }
}


/* --- PrivateView brand refinement: typographic monogram direction --- */
.brand-mark.monogram {
  width: auto;
  height: auto;
  min-width: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  padding-right: 2px;
}

.brand-mark.monogram::before {
  display: none;
}

.brand-mark.monogram span {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  transform: none;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 0.9;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 10px rgba(0,0,0,0.12);
}

.brand-mark.monogram .mono-p {
  font-size: 44px;
}

.brand-mark.monogram .mono-v {
  margin-left: -7px;
  margin-top: 12px;
  font-size: 34px;
  color: rgba(255,255,255,0.82);
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 5px;
  letter-spacing: 0.28em;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.section-heading h2,
.demo-copy h2,
.brand-board-copy h2,
.quote-copy h2,
.process-panel h2 {
  letter-spacing: -0.05em;
}

.footer .brand-text strong,
.site-header .brand-text strong {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .brand-text strong {
    font-size: 21px;
  }

  .brand-mark.monogram .mono-p {
    font-size: 38px;
  }

  .brand-mark.monogram .mono-v {
    font-size: 30px;
    margin-left: -6px;
  }
}


/* --- Added visual photography updates --- */
.hero-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat;
}

.hero-room > .ceiling-lines,
.hero-room > .window-view,
.hero-room > .boardroom-table,
.hero-room > .chair,
.hero-room > .plant {
  display: none;
}

.hero-glass {
  border-left: 0;
  border-right: 0;
  background: none;
}

.clear-pane {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat;
}

.private-pane {
  background: url("assets/boardroom-private.png") center center / cover no-repeat;
  opacity: 1;
  backdrop-filter: none;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0;
  backdrop-filter: none;
}

.demo-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat;
  min-height: 540px;
}

.demo-room > .demo-light,
.demo-room > .demo-table,
.demo-room > .demo-chair,
.demo-room > .demo-plant {
  display: none;
}

.frosted-panel {
  background: url("assets/boardroom-private.png") center center / cover no-repeat;
  backdrop-filter: none;
  box-shadow: 18px 0 45px rgba(0,0,0,0.22);
}

.space-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.space-image.office {
  background-image: url("assets/space-office-card.png");
  background-position: center center;
}

.space-image.home {
  background-image: url("assets/space-home-card.png");
  background-position: center center;
}

.space-image.hospitality {
  background-image: url("assets/space-hospitality-card.png");
  background-position: center center;
}

.space-image.clinic {
  background-image: url("assets/space-clinic-card.png");
  background-position: center center;
}

.space-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.28));
}

.space-card .space-image {
  position: relative;
}

.brand-board {
  background: rgba(255,255,255,0.04);
}


/* --- Visual showcase additions --- */
.showcase-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
}

.showcase-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  background: rgba(255,255,255,0.04);
}

.showcase-card.large {
  min-height: 560px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,12,0.05) 24%, rgba(8,10,12,0.66) 100%);
}

.showcase-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.showcase-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.76);
  background: rgba(7,9,11,0.38);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-overlay h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.showcase-overlay p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.6;
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.process-visual {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: url("assets/hospitality-space.png") center center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.process-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.34));
}

@media (max-width: 1120px) {
  .showcase-grid,
  .process-panel {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 420px;
  }
}

.process-copy-block {
  max-width: 760px;
}


/* --- Navigation + realistic smart film slider refinement --- */
section[id],
main[id] {
  scroll-margin-top: 112px;
}

.nav-links a {
  white-space: nowrap;
}

/* Use one real image underneath, then drag the frosted film effect across it. */
.hero-room,
.clear-pane,
.demo-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat;
}

.hero-room::after,
.demo-room::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.18));
}

.private-pane {
  opacity: 0.92;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.34), rgba(223,230,234,0.48) 46%, rgba(255,255,255,0.25)),
    radial-gradient(circle at 58% 45%, rgba(255,255,255,0.44), rgba(217,224,229,0.54) 42%, rgba(168,178,186,0.38));
  backdrop-filter: blur(13px) saturate(0.78) brightness(1.05);
  -webkit-backdrop-filter: blur(13px) saturate(0.78) brightness(1.05);
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.private-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 19%),
    linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,0.18) 48%, transparent 62%);
  pointer-events: none;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0;
  backdrop-filter: blur(0) saturate(1);
  -webkit-backdrop-filter: blur(0) saturate(1);
}

.demo-room {
  position: relative;
  isolation: isolate;
}

.frosted-panel {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.36), rgba(223,230,234,0.55) 48%, rgba(255,255,255,0.28)),
    radial-gradient(circle at 55% 46%, rgba(255,255,255,0.5), rgba(217,224,229,0.56) 42%, rgba(168,178,186,0.4));
  backdrop-filter: blur(13px) saturate(0.78) brightness(1.05);
  -webkit-backdrop-filter: blur(13px) saturate(0.78) brightness(1.05);
  border-right: 1px solid rgba(255,255,255,0.86);
}

.frosted-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 24%),
    linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.22) 49%, transparent 62%);
  pointer-events: none;
}

.slider-line {
  z-index: 2;
}

.stage-controls {
  position: relative;
  z-index: 3;
}

@media (max-width: 860px) {
  section[id],
  main[id] {
    scroll-margin-top: 96px;
  }
}


/* --- Before/after image comparison slider for demo section --- */
.demo-copy h2 + p {
  max-width: 560px;
}

.demo-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat;
}

.frosted-panel {
  position: absolute;
  inset: 0;
  width: 62%;
  background: url("assets/boardroom-private.png") center center / cover no-repeat;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-right: 2px solid rgba(255,255,255,0.88);
  box-shadow: 18px 0 45px rgba(0,0,0,0.22);
}

.frosted-panel::before,
.frosted-panel::after {
  content: none !important;
}

.slider-line {
  left: 62%;
  width: 2px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 22px rgba(255,255,255,0.72);
}

.slider-line::after {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.95);
  background: rgba(7,9,11,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stage-controls label span:first-child::after {
  content: " (Powered)";
  opacity: 0.8;
}

.stage-controls label span:last-child::after {
  content: " (Private)";
  opacity: 0.8;
}


/* =========================================================
   CURRENT SITE REFINEMENT — DO NOT REVERT TO OLD LIGHT SITE
   This keeps the uploaded dark PrivateView website direction.
   Updates:
   1) latest serif PV logo styling
   2) boardroom image toggle stays current
   3) privacy effect is masked to the real glass area only
   ========================================================= */

/* Make the current coded logo closer to the latest uploaded logo direction */
.site-header .brand,
.footer .brand {
  gap: 13px;
}

.brand-mark.monogram {
  min-width: 52px;
}

.brand-mark.monogram .mono-p {
  font-size: 52px;
  letter-spacing: -0.08em;
}

.brand-mark.monogram .mono-v {
  margin-left: -8px;
  margin-top: 14px;
  font-size: 39px;
  letter-spacing: -0.08em;
}

.site-header .brand-text strong,
.footer .brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.052em;
}

.site-header .brand-text small,
.footer .brand-text small {
  margin-top: 6px;
  letter-spacing: 0.32em;
}

/* Hero image stays as your current boardroom-clear / boardroom-private pair */
.hero-room,
.clear-pane,
.demo-room {
  background-image: url("assets/boardroom-clear.png") !important;
  background-position: center center !important;
  background-size: cover !important;
}

/*
  GLASS-ONLY MASK:
  This polygon targets the actual glass wall/door area in your uploaded boardroom image.
  It prevents the frosted effect from covering the wall, floor, ceiling and surrounding space.
*/
:root {
  --privateview-glass-mask: polygon(
    7.6% 10.2%,
    85.4% 10.2%,
    85.4% 8.2%,
    98.4% 8.2%,
    98.4% 87.4%,
    7.6% 87.4%
  );
}

/* Hero toggle: only the glass gets the privacy image */
.private-pane {
  clip-path: var(--privateview-glass-mask);
  -webkit-clip-path: var(--privateview-glass-mask);
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  opacity: 1;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0;
  box-shadow: none;
}

.private-pane::before,
.private-pane::after {
  content: none !important;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0;
}

/* Add a soft glass edge only inside the image so the switch feels premium */
.hero-panel-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 10.2%;
  bottom: 12.6%;
  left: 7.6%;
  width: 1px;
  background: rgba(255,255,255,0.34);
  box-shadow: 0 0 22px rgba(255,255,255,0.24);
  opacity: 0.7;
  pointer-events: none;
}

.hero-panel-card.is-clear::after {
  opacity: 0.32;
}

/*
  Demo slider:
  We no longer slide a full image over the entire scene.
  The private image is full-size, but clipped dynamically inside the glass zone.
*/
.demo-room {
  --privacy-x: 64%;
  isolation: isolate;
}

.demo-room .frosted-panel {
  inset: 0;
  width: 100% !important;
  z-index: 2;
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  clip-path: polygon(
    7.6% 10.2%,
    var(--privacy-x) 10.2%,
    var(--privacy-x) 87.4%,
    7.6% 87.4%
  );
  -webkit-clip-path: polygon(
    7.6% 10.2%,
    var(--privacy-x) 10.2%,
    var(--privacy-x) 87.4%,
    7.6% 87.4%
  );
  border-right: 0;
  box-shadow: none;
  transition: clip-path 0.12s ease, -webkit-clip-path 0.12s ease;
}

.demo-room .frosted-panel::before,
.demo-room .frosted-panel::after {
  content: none !important;
}

.demo-room .slider-line {
  z-index: 3;
  top: 10.2%;
  bottom: 12.6%;
  left: var(--privacy-x);
  width: 2px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 22px rgba(255,255,255,0.72);
}

.demo-room .slider-line::after {
  bottom: -16px;
}

/* Latest brand board section, matching the existing dark site style */
.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.brand-board-copy {
  max-width: 560px;
}

.brand-board {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-xl);
}

.brand-board img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1120px) {
  .brand-section {
    grid-template-columns: 1fr;
  }

  .brand-board {
    max-width: 920px;
  }
}

@media (max-width: 860px) {
  .brand-mark.monogram {
    min-width: 46px;
  }

  .brand-mark.monogram .mono-p {
    font-size: 43px;
  }

  .brand-mark.monogram .mono-v {
    margin-left: -7px;
    margin-top: 11px;
    font-size: 34px;
  }

  .site-header .brand-text strong,
  .footer .brand-text strong {
    font-size: 22px;
  }

  .site-header .brand-text small,
  .footer .brand-text small {
    letter-spacing: 0.24em;
  }
}



/* V2 hero/demo glass edge alignment */
.hero-panel-card::after {
  top: 10.2%;
  bottom: 12.6%;
  left: 7.6%;
}

.demo-room .slider-line {
  top: 10.2%;
  bottom: 12.6%;
}


/* =========================================================
   V3 FIXES — current dark PrivateView site retained
   ========================================================= */

/* Use the corrected uploaded logo images */
.brand {
  min-width: max-content;
}

.brand-logo-img {
  display: block;
  width: clamp(168px, 15vw, 228px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.footer .brand-logo-img {
  width: clamp(166px, 14vw, 220px);
}

/* Hide old coded monogram if any browser cached old markup */
.brand-mark.monogram,
.brand-text {
  display: none;
}

/* Hero privacy toggle: full aligned before/after image overlay.
   The source private image only changes the glass, so no glass panels are missed. */
.hero-room,
.clear-pane,
.demo-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat !important;
}

.private-pane {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  opacity: 1;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.private-pane::before,
.private-pane::after {
  content: none !important;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0;
}

/* Remove the previous partial glass edge marker that made the left edge look cut off */
.hero-panel-card::after {
  content: none !important;
}

/* Interactive demo: classic before/after reveal across the full image width.
   This removes the untouched left strip and reaches edge-to-edge. */
.demo-room {
  position: relative;
  isolation: isolate;
}

.demo-room .frosted-panel {
  position: absolute;
  inset: 0 auto 0 0 !important;
  width: 62%;
  height: 100%;
  z-index: 2;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  border-right: 2px solid rgba(255,255,255,0.88);
  box-shadow: 18px 0 45px rgba(0,0,0,0.22);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: width 0.12s ease;
}

.demo-room .frosted-panel::before,
.demo-room .frosted-panel::after {
  content: none !important;
}

.demo-room .slider-line {
  z-index: 3;
  top: 0 !important;
  bottom: 0 !important;
  left: 62%;
  width: 2px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 22px rgba(255,255,255,0.72);
}

.demo-room .slider-line::after {
  bottom: 26px;
}

/* Prevent the bottom marquee from overlapping the hero chips/text */
.hero {
  padding-bottom: 44px !important;
}

.bottom-marquee {
  position: relative !important;
  inset: auto !important;
  grid-column: 1 / -1;
  align-self: end;
  margin-top: 8px;
  flex-wrap: wrap;
  row-gap: 10px;
  line-height: 1.25;
  white-space: normal;
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 3;
}

.hero-meta {
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .brand-logo-img {
    width: 160px;
    max-height: 48px;
  }

  .bottom-marquee {
    border-radius: 24px;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .brand-logo-img {
    width: 146px;
  }
}


/* =========================================================
   V5 FIX — return demo to clean drag-over reveal style
   Keeps current dark site + visible uploaded logo.
   ========================================================= */

.brand-logo-img {
  display: block;
  width: clamp(190px, 16vw, 250px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}

.footer .brand-logo-img {
  width: clamp(180px, 15vw, 238px);
  max-height: 58px;
}

.brand-mark.monogram,
.brand-text {
  display: none;
}

/* Keep the hero before/after working across the full image */
.hero-room,
.clear-pane,
.demo-room {
  background: url("assets/boardroom-clear.png") center center / cover no-repeat !important;
}

.private-pane {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  opacity: 1;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.private-pane::before,
.private-pane::after {
  content: none !important;
}

.hero-panel-card.is-clear .private-pane {
  opacity: 0;
}

/* Remove any V4/demo labels and oversized handle */
.demo-room::before,
.demo-room::after {
  content: none !important;
}

/* Clean interactive demo:
   the clear image stays underneath, the private image is revealed as you drag.
   No big circle, no labels, no bulky marker. */
.demo-room {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden;
  background: url("assets/boardroom-clear.png") center center / cover no-repeat !important;
}

.demo-room .frosted-panel {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 62%;
  height: 100% !important;
  z-index: 2 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: url("assets/boardroom-private.png") center center / cover no-repeat !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  border-right: 1px solid rgba(255,255,255,0.82) !important;
  box-shadow: 12px 0 34px rgba(0,0,0,0.16) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  transition: width 0.12s ease !important;
}

.demo-room .frosted-panel::before,
.demo-room .frosted-panel::after {
  content: none !important;
}

.demo-room .slider-line {
  position: absolute !important;
  z-index: 3 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 62%;
  width: 1px !important;
  background: rgba(255,255,255,0.78) !important;
  box-shadow: 0 0 14px rgba(255,255,255,0.48) !important;
}

/* Remove the massive circle completely */
.demo-room .slider-line::after {
  content: none !important;
}

.stage-controls label span:first-child::after,
.stage-controls label span:last-child::after {
  content: none !important;
}

/* Keep the hero bottom text tidy and non-overlapping */
.hero {
  padding-bottom: 44px !important;
}

.bottom-marquee {
  position: relative !important;
  inset: auto !important;
  grid-column: 1 / -1;
  margin-top: 8px;
  flex-wrap: wrap;
  row-gap: 10px;
  white-space: normal;
  line-height: 1.25;
  z-index: 3;
}

@media (max-width: 860px) {
  .brand-logo-img {
    width: 168px;
    max-height: 52px;
  }
}

@media (max-width: 600px) {
  .brand-logo-img {
    width: 150px;
  }
}


/* =========================================================
   V6 FIX — true before/after image comparison demo
   Clear image underneath. Private image clipped over it.
   No big circle. No labels. Same sizing/dimensions.
   ========================================================= */

.image-compare {
  position: relative !important;
  min-height: 540px;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #0b0f13 !important;
}

.image-compare::before,
.image-compare::after {
  content: none !important;
}

.image-compare .compare-image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  max-width: none !important;
  pointer-events: none !important;
}

.image-compare .compare-clear {
  z-index: 1 !important;
  opacity: 1 !important;
}

.image-compare .compare-private {
  z-index: 2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease, -webkit-clip-path 0.1s ease !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Override all older .frosted-panel rules now that the element is an image */
.image-compare #frostedPanel {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.image-compare #frostedPanel::before,
.image-compare #frostedPanel::after {
  content: none !important;
}

.image-compare .slider-line {
  position: absolute !important;
  z-index: 3 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50%;
  width: 1px !important;
  background: rgba(255,255,255,0.84) !important;
  box-shadow: 0 0 14px rgba(255,255,255,0.45) !important;
}

.image-compare .slider-line::after {
  content: none !important;
}

/* Keep the demo container and controls exactly in the same premium style */
.glass-stage {
  overflow: hidden;
}

.stage-controls label span:first-child::after,
.stage-controls label span:last-child::after {
  content: none !important;
}

@media (max-width: 1120px) {
  .image-compare {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .image-compare {
    min-height: 460px;
  }
}



/* =========================================================
   V7 LIVE-READY ADDITIONS
   ========================================================= */

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
}

.form-privacy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.34);
}

.form-note {
  max-width: 420px;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.45);
}

.footer-contact {
  margin-top: 22px;
  color: rgba(255,255,255,0.64);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.success-page,
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #07090b;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
}

.response-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
}

.response-card h1 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
}

.response-card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.response-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #080a0d;
  background: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 800;
}


/* =========================================================
   V10 application card image fit fix
   ========================================================= */
.space-card .space-image {
  position: relative;
  overflow: hidden;
  background: #e9ecef !important;
}

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

.space-card .space-image.office img {
  object-position: center center;
}

.space-card .space-image.home img {
  object-position: center center;
}

.space-card .space-image.hospitality img {
  object-position: center 42%;
}

.space-card .space-image.clinic img {
  object-position: center center;
}

.space-card .space-image::after {
  display: none;
}
