/* Murray Movement Labs company site.
   THEME: the sunrise track-to-court photo is the full-page fixed background;
   content floats over it in frosted-glass panels. Navy text, Pounz gold/orange
   accent. Self-hosted fonts, no third-party CDN. */

@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/bebas-neue-latin-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin-var.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}

:root {
  --navy: #0b1220;
  --bg-soft: #f4f6f9;
  --line: #e6e9ef;
  --t1: #0b1220;
  --t2: #44506a;
  --t3: #7b8698;
  --gold: #f2a900;
  --orange: #ff8a3d;
  --accent-ink: #b45309;
  --font-display: 'Bebas Neue', -apple-system, system-ui, sans-serif;
  --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;
  --maxw: 1000px;
  --glass: rgba(255,255,255,0.86);
  --glass-brd: rgba(255,255,255,0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* ── Full-page fixed photo background ── */
body {
  font-family: var(--font-body);
  color: var(--t2);
  line-height: 1.6;
  min-height: 100vh;
  background-color: #16202f;
  background-image: url('/assets/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
/* mobile: fixed backgrounds are janky/limited — let it scroll */
@media (max-width: 768px) {
  body { background-attachment: scroll; background-position: center; }
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* frosted panel */
.glass {
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid var(--glass-brd);
  box-shadow: 0 12px 34px rgba(11,18,32,0.20);
}

/* ── Header (frosted bar) ── */
.site-header {
  margin-top: 16px;
  padding: 11px 20px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--t1); }
.brand img { height: 38px; width: auto; display: block; }
.brand span { font-family: var(--font-display); font-size: 23px; letter-spacing: 0.03em; color: var(--navy); }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--t2); text-decoration: none; font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--accent-ink); }

/* ── Hero: text directly on the photo ── */
.hero { padding: clamp(90px, 24vh, 220px) 4px clamp(48px, 12vh, 110px); }
.hero-content { max-width: 660px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 9vw, 90px);
  line-height: 0.94; letter-spacing: 0.02em;
  margin: 18px 0 14px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0,0,0,0.55);
}
.hero .tagline {
  font-size: clamp(18px, 3.6vw, 22px);
  color: #fff; font-weight: 500; max-width: 560px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

/* ── Content sheet (all sections float here) ── */
.content-sheet {
  border-radius: 26px;
  padding: 8px 32px;
  margin-bottom: 22px;
}

.intro {
  font-size: clamp(18px, 4vw, 22px);
  color: var(--t1); font-weight: 600; max-width: 680px;
  padding: 30px 0 4px;
}

section.block { padding: 34px 0; }
section.block + section.block { border-top: 1px solid var(--line); }
.block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6.5vw, 42px);
  letter-spacing: 0.02em; color: var(--navy); margin-bottom: 8px;
}
.block .lede { color: var(--t2); font-size: 17px; max-width: 660px; margin-bottom: 22px; }

.cards { display: grid; gap: 16px; }
/* product rows: solid light sub-panels inside the frosted sheet (no nested glass) */
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.card h3 { color: var(--navy); }
.card p { color: var(--t2); }
.card a { color: var(--accent-ink); }
.app-tile { width: 84px; height: 84px; border-radius: 18px; flex: 0 0 auto; object-fit: cover; }

.privacy-strip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.privacy-strip .emoji { font-size: 30px; line-height: 1; }
.privacy-strip h3 { font-size: 20px; margin-bottom: 6px; color: var(--navy); }
.privacy-strip p { color: var(--t2); font-size: 15.5px; }

/* ── Footer (on the photo, below the sheet) ── */
.site-footer {
  padding: 6px 6px 40px;
  color: #fff; font-size: 14px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.site-footer a { color: #fff; text-decoration: none; opacity: 0.92; }
.site-footer a:hover { opacity: 1; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 560px) {
  .nav-links { display: none; }
  .privacy-strip { flex-direction: column; gap: 10px; }
  .content-sheet { padding: 4px 20px; }
}
