/* HotClip — production styles (redesign) */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #090b0a;
  --bg-2: #0d100e;
  --surface: rgba(255,255,255,0.025);
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text: #e8ece9;
  --muted: #9aa39d;
  --dim: #6b756e;
  --faint: #4f574f;
  --accent: #ffb02e;
  --accent-soft: rgba(255,176,46,0.06);
  --accent-border: rgba(255,176,46,0.25);
  --max: 1160px;
  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --serif: 'Newsreader', Georgia, serif;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
::selection { background: rgba(255,176,46,0.25); }
h1, h2, h3, p { margin: 0; text-wrap: pretty; }
kbd {
  font-family: -apple-system, var(--mono);
  color: #cfd6d1;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 7px;
  line-height: 1;
}

/* ---------- NAV ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(9,11,10,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.brand:hover { color: var(--text); }
.brand-mark img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a { font-size: 14.5px; color: var(--muted); }
.nav-links > a:hover { color: var(--text); }
.nav-download {
  font-size: 14px; font-weight: 600; color: #090b0a !important;
  background: var(--text); padding: 9px 20px; border-radius: 100px;
  transition: background 0.15s;
}
.nav-download:hover { background: var(--accent); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: 96px 48px 80px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px;
  align-items: center;
}
.hero-glow {
  position: absolute; top: -180px; left: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,176,46,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.hero-copy { position: relative; display: flex; flex-direction: column; gap: 24px; }
.eyebrow {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  border: 1px solid var(--accent-border); background: var(--accent-soft);
  padding: 6px 14px; border-radius: 100px;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: 64px; line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; }
.lede { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 44ch; }
.actions { display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.download-button {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 16.5px; font-weight: 600; color: #090b0a !important;
  background: var(--accent); padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255,176,46,0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.download-button:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(255,176,46,0.36); }
.download-button svg { width: 18px; height: 18px; }
.compatibility { font-size: 13px; color: var(--dim); line-height: 1.5; }
.compatibility strong { color: var(--muted); font-weight: 500; }
.compatibility.center { display: block; margin-top: 4px; position: relative; }
.formats { display: flex; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.formats-label { font-size: 12.5px; color: var(--dim); }
.chip {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1); padding: 5px 13px; border-radius: 6px;
}

/* hero visual */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.popover {
  width: 340px;
  background: rgba(24,27,25,0.9); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden; backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.popover-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
}
.popover-id { display: flex; align-items: center; gap: 10px; }
.mini-mark img { width: 22px; height: 22px; border-radius: 6px; }
.popover-id strong { display: block; font-size: 13.5px; font-weight: 600; }
.popover-id small { font-size: 11px; color: var(--dim); }
.status-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: #7dd4a0;
}
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: #7dd4a0; }
.clip-list { padding: 8px; }
.clip-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 9px; transition: background 0.12s;
}
.clip-row:hover { background: rgba(255,255,255,0.05); }
.clip-icon {
  flex-shrink: 0; width: 22px; height: 22px; display: grid; place-items: center;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--accent);
  background: rgba(255,176,46,0.1); border: 1px solid rgba(255,176,46,0.2); border-radius: 6px;
}
.clip-row > div { min-width: 0; }
.clip-row strong { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.clip-row small { font-size: 11.5px; color: var(--dim); }
.popover-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--dim);
}
.popover-foot span { display: inline-flex; align-items: center; gap: 5px; }
.update-card {
  width: 340px; display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; background: var(--accent-soft);
  border: 1px solid rgba(255,176,46,0.22); border-radius: 13px;
}
.update-ic {
  flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 9px; background: rgba(255,176,46,0.12); color: var(--accent);
}
.update-ic svg { width: 17px; height: 17px; }
.update-tag { font-size: 12px; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; }
.update-card strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); }
.update-card small { font-size: 11.5px; color: var(--dim); }

/* ---------- PROOF STRIP ---------- */
.proof-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
}
.proof-strip > div {
  padding: 26px 24px; border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.proof-strip span { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.proof-strip strong { font-size: 14.5px; font-weight: 600; line-height: 1.35; color: var(--text); }

/* wrapper needed because proof-strip is both bordered section and grid */
.proof-strip { position: relative; }

/* ---------- SECTION COPY ---------- */
.section-copy { max-width: 640px; display: flex; flex-direction: column; gap: 16px; }
.section-copy h2 { font-size: 40px; line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; }
.section-copy > p { font-size: 17px; line-height: 1.6; color: var(--muted); }

/* ---------- WHY ---------- */
.why-section {
  max-width: var(--max); margin: 0 auto; padding: 96px 48px;
  display: flex; flex-direction: column; gap: 56px;
}
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.capability-grid article { background: var(--bg-2); padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.capability-grid span { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.capability-grid h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.capability-grid p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ---------- FEATURES ---------- */
.features-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0b0e0c 0%, var(--bg) 100%);
}
.features-section { padding: 96px 48px; }
.features-section > .section-copy { max-width: 640px; margin: 0 auto 56px; }
.feature-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article {
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 26px 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  transition: border-color 0.15s, background 0.15s;
}
.feature-grid article:hover { border-color: rgba(255,176,46,0.3); background: rgba(255,176,46,0.03); }
.feature-grid .tag {
  align-self: flex-start; font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1); padding: 4px 11px; border-radius: 5px;
}
.feature-grid h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px; }
.feature-grid p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ---------- DOWNLOAD ---------- */
.download-section {
  position: relative; border-top: 1px solid var(--border);
  padding: 110px 48px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 22px;
}
.download-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,176,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.download-section .eyebrow,
.download-section h2,
.download-section > p,
.download-section .download-button,
.download-section .compatibility { position: relative; }
.download-section h2 { font-size: 44px; line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; }
.download-section > p { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 52ch; }
.download-section .download-button { margin-top: 10px; padding: 16px 34px; }

/* ---------- FAQ ---------- */
.faq-section { max-width: 820px; margin: 0 auto; padding: 96px 48px; border-top: 1px solid var(--border); }
.faq-section .section-copy { margin-bottom: 44px; gap: 14px; }
.faq-section h2 { font-size: 36px; letter-spacing: -0.025em; font-weight: 700; }
.faq-list { display: flex; flex-direction: column; }
.faq-list article {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 26px 4px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
}
.faq-list h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.faq-list p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--border); }
.footer-top {
  max-width: var(--max); margin: 0 auto; padding: 44px 48px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.footer-brand .brand { font-size: 15px; }
.footer-brand .brand-mark img { width: 24px; height: 24px; }
.footer-brand > p { font-size: 13px; line-height: 1.6; color: var(--dim); }
.made-by { color: var(--dim); }
.made-by a { color: var(--muted); font-weight: 500; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.col-title { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.footer-cols a { font-size: 13.5px; color: var(--muted); }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--max); margin: 0 auto; padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom span:first-child { font-size: 12.5px; color: var(--faint); }
.footer-bottom .disclaimer { font-size: 11.5px; line-height: 1.5; color: var(--faint); max-width: 620px; text-align: right; }
.footer-bottom a { color: var(--dim); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 72px 32px 64px; }
  .hero h1 { font-size: 52px; }
  .hero-visual { align-items: flex-start; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .proof-strip > div:nth-child(-n+2) { border-top: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section, .features-section, .faq-section { padding-left: 32px; padding-right: 32px; }
  .topbar { padding: 16px 32px; }
}
@media (max-width: 620px) {
  .topbar { padding: 14px 20px; }
  .nav-links { gap: 18px; }
  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: 40px; }
  .lede { font-size: 17px; }
  .popover, .update-card { width: 100%; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 20px; }
  .proof-strip > div { border-left: 0; border-top: 1px solid var(--border); }
  .proof-strip > div:first-child { border-top: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .section-copy h2 { font-size: 30px; }
  .download-section { padding: 72px 20px; }
  .download-section h2 { font-size: 32px; }
  .why-section, .features-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .faq-list article { grid-template-columns: 1fr; gap: 10px; }
  .footer-top, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .disclaimer { text-align: left; }
}
