/* -------------------------
   Tokens
------------------------- */
:root {
  --bg: #0b0b0d;
  --text: #f4f4f5;
  --muted: rgba(244, 244, 245, 0.74);
  --muted2: rgba(244, 244, 245, 0.56);
  --line: rgba(244, 244, 245, 0.10);
  --honey: #fbe900;

  --shadow: 0 18px 52px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.50);

  --r-lg: 18px;
  --r-pill: 999px;

  --max: 1240px;
}

/* -------------------------
   Base
------------------------- */
* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.92; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 22px;
}

/* -------------------------
   Background (NO NOISE)
   Unified vignette + subtle honey glow
------------------------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.035), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(251,233,0,0.12), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(251,233,0,0.08), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(0,0,0,0.85), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.30));
}

/* keep these nodes present but effectively disabled (no image request) */
.noise { display: none; }
.glow { display: none; }
.glow-a { display: none; }
.glow-b { display: none; }

/* -------------------------
   Header
------------------------- */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background-image: url("/img/og-watchhive.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.50),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.brand-name {
  font-weight: 680;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted2);
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(244, 244, 245, 0.06);
  color: var(--text);
}

.nav-cta {
  background: var(--honey);
  color: #0b0b0d;
  font-weight: 700;
}

/* -------------------------
   Hero (UNIFIED CANVAS)
------------------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 22px;
  align-items: start;
}

/* subtle “shared panel” behind BOTH columns (no split) */
.hero::before {
  content: "";
  position: absolute;
  inset: -18px -18px -12px -18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 40%, rgba(251,233,0,0.16), transparent 52%),
    radial-gradient(circle at 40% 10%, rgba(255,255,255,0.03), transparent 50%),
    linear-gradient(180deg, rgba(244,244,245,0.03), rgba(244,244,245,0.00));
  border: none;
  box-shadow: none;
  z-index: -1;
}

/* remove any “separate right side” feel */
.poster-wall { display: none; }

.hero-left { max-width: 680px; }

.kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted2);
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.9px;
}

.subhead {
  margin: 0 0 18px;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}

/* UPDATED: push CTA block down + add breathing room */
.cta-row {
  display: flex;
  gap: 14px;                 /* was 12px */
  flex-wrap: wrap;
  margin: 18px 0 16px;       /* was 0 0 14px */
}

/* -------------------------
   Buttons
------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;              /* was 44px */
  padding: 0 18px;           /* was 0 16px */
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(244, 244, 245, 0.04);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform 0.12s ease, background 0.12s ease, opacity 0.12s ease;
  will-change: transform;
}

.btn:active { transform: scale(0.985); }

.btn-primary {
  background: var(--honey);
  color: #0b0b0d;
  border-color: rgba(251, 233, 0, 0.34);
}

.btn-secondary:hover {
  background: rgba(244, 244, 245, 0.08);
}

/* -------------------------
   Badges + micro
------------------------- */
.badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;          /* was 10px */
}

/* UPDATED: hide Google Play badge (2nd badge link) */
.badges .badge:nth-child(2) { display: none; }

.badge img { display: block; height: 46px; width: auto; }

.micro {
  margin-top: 14px;          /* was 12px */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;                 /* was 10px */
  font-size: 13px;
  color: var(--muted2);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(251, 233, 0, 0.92);
}

.sep { opacity: 0.55; }

/* -------------------------
   Phone (FRAMED / BORDERED — REVERTED)
   Updated: restores the “phone sits in a border” look
   while keeping the unified hero canvas
------------------------- */
.hero-right {
  position: relative;
  padding-top: 2px;
  min-height: 520px;
  display: flex;
  justify-content: flex-end;
}

.hero-right::before {
  content: none;
}

.phone {
  position: relative;
  width: min(380px, 100%);
  margin-left: auto;

  padding: 14px;
  border-radius: 44px;

  background: linear-gradient(
    180deg,
    rgba(244, 244, 245, 0.08),
    rgba(244, 244, 245, 0.03)
  );

  border: 1px solid rgba(244,244,245,0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);

  overflow: visible;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}

/* -------------------------
   Sections (kept tight)
------------------------- */
.section { padding-block: 44px; }

.section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -0.2px;
}

/* -------------------------
   Grids / cards
------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.card,
.tile {
  padding: 14px 14px 13px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(244, 244, 245, 0.028);
}

.card h3,
.tile h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: 0.1px;
}

.card p,
.tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

/* -------------------------
   Proof
------------------------- */
.proof {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(244, 244, 245, 0.03);
  padding: 16px;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote {
  margin: 0;
  border: 1px solid rgba(244, 244, 245, 0.10);
  border-radius: var(--r-lg);
  background: rgba(0, 0, 0, 0.20);
  padding: 14px;
}

.quote blockquote { margin: 0; line-height: 1.45; }
.quote figcaption { margin-top: 8px; font-size: 13px; color: var(--muted2); }

.logo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.logo-pill {
  font-size: 12px;
  color: var(--muted2);
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: var(--r-pill);
  background: rgba(244, 244, 245, 0.02);
}

/* -------------------------
   Email panel
------------------------- */
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(251, 233, 0, 0.18);
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(180deg, rgba(251, 233, 0, 0.10), rgba(244, 244, 245, 0.02));
  padding: 16px;
}

.cta-panel h2 { margin: 0 0 6px; }
.cta-panel p { margin: 0; color: var(--muted); }

.form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

input {
  height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.55);
  color: var(--text);
  min-width: 220px;
  outline: none;
}

input::placeholder { color: rgba(244, 244, 245, 0.45); }
input:focus { border-color: rgba(251, 233, 0, 0.34); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* -------------------------
   Footer
------------------------- */
.footer {
  margin-top: 18px;
  padding: 16px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.fine { margin: 10px 0 0; color: var(--muted2); font-size: 13px; }

.footer-links {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: var(--muted2);
  font-size: 14px;
}

.footer-links a:hover { color: var(--text); }

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 980px) {
  .nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }

  .hero::before {
    inset: -14px -14px -10px -14px;
    border-radius: 24px;
  }

  .hero-right {
    order: -1;
    min-height: auto;
    justify-content: center;
  }

  .hero-right::before {
    inset: 10px 0 10px 0;
  }

  .phone { margin: 0 auto; width: min(420px, 100%); }

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

  .grid-3, .grid-6 { grid-template-columns: 1fr; }

  .section { padding-block: 36px; }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .form {
    width: 100%;
    justify-content: flex-start;
  }

  input { flex: 1; min-width: 180px; }
}

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