:root {
  --night: #05070d;
  --night-2: #0a1020;
  --ink: #101216;
  --paper: #f7f7f1;
  --surface: #ffffff;
  --soft: #edf0e8;
  --line: #d8ddd2;
  --muted: #666d73;
  --blue: #125cff;
  --blue-dark: #0d43bd;
  --cyan: #56d4ff;
  --green: #44d18b;
  --amber: #f6b94a;
  --white: #fbfcff;
  --max: 1200px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overscroll-behavior: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-color: rgba(18, 92, 255, 0.38);
}

a:hover {
  text-decoration-color: currentColor;
}

button {
  font: inherit;
}

code {
  font-family: var(--mono);
  font-size: 0.94em;
}

::selection {
  background: var(--blue);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(86, 212, 255, 0.42);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 7, 13, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-row,
.footer-row {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #151c2c;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(251, 252, 255, 0.78);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding: 90px 0 0;
  background: var(--night);
  color: var(--white);
}

.hero-gridline {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(86, 212, 255, 0.25);
  border-radius: 999px;
  background: rgba(18, 92, 255, 0.13);
  color: rgba(251, 252, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
}

.hero-pill span {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(18, 92, 255, 0.54);
  color: #fff;
  font-weight: 800;
}

h1,
h2,
h3,
p,
li,
td,
th {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.95;
  font-weight: 860;
}

.hero-copy {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(251, 252, 255, 0.72);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.integration-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 58px;
}

.integration-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 252, 255, 0.78);
  font-size: 13px;
  font-weight: 720;
}

.product-stage {
  width: min(100%, 1120px);
  margin-top: 68px;
  padding: 0 0 92px;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  margin-inline: 0;
  padding: 28px 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0b0c10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.screenshot-frame {
  display: grid;
  justify-items: center;
}

.screenshot-frame img {
  width: min(100%, 390px);
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #2b2b2b;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.screenshot-copy {
  max-width: 600px;
}

.screenshot-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 60px);
}

.screenshot-copy p:not(.micro-label) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(251, 252, 255, 0.68);
  font-size: 18px;
}

.screenshot-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.screenshot-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(86, 212, 255, 0.18);
  border-radius: 999px;
  background: rgba(86, 212, 255, 0.08);
  color: rgba(251, 252, 255, 0.8);
  font-size: 13px;
  font-weight: 720;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0b0c10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.window-bar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101217;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2b3345;
}

.window-bar strong {
  min-width: 0;
  margin-left: 10px;
  color: rgba(251, 252, 255, 0.78);
  font-size: 13px;
  font-weight: 720;
}

.save-state {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.app-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 26px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #111318;
}

.app-sidebar span {
  padding: 10px 12px;
  border-radius: 7px;
  color: rgba(251, 252, 255, 0.54);
  font-size: 13px;
  font-weight: 720;
}

.app-sidebar .sidebar-title {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.app-sidebar .is-active {
  background: rgba(18, 92, 255, 0.18);
  color: #fff;
}

.app-main {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: #15161a;
}

.license-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #1c2029;
}

.micro-label,
.section-label,
.plan {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.license-panel h2,
.license-panel p {
  margin: 0;
}

.license-panel h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.license-panel p {
  margin-top: 10px;
  color: rgba(251, 252, 255, 0.66);
}

.license-panel code {
  padding: 12px 14px;
  border: 1px solid rgba(86, 212, 255, 0.22);
  border-radius: 7px;
  background: rgba(86, 212, 255, 0.08);
  color: var(--cyan);
}

.field-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.field-card {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #20232c;
}

.field-card span {
  color: rgba(251, 252, 255, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.field-card strong {
  color: rgba(251, 252, 255, 0.52);
  font-size: 13px;
}

.field-card.is-locked {
  border-color: rgba(68, 209, 139, 0.28);
  background: #182821;
}

.field-card.is-locked strong {
  color: var(--green);
}

.release-strip {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #0f1218;
  color: rgba(251, 252, 255, 0.66);
  font-size: 13px;
}

.release-strip strong {
  color: #fff;
}

.intro-section,
.section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.model-grid,
.release-grid,
.faq-grid,
.tools-grid,
.setup-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 74px;
  align-items: start;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.intro-copy {
  max-width: 680px;
}

.intro-copy p,
.sticky-copy p,
.release-grid p,
.section-head p,
.price-card p,
details p,
.small-note {
  color: var(--muted);
}

.intro-copy p:first-child,
.sticky-copy p:first-child,
.release-grid p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child,
.sticky-copy p:last-child,
.release-grid p:last-child {
  margin-bottom: 0;
}

.dark-section {
  background: var(--night-2);
  color: var(--white);
}

.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head {
  margin-bottom: 42px;
}

.section-head p {
  max-width: 680px;
  margin: 16px auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-grid article {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: #0e1424;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(18, 92, 255, 0.2);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
}

.feature-grid p {
  margin: 0;
  color: rgba(251, 252, 255, 0.64);
}

.workflow-section {
  background: var(--paper);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.workflow-grid article {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  background: var(--surface);
}

.workflow-grid span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #e8edff;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 850;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.sticky-copy p {
  max-width: 520px;
  margin-top: 22px;
  font-size: 18px;
}

.model-list {
  display: grid;
  gap: 16px;
}

.model-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.model-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.model-list h3 {
  max-width: 690px;
}

.controls-section {
  background: var(--surface);
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.control-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf7;
}

.control-grid h3,
.control-grid p {
  margin: 0;
}

.control-grid p {
  color: var(--muted);
}

.admin-tools-section {
  background: var(--night-2);
  color: var(--white);
}

.tools-grid p {
  max-width: 520px;
  color: rgba(251, 252, 255, 0.66);
}

.tool-list {
  display: grid;
  gap: 12px;
}

.tool-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0e1424;
}

.tool-list strong {
  color: #fff;
}

.tool-list span {
  color: rgba(251, 252, 255, 0.64);
}

.release-section {
  background: var(--soft);
}

.release-grid {
  align-items: center;
}

.release-visual {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.release-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 7px;
  background: #f3f5ee;
}

.release-line span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.release-line strong {
  min-width: 0;
  font-family: var(--mono);
  font-size: 14px;
}

.release-line em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.setup-section {
  background: var(--surface);
}

.setup-grid p {
  max-width: 540px;
  color: var(--muted);
}

.setup-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.setup-panels article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf7;
}

.setup-panels h3 {
  margin-bottom: 18px;
}

.setup-panels ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.fit-section {
  background: var(--night);
  color: var(--white);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 44px 64px;
  align-items: start;
}

.fit-card {
  max-width: 780px;
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.fit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 252, 255, 0.8);
  font-size: 13px;
  font-weight: 720;
}

.fit-note {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0;
  color: rgba(251, 252, 255, 0.62);
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-card.is-featured {
  border-color: rgba(18, 92, 255, 0.42);
  box-shadow: 0 24px 60px rgba(18, 92, 255, 0.12);
}

.price-card h3 {
  font-size: 42px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.price-card p {
  margin: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #333943;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.price-card .btn {
  width: 100%;
}

.small-note {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
}

.faq-section {
  background: var(--surface);
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 780;
}

details p {
  margin: 0;
  padding: 0 0 24px;
}

.site-footer {
  background: var(--night);
  color: rgba(251, 252, 255, 0.62);
  font-size: 14px;
}

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

  .hero {
    min-height: 0;
    padding-top: 68px;
  }

  .app-body,
  .screenshot-showcase,
  .intro-grid,
  .model-grid,
  .release-grid,
  .faq-grid,
  .tools-grid,
  .setup-grid,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .app-sidebar {
    display: none;
  }

  .screenshot-showcase {
    text-align: center;
  }

  .screenshot-copy {
    margin-inline: auto;
  }

  .screenshot-facts {
    justify-content: center;
  }

  .feature-grid,
  .workflow-grid,
  .control-grid,
  .pricing-grid,
  .field-board,
  .setup-panels {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-row {
    min-height: 64px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 64px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 46px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .integration-row {
    margin-top: 36px;
  }

  .product-stage {
    margin-top: 46px;
    padding-bottom: 58px;
  }

  .window-bar {
    grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  }

  .save-state {
    display: none;
  }

  .app-main,
  .screenshot-showcase,
  .license-panel,
  .feature-grid article,
  .workflow-grid article,
  .control-grid article,
  .setup-panels article,
  .model-list article,
  .price-card {
    padding: 20px;
  }

  .license-panel {
    grid-template-columns: 1fr;
  }

  .screenshot-frame img {
    width: min(100%, 320px);
  }

  .screenshot-copy p:not(.micro-label) {
    font-size: 16px;
  }

  .license-panel code,
  .release-line strong {
    overflow-wrap: anywhere;
  }

  .release-strip,
  .release-line {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .intro-section,
  .section {
    padding: 62px 0;
  }

  .feature-grid article {
    min-height: 0;
  }

  .workflow-grid article,
  .control-grid article {
    min-height: 0;
  }

  .tool-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
