/* ============================================================
   Prologue — positioning site
   Cinematic hero over real product footage, then the pitch.
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #07060c;
}

body {
  margin: 0;
  background: #07060c;
  color: #f6ece0;
  font-family: "Instrument Serif", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.sans { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }

a { color: inherit; }

/* ---------- liquid glass ---------- */

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

/* ---------- hero ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #07060c;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms ease-in-out;
  z-index: 0;
  /* the footage is a text-heavy site — blur it into atmosphere, and
     scale up so the blur edges never show */
  filter: blur(9px) saturate(1.12) brightness(0.92);
  transform: scale(1.09);
}
.hero-video.is-active { opacity: 1; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(105% 66% at 50% 44%, rgba(7,6,12,0.28) 0%, rgba(7,6,12,0.74) 100%),
    linear-gradient(180deg, rgba(7,6,12,0.8) 0%, rgba(7,6,12,0.42) 26%, rgba(7,6,12,0.5) 62%, rgba(7,6,12,0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px clamp(18px, 4vw, 46px) 26px;
}

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  font-size: clamp(20px, 2.4vw, 27px);
  font-style: italic;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #fff;
}
.nav-pill {
  display: none;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  padding: 7px 7px 7px 22px;
  border-radius: 999px;
}
.nav-pill a {
  font-family: system-ui, sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-pill a:hover { color: #fff; }
.nav-pill a.btn-solid { color: #14111d; }
.btn-solid {
  font-family: system-ui, sans-serif;
  display: inline-flex; align-items: center;
  min-height: 38px; padding: 0 18px;
  border-radius: 999px;
  background: #fff; color: #14111d;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none;
  border: 0; cursor: pointer;
  white-space: nowrap;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1);
}
.btn-solid:hover { transform: translateY(-1px); }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.01);
}
.burger svg { position: absolute; transition: all 300ms cubic-bezier(0.4,0,0.2,1); }
.burger .ic-menu { opacity: 1; transform: rotate(0) scale(1); }
.burger .ic-close { opacity: 0; transform: rotate(-90deg) scale(0.75); }
body.menu-open .burger .ic-menu { opacity: 0; transform: rotate(90deg) scale(0.75); }
body.menu-open .burger .ic-close { opacity: 1; transform: rotate(0) scale(1); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 50;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 400ms cubic-bezier(0.4,0,0.2,1);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: all 500ms cubic-bezier(0.4,0,0.2,1);
}
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 100ms; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 150ms; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 200ms; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 250ms; }
.mobile-menu .btn-solid { font-size: 15px; min-height: 48px; transform: scale(0.9); transition-delay: 300ms; }
body.menu-open .mobile-menu .btn-solid { transform: scale(1); }

/* hero content */
.hero-body {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 28px 0;
}
.badge {
  display: inline-flex; align-items: center;
  min-height: 36px; padding: 0 18px;
  border-radius: 999px;
  font-family: system-ui, sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
}
h1.hero-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(42px, 8.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
h1.hero-title em { font-style: italic; color: #f0b968; }
.hero-sub {
  margin: 0;
  max-width: 54ch;
  font-family: system-ui, sans-serif;
  font-size: clamp(14.5px, 1.5vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}
.email-pill {
  display: flex; align-items: center; gap: 8px;
  width: min(400px, 92vw);
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
}
.email-pill input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 14px;
}
.email-pill input::placeholder { color: rgba(255,255,255,0.55); }

.switcher { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 2.4vw, 34px); margin-top: 6px; }
.switcher button {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none; border: 0;
  border-bottom: 1px solid transparent;
  padding: 0 0 5px;
  color: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 300ms ease, border-color 300ms ease;
}
.switcher button:hover { opacity: 0.8; }
.switcher button.is-active { opacity: 1; border-bottom-color: rgba(255,255,255,0.85); }

.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
  font-family: system-ui, sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}
.hero-stats .divider { display: none; opacity: 0.4; }

/* ---------- sections ---------- */

section.band { padding: clamp(72px, 11vh, 140px) clamp(18px, 5vw, 40px); }
.inner { max-width: 1080px; margin: 0 auto; }
.narrow { max-width: 720px; }

.eyebrow {
  font-family: system-ui, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: #f0b968;
}
h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
}
h2 em { font-style: italic; color: #f0b968; }
.lede {
  margin: 18px 0 0;
  max-width: 60ch;
  font-family: system-ui, sans-serif;
  font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.65;
  color: rgba(246,236,224,0.76);
}

.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 46px; }
.grid4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 46px; }

.note-strip {
  margin-top: 30px;
  padding: 18px 22px;
  border-left: 3px solid #f0b968;
  background: rgba(240, 185, 104, 0.09);
  border-radius: 0 14px 14px 0;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 236, 224, 0.82);
}
.note-strip b { color: #f0b968; font-weight: 700; }

.price-single {
  margin: 40px auto 0;
  max-width: 420px;
  padding: 38px 32px 34px;
  border: 1px solid rgba(240, 185, 104, 0.5);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(240,185,104,0.13), rgba(240,185,104,0.02));
  text-align: left;
}
.price-single .amt {
  margin: 0;
  text-align: center;
  font-size: 76px;
  line-height: 1;
  color: #fff;
}
.price-single ul { margin: 26px 0 30px; padding: 0; list-style: none; font-family: system-ui, sans-serif; font-size: 14.5px; color: rgba(246,236,224,0.8); }
.price-single li { padding: 7px 0 7px 24px; position: relative; line-height: 1.45; }
.price-single li::before { content: "✓"; position: absolute; left: 0; color: #f0b968; font-weight: 700; }
.price-single .btn-gold { width: 100%; justify-content: center; }
.card {
  padding: 26px 24px 28px;
  border: 1px solid rgba(246,236,224,0.13);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(246,236,224,0.055), rgba(246,236,224,0.015));
}
.card .n {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  font-family: system-ui, sans-serif;
  color: #f0b968;
}
.card h3 { margin: 12px 0 0; font-size: 25px; line-height: 1.12; color: #fff; }
.card p {
  margin: 10px 0 0;
  font-family: system-ui, sans-serif;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(246,236,224,0.72);
}

/* demo */
.demo-frame {
  margin-top: 44px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(246,236,224,0.16);
  background: #0d0b16;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.demo-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: rgba(246,236,224,0.06);
  border-bottom: 1px solid rgba(246,236,224,0.1);
}
.demo-bar .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(246,236,224,0.26); }
.demo-bar .url {
  flex: 1;
  margin-left: 8px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  color: rgba(246,236,224,0.55);
  text-align: center;
}
.demo-frame iframe { display: block; width: 100%; height: min(74vh, 660px); border: 0; background: #0d0b16; }

.demo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn-ghost {
  font-family: system-ui, sans-serif;
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(246,236,224,0.4);
  color: rgba(246,236,224,0.92);
  font-size: 13.5px; font-weight: 600;
  text-decoration: none;
  transition: all 220ms ease;
}
.btn-ghost:hover { border-color: #f0b968; color: #f0b968; }
.btn-gold {
  font-family: system-ui, sans-serif;
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 999px;
  background: #f0b968; color: #241906;
  font-size: 13.5px; font-weight: 700;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1);
}
.btn-gold:hover { transform: translateY(-2px); }

/* who / list */
.who { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-top: 40px; }
.who div {
  padding: 15px 17px;
  border: 1px solid rgba(246,236,224,0.13);
  border-radius: 14px;
  font-family: system-ui, sans-serif;
  font-size: 14.5px;
  color: rgba(246,236,224,0.86);
}
.who div b { display: block; color: #fff; font-weight: 600; margin-bottom: 3px; }
.who div span { font-size: 13px; color: rgba(246,236,224,0.6); }

/* pricing */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 44px; }
.price {
  padding: 28px 24px;
  border: 1px solid rgba(246,236,224,0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(246,236,224,0.05), rgba(246,236,224,0.012));
}
.price.feature { border-color: rgba(240,185,104,0.55); background: linear-gradient(180deg, rgba(240,185,104,0.12), rgba(240,185,104,0.02)); }
.price .tier { font-family: system-ui, sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #f0b968; }
.price .amt { margin: 12px 0 0; font-size: 42px; line-height: 1; color: #fff; }
.price .amt small { font-size: 15px; color: rgba(246,236,224,0.6); }
.price ul { margin: 18px 0 0; padding: 0; list-style: none; font-family: system-ui, sans-serif; font-size: 14px; color: rgba(246,236,224,0.74); }
.price li { padding: 6px 0 6px 20px; position: relative; line-height: 1.45; }
.price li::before { content: "—"; position: absolute; left: 0; color: #f0b968; }

/* cta */
.cta { text-align: center; }
.cta .email-pill { margin: 30px auto 0; }
.cta .email-pill input { color: #f6ece0; }

footer.site {
  padding: 40px 20px 56px;
  border-top: 1px solid rgba(246,236,224,0.12);
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: rgba(246,236,224,0.45);
}

/* ---------- responsive ---------- */

@media (min-width: 860px) {
  .nav-pill { display: inline-flex; }
  .burger { display: none; }
  .hero-stats .divider { display: inline; }
  .hero-stats { gap: 18px; }
}

@media (max-width: 859px) {
  .mobile-menu { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { transition: none; }
  * { animation: none !important; }
}

/* ---------- city examples ---------- */

.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 44px 0 40px; }
.city {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(246,236,224,0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(246,236,224,0.03);
  transition: border-color 260ms ease, transform 260ms cubic-bezier(0.16,1,0.3,1);
}
.city:hover { border-color: rgba(240,185,104,0.6); transform: translateY(-3px); }
.swatch { display: block; height: 128px; }
.swatch-fi { background: linear-gradient(180deg, #141230 0%, #3a2b4e 34%, #7d4149 62%, #c67a4c 84%, #f0b968 100%); }
.swatch-pr { background: linear-gradient(180deg, #0b1330 0%, #1e2f5c 36%, #4a5480 66%, #8f7488 86%, #c78f74 100%); }
.swatch-du { background: linear-gradient(180deg, #63798a 0%, #94a8ae 36%, #c0cbc2 70%, #e2e4d6 100%); }
.city-body { padding: 20px 20px 22px; }
.city-body h3 { margin: 0; font-size: 27px; color: #fff; }
.city-body p { margin: 8px 0 0; font-family: system-ui, sans-serif; font-size: 13.5px; line-height: 1.5; color: rgba(246,236,224,0.7); }
.city-tag {
  display: inline-block; margin-top: 14px; padding: 3px 10px;
  border-radius: 999px; border: 1px solid rgba(240,185,104,0.45);
  color: #f0b968; font-family: system-ui, sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
