:root {
  color-scheme: dark;
  --bg: #07100d;
  --panel: #0c1713;
  --panel-soft: rgba(13, 28, 23, 0.72);
  --line: rgba(181, 225, 208, 0.14);
  --line-strong: rgba(181, 225, 208, 0.24);
  --text: #effaf5;
  --muted: #91a79e;
  --green: #6ce1b3;
  --green-soft: rgba(108, 225, 179, 0.1);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); }
a { color: inherit; }
svg { display: block; }

.siteHeader {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
}

.brand, .footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 680;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img { width: 30px; height: 30px; }
.siteHeader nav { display: flex; gap: 28px; }
.siteHeader nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.siteHeader nav a:hover, .siteHeader nav a[aria-current="page"] { color: var(--text); }
.siteHeader nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
}

.hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 105px;
  text-align: center;
}

.heroGlow {
  position: absolute;
  top: -480px;
  left: 50%;
  width: 1050px;
  height: 850px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 213, 157, 0.2), rgba(16, 91, 65, 0.05) 45%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  max-width: 960px;
  margin: 21px 0;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero > p {
  position: relative;
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.heroAction { position: relative; margin-top: 34px; }
.heroDownload {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid rgba(128, 239, 196, 0.45);
  border-radius: 11px;
  background: linear-gradient(180deg, #76e7bb, #51c796);
  box-shadow: 0 15px 40px rgba(54, 186, 136, 0.18);
  color: #06150f;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.heroDownload:hover { transform: translateY(-2px); box-shadow: 0 19px 50px rgba(54, 186, 136, 0.26); }
.heroDownload svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.downloadMeta { margin-top: 12px; color: #6f857c; font-size: 11px; }

.appFrame {
  width: min(1240px, calc(100% - 32px));
  margin: -25px auto 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #0a0d11;
  box-shadow: 0 60px 150px rgba(0, 0, 0, 0.48), 0 0 80px rgba(62, 190, 140, 0.06);
}
.appFrame img { display: block; width: 100%; height: auto; }
.frameBar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #10151b;
}
.frameBar i { width: 9px; height: 9px; border-radius: 50%; background: #485159; }
.frameBar span { margin-left: 7px; color: #68737d; font-size: 10px; }

.featureIntro, .closingCta, .pageMain, .siteFooter {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.featureIntro { padding: 145px 0 45px; }
.featureIntro h2, .closingCta h2, .remoteExplainer h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(35px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.featureGrid {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.featureGrid article { min-height: 270px; padding: 32px; border-right: 1px solid var(--line); }
.featureGrid article:last-child { border-right: 0; }
.featureGrid article > span { color: var(--green); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.featureGrid h3 { margin: 64px 0 12px; font-size: 22px; letter-spacing: -0.03em; }
.featureGrid p, .closingCta p, .remoteExplainer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.closingCta { padding: 150px 0 165px; text-align: center; }
.closingCta h2, .closingCta p { margin-right: auto; margin-left: auto; }
.closingCta p { max-width: 660px; margin-top: 20px; margin-bottom: 30px; }

.inside {
  background:
    radial-gradient(circle at 50% -250px, rgba(47, 179, 128, 0.14), transparent 620px),
    var(--bg);
}
.pageMain { min-height: calc(100vh - 220px); padding-bottom: 130px; }
.pageHero { max-width: 820px; padding: 110px 0 75px; }
.pageHero.narrow { max-width: 670px; }
.pageHero h1, .prose h1 {
  margin: 18px 0;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.pageHero p { max-width: 660px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.releaseMeta { display: block; margin-top: 20px; color: #6f857c; font-size: 12px; }

.downloadColumns, .pricingGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.downloadColumns > div, .priceCard {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel-soft);
}
.platformTitle { display: grid; grid-template-columns: auto 1fr; gap: 0 12px; align-items: center; margin-bottom: 19px; }
.platformTitle svg { grid-row: span 2; width: 27px; fill: var(--text); }
.platformTitle h2 { margin: 0; font-size: 19px; }
.platformTitle span { color: var(--muted); font-size: 11px; }
.artifact {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
}
.artifact:hover, .artifact.recommended { border-color: rgba(108, 225, 179, 0.4); background: var(--green-soft); }
.artifact.unavailable { opacity: 0.5; }
.platformIcon svg { width: 22px; fill: currentColor; }
.artifactCopy { display: flex; min-width: 0; flex: 1; flex-direction: column; gap: 4px; }
.artifactCopy strong { font-size: 13px; }
.artifactCopy small { color: var(--muted); font-size: 10px; }
.artifactArrow { color: var(--green); font-size: 18px; }
.downloadFoot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 3px; color: var(--muted); font-size: 11px; }
.downloadFoot > a:first-child { color: var(--muted); }
.coffeeButton {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 221, 0, 0.33);
  border-radius: 8px;
  background: rgba(255, 221, 0, 0.08);
  color: #ffe66a;
  font-weight: 700;
  text-decoration: none;
}
.coffeeButton:hover { background: rgba(255, 221, 0, 0.14); }
.installNotes { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding-top: 50px; border-top: 1px solid var(--line); }
.installNotes h3 { margin: 0 0 8px; font-size: 15px; }
.installNotes p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.pricingGrid { align-items: stretch; }
.priceCard { display: flex; min-height: 530px; flex-direction: column; padding: 34px; }
.proCard { border-color: rgba(108, 225, 179, 0.4); box-shadow: inset 0 1px 0 rgba(108, 225, 179, 0.15); }
.priceCardHeader { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 16px; }
.priceCardHeader .coffeeButton { min-height: 34px; font-size: 11px; }
.priceName { color: var(--green); font-size: 12px; font-weight: 740; letter-spacing: 0.1em; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 25px 0 16px; }
.price strong { font-size: clamp(38px, 5vw, 55px); letter-spacing: -0.06em; }
.price span { color: var(--muted); font-size: 12px; }
.priceCard > p { min-height: 48px; margin: 0; color: var(--muted); line-height: 1.55; }
.priceCard ul { display: grid; gap: 13px; margin: 29px 0; padding: 0; list-style: none; }
.priceCard li { position: relative; padding-left: 23px; color: #c6d8d0; font-size: 13px; }
.priceCard li::before { position: absolute; left: 0; color: var(--green); content: "✓"; }
.priceCta {
  display: grid;
  min-height: 48px;
  place-items: center;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 720;
}
.priceCta.primaryCta { border-color: transparent; background: var(--green); color: #06150f; }
.priceCta.unavailable { color: var(--muted); }
.checkoutForm { display: flex; margin-top: auto; }
.checkoutForm .priceCta { width: 100%; margin: 0; cursor: pointer; font: inherit; }
.priceCard > small { margin-top: 12px; color: #6f857c; text-align: center; }
.remoteExplainer { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 70px; margin-top: 110px; padding: 75px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.remoteExplainer h2 { font-size: clamp(38px, 5vw, 58px); }
.faq { max-width: 820px; margin: 120px auto 0; }
.faq h2 { margin-bottom: 35px; font-size: 38px; letter-spacing: -0.04em; }
.faq details { padding: 20px 0; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 16px; font-weight: 650; }
.faq details p { max-width: 700px; margin: 14px 0 0; color: var(--muted); line-height: 1.65; }

.prose { max-width: 760px; padding: 110px 0 80px; }
.prose h1 { font-size: clamp(50px, 7vw, 78px); }
.prose h2 { margin: 45px 0 10px; font-size: 21px; letter-spacing: -0.025em; }
.prose p, .prose li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.prose a { color: var(--green); }
.inlineCta { display: inline-flex; padding: 12px 16px; border: 1px solid rgba(108, 225, 179, 0.4); border-radius: 8px; text-decoration: none; }
.licenseDelivery { margin: 28px 0 35px; }
.licenseKeyBox {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(108, 225, 179, 0.35);
  border-radius: 12px;
  background: var(--panel);
}
.licenseKeyBox[hidden] { display: none; }
.licenseKeyBox > span, .licenseKeyBox small { color: var(--muted); font-size: 12px; }
.licenseKeyBox code { overflow-wrap: anywhere; color: var(--text); font-size: clamp(15px, 3vw, 19px); font-weight: 750; }
.licenseKeyBox button {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green);
  cursor: pointer;
}

.siteFooter {
  display: grid;
  min-height: 130px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #687e75;
  font-size: 11px;
}
.footerBrand img { width: 23px; height: 23px; }
.footerLinks { display: flex; gap: 20px; }
.footerLinks a { text-decoration: none; }
.siteFooter > span { justify-self: end; }

@media (max-width: 760px) {
  .siteHeader { width: min(100% - 28px, 1180px); }
  .siteHeader nav { gap: 18px; }
  .hero { min-height: 570px; padding-top: 50px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .appFrame { width: calc(100% - 18px); border-radius: 9px; }
  .featureIntro { padding-top: 100px; }
  .featureGrid, .downloadColumns, .pricingGrid, .installNotes, .remoteExplainer { grid-template-columns: 1fr; }
  .featureGrid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .featureGrid article:last-child { border-bottom: 0; }
  .featureGrid h3 { margin-top: 40px; }
  .pageHero { padding-top: 75px; }
  .pageHero h1, .prose h1 { font-size: clamp(49px, 14vw, 70px); }
  .downloadFoot { align-items: flex-start; flex-direction: column; }
  .priceCard { min-height: 500px; }
  .remoteExplainer { gap: 28px; }
  .siteFooter { padding: 30px 0; grid-template-columns: 1fr auto; }
  .siteFooter > span { display: none; }
}

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