:root {
  --primary: #5258ff;
  --primary-bright: #7378ff;
  --primary-soft: #a8aaff;
  --ink: #f7f7ff;
  --muted: #a7abc7;
  --bg: #080a18;
  --bg-elevated: #101326;
  --line: rgba(255, 255, 255, 0.1);
  --shell: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 8%, rgba(82, 88, 255, 0.15), transparent 29rem),
    linear-gradient(180deg, #080a18 0%, #090b19 45%, #070914 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .26;
}

.ambient-one {
  width: 26rem;
  height: 26rem;
  background: #5258ff;
  top: 18rem;
  right: -16rem;
}

.ambient-two {
  width: 20rem;
  height: 20rem;
  background: #712cff;
  top: 95rem;
  left: -14rem;
  opacity: .16;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 24, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.03em;
}

.brand img {
  border-radius: 11px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: #b8bbd1;
  font-size: 14px;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin-left: auto;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1.5px;
  background: white;
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  background: rgba(82, 88, 255, .13);
  border-color: rgba(115, 120, 255, .35);
  color: #e2e3ff;
}

.button-small svg {
  width: 17px;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #6e51ff);
  color: white;
  box-shadow: 0 16px 40px rgba(82, 88, 255, .3), inset 0 1px rgba(255, 255, 255, .25);
}

.button-primary:hover {
  box-shadow: 0 20px 50px rgba(82, 88, 255, .42), inset 0 1px rgba(255, 255, 255, .25);
}

.button-ghost {
  border-color: var(--line);
  color: #d8daea;
  background: rgba(255, 255, 255, .025);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .05);
}

.hero {
  min-height: 820px;
  padding-top: 155px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: .91fr 1.09fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aeb1cc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--primary-bright);
  box-shadow: 0 0 10px var(--primary);
}

.hero h1,
.section-heading h2,
.download-copy h2 {
  margin: 22px 0;
  line-height: .98;
  font-size: clamp(48px, 5.45vw, 76px);
  letter-spacing: -.065em;
  font-weight: 730;
}

.hero h1 span,
.section-heading h2 span {
  color: #898eff;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: #858aa8;
  font-size: 12px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #777cff;
  box-shadow: 0 0 9px #5258ff;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  position: relative;
}

.app-stage {
  width: 100%;
  position: relative;
  perspective: 1200px;
}

.capture-window {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  padding: 8px;
  background: rgba(19, 22, 44, .82);
  box-shadow: 0 46px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(82, 88, 255, .08);
  transform: rotateY(-4deg) rotateX(2deg);
  backdrop-filter: blur(14px);
}

.capture-scene {
  height: 385px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(145deg, #222947, #13172b 55%, #262a4b);
}

.capture-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, .025) 50%, transparent 50.5%), linear-gradient(transparent 49.5%, rgba(255, 255, 255, .025) 50%, transparent 50.5%);
  background-size: 42px 42px;
}

.scene-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  left: 20%;
  top: -38%;
  border-radius: 50%;
  background: rgba(96, 102, 255, .45);
  filter: blur(70px);
}

.scene-window {
  position: absolute;
  border: 1px solid rgba(180, 185, 232, .15);
  border-radius: 9px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
}

.scene-window-one {
  width: 42%;
  height: 64%;
  left: 7%;
  top: 16%;
}

.scene-window-two {
  width: 34%;
  height: 38%;
  right: 6%;
  bottom: 10%;
}

.selection-frame {
  position: absolute;
  z-index: 3;
  left: 17%;
  top: 21%;
  width: 65%;
  height: 56%;
  border: 2px solid rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 999px rgba(2, 3, 12, .48);
}

.handle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.handle-tl {
  left: -6px;
  top: -6px;
}

.handle-tr {
  right: -6px;
  top: -6px;
}

.handle-bl {
  left: -6px;
  bottom: -6px;
}

.handle-br {
  right: -6px;
  bottom: -6px;
}

.annotation-arrow {
  position: absolute;
  width: 35%;
  height: 3px;
  left: 13%;
  top: 39%;
  background: #ff547d;
  transform: rotate(16deg);
  border-radius: 9px;
  box-shadow: 0 0 12px rgba(255, 84, 125, .4);
}

.annotation-arrow i {
  position: absolute;
  right: -2px;
  top: -6px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #ff547d;
  border-right: 3px solid #ff547d;
  transform: rotate(45deg);
}

.annotation-note {
  position: absolute;
  right: 11%;
  bottom: 17%;
  color: white;
  font-size: 13px;
  font-weight: 650;
  background: rgba(82, 88, 255, .8);
  border-radius: 6px;
  padding: 6px 9px;
}

.editor-toolbar {
  position: absolute;
  z-index: 6;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  gap: 5px;
  padding: 7px;
  border-radius: 10px;
  color: #25283a;
  background: rgba(249, 250, 253, .96);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .34);
}

.editor-toolbar span {
  padding: 7px 8px;
  font-size: 9px;
  font-weight: 680;
  border: 1px solid #dfe1ea;
  border-radius: 6px;
}

.editor-toolbar .tool-active {
  background: #e2e4ff;
  border-color: #aeb1ff;
  color: #464bda;
}

.editor-toolbar .save-tool {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.color-loupe {
  position: absolute;
  z-index: 7;
  width: 114px;
  height: 142px;
  right: 3%;
  top: 4%;
}

.pixel-grid {
  width: 114px;
  height: 114px;
  border: 3px solid white;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, .25) 11px 12px), repeating-linear-gradient(90deg, transparent 0 11px, rgba(255, 255, 255, .25) 11px 12px), linear-gradient(135deg, #2e3678, #6f75ff 50%, #dde0ff 51%, #6970fa);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
}

.loupe-target {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  left: 51px;
  top: 51px;
}

.loupe-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100px;
  margin: -2px auto 0;
  padding: 5px;
  border: 1px solid #d5d8e5;
  border-radius: 7px;
  background: white;
  color: #202338;
  font: 700 10px Consolas, monospace;
}

.loupe-value b {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  background: var(--primary);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(113, 118, 255, .16);
  border-radius: 50%;
}

.orbit-one {
  width: 570px;
  height: 570px;
}

.orbit-two {
  width: 440px;
  height: 440px;
  border-style: dashed;
  animation: rotate 28s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(14, 17, 35, .86);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .35);
  backdrop-filter: blur(13px);
}

.floating-chip>span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: white;
  background: rgba(82, 88, 255, .8);
  font-size: 10px;
  font-weight: 800;
}

.floating-chip div {
  display: flex;
  flex-direction: column;
}

.floating-chip b {
  font-size: 11px;
}

.floating-chip small {
  color: #8f93ad;
  font-size: 9px;
}

.chip-fast {
  left: -22px;
  top: -38px;
}

.chip-copy {
  right: -25px;
  bottom: -55px;
}

.section {
  padding-block: 130px;
  scroll-margin-top: 72px;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.section-heading p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.centered {
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.feature-card {
  position: relative;
  min-height: 465px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 118, 255, .38);
  background: linear-gradient(145deg, rgba(82, 88, 255, .09), rgba(255, 255, 255, .02));
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 118, 255, .24);
  border-radius: 13px;
  background: rgba(82, 88, 255, .09);
  color: #858aff;
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  color: #656a89;
  font: 650 10px ui-monospace, monospace;
  letter-spacing: .08em;
}

.feature-card h3 {
  margin: 23px 0 9px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: #989cb7;
  font-size: 14px;
}

.tool-demo {
  position: relative;
  flex: 1;
  min-height: 190px;
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 17px;
  background-color: #0c0f20;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px), radial-gradient(circle at 70% 15%, rgba(82, 88, 255, .18), transparent 45%);
  background-size: 28px 28px, 28px 28px, auto;
}

.color-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.demo-loupe {
  position: relative;
  width: 116px;
  height: 116px;
  padding: 6px;
  border: 3px solid white;
  border-radius: 50%;
  background: #171a2d;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .42), 0 0 45px rgba(82, 88, 255, .14);
}

.demo-pixels {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, transparent 0 16px, rgba(255, 255, 255, .18) 16px 17px), repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, .18) 16px 17px), linear-gradient(135deg, #31387d 0 45%, #5258ff 46% 67%, #9599ff 68%);
}

.demo-loupe i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .3);
}

.demo-hex {
  min-width: 142px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(19, 22, 43, .9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.demo-hex b {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border-radius: 3px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(82, 88, 255, .65);
}

.demo-hex span {
  color: #f7f7ff;
  font: 700 13px ui-monospace, monospace;
}

.demo-hex em {
  display: block;
  margin: 5px 0 0 23px;
  color: #777d9c;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.pen-demo {
  display: grid;
  place-items: center;
  padding: 18px 22px 48px;
}

.pen-demo>svg {
  width: 100%;
  max-width: 390px;
  overflow: visible;
}

.pen-demo>svg path {
  fill: none;
  stroke: #ff547d;
  stroke-width: 7;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(255, 84, 125, .25));
}

.demo-controls,
.type-switch,
.text-sizes {
  position: absolute;
  left: 50%;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: rgba(23, 26, 48, .92);
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
}

.demo-controls span,
.type-switch span,
.text-sizes span {
  min-width: 28px;
  padding: 4px 7px;
  border-radius: 5px;
  color: #858aa6;
  font: 650 9px inherit;
  text-align: center;
}

.demo-controls .active,
.type-switch .active,
.text-sizes .active {
  color: white;
  background: var(--primary);
}

.swatch {
  width: 15px;
  height: 15px;
  margin: 0 5px 0 2px;
  border: 2px solid white;
  border-radius: 50%;
}

.swatch.pink {
  background: #ff547d;
}

.arrow-demo {
  min-height: 190px;
}

.straight-arrow {
  position: absolute;
  top: 44px;
  left: 15%;
  width: 42%;
  height: 4px;
  border-radius: 3px;
  background: #ff547d;
  transform: rotate(-10deg);
  box-shadow: 0 0 10px rgba(255, 84, 125, .35);
}

.straight-arrow i,
.curved-arrow i {
  position: absolute;
  right: -1px;
  top: -7px;
  width: 16px;
  height: 16px;
  border-top: 4px solid #ff547d;
  border-right: 4px solid #ff547d;
  transform: rotate(45deg);
}

.curved-arrow {
  position: absolute;
  right: 16%;
  top: 45px;
  width: 34%;
  height: 70px;
  border: 4px solid #7378ff;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 62px 0 0;
  transform: rotate(7deg);
}

.curved-arrow i {
  top: auto;
  right: -8px;
  bottom: -2px;
  border-color: #7378ff;
  transform: rotate(135deg);
}

.text-demo {
  display: grid;
  place-items: center;
  padding-bottom: 38px;
}

.text-boundary {
  position: relative;
  min-width: 225px;
  padding: 15px 20px;
  border: 1.5px solid #7d82ff;
  color: white;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.02em;
  background: rgba(82, 88, 255, .06);
}

.text-boundary i,
.selection-box>i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: white;
}

.text-boundary i:nth-of-type(1),
.selection-box i:nth-child(1) {
  left: -5px;
  top: -5px;
}

.text-boundary i:nth-of-type(2),
.selection-box i:nth-child(2) {
  right: -5px;
  top: -5px;
}

.text-boundary i:nth-of-type(3),
.selection-box i:nth-child(3) {
  left: -5px;
  bottom: -5px;
}

.text-boundary i:nth-of-type(4),
.selection-box i:nth-child(4) {
  right: -5px;
  bottom: -5px;
}

.history-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 18px;
}

.history-state {
  position: relative;
  width: 30%;
  max-width: 115px;
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: #15182c;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}

.history-state span {
  position: absolute;
  top: 8px;
  left: 9px;
  color: #5e637e;
  font: 650 8px ui-monospace, monospace;
}

.history-state i {
  width: 45%;
  height: 3px;
  border-radius: 5px;
  background: #ff547d;
  transform: rotate(-20deg);
}

.state-two {
  transform: translateY(-8px);
}

.state-two i {
  background: #7378ff;
  transform: rotate(12deg);
}

.state-three {
  border-color: rgba(115, 120, 255, .7);
  transform: translateY(-16px);
  background: linear-gradient(145deg, #202446, #15182d);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .35), 0 0 25px rgba(82, 88, 255, .13);
}

.state-three b {
  padding: 5px 8px;
  border-radius: 5px;
  color: #e1e2ff;
  background: rgba(82, 88, 255, .35);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.save-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.file-card {
  width: 46%;
  max-width: 155px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: #171a30;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
}

.file-thumb {
  height: 64px;
  margin-bottom: 9px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(82, 88, 255, .6), rgba(255, 84, 125, .35)), linear-gradient(45deg, #242945, #111428);
}

.file-card span,
.file-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-card span {
  color: #f7f7ff;
  font-size: 8px;
  font-weight: 650;
}

.file-card small {
  color: #6f7491;
  font-size: 7px;
}

.save-notice {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: rgba(27, 30, 54, .95);
  box-shadow: 0 14px 25px rgba(0, 0, 0, .3);
}

.save-notice b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: var(--primary);
  font-size: 12px;
}

.save-notice span,
.save-notice small {
  display: block;
  white-space: nowrap;
}

.save-notice span {
  color: #f7f7ff;
  font-size: 8px;
  font-weight: 700;
}

.save-notice small {
  color: #747995;
  font-size: 7px;
}

.selection-demo {
  display: grid;
  place-items: center;
}

.selection-box {
  position: relative;
  width: 68%;
  height: 58%;
  border: 1.5px solid #858aff;
  background: linear-gradient(145deg, rgba(82, 88, 255, .12), rgba(255, 255, 255, .025));
  box-shadow: 0 0 0 999px rgba(1, 2, 8, .32);
}

.selection-box span {
  position: absolute;
  left: 50%;
  bottom: -31px;
  padding: 4px 7px;
  border-radius: 5px;
  background: #202442;
  color: #9ca0bd;
  font: 650 8px ui-monospace, monospace;
  transform: translateX(-50%);
  white-space: nowrap;
}

.monitor-demo {
  min-height: 190px;
}

.monitor {
  position: absolute;
  top: 41px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #1d2139;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .32);
}

.monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 28%;
  height: 17px;
  border-bottom: 2px solid #454a69;
  border-left: 2px solid #454a69;
  border-right: 2px solid #454a69;
  transform: translateX(-50%);
}

.monitor span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(145deg, #343a68, #1a1e36);
}

.monitor-main {
  left: 14%;
  width: 51%;
  height: 94px;
}

.monitor-side {
  right: 11%;
  top: 61px;
  width: 31%;
  height: 72px;
}

.desktop-span {
  position: absolute;
  z-index: 3;
  left: 29%;
  top: 67px;
  width: 48%;
  height: 52px;
  border: 2px solid #ff547d;
  background: rgba(255, 84, 125, .07);
  box-shadow: 0 0 18px rgba(255, 84, 125, .15);
}

.download-section {
  padding-top: 70px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #454bf0, #6258ff 50%, #753fff);
  box-shadow: 0 30px 80px rgba(82, 88, 255, .23);
}

.download-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at 30% 50%, black, transparent 70%);
}

.download-copy,
.download-card {
  position: relative;
  z-index: 2;
}

.eyebrow.light {
  color: #e5e5ff;
}

.eyebrow.light span {
  background: white;
}

.download-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.download-copy p {
  max-width: 570px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.download-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 22px;
  background: rgba(10, 11, 32, .22);
  backdrop-filter: blur(18px);
}

.download-card img {
  border-radius: 14px;
  margin-bottom: 20px;
}

.download-card strong,
.download-card span {
  display: block;
}

.download-card strong {
  font-size: 18px;
}

.download-card span {
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  margin-top: 3px;
}

.button-light {
  width: 100%;
  margin-top: 23px;
  background: white;
  color: #393eaa;
}

.download-card small {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.site-footer {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px 0 55px;
}

.footer-main>div>p {
  margin: 14px 0 0;
  color: #777b96;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links b {
  margin-bottom: 7px;
  font-size: 12px;
}

.footer-links a {
  color: #858aa5;
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 30px;
  border-top: 1px solid var(--line);
  color: #646981;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .trust-row {
    justify-content: center;
  }

  .download-panel {
    grid-template-columns: 1fr;
    padding: 55px;
  }

  .download-card {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-wrap {
    height: 68px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(10, 12, 28, .97);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    cursor: pointer;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    gap: 70px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy>* {
    max-width: 100%;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(37px, 10.5vw, 48px);
  }

  .hero-lead {
    width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .capture-scene {
    height: 290px;
  }

  .editor-toolbar span {
    padding: 5px;
    font-size: 7px;
  }

  .color-loupe {
    transform: scale(.75);
    transform-origin: top right;
  }

  .floating-chip {
    display: none;
  }

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 440px;
  }

  .download-panel {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .download-copy h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 460px) {
  .hero-visual {
    min-height: 340px;
  }

  .capture-scene {
    height: 230px;
  }

  .capture-window {
    transform: none;
  }

  .editor-toolbar span:nth-child(1),
  .editor-toolbar span:nth-child(2),
  .editor-toolbar span:nth-child(7) {
    display: none;
  }

  .selection-frame {
    left: 12%;
    width: 76%;
  }

  .color-loupe {
    right: -8%;
    top: 0;
    transform: scale(.62);
  }

  .feature-card {
    min-height: 420px;
    padding: 24px;
  }

  .color-demo {
    gap: 14px;
  }

  .demo-loupe {
    width: 96px;
    height: 96px;
  }

  .demo-hex {
    min-width: 126px;
  }

  .text-boundary {
    min-width: 190px;
    font-size: 18px;
  }

  .save-demo {
    gap: 9px;
    padding-inline: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Capturo 01: modern utility, turn-of-the-century software-print character. */
:root {
  --primary: #5258ff;
  --ink: #11111a;
  --muted: #55566a;
  --paper: #e9e9de;
  --paper-bright: #f8f8ee;
  --acid: #d6ff45;
  --line-dark: #191922;
  --shell: 1240px;
  --radius: 2px;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Verdana, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: absolute;
  opacity: .32;
  background-image: radial-gradient(#72726b .65px, transparent .65px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, black 0 32rem, transparent 80rem);
}

.ambient {
  display: none;
}

.shell {
  width: min(calc(100% - 56px), var(--shell));
}

.site-header {
  position: fixed;
  background: rgba(233, 233, 222, .94);
  border-bottom: 2px solid var(--line-dark);
  backdrop-filter: blur(10px);
}

.site-header.scrolled {
  background: rgba(248, 248, 238, .96);
  border-color: var(--line-dark);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 66px;
  gap: 24px;
}

.brand {
  color: #11111a;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand img {
  border-radius: 3px;
}

.header-code {
  padding-left: 24px;
  border-left: 1px solid #8d8d85;
  color: #696a64;
  font: 700 9px "Courier New", monospace;
  letter-spacing: .14em;
}

.site-nav {
  gap: 0;
  border: 1px solid #77776f;
}

.site-nav a {
  min-width: 126px;
  padding: 8px 14px;
  color: #24242d;
  border-right: 1px solid #77776f;
  font: 700 10px "Courier New", monospace;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.site-nav a:last-child {
  border-right: 0;
}

.site-nav a:hover {
  color: white;
  background: #11111a;
}

.button {
  min-height: 46px;
  border: 2px solid #11111a;
  border-radius: 2px;
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 12px;
  box-shadow: 4px 4px 0 #11111a;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #11111a;
}

.button-small {
  min-height: 36px;
  padding-inline: 14px;
  color: white;
  background: var(--primary);
  border-color: #11111a;
  box-shadow: 3px 3px 0 #11111a;
}

.button-primary {
  color: white;
  background: var(--primary);
  border-color: #11111a;
  box-shadow: 5px 5px 0 #11111a;
}

.button-primary:hover {
  box-shadow: 7px 7px 0 #11111a;
}

.button-ghost {
  color: #11111a;
  background: var(--paper-bright);
  border-color: #11111a;
}

.hero {
  position: relative;
  min-height: 810px;
  grid-template-columns: .83fr 1.17fr;
  gap: 0;
  padding-top: 136px;
  padding-bottom: 90px;
}


.hero-copy {
  position: relative;
  z-index: 4;
  padding: 44px 40px 37px;
  border: 2px solid #11111a;
  background: var(--acid);
  box-shadow: 10px 10px 0 #11111a;
}

.eyebrow {
  color: #25252d;
  font: 700 9px "Courier New", monospace;
  letter-spacing: .14em;
}

.eyebrow span {
  width: 17px;
  background: #11111a;
  box-shadow: none;
}

.hero h1 {
  margin: 21px 0 24px;
  color: #11111a;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.075em;
}

.hero h1 span {
  color: var(--primary);
  text-shadow: 2px 2px 0 #11111a;
}

.hero-lead {
  color: #24242d;
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
}

.trust-row {
  gap: 0;
  margin-top: 30px;
  border: 1px solid #11111a;
  color: #24242d;
  background: rgba(255, 255, 255, .36);
  font: 700 9px "Courier New", monospace;
  text-transform: uppercase;
}

.trust-row span {
  flex: 1;
  justify-content: center;
  padding: 7px 9px;
  border-right: 1px solid #11111a;
}

.trust-row span:last-child {
  border-right: 0;
}

.trust-row i {
  width: 4px;
  height: 4px;
  background: var(--primary);
  box-shadow: none;
}

.hero-issue {
  position: absolute;
  left: -2px;
  bottom: -31px;
  color: #6f6f68;
  font: 700 8px "Courier New", monospace;
  letter-spacing: .11em;
}

.hero-visual {
  z-index: 2;
  min-height: 570px;
  margin-left: -20px;
}

.app-stage {
  transform: translateX(20px);
}

.capture-window {
  border: 2px solid #11111a;
  border-radius: 5px;
  padding: 7px;
  box-shadow: 13px 13px 0 rgba(17, 17, 26, .92);
  transform: rotate(1deg);
}

.capture-scene {
  border-radius: 2px;
}

.visual-orbit {
  border-color: rgba(17, 17, 26, .35);
  border-radius: 0;
  transform: rotate(8deg);
}

.orbit-two {
  border-color: rgba(82, 88, 255, .45);
  animation: none;
  transform: rotate(-5deg);
}

.floating-chip {
  border: 2px solid #11111a;
  border-radius: 2px;
  color: white;
  box-shadow: 5px 5px 0 #11111a;
  backdrop-filter: none;
}

.section {
  padding-block: 110px;
}

#possibilities.section {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  border-top: 2px solid #11111a;
}

.section-heading {
  position: sticky;
  top: 100px;
  max-width: none;
}

.section-heading h2 {
  margin: 18px 0 20px;
  color: #11111a;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 43px;
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.065em;
}

.section-heading h2 span {
  color: var(--primary);
}

.section-heading p {
  color: #50515d;
  font-size: 13px;
  line-height: 1.65;
}

.feature-grid {
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 0;
}

.feature-card {
  min-height: 290px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 2px solid #11111a;
  border-radius: 2px;
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 #b5b5ab;
  transition: box-shadow .14s ease, transform .14s ease;
}

.feature-card:hover {
  transform: translate(-2px, -2px);
  border-color: #11111a;
  background: var(--paper-bright);
  box-shadow: 10px 10px 0 var(--primary);
}

.feature-card:nth-child(even) {
  grid-template-columns: 1.18fr .82fr;
}

.feature-card:nth-child(even) .feature-copy {
  order: 2;
  border-right: 0;
  border-left: 1px solid #a5a59c;
}

.feature-card:nth-child(even) .tool-demo {
  order: 1;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px;
  border-right: 1px solid #a5a59c;
}

.feature-label {
  justify-content: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #11111a;
  border-radius: 0;
  color: white;
  background: var(--primary);
}

.feature-icon svg {
  width: 19px;
}

.card-number {
  margin-left: auto;
  color: #54545c;
  font-size: 8px;
}

.feature-card h3 {
  margin: 22px 0 9px;
  color: #11111a;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
}

.feature-card p {
  color: #555661;
  font-size: 11px;
  line-height: 1.65;
}

.feature-card .tool-demo {
  align-self: stretch;
  min-height: 230px;
  margin: 16px;
  border-radius: 17px;
}

.download-section {
  padding-top: 35px;
}

.download-panel {
  min-height: 420px;
  grid-template-columns: 1.08fr .72fr;
  padding: 58px;
  overflow: visible;
  border: 2px solid #11111a;
  border-radius: 2px;
  background: var(--primary);
  box-shadow: 11px 11px 0 #11111a;
}

.download-grid {
  opacity: .22;
  background-size: 24px 24px;
  mask-image: none;
}

.eyebrow.light {
  color: white;
}

.eyebrow.light span {
  background: var(--acid);
}

.download-copy h2 {
  margin-block: 20px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.07em;
}

.download-copy p {
  max-width: 520px;
  font-size: 13px;
}

.download-card {
  padding: 24px;
  color: #11111a;
  border: 2px solid #11111a;
  border-radius: 2px;
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 #11111a;
  backdrop-filter: none;
}

.download-card img {
  border-radius: 2px;
}

.download-card span {
  color: #5b5b66;
}

.button-light {
  color: white;
  background: #11111a;
  border-color: #11111a;
  box-shadow: 4px 4px 0 var(--acid);
}

.download-card small {
  color: #65656d;
}

.site-footer {
  margin-top: 80px;
  color: #efefe9;
  border-top: 0;
  background: #11111a;
}

.site-footer .brand {
  color: white;
}

.footer-main {
  padding-block: 55px 42px;
}

.footer-main>div>p,
.footer-links a {
  color: #a6a6a4;
}

.footer-links b {
  color: var(--acid);
  font: 700 9px "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-bottom {
  color: #92928f;
  border-color: #404047;
  font: 700 8px "Courier New", monospace;
}

@media (max-width: 1040px) {
  .header-code {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 68px;
    text-align: left;
  }

  .hero-copy {
    width: min(620px, 92%);
  }

  .hero-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .app-stage {
    transform: none;
  }

  #possibilities.section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-wrap {
    height: 62px;
  }

  .nav-download {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    background: #11111a;
  }

  .site-nav {
    top: 61px;
    left: 16px;
    right: 16px;
    border: 2px solid #11111a;
    border-radius: 0;
    background: var(--paper-bright);
    box-shadow: 5px 5px 0 #11111a;
  }

  .site-nav a {
    color: #11111a;
    border-right: 0;
    border-bottom: 1px solid #8b8b83;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    gap: 70px;
  }

  .hero::before {
    top: 83px;
  }

  .hero-copy {
    width: calc(100% - 8px);
    padding: 32px 25px 30px;
    box-shadow: 8px 8px 0 #11111a;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    flex-wrap: wrap;
  }

  .trust-row span {
    min-width: 33.333%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .capture-window {
    transform: none;
    box-shadow: 7px 7px 0 #11111a;
  }

  #possibilities.section {
    gap: 42px;
    padding-block: 85px;
  }

  .section-heading h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .feature-card,
  .feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(even) .feature-copy {
    order: 1;
    border-left: 0;
  }

  .feature-card:nth-child(even) .tool-demo {
    order: 2;
  }

  .feature-copy {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid #a5a59c;
  }

  .feature-card .tool-demo {
    min-height: 205px;
  }

  .download-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 38px 25px;
    box-shadow: 8px 8px 0 #11111a;
  }
}

@media (max-width: 460px) {
  .hero-copy {
    padding-inline: 21px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .trust-row span {
    min-width: 100%;
    border-right: 0;
    border-bottom: 1px solid #11111a;
  }

  .trust-row span:last-child {
    border-bottom: 0;
  }

  .feature-card {
    box-shadow: 5px 5px 0 #b5b5ab;
  }

  .feature-card .tool-demo {
    margin: 12px;
  }
}

/* Capturo 02: restrained editorial product design. */
:root {
  --ink: #17171b;
  --muted: #676773;
  --paper: #f3f2ed;
  --paper-bright: #fbfaf6;
  --acid: #5258ff;
  --line-dark: #d6d5ce;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  opacity: .42;
  background-image: linear-gradient(90deg, transparent calc(50% - .5px), rgba(21, 21, 28, .04) 50%, transparent calc(50% + .5px));
  background-size: 25% 100%;
  mask-image: none;
}

.site-header,
.site-header.scrolled {
  background: rgba(243, 242, 237, .9);
  border-bottom: 1px solid #cfcec7;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 72px;
}

.brand {
  font-size: 18px;
  letter-spacing: -.025em;
}

.brand img {
  border-radius: 9px;
}

.header-code {
  border-left-color: #c6c5be;
  color: #898981;
  font: 600 9px ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: .1em;
}

.site-nav {
  gap: 28px;
  border: 0;
}

.site-nav a {
  min-width: 0;
  padding: 8px 0;
  color: #5c5c64;
  border: 0;
  font: 600 12px "Segoe UI", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.site-nav a:hover {
  color: var(--primary);
  background: none;
}

.button {
  min-height: 46px;
  border: 1px solid #c8c7c0;
  border-radius: 5px;
  box-shadow: none;
  font-size: 12px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 26, 35, .1);
}

.button-small {
  min-height: 38px;
  color: white;
  border-color: var(--primary);
  border-radius: 5px;
  background: var(--primary);
  box-shadow: none;
}

.button-primary {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: none;
}

.button-primary:hover {
  box-shadow: 0 10px 26px rgba(82, 88, 255, .24);
}

.button-ghost {
  color: #313139;
  border-color: #c2c1ba;
  background: transparent;
}

.hero {
  min-height: 820px;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  padding-top: 160px;
  padding-bottom: 105px;
}

.hero::before {
  top: 108px;
  color: #8c8b84;
  border-bottom-color: #d0cfc8;
  font-family: ui-monospace, "Cascadia Mono", monospace;
  font-weight: 600;
  letter-spacing: .13em;
}

.hero-copy {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eyebrow {
  color: #77767e;
  font: 650 10px ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: .11em;
}

.eyebrow span {
  width: 22px;
  background: var(--primary);
}

.hero h1 {
  margin: 25px 0 27px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.4vw, 80px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
  text-shadow: none;
}

.hero-lead {
  max-width: 520px;
  color: #65656f;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
}

.trust-row {
  gap: 24px;
  margin-top: 28px;
  border: 0;
  color: #777780;
  background: none;
  font: 500 11px "Segoe UI", Arial, sans-serif;
  text-transform: none;
}

.trust-row span {
  flex: 0 0 auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
}

.trust-row i {
  width: 5px;
  height: 5px;
  background: var(--primary);
}

.hero-issue {
  display: none;
}

.hero-visual {
  min-height: 560px;
  margin-left: 0;
}

.app-stage {
  transform: none;
}

.capture-window {
  border: 1px solid rgba(22, 22, 30, .7);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 35px 75px rgba(31, 31, 44, .22);
  transform: rotate(0);
}

.capture-scene {
  border-radius: 9px;
}

.visual-orbit {
  border-color: rgba(82, 88, 255, .16);
  border-radius: 50%;
  transform: none;
}

.orbit-two {
  border-color: rgba(82, 88, 255, .2);
  transform: none;
}

.floating-chip {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 23, 31, .2);
}

#possibilities.section {
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 70px;
  border-top: 1px solid #cac9c2;
}

.section {
  padding-block: 125px;
}

.section-heading {
  top: 112px;
}

.section-heading h2 {
  margin: 22px 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 49px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.section-heading h2 span {
  font-style: italic;
}

.section-heading p {
  color: #6a6972;
  font-size: 14px;
  line-height: 1.7;
}

.feature-grid {
  gap: 0;
}

.feature-card,
.feature-card:nth-child(even) {
  min-height: 315px;
  grid-template-columns: .84fr 1.16fr;
  border: 0;
  border-top: 1px solid #c8c7c0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:last-child {
  border-bottom: 1px solid #c8c7c0;
}

.feature-card:hover {
  transform: none;
  border-color: #c8c7c0;
  background: transparent;
  box-shadow: none;
}

.feature-card:nth-child(even) .feature-copy {
  order: 1;
  border: 0;
}

.feature-card:nth-child(even) .tool-demo {
  order: 2;
}

.feature-copy {
  padding: 30px 32px 30px 0;
  border: 0;
}

.feature-icon {
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 7px;
  color: var(--primary);
  background: rgba(82, 88, 255, .09);
}

.feature-icon svg {
  width: 18px;
}

.card-number {
  color: #95949b;
  font-size: 8px;
  font-weight: 600;
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.feature-card p {
  color: #6d6c75;
  font-size: 12px;
  line-height: 1.65;
}

.feature-card .tool-demo {
  min-height: 245px;
  margin: 34px 0 34px 24px;
  border-radius: 17px;
}

.download-section {
  padding-top: 40px;
}

.download-panel {
  min-height: 440px;
  padding: 65px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #242653;
  box-shadow: none;
}

.download-grid {
  opacity: .08;
  background-size: 44px 44px;
}

.download-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.045em;
  color: rgb(185, 185, 185);
}

.download-copy p {
  font-size: 14px;
}

.download-card {
  padding: 26px;
  border: 0;
  border-radius: 8px;
  background: var(--paper-bright);
  box-shadow: 0 22px 45px rgba(8, 8, 18, .25);
}

.download-card img {
  border-radius: 8px;
}

.button-light {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: none;
}

.site-footer {
  margin-top: 90px;
  background: #1b1b22;
}

.footer-links b {
  color: #999cff;
  font: 650 9px ui-monospace, "Cascadia Mono", monospace;
}

@media (max-width: 1040px) {
  .hero {
    gap: 80px;
  }

  #possibilities.section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 71px;
    border: 1px solid #c7c6bf;
    border-radius: 7px;
    background: var(--paper-bright);
    box-shadow: 0 14px 35px rgba(25, 25, 32, .14);
  }

  .site-nav a {
    border-bottom-color: #deddd7;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    padding-top: 130px;
    gap: 65px;
  }

  .hero::before {
    top: 91px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 66px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .trust-row {
    flex-wrap: wrap;
  }

  .trust-row span {
    min-width: auto;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin: 0;
  }

  .capture-window {
    box-shadow: 0 24px 50px rgba(31, 31, 44, .2);
  }

  #possibilities.section {
    gap: 45px;
  }

  .section-heading h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .feature-card,
  .feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 28px 0 12px;
    border-bottom: 0;
  }

  .feature-card .tool-demo {
    min-height: 210px;
    margin: 20px 0 30px;
  }

  .download-panel {
    padding: 42px 26px;
    border-radius: 9px;
    box-shadow: none;
  }
}

@media (max-width: 460px) {
  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: 47px;
  }

  .trust-row span {
    min-width: auto;
    border: 0;
  }

  .feature-card {
    box-shadow: none;
  }

  .feature-card .tool-demo {
    margin: 18px 0 28px;
  }
}

.nav-wrap {
  justify-content: space-between;
}

.nav-wrap .nav-download {
  display: inline-flex;
  margin-left: auto;
}

.checksum {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #deddd7;
}

.checksum-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}

.download-card .checksum-heading span {
  color: #35353d;
  font: 650 10px ui-monospace, "Cascadia Mono", monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.checksum-heading button {
  padding: 3px 0;
  color: var(--primary);
  border: 0;
  background: none;
  font: 650 11px "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}

.checksum-heading button:hover { text-decoration: underline; }

.checksum > code {
  display: block;
  padding: 10px;
  overflow-wrap: anywhere;
  color: #474750;
  border: 1px solid #deddd7;
  border-radius: 5px;
  background: #f0efe9;
  font: 600 9px/1.55 ui-monospace, "Cascadia Mono", monospace;
}

.checksum p {
  margin: 9px 0 0;
  color: #777780;
  font-size: 9px;
  line-height: 1.5;
}

.checksum p code {
  color: #555560;
  font: inherit;
}
