:root {
  color-scheme: dark;
  --bg: #090a0d;
  --panel: #111216;
  --panel-2: #17181d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f3f7;
  --muted: #858793;
  --accent: #6f91b8;
  --accent-bright: #9db7d2;
  --accent-2: #415f80;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(64, 91, 120, .18), transparent 28%),
    var(--bg);
  font-family: "Manrope", sans-serif;
}
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-thumb { border-radius: 8px; background: #314256; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  width: min(1240px, calc(100% - 48px));
  height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  transition: 180ms ease;
}
.site-header.scrolled {
  top: 12px;
  height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(10, 14, 20, .82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}
.wordmark { display: inline-flex; width: max-content; align-items: center; gap: 10px; }
.wordmark img { width: 34px; height: 34px; object-fit: contain; }
.wordmark span { font-size: 15px; font-weight: 800; letter-spacing: .18em; }
.site-header nav { display: flex; gap: 34px; }
.site-header nav a { color: #929dab; font-size: 12px; font-weight: 600; }
.site-header nav a:hover { color: #fff; }
.header-download {
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid rgba(143, 172, 204, .3);
  border-radius: 7px;
  color: #d8e5f1;
  background: rgba(143, 172, 204, .08);
  font-size: 11px;
  font-weight: 700;
}

main { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero::after {
  position: absolute;
  right: -22vw;
  bottom: 0;
  left: -22vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}
.hero-glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 52%;
  height: 72%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at 55% 50%, rgba(65,95,128,.17), transparent 70%);
  filter: blur(18px);
}
.hero-wordmark { margin-bottom:22px;font-size:42px;font-weight:700;letter-spacing:-.06em; }
.hero-wordmark span { color:var(--accent); }
.eyebrow, .section-copy > span, .feature-intro > span, .download-card > div > span {
  color: var(--accent);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .16em;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow i, .status-chip i { width: 6px; height: 6px; border-radius: 50%; background: #8faccc; box-shadow: 0 0 16px #8faccc; }
.hero h1 {
  margin: 25px 0 22px;
  font-size: clamp(62px, 8vw, 110px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .92;
}
.hero h1 span { color: var(--accent); }
.hero-copy > p { max-width: 570px; color: #909aa7; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.primary-cta, .secondary-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}
.primary-cta { gap:10px;padding:0 21px;color:#10161d;background:#a8bfd5;box-shadow:0 13px 40px rgba(100,133,169,.18);transition:transform 160ms ease,filter 160ms ease; }
.primary-cta:hover { transform:translateY(-2px);filter:brightness(1.06); }
.primary-cta:active,.secondary-cta:active,.header-download:active { transform:translateY(0) scale(.98); }
.secondary-cta,.header-download { transition:transform 160ms ease,border-color 160ms ease,color 160ms ease; }
.secondary-cta:hover,.header-download:hover { transform:translateY(-2px);border-color:rgba(111,145,184,.34);color:#fff; }
.primary-cta svg, .download-card a svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.secondary-cta { padding: 0 20px; border: 1px solid var(--line); color: #b5bec8; background: rgba(255,255,255,.025); }
.hero-copy > small { display: block; margin-top: 17px; color: #59636e; font: 400 9px "DM Mono", monospace; }
.hero-vex { position: relative; display: grid; min-height: 530px; place-items: center; }
.hero-vex .orb { display:none; }
.hero-vex::before { position:absolute;inset:12% 4%;background:radial-gradient(ellipse at 50% 50%,rgba(111,145,184,.15),transparent 70%);filter:blur(20px);content:""; }
.hero-vex > img { position:relative;z-index:1;width:min(480px,100%);image-rendering:pixelated;filter:drop-shadow(0 36px 38px rgba(0,0,0,.5));transition:transform 240ms ease,filter 240ms ease; }
.hero-vex:hover > img { transform:translateY(-5px);filter:drop-shadow(0 42px 42px rgba(0,0,0,.55)); }
.status-chip { position: absolute; right: 6%; bottom: 18%; display: flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 6px; color: #8e9baa; background: rgba(11,15,21,.85); font: 500 8px "DM Mono", monospace; letter-spacing: .12em; }

.launcher-section { padding: 130px 0; }
.section-copy { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 50px; opacity: 0; transform: translateY(18px); transition: .6s ease; }
.section-copy h2, .feature-intro h2, .download-card h2 { margin: 16px 0 0; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.055em; line-height: 1.05; }
.section-copy p { max-width: 470px; justify-self: end; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.launcher-window {
  display: grid;
  min-height: 650px;
  grid-template-columns: 215px 1fr;
  overflow: hidden;
  border: 1px solid rgba(154,184,215,.18);
  border-radius: 16px;
  opacity: 0;
  background: #0b0e13;
  box-shadow: 0 55px 120px rgba(0,0,0,.42);
  transform: perspective(1200px) rotateX(2deg) translateY(20px);
  transition: .8s ease;
}
.launcher-shot { position:relative;display:block;min-height:0;overflow:hidden;padding:8px;background:var(--panel);transition:transform 220ms ease,box-shadow 220ms ease,border-color 220ms ease; }
.launcher-shot:hover { transform:translateY(-4px);border-color:rgba(111,145,184,.25);box-shadow:0 58px 125px rgba(0,0,0,.48); }
.launcher-shot > img { position:relative;z-index:1;display:block;width:100%;border-radius:10px; }
.preview-glow { display:none; }
.window-sidebar { display: flex; flex-direction: column; padding: 25px 18px; border-right: 1px solid var(--line); background: #0d1117; }
.mini-brand { display: flex; align-items: center; gap: 9px; margin: 0 8px 35px; font-size: 11px; letter-spacing: .14em; }
.mini-brand img { width: 28px; height: 28px; object-fit: contain; }
.mini-nav { display: flex; align-items: center; gap: 13px; margin-bottom: 5px; padding: 11px 12px; border-radius: 6px; color: #697380; font-size: 10px; font-weight: 600; }
.mini-nav i { width: 15px; font-style: normal; text-align: center; }
.mini-nav.active { color: #cdd9e5; background: rgba(121,153,187,.1); }
.mini-spacer { flex: 1; }
.mini-profile { display: flex; align-items: center; gap: 10px; padding: 12px 8px 0; border-top: 1px solid var(--line); }
.mini-profile img { width: 29px; height: 29px; border-radius: 6px; image-rendering: pixelated; }
.mini-profile span, .mini-profile b, .mini-profile small { display: block; }
.mini-profile b { font-size: 9px; }.mini-profile small { margin-top: 3px; color: #59636e; font-size: 7px; }
.window-main { min-width: 0; }
.window-bar { display: flex; height: 62px; align-items: center; justify-content: flex-end; gap: 9px; padding: 0 24px; border-bottom: 1px solid var(--line); }
.window-bar span { width: 8px; height: 8px; border: 1px solid #43505d; border-radius: 50%; }
.window-content { padding: 50px 55px; }
.ready-label { color: #697482; font: 500 8px "DM Mono", monospace; letter-spacing: .16em; }
.client-card { position: relative; display: grid; min-height: 270px; grid-template-columns: 1fr 1fr; overflow: hidden; margin-top: 20px; border: 1px solid rgba(143,172,204,.15); border-radius: 10px; background: linear-gradient(120deg,#111821,#182331); }
.client-card::before { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(143,172,204,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(143,172,204,.09) 1px,transparent 1px); background-size: 36px 36px; content: ""; }
.card-copy { position: relative; z-index: 1; padding: 38px; }
.card-copy h3 { margin: 0; font-size: 46px; letter-spacing: -.06em; }.card-copy h3 span { color: var(--accent); }
.card-copy > p { color: #768392; font: 500 8px "DM Mono",monospace; }
.card-copy button { display: flex; width: 245px; height: 51px; align-items: center; gap: 13px; margin-top: 27px; padding: 0 16px; border: 0; border-radius: 6px; color: #111820; background: #9fb7ce; text-align: left; }
.card-copy button span,.card-copy button b,.card-copy button small { display:block; }.card-copy button b { font-size:9px; }.card-copy button small { margin-top:2px;font-size:7px;opacity:.65; }
.client-card > img { position: absolute; z-index: 1; right: -4%; width: 58%; height: 100%; object-fit: contain; image-rendering: pixelated; filter: drop-shadow(0 20px 28px rgba(0,0,0,.45)); }
.setup-head { display: flex; align-items: center; justify-content: space-between; margin: 34px 0 15px; }.setup-head b { font-size: 12px; }.setup-head span { color: #778493; font-size: 8px; }
.setup-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.setup-grid article { display: flex; min-height: 100px; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: #10151b; }
.setup-grid article > strong { display:grid;width:35px;height:35px;place-items:center;border:1px solid rgba(143,172,204,.2);border-radius:6px;color:var(--accent);background:rgba(143,172,204,.07);font-size:10px; }
.setup-grid article span,.setup-grid article b,.setup-grid article small { display:block; }.setup-grid article b { font-size:9px; }.setup-grid article small { margin-top:4px;color:#687481;font-size:7px; }
.new-setup { opacity:.6; }

.features { padding: 120px 0 150px; }
.feature-intro { margin-bottom: 42px; opacity: 0; transform: translateY(18px); transition: .6s ease; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.feature-grid article { min-height: 240px; padding: 29px; border: 1px solid var(--line); border-radius: 11px; opacity: 0; background: linear-gradient(145deg,rgba(143,172,204,.04),transparent 60%),#0e131a; transform: translateY(18px); transition: .6s ease; }
.feature-grid article:hover { transform:translateY(-5px)!important;border-color:rgba(111,145,184,.28);background:linear-gradient(145deg,rgba(111,145,184,.09),transparent 62%),var(--panel); }
.feature-grid article:nth-child(2) { transition-delay: .08s; }.feature-grid article:nth-child(3) { transition-delay: .16s; }.feature-grid article:nth-child(4) { transition-delay: .24s; }
.feature-icon { display:grid;width:36px;height:36px;place-items:center;border:1px solid rgba(143,172,204,.18);border-radius:7px;color:var(--accent);font:500 8px "DM Mono",monospace;background:rgba(143,172,204,.06); }
.feature-grid h3 { margin: 43px 0 12px; font-size: 17px; }.feature-grid p { max-width:480px;margin:0;color:var(--muted);font-size:12px;line-height:1.75; }
.download-card { position:relative;display:grid;min-height:300px;place-items:center;margin-bottom:100px;padding:54px;overflow:hidden;border:1px solid var(--line);border-radius:12px;opacity:0;background:var(--panel);text-align:center;transform:translateY(18px);transition:.7s ease; }
.download-card::before { position:absolute;inset:0;background:radial-gradient(ellipse at 50% 45%,rgba(65,95,128,.13),transparent 64%);content:"";pointer-events:none; }
.download-card > div,.download-card > a { position:relative;z-index:1; }
.download-card p { max-width:480px;margin:14px auto 26px;color:var(--muted);font-size:14px; }
.download-card a { display:flex;min-width:270px;align-items:center;justify-content:center;gap:14px;padding:17px 22px;border-radius:7px;color:#111820;background:#a8bfd5;transition:transform 160ms ease,filter 160ms ease; }
.download-card a:hover { transform:translateY(-2px);filter:brightness(1.05); }
.download-card a svg { width:20px; }.download-card a span,.download-card a b,.download-card a small { display:block; }.download-card a b { font-size:11px; }.download-card a small { margin-top:3px;font-size:8px;opacity:.65; }
.visible { opacity: 1 !important; transform: none !important; }
footer { display:flex;width:min(1240px,calc(100% - 48px));min-height:100px;align-items:center;justify-content:space-between;margin:0 auto;border-top:1px solid var(--line);color:#59636f;font-size:9px; }
footer .wordmark img { width:27px;height:27px; }footer .wordmark span { color:#8c98a5;font-size:11px; }footer p { margin:0; }

@media (max-width: 900px) {
  .site-header nav { display:none; }
  .site-header { grid-template-columns:1fr 1fr; }
  .hero { grid-template-columns:1fr; padding-top:130px; text-align:center; }
  .hero-copy > p { margin-inline:auto; }.hero-actions { justify-content:center; }.eyebrow { justify-content:center; }
  .hero-vex { min-height:430px; }
  .section-copy { grid-template-columns:1fr;gap:24px;text-align:center; }.section-copy p { justify-self:center; }
  .launcher-window { min-height:0; }.window-sidebar { padding-inline:10px; }.mini-brand b,.mini-nav:not(.active),.mini-nav span,.mini-profile span { display:none; }.mini-brand { margin-inline:auto; }.mini-brand img { width:34px;height:34px; }.mini-nav.active { justify-content:center; }.mini-profile img { margin:auto; }
  .window-content { padding:35px 28px; }.setup-grid { grid-template-columns:1fr 1fr; }.setup-grid article:last-child { display:none; }
}
@media (max-width: 650px) {
  main,.site-header,footer { width:calc(100% - 28px); }
  .hero { min-height:720px; }.hero h1 { font-size:58px; }.hero-copy > p { font-size:14px; }.hero-actions { flex-direction:column; }.primary-cta,.secondary-cta { width:100%; }
  .hero-vex { min-height:330px; }.status-chip { display:none; }
  .launcher-section,.features { padding-block:90px; }.launcher-window { min-height:0; }.window-sidebar { display:none; }.window-bar { height:48px; }.window-content { padding:28px 18px; }.client-card { min-height:225px; }.card-copy { padding:26px 20px; }.card-copy h3 { font-size:38px; }.card-copy button { width:190px; }.client-card > img { right:-15%;width:70%;opacity:.7; }.setup-grid { grid-template-columns:1fr; }.setup-grid article:nth-child(2) { display:none; }
  .feature-grid { grid-template-columns:1fr; }.feature-grid article { min-height:205px; }.download-card { flex-direction:column;gap:35px;padding:38px 25px;text-align:center; }.download-card a { min-width:100%; }
  footer { flex-direction:column;gap:15px;padding:30px 0;text-align:center; }
}

/* Match the native launcher's quieter blue-gray visual system. */
.noise,
.eyebrow,
.status-chip {
  display: none;
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(58px, 7.2vw, 96px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .96;
}

.hero-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.header-download,
.secondary-cta,
.launcher-window,
.feature-grid article,
.download-card {
  border-color: var(--line);
}

.primary-cta,
.download-card a {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
}

.launcher-window {
  background: var(--bg);
}

.window-sidebar {
  background: #0d0e12;
}

.client-card {
  background: linear-gradient(120deg, #111216, #17181d);
}

.section-copy h2,
.feature-intro h2,
.download-card h2 {
  margin-top: 0;
  font-weight: 600;
}

.mini-profile b,
.setup-grid article b {
  font-size: 11px;
}

.mini-profile small,
.setup-grid article small,
.setup-head span {
  color: var(--muted);
  font-size: 9px;
}

.ready-label {
  color: #777984;
  font-size: 10px;
  letter-spacing: .1em;
}

footer {
  color: #777984;
  font-size: 11px;
}
