@charset "UTF-8";

:root {
  color-scheme: dark;
  --background: #101013;
  --surface: #18181e;
  --text: #f4f2f9;
  --muted: #a6a3b3;
  --line: #303037;
  --accent: #c3a1ff;
  --accent-strong: #8952d9;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: #694496;
  color: #fff;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 10;
  top: -100px;
  left: 12px;
  padding: 16px;
  background: var(--text);
  color: var(--background);
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 90px;
  max-width: 1440px;
  padding-inline: 48px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.brand img {
  border-radius: 9px;
}
.beta {
  margin-left: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 6px;
  border-radius: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a,
.header-signin {
  font-size: 14px;
}
nav a {
  color: var(--muted);
  padding-block: 16px;
}
nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent);
}
.header-signin {
  border: 1px solid #44414d;
  padding: 11px 15px;
  border-radius: 6px;
}
.header-signin span {
  margin-left: 15px;
  color: var(--muted);
}
.header-signin:hover {
  background: #25222e;
  border-color: var(--accent);
}
.hero {
  position: relative;
  padding: 70px 24px 52px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 100%, #35244955, transparent 68%);
}
.eyebrow {
  font:
    12px/1.6 "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 2px;
  color: var(--accent);
}
.bracket {
  font-size: 16px;
  margin: 0 12px;
  color: #827089;
}
h1 {
  font-size: clamp(48px, 6.4vw, 86px);
  font-weight: 550;
  letter-spacing: -4px;
  line-height: 1.08;
  margin-top: 22px;
}
h1 span {
  color: var(--accent);
}
.hero-copy {
  color: #b5b1c1;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 23px;
}
.hero-actions,
.access-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px 21px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button-primary {
  background: #bc94f7;
  color: #1d102e;
  border: 1px solid #ceaeff;
  box-shadow: inset 0 1px 0 #e4d0ff;
}
.button-primary:hover {
  background: #d2b5ff;
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  font-size: 15px;
  padding-block: 12px;
}
.product-section {
  position: relative;
}
.product-frame {
  background: #171719;
  border: 1px solid #4d3b61;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 80px #9e56ec0c,
    0 30px 70px #0005;
}
.product-toolbar {
  background: #1e1c23;
  padding: 12px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #37313e;
}
.preview-label,
.preview-version {
  font:
    12px/1.6 Consolas,
    monospace;
  letter-spacing: 1px;
  color: #c3bacf;
}
.preview-mark {
  color: var(--accent);
  margin-right: 7px;
}
.preview-version {
  color: #97909f;
}
.view-controls {
  display: flex;
  gap: 4px;
}
.view-button {
  color: #b6adbf;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 8px 13px;
  background: transparent;
  font-size: 14px;
  min-height: 38px;
}
.view-button:hover {
  background: #292330;
  color: #fff;
}
.view-button[aria-pressed="true"] {
  color: #dec8ff;
  background: #382a46;
  border-color: #695077;
}
.view-button:focus-visible {
  outline-offset: 1px;
}
figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #191a1c;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  color: #b8b1c2;
  font-size: 14px;
  line-height: 1.5;
}
.example-label {
  color: #a39aaa;
  font-size: 12px;
  white-space: nowrap;
}
.tools-line {
  padding: 34px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.tools-line > p {
  font:
    12px/1.8 Consolas,
    monospace;
  color: #a7a0b2;
  letter-spacing: 1px;
  max-width: 110px;
}
.tools-line ul {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tools-line li {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.5px;
  color: #d1cdd9;
}
.tools-line > span {
  font-size: 12px;
  color: var(--muted);
  max-width: 115px;
  line-height: 1.7;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.workflow-section {
  padding-block: 110px 100px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px 80px;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
}
h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.13;
}
.section-heading h2 span {
  color: #93909e;
}
.section-heading > p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 365px;
  align-self: end;
  padding-bottom: 4px;
}
.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(150deg, #1b191f, #141417);
}
.feature {
  padding: 30px 28px 34px;
}
.feature + .feature {
  border-left: 1px solid var(--line);
}
.feature-number {
  display: block;
  font:
    12px/1.6 Consolas,
    monospace;
  letter-spacing: 1px;
  color: #a39ba9;
}
.feature svg {
  display: block;
  width: 39px;
  height: 39px;
  stroke: var(--accent);
  stroke-width: 1.6;
  margin: 33px 0 22px;
}
h3 {
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.feature p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 13px;
}
.local-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  padding-block: 70px 84px;
  border-block: 1px solid var(--line);
}
.local-heading h2 {
  margin-block: 20px 25px;
}
.local-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 380px;
}
.local-details article {
  display: flex;
  gap: 23px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.local-details article:first-child {
  padding-top: 0;
}
.local-details article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.local-details article > span {
  font:
    12px/2.3 Consolas,
    monospace;
  color: var(--accent);
}
.local-details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 9px;
}
.access-section {
  padding-block: 100px 105px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.access-intro h2 {
  margin-top: 20px;
  font-size: clamp(34px, 3.4vw, 45px);
}
.access-intro > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 23px;
  max-width: 430px;
}
.access-actions {
  justify-content: start;
  flex-wrap: wrap;
  gap: 18px;
}
.questions {
  padding-top: 5px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 23px;
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  padding: 0 30px 24px 0;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-block: 32px;
}
.site-footer .brand {
  font-size: 17px;
}
.site-footer p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.site-footer > a:not(.brand) {
  font-size: 14px;
}
.site-footer > span {
  color: var(--muted);
  font-size: 12px;
}

@media (min-width: 1600px) {
  .hero {
    padding-top: 88px;
  }
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .site-header {
    padding-inline: 24px;
  }
  nav {
    gap: 22px;
  }
  .preview-version {
    display: none;
  }
  .tools-line {
    gap: 25px;
  }
  .tools-line > span {
    display: none;
  }
  .section-heading {
    gap: 20px 40px;
  }
  .local-section,
  .access-section {
    gap: 42px;
  }
  .feature {
    padding: 25px 22px;
  }
  .site-footer {
    gap: 22px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    padding: 18px 20px 12px;
    gap: 18px 12px;
  }
  .site-header .brand {
    font-size: 17px;
    gap: 8px;
  }
  .site-header .brand img {
    width: 28px;
    height: 28px;
  }
  .site-header .beta {
    display: none;
  }
  .header-signin {
    font-size: 13px;
    padding: 9px 10px;
  }
  .header-signin span {
    margin-left: 6px;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 34px;
  }
  nav a {
    padding-block: 4px;
  }
  .hero {
    padding: 48px 18px 36px;
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
  }
  .bracket {
    margin-inline: 4px;
  }
  h1 {
    font-size: clamp(40px, 8.6vw, 60px);
    letter-spacing: -2px;
    line-height: 1.12;
    margin-top: 22px;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 22px;
    max-width: 420px;
    margin-inline: auto;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 12px 24px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .button {
    padding: 14px 17px;
    font-size: 14px;
  }
  .text-link {
    font-size: 14px;
  }
  .product-toolbar {
    justify-content: center;
    padding: 10px 8px;
  }
  .preview-label {
    display: none;
  }
  .view-controls {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }
  .view-button {
    min-height: 44px;
    padding: 8px 12px;
  }
  figcaption {
    padding: 14px 16px;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
  }
  .example-label {
    font-size: 12px;
  }
  .tools-line {
    flex-direction: column;
    align-items: stretch;
    padding-block: 26px;
    gap: 17px;
    text-align: center;
  }
  .tools-line > p {
    max-width: none;
  }
  .tools-line ul {
    justify-content: center;
    gap: 12px 25px;
    flex-wrap: wrap;
  }
  .tools-line li {
    font-size: 16px;
  }
  .workflow-section {
    padding-block: 65px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  h2 {
    font-size: 39px;
    letter-spacing: -1.7px;
  }
  .section-heading > p:last-child {
    font-size: 16px;
    max-width: 420px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .feature {
    padding: 25px;
  }
  .feature + .feature {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .feature svg {
    margin: 20px 0 18px;
  }
  .local-section {
    grid-template-columns: 1fr;
    padding-block: 50px;
    gap: 32px;
  }
  .local-heading > p:last-child {
    font-size: 16px;
  }
  .local-details article {
    gap: 17px;
  }
  .access-section {
    grid-template-columns: 1fr;
    padding-block: 60px;
    gap: 30px;
  }
  .access-intro h2 {
    font-size: 38px;
  }
  .access-intro > p:not(.eyebrow) {
    font-size: 16px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 20px;
    padding-block: 25px;
  }
  .site-footer p {
    flex: auto;
    font-size: 13px;
  }
  .site-footer > span {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
