@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --card: #ffffff;
  --line: #e7e9ee;
  --line-strong: #d4d8e0;
  --text: #14171c;
  --muted: #5d6470;
  --faint: #8a919e;
  --blue: #3b66f5;
  --cyan: #0aa8c9;
  --green: #17a56b;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; border-radius: 10px; color: #fff; background: var(--text); }
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: 100%;
  height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid transparent;
  background: var(--bg);
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 15px; }
.brand img { border-radius: 9px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--text); }
.site-nav .nav-download { padding: 10px 16px; color: #fff; border-radius: 10px; background: var(--text); }
.menu-button { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.menu-button span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: var(--text); }

.hero {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: auto;
  padding: 140px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--faint); font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { width: 22px; height: 1px; background: var(--blue); }
h1 { max-width: 560px; margin: 22px 0 22px; font-size: clamp(46px, 5.4vw, 74px); line-height: 1; letter-spacing: -.055em; }
h1 em { color: var(--blue); font-style: normal; }
.hero-lede { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; padding: 0 22px; align-items: center; justify-content: center; gap: 12px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: opacity .2s ease, border-color .2s ease; }
.button.primary { color: #fff; background: var(--text); }
.button.primary:hover { opacity: .85; }
.button.secondary { border: 1px solid var(--line-strong); color: var(--text); background: var(--bg); }
.button.secondary:hover { border-color: var(--text); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--faint); font-size: 12px; }
.hero-proof span { padding-right: 18px; border-right: 1px solid var(--line); }
.hero-proof span:last-child { border: 0; }
.hero-proof b { color: var(--text); font-weight: 600; }
.hero-demo { position: relative; align-self: center; justify-self: end; width: min(100%, 620px); }
.phone-shell { position: relative; padding: 10px; overflow: hidden; background: #101216; border-radius: 30px; box-shadow: 0 30px 70px rgba(20, 24, 34, .18), 0 2px 8px rgba(20, 24, 34, .10); }
.phone-shell.landscape { aspect-ratio: 2.172/1; }
.phone-shell img { width: 100%; height: 100%; object-fit: cover; border-radius: 21px; }
.phone-camera { position: absolute; z-index: 2; top: 50%; left: 15px; width: 18px; height: 64px; transform: translateY(-50%); border-radius: 14px; background: #05060a; }
.live-chip { position: absolute; right: 5%; bottom: -18px; padding: 11px 14px; display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 11px; font-weight: 600; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); box-shadow: 0 12px 30px rgba(20, 24, 34, .10); }
.live-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }


.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading h2, .demo-copy h2, .download-copy h2 { margin: 16px 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p, .demo-copy > p, .download-copy > p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.feature-wide { grid-column: span 2; min-height: 280px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 40px; }
.feature-number { color: var(--faint); font-family: "DM Mono", monospace; font-size: 11px; }
.feature-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); font-family: "DM Mono", monospace; }
.feature-card h3 { margin: 40px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.feature-wide h3 { margin-top: 18px; font-size: 27px; }
.feature-card p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; }
.mini-screen { height: 210px; padding: 16px; display: flex; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-soft); }
.mini-sidebar { width: 22%; border-radius: 8px 0 0 8px; background: #e3e6ec; }
.mini-window { position: relative; flex: 1; border-radius: 0 8px 8px 0; background: #ffffff; border-left: 1px solid var(--line); }
.mini-window::after { content: ""; position: absolute; inset: 30px 22px; border-radius: 8px; background: #eef0f4; }
.mini-window i { position: relative; z-index: 2; top: 10px; display: inline-block; width: 7px; height: 7px; margin-left: 4px; border-radius: 50%; background: #ff6b68; }
.mini-window i:nth-child(2) { background: #ffc75c; }.mini-window i:nth-child(3) { background: #58d38c; }


.setup-section { width: 100%; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); }
.steps { border-top: 1px solid var(--line); }
.step { padding: 27px 0; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); }
.step > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--text); border: 1px solid var(--line-strong); border-radius: 50%; font-family: "DM Mono", monospace; font-size: 11px; }
.step h3 { margin: 0 0 6px; font-size: 18px; }.step p { max-width: 640px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }.step code { color: var(--blue); font-family: "DM Mono", monospace; font-size: .92em; }
.copy-command { max-width: 355px; padding: 12px 13px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--text); background: var(--bg-soft); cursor: pointer; }.copy-command code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }.copy-command b { color: var(--blue); font-size: 10px; }
.setup-note { margin-top: 28px; padding: 22px 26px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 25px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-soft); }
.setup-note span { color: var(--blue); font-family: "DM Mono", monospace; font-size: 10px; text-transform: uppercase; }.setup-note p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }.setup-note a { font-size: 11px; font-weight: 700; white-space: nowrap; color: var(--text); }


.download-section { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); background: var(--bg-soft); }
.download-copy { max-width: 640px; }.download-copy img { margin-bottom: 24px; border-radius: 20px; box-shadow: 0 14px 36px rgba(20, 24, 34, .14); }
.download-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.download-card { min-height: 140px; padding: 22px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg); transition: transform .2s ease, border-color .2s ease; }.download-card:hover { transform: translateY(-3px); border-color: var(--text); }.platform-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: #eef1fb; font-family: "DM Mono", monospace; }.download-card div { display: flex; flex-direction: column; }.download-card small { color: var(--faint); font-family: "DM Mono", monospace; font-size: 8px; text-transform: uppercase; }.download-card strong { margin: 5px 0; font-size: 14px; }.download-card p { margin: 0; color: var(--muted); font-size: 10px; }.download-card > i { color: var(--blue); font-style: normal; }.source-card .platform-icon { font-size: 10px; }
.download-caveat { max-width: 780px; margin: 22px 0 0; color: var(--faint); font-size: 11.5px; line-height: 1.6; }

.faq-section { padding-top: 30px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; list-style: none; font-size: 16px; font-weight: 600; cursor: pointer; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary i { color: var(--faint); font-size: 22px; font-style: normal; font-weight: 300; transition: transform .2s ease; }.faq-list details[open] summary i { transform: rotate(45deg); }.faq-list details p { max-width: 780px; margin: -5px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.7; }

footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 52px 0 34px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; border-top: 1px solid var(--line); color: var(--faint); }.footer-brand { display: flex; align-items: center; gap: 12px; }.footer-brand img { border-radius: 12px; }.footer-brand div { display: flex; flex-direction: column; gap: 3px; }.footer-brand strong { color: var(--text); font-size: 14px; }.footer-brand span { font-size: 10px; }.footer-links { display: flex; gap: 24px; font-size: 11px; }.footer-links a:hover { color: var(--text); }footer > p { grid-column: span 2; margin: 0; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 130px; gap: 64px; }}

@media (max-width: 720px) {
  .site-header { padding: 0 18px; }.menu-button { display: block; }.site-nav { position: absolute; top: 68px; left: 0; right: 0; padding: 14px; display: none; flex-direction: column; align-items: stretch; gap: 4px; border-bottom: 1px solid var(--line); background: var(--bg); }.site-nav.open { display: flex; }.site-nav a { padding: 12px; }.site-nav .nav-download { margin-top: 5px; text-align: center; }
  .hero { padding: 120px 20px 70px; gap: 52px; }h1 { font-size: clamp(42px, 13vw, 60px); }.hero-lede { font-size: 15px; }.hero-actions { flex-direction: column; }.button { width: 100%; }.hero-proof { gap: 10px; }.hero-proof span { padding-right: 10px; }.phone-shell { padding: 7px; border-radius: 20px; }.phone-shell.landscape { border-radius: 20px; }.phone-shell img { border-radius: 14px; }.phone-camera { left: 10px; width: 12px; height: 44px; }
  .section { width: min(calc(100% - 36px), var(--max)); padding: 80px 0; }.section-heading { margin-bottom: 36px; }.section-heading h2, .demo-copy h2, .download-copy h2 { font-size: 34px; }.section-heading p, .demo-copy > p, .download-copy > p { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-wide { grid-column: auto; grid-template-columns: 1fr; }.feature-card { min-height: auto; padding: 24px; }.mini-screen { height: 170px; }  .setup-section { padding-inline: 18px; }.step { padding: 22px 0; grid-template-columns: 40px 1fr; gap: 14px; }.copy-command { grid-column: 1 / -1; max-width: 100%; }}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; } }
