:root {
  color-scheme: dark;
  --bg: #030510;
  --panel: rgba(9, 13, 32, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #aeb4c8;
  --blue: #176dff;
  --violet: #9a39ff;
  --cyan: #27d7ff;
  --green: #18c783;
  --wood: #5b4033;
  --wood-hi: #c19a7b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 62% 3%, rgba(22, 109, 255, 0.38), transparent 34rem),
    radial-gradient(circle at 92% 11%, rgba(154, 57, 255, 0.36), transparent 35rem),
    linear-gradient(180deg, #050713 0%, #030510 45%, #060914 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 16, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: white;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 760;
}

.header-action {
  padding: 0 22px;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 32px rgba(80, 70, 255, 0.3);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 102px clamp(20px, 4.5vw, 70px) 52px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b376ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 6.7vw, 6.35rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h1::after {
  content: " Made in Pakistan.";
  display: block;
  margin-top: 8px;
  font-size: 0.56em;
  line-height: 1.02;
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 24%, var(--violet) 62%, var(--green) 100%);
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.button {
  padding: 0 26px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 44px rgba(64, 70, 255, 0.35);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.045);
}

.metric-row {
  margin-top: 36px;
}

.metric-row div {
  width: min(178px, 100%);
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.metric-row span {
  color: var(--muted);
  line-height: 1.4;
}

.hero-stage {
  position: sticky;
  top: 86px;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.product-motion {
  --progress: 0;
  position: relative;
  z-index: 2;
  width: min(100%, 880px);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #050713;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.58);
}

.hero-product {
  transform: translateY(calc(var(--progress) * -16px));
}

.desk-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 140ms linear, transform 140ms linear;
}

.desk-frame.sitting {
  opacity: calc(1 - var(--progress));
  transform: scale(calc(1.01 - var(--progress) * 0.015));
}

.desk-frame.standing {
  opacity: var(--progress);
  transform: scale(calc(1 + var(--progress) * 0.018));
}

.product-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 16, 0.58), transparent 28%, rgba(3, 5, 16, 0.12)),
    linear-gradient(180deg, rgba(3, 5, 16, 0.04), rgba(3, 5, 16, 0.28));
  pointer-events: none;
}

.motion-readout {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 9%;
  display: grid;
  gap: 2px;
  min-width: 164px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 7, 18, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.readout-value {
  color: #d8fbff;
  font-size: 1.15rem;
  font-weight: 880;
}

.motion-readout span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.height-rail {
  position: absolute;
  z-index: 3;
  right: 4%;
  top: 17%;
  width: 1px;
  height: 62%;
  background: rgba(255, 255, 255, 0.28);
}

.height-rail span {
  position: absolute;
  right: -4px;
  bottom: calc(var(--progress) * 82%);
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #dff9ff;
  box-shadow: 0 0 18px rgba(39, 215, 255, 0.76);
}

.halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}

.halo-blue {
  width: 54%;
  height: 42%;
  left: 3%;
  top: 17%;
  background: rgba(23, 109, 255, 0.32);
}

.halo-violet {
  width: 48%;
  height: 54%;
  right: 0;
  top: 11%;
  background: rgba(154, 57, 255, 0.34);
}

.desk-scene {
  --lift: 0;
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1.16;
  transform: rotateX(7deg) rotateY(-12deg);
  filter: drop-shadow(0 48px 80px rgba(0, 0, 0, 0.55));
}

.monitor,
.laptop,
.lamp,
.plant,
.desk-top,
.leg,
.foot,
.height-line {
  position: absolute;
}

.desk-top {
  left: 7%;
  top: calc(56% - var(--lift) * 17%);
  width: 82%;
  height: 8%;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 24%, rgba(255,255,255,0.13) 72%, transparent),
    linear-gradient(180deg, var(--wood-hi), var(--wood) 62%, #241814);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.35), 0 16px 28px rgba(0, 0, 0, 0.45);
}

.wood-grain {
  position: absolute;
  inset: 12% 2%;
  border-radius: 8px;
  background: repeating-linear-gradient(1deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 12px);
  opacity: 0.28;
}

.control-panel {
  position: absolute;
  right: 9%;
  bottom: -42%;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 138px;
  min-height: 32px;
  padding: 4px 7px;
  border-radius: 7px;
  background: #05060c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 24px rgba(39, 215, 255, calc(0.18 + var(--lift) * 0.28));
  color: #bbf1ff;
  font-size: 0.77rem;
}

.control-panel i {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.leg {
  top: calc(62% - var(--lift) * 17%);
  width: 5.6%;
  height: calc(22% + var(--lift) * 17%);
  border-radius: 3px;
  background: linear-gradient(90deg, #05070d, #111827 46%, #04050a);
  box-shadow: inset 8px 0 12px rgba(39, 215, 255, 0.08);
}

.leg.left {
  left: 21%;
}

.leg.right {
  right: 21%;
}

.foot {
  top: 84%;
  width: 24%;
  height: 5%;
  border-radius: 10px;
  background: linear-gradient(90deg, #020309, #121a2a, #020309);
}

.left-foot {
  left: 12%;
}

.right-foot {
  right: 12%;
}

.monitor {
  left: 39%;
  top: calc(16% - var(--lift) * 13%);
  width: 40%;
  height: 28%;
  border: 5px solid #070813;
  border-radius: 5px;
  background:
    radial-gradient(circle at 16% 16%, rgba(39, 215, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #101b5d, #130429 62%, #3b0e5e);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 0 48px rgba(154, 57, 255, 0.42);
}

.screen-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.22) 45%, transparent 49%);
  transform: translateX(calc(-55% + var(--lift) * 110%));
}

.laptop {
  left: 25%;
  top: calc(29% - var(--lift) * 10%);
  width: 20%;
  height: 18%;
}

.laptop-screen {
  height: 72%;
  border: 4px solid #060713;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #071951, #12051f);
  font-size: 0.72rem;
  font-weight: 900;
}

.laptop-base {
  width: 112%;
  height: 18%;
  margin-left: -6%;
  border-radius: 0 0 14px 14px;
  background: #151a2a;
}

.lamp {
  right: 13%;
  top: calc(28% - var(--lift) * 11%);
  width: 7%;
  height: 20%;
  border-right: 5px solid #141827;
  border-top: 5px solid #141827;
  border-radius: 0 24px 0 0;
}

.lamp::before {
  content: "";
  position: absolute;
  left: -34%;
  top: -16%;
  width: 74%;
  height: 28%;
  border-radius: 999px 999px 8px 8px;
  background: #171827;
  transform: rotate(-22deg);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.28);
}

.plant {
  right: 27%;
  top: calc(43% - var(--lift) * 16%);
  width: 5%;
  height: 12%;
  border-radius: 0 0 9px 9px;
  background: linear-gradient(#1cb075 0 38%, #272030 39%);
}

.height-line {
  right: 6%;
  top: 29%;
  width: 1px;
  height: 55%;
  background: linear-gradient(transparent, rgba(255,255,255,0.82), transparent);
}

.height-value {
  position: absolute;
  right: 12px;
  top: calc(78% - var(--lift) * 80%);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.88rem;
}

.proof-strip,
.motion-section,
.pakistan-section,
.feature-section,
.cta-section {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.proof-strip article {
  padding: 28px;
  background: rgba(7, 10, 26, 0.88);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(154, 57, 255, 0.12);
  color: #a86cff;
  font-weight: 900;
}

.proof-strip h2,
.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.proof-strip p,
.feature-grid p,
.section-copy p,
.cta-section p {
  color: var(--muted);
  line-height: 1.6;
}

.motion-section,
.pakistan-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(420px, 1.36fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 72svh;
  padding: 110px 0 34px;
}

.section-copy h2,
.cta-section h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.2vw, 5.1rem);
  line-height: 0.98;
}

.motion-panel {
  --progress: 0;
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(28% + var(--progress) * 42%) 22%, rgba(39, 215, 255, 0.34), transparent 16rem),
    radial-gradient(circle at 82% 22%, rgba(154, 57, 255, 0.3), transparent 17rem),
    linear-gradient(145deg, rgba(14, 26, 78, 0.8), rgba(15, 5, 30, 0.86));
  overflow: hidden;
}

.video-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  cursor: pointer;
}

.video-start span,
.panel-play span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 30px rgba(80, 70, 255, 0.32);
}

.video-start span::before,
.panel-play span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 10px 0 0 13px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid white;
}

.panel-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(3, 5, 16, 0.42);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.motion-panel:hover .panel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.03);
}

.section-product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-product .desk-frame {
  object-position: center;
}

.section-product .motion-readout {
  right: 5%;
  bottom: 18%;
}

.wellness-notes {
  position: absolute;
  z-index: 3;
  left: 5%;
  right: 5%;
  top: 8%;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-arc {
  position: absolute;
  left: 12%;
  top: 19%;
  width: 78%;
  height: 58%;
  border-top: 2px solid rgba(154, 57, 255, 0.88);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.track-label {
  position: absolute;
  z-index: 2;
  font-weight: 850;
  display: none;
}

.track-label.low {
  left: 8%;
  bottom: 25%;
}

.track-label.high {
  right: 7%;
  top: 25%;
}

.mini-desk {
  position: absolute;
  bottom: 28%;
  width: 24%;
  height: 7px;
  border-radius: 7px;
  background: linear-gradient(90deg, #5b4033, #c19a7b);
  box-shadow: 0 14px 30px rgba(0,0,0,0.46);
}

.mini-desk::before,
.mini-desk::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 7%;
  height: var(--leg-height);
  background: #070a13;
}

.mini-desk::before {
  left: 22%;
}

.mini-desk::after {
  right: 22%;
}

.low-desk {
  --leg-height: 52px;
  left: 8%;
  transform: translateY(44px) scale(0.9);
}

.mid-desk {
  --leg-height: 92px;
  left: 38%;
  transform: translateY(12px);
}

.high-desk {
  --leg-height: 138px;
  right: 7%;
  transform: translateY(-35px) scale(1.08);
}

.player-bar {
  position: absolute;
  z-index: 3;
  left: 5%;
  right: 5%;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding-left: 4px;
}

.player-bar button {
  position: absolute;
  left: calc(var(--progress) * (100% - 180px));
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 8px rgba(80, 70, 255, 0.08), 0 14px 34px rgba(80, 70, 255, 0.34);
}

.bar {
  margin-left: 42px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.bar span {
  display: block;
  width: calc(var(--progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--green));
}

.pakistan-section {
  grid-template-columns: minmax(520px, 1.2fr) minmax(300px, 0.8fr);
  position: relative;
  padding: 88px clamp(22px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 45%, rgba(24, 199, 131, 0.1), transparent 24rem),
    radial-gradient(circle at 76% 28%, rgba(154, 57, 255, 0.13), transparent 24rem),
    rgba(255, 255, 255, 0.025);
}

.pakistan-section .section-copy h2 {
  font-size: clamp(2.55rem, 4.35vw, 4.65rem);
}

.pakistan-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0,0,0,0.38);
  transform: translateY(18px);
}

.pakistan-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 16, 0.38), transparent 42%),
    radial-gradient(circle at 74% 50%, transparent 0 28%, rgba(3, 5, 16, 0.28) 68%),
    linear-gradient(180deg, transparent 66%, rgba(3, 5, 16, 0.32));
  pointer-events: none;
}

.pakistan-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.check-list {
  margin-top: 30px;
}

.check-list p {
  position: relative;
  padding-left: 30px;
  color: #d8dded;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: radial-gradient(circle, var(--green) 0 35%, transparent 38%);
}

.feature-section {
  padding: 96px 0 40px;
}

.compact {
  max-width: 640px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 112px 20px 120px;
}

.cta-section h2 {
  max-width: 800px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer div,
.site-footer address {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: white;
  font-size: 1.12rem;
}

.site-footer address {
  font-style: normal;
  text-align: right;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 2, 8, 0.78);
  backdrop-filter: blur(18px);
}

.video-dialog,
.reserve-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: #050713;
  box-shadow: 0 44px 120px rgba(0,0,0,0.62);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(3, 5, 16, 0.64);
  cursor: pointer;
  font-size: 1.35rem;
}

.desk-video {
  --video-progress: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-start-frame {
  opacity: calc(1 - var(--video-progress));
  transform: scale(calc(1.01 - var(--video-progress) * 0.02));
}

.video-end-frame {
  opacity: var(--video-progress);
  transform: scale(calc(1 + var(--video-progress) * 0.018));
}

.desk-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 5, 16, 0.42));
  pointer-events: none;
}

.video-height {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 32px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(5, 7, 18, 0.68);
  backdrop-filter: blur(14px);
}

.video-height strong {
  color: #d8fbff;
  font-size: 1.45rem;
}

.video-height span {
  color: rgba(255,255,255,0.72);
}

.video-progress {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 18px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}

.video-progress span {
  display: block;
  width: calc(var(--video-progress) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--green));
}

.reserve-dialog {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: 34px;
}

.reserve-dialog h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.reserve-dialog label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-weight: 740;
}

.reserve-dialog input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: white;
  outline: none;
}

.reserve-dialog input:focus {
  border-color: rgba(39, 215, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(39, 215, 255, 0.08);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .motion-section,
  .pakistan-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    position: relative;
    top: auto;
    min-height: 540px;
  }

  .proof-strip,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .brand img {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  .hero-stage {
    min-height: 360px;
  }

  .desk-scene {
    width: 112%;
  }

  .proof-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .motion-section,
  .pakistan-section,
  .feature-section,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-footer {
    display: grid;
  }

  .site-footer address {
    text-align: left;
  }

  .motion-panel {
    min-height: 330px;
  }

  .player-bar {
    grid-template-columns: 30px 1fr;
  }

  .player-bar span {
    display: none;
  }
}
