@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap");
/* line 3, app/assets/stylesheets/marketing.scss */
:root {
  color-scheme: light;
  --blue: #ffffff;
  --blue-deep: #e9ece9;
  --pink: #dfffe8;
  --pink-hot: #00c853;
  --paper: #f5f6f3;
  --navy: #0a0b0a;
  --dark: #0b0e0c;
  --line: rgba(10, 11, 10, 0.25);
}

/* line 15, app/assets/stylesheets/marketing.scss */
[data-theme="dark"]:root {
  color-scheme: dark;
  --blue: #090b09;
  --blue-deep: #171a17;
  --pink: #102c19;
  --pink-hot: #39ff88;
  --paper: #111411;
  --navy: #f2f5f2;
  --dark: #060806;
  --line: rgba(242, 245, 242, 0.23);
}

/* line 27, app/assets/stylesheets/marketing.scss */
* {
  box-sizing: border-box;
}

/* line 31, app/assets/stylesheets/marketing.scss */
html {
  scroll-behavior: smooth;
}

/* line 35, app/assets/stylesheets/marketing.scss */
body {
  margin: 0;
  color: var(--navy);
  background: var(--blue);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: color 0.25s ease, background 0.25s ease;
}

/* line 44, app/assets/stylesheets/marketing.scss */
a {
  color: inherit;
  text-decoration: none;
}

/* line 49, app/assets/stylesheets/marketing.scss */
.marketing-container {
  width: calc(100% - 64px);
  max-width: 1440px;
  margin: 0 auto;
}

/* line 55, app/assets/stylesheets/marketing.scss */
.marketing-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--blue);
}

/* line 62, app/assets/stylesheets/marketing.scss */
.nav-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* line 69, app/assets/stylesheets/marketing.scss */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Instrument Serif", serif;
  font-size: 25px;
  line-height: 1;
}

/* line 78, app/assets/stylesheets/marketing.scss */
.brand-mark {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font: 500 8px/1 "DM Mono", monospace;
}

/* line 89, app/assets/stylesheets/marketing.scss */
.brand-mark i {
  width: 1px;
  height: 11px;
  display: block;
  background: var(--navy);
  transform: rotate(15deg);
}

/* line 98, app/assets/stylesheets/marketing.scss */
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 106, app/assets/stylesheets/marketing.scss */
.nav-links a {
  border-bottom: 1px solid transparent;
}

/* line 109, app/assets/stylesheets/marketing.scss */
.nav-links a:hover {
  border-color: var(--navy);
}

/* line 115, app/assets/stylesheets/marketing.scss */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* line 125, app/assets/stylesheets/marketing.scss */
.theme-toggle {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* line 139, app/assets/stylesheets/marketing.scss */
.theme-toggle-track {
  width: 27px;
  height: 14px;
  padding: 2px;
  display: block;
  border: 1px solid var(--navy);
  border-radius: 10px;
}

/* line 147, app/assets/stylesheets/marketing.scss */
.theme-toggle-track i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--navy);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* line 157, app/assets/stylesheets/marketing.scss */
[data-theme="dark"]:root .theme-toggle-track i {
  background: var(--pink-hot);
  transform: translateX(13px);
}

/* line 162, app/assets/stylesheets/marketing.scss */
.button {
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* line 175, app/assets/stylesheets/marketing.scss */
.button-primary {
  color: var(--blue);
  background: var(--navy);
}

/* line 179, app/assets/stylesheets/marketing.scss */
.button-primary:hover {
  color: var(--navy);
  background: var(--pink);
}

/* line 185, app/assets/stylesheets/marketing.scss */
.button-small {
  min-height: 35px;
}

/* line 189, app/assets/stylesheets/marketing.scss */
.editorial-hero {
  min-height: calc(100vh - 82px);
  padding: 0 32px 32px;
  background: var(--blue);
}

/* line 195, app/assets/stylesheets/marketing.scss */
.poster-grid {
  min-height: calc(100vh - 114px);
  display: grid;
  grid-template-columns: 80px minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  grid-template-rows: 64px 1fr 90px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

/* line 205, app/assets/stylesheets/marketing.scss */
.hero-index,
.hero-kicker,
.hero-status,
.micro-label,
.hero-command,
.exhibit-label,
.section-masthead,
.manifesto-small {
  font: 500 9px/1.5 "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* line 218, app/assets/stylesheets/marketing.scss */
.hero-index,
.hero-kicker,
.hero-status {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

/* line 225, app/assets/stylesheets/marketing.scss */
.hero-index,
.hero-kicker {
  border-right: 1px solid var(--line);
}

/* line 230, app/assets/stylesheets/marketing.scss */
.hero-status {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* line 235, app/assets/stylesheets/marketing.scss */
.hero-status span {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(255, 143, 190, 0.25);
}

/* line 245, app/assets/stylesheets/marketing.scss */
.hero-statement {
  grid-column: 1 / 3;
  padding: clamp(55px, 7vw, 110px) clamp(34px, 6vw, 95px);
  border-right: 1px solid var(--line);
}

/* line 251, app/assets/stylesheets/marketing.scss */
.micro-label {
  margin: 0 0 24px;
}

/* line 255, app/assets/stylesheets/marketing.scss */
.hero-statement h1 {
  margin: 0;
  color: var(--navy);
  font: 400 clamp(60px, 7.1vw, 112px)/0.82 "Instrument Serif", serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* line 262, app/assets/stylesheets/marketing.scss */
.hero-statement h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 269, app/assets/stylesheets/marketing.scss */
.hero-controls {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 26px;
}

/* line 276, app/assets/stylesheets/marketing.scss */
.poster-button {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--navy);
  color: var(--blue);
  background: var(--navy);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 288, app/assets/stylesheets/marketing.scss */
.poster-button:hover {
  color: var(--navy);
  background: var(--pink);
}

/* line 294, app/assets/stylesheets/marketing.scss */
.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--navy);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 302, app/assets/stylesheets/marketing.scss */
.hero-art {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: radial-gradient(circle at center, transparent 0 19%, rgba(0, 0, 0, 0.08) 19.2% 19.5%, transparent 19.7%), linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px), var(--pink);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

/* line 314, app/assets/stylesheets/marketing.scss */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* line 323, app/assets/stylesheets/marketing.scss */
.orbit-one {
  width: 29vw;
  height: 29vw;
  max-width: 430px;
  max-height: 430px;
}

/* line 330, app/assets/stylesheets/marketing.scss */
.orbit-two {
  width: 21vw;
  height: 35vw;
  max-width: 310px;
  max-height: 520px;
  transform: translate(-50%, -50%) rotate(42deg);
}

/* line 338, app/assets/stylesheets/marketing.scss */
.orbit-three {
  width: 21vw;
  height: 35vw;
  max-width: 310px;
  max-height: 520px;
  transform: translate(-50%, -50%) rotate(-42deg);
}

/* line 346, app/assets/stylesheets/marketing.scss */
.code-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--blue);
  background: var(--navy);
  font: 400 31px "DM Mono", monospace;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px var(--pink), 0 0 0 11px var(--navy);
}

/* line 364, app/assets/stylesheets/marketing.scss */
.code-sun b {
  color: var(--pink-hot);
  font-weight: 400;
}

/* line 370, app/assets/stylesheets/marketing.scss */
.art-cursor {
  position: absolute;
  padding: 6px 8px;
  color: var(--blue);
  background: var(--navy);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

/* line 378, app/assets/stylesheets/marketing.scss */
.art-cursor::before {
  position: absolute;
  width: 38px;
  height: 1px;
  content: "";
  background: var(--navy);
  transform-origin: left;
}

/* line 388, app/assets/stylesheets/marketing.scss */
.art-cursor-one {
  top: 28%;
  left: 12%;
}

/* line 392, app/assets/stylesheets/marketing.scss */
.art-cursor-one::before {
  top: 100%;
  left: 100%;
  transform: rotate(35deg);
}

/* line 399, app/assets/stylesheets/marketing.scss */
.art-cursor-two {
  right: 9%;
  bottom: 24%;
}

/* line 403, app/assets/stylesheets/marketing.scss */
.art-cursor-two::before {
  right: 100%;
  bottom: 100%;
  transform: rotate(215deg);
}

/* line 410, app/assets/stylesheets/marketing.scss */
.signal-lines {
  position: absolute;
  right: -20%;
  bottom: -28%;
  width: 78%;
  height: 60%;
  border: 1px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 14px var(--pink), 0 0 0 15px var(--navy), 0 0 0 29px var(--pink), 0 0 0 30px var(--navy), 0 0 0 44px var(--pink), 0 0 0 45px var(--navy), 0 0 0 59px var(--pink), 0 0 0 60px var(--navy);
}

/* line 425, app/assets/stylesheets/marketing.scss */
.hero-ide {
  width: 88%;
  height: 72%;
  min-height: 420px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  border: 1px solid var(--navy);
  background: #1e1e1e;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  font-family: "DM Mono", monospace;
}

/* line 440, app/assets/stylesheets/marketing.scss */
.hero-ide-topbar {
  height: 30px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #171717;
  color: #9b9b9b;
  background: #323233;
  font-size: 7px;
  letter-spacing: 0.08em;
}

/* line 453, app/assets/stylesheets/marketing.scss */
.hero-window-dots {
  display: flex;
  gap: 5px;
}

/* line 457, app/assets/stylesheets/marketing.scss */
.hero-window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b68;
}

/* line 464, app/assets/stylesheets/marketing.scss */
.hero-window-dots span:nth-child(2) {
  background: #e8b64e;
}

/* line 465, app/assets/stylesheets/marketing.scss */
.hero-window-dots span:nth-child(3) {
  background: var(--pink-hot);
}

/* line 468, app/assets/stylesheets/marketing.scss */
.hero-session-name {
  color: #c5c5c5;
}

/* line 472, app/assets/stylesheets/marketing.scss */
.hero-live {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--pink-hot);
}

/* line 479, app/assets/stylesheets/marketing.scss */
.hero-live span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 6px var(--pink-hot);
}

/* line 488, app/assets/stylesheets/marketing.scss */
.hero-ide-actions {
  height: 34px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #1a1a1a;
  color: #d0d0d0;
  background: #323233;
  font-size: 7px;
}

/* line 500, app/assets/stylesheets/marketing.scss */
.hero-language,
.hero-run {
  padding: 5px 8px;
  border: 1px solid #4a4a4a;
  border-radius: 2px;
}

/* line 507, app/assets/stylesheets/marketing.scss */
.hero-language {
  color: var(--pink-hot);
}

/* line 511, app/assets/stylesheets/marketing.scss */
.hero-run {
  color: #d8e6dd;
  background: #3f5848;
}

/* line 516, app/assets/stylesheets/marketing.scss */
.hero-people {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* line 521, app/assets/stylesheets/marketing.scss */
.hero-people i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid #323233;
  border-radius: 50%;
  color: #152044;
  background: var(--pink);
  font-size: 5px;
  font-style: normal;
}

/* line 534, app/assets/stylesheets/marketing.scss */
.hero-people i:nth-child(2) {
  margin-left: -5px;
  background: var(--blue);
}

/* line 539, app/assets/stylesheets/marketing.scss */
.hero-people b {
  margin-left: 6px;
  color: #a9a9a9;
  font-size: 6px;
  font-weight: 400;
}

/* line 547, app/assets/stylesheets/marketing.scss */
.hero-ide-body {
  height: calc(100% - 82px);
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 31%;
}

/* line 553, app/assets/stylesheets/marketing.scss */
.hero-file-tree {
  padding: 13px 6px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #303030;
  color: #b7b7b7;
  background: #252526;
  font-size: 6px;
}

/* line 562, app/assets/stylesheets/marketing.scss */
.hero-file-tree b {
  margin: 0 5px 11px;
  color: #858585;
  font-size: 6px;
  letter-spacing: 0.09em;
}

/* line 569, app/assets/stylesheets/marketing.scss */
.hero-file-tree strong {
  margin: 0 5px 5px;
  color: #d0d0d0;
  font-size: 6px;
}

/* line 575, app/assets/stylesheets/marketing.scss */
.hero-file-tree span {
  padding: 5px 10px;
  white-space: nowrap;
}

/* line 580, app/assets/stylesheets/marketing.scss */
.hero-file-tree .active {
  color: #fff;
  background: #37373d;
}

/* line 586, app/assets/stylesheets/marketing.scss */
.hero-code-pane {
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #1e1e1e;
}

/* line 593, app/assets/stylesheets/marketing.scss */
.hero-code-tab {
  width: 110px;
  height: 27px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid #303030;
  border-top: 1px solid var(--pink-hot);
  color: #d8d8d8;
  background: #1e1e1e;
  font-size: 7px;
}

/* line 607, app/assets/stylesheets/marketing.scss */
.hero-typed-code {
  margin: 0;
  padding: 17px 8px;
  color: #d4d4d4;
  font: 400 7px/1.82 "DM Mono", monospace;
  white-space: pre;
}

/* line 614, app/assets/stylesheets/marketing.scss */
.hero-typed-code i {
  width: 14px;
  margin-right: 7px;
  display: inline-block;
  color: #606060;
  font-style: normal;
  text-align: right;
}

/* line 623, app/assets/stylesheets/marketing.scss */
.hero-typed-code b {
  color: #d995c9;
  font-weight: 400;
}

/* line 628, app/assets/stylesheets/marketing.scss */
.hero-typed-code em {
  color: #ce9178;
  font-style: normal;
}

/* line 634, app/assets/stylesheets/marketing.scss */
.hero-code-line {
  display: block;
  height: 1.82em;
  white-space: nowrap;
}

/* line 640, app/assets/stylesheets/marketing.scss */
.hero-code-chars {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  white-space: nowrap;
  max-width: 0;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

/* line 650, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="1"] .hero-code-chars {
  animation-name: hero-type-1;
}

/* line 651, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="2"] .hero-code-chars {
  animation-name: hero-type-2;
}

/* line 652, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="3"] .hero-code-chars {
  animation-name: hero-type-3;
}

/* line 653, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="4"] .hero-code-chars {
  animation-name: hero-type-4;
}

/* line 654, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="5"] .hero-code-chars {
  animation-name: hero-type-5;
}

/* line 655, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="6"] .hero-code-chars {
  animation-name: hero-type-6;
}

/* line 656, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="7"] .hero-code-chars {
  animation-name: hero-type-7;
}

/* line 657, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="8"] .hero-code-chars {
  animation-name: hero-type-8;
}

/* line 658, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="9"] .hero-code-chars {
  animation-name: hero-type-9;
}

/* line 659, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="10"] .hero-code-chars {
  animation-name: hero-type-10;
}

/* line 660, app/assets/stylesheets/marketing.scss */
.hero-code-line[data-line="11"] .hero-code-chars {
  animation-name: hero-type-11;
}

/* line 662, app/assets/stylesheets/marketing.scss */
.hero-typing-caret {
  width: 1px;
  height: 10px;
  position: absolute;
  top: 46px;
  left: 10px;
  z-index: 3;
  animation: hero-caret-follow 16s linear infinite;
}

/* line 671, app/assets/stylesheets/marketing.scss */
.hero-typing-caret i {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  font-style: normal;
  animation: caret-blink 0.75s steps(1) infinite;
}

/* line 681, app/assets/stylesheets/marketing.scss */
.selection-block {
  width: 126px;
  height: 11px;
  position: absolute;
  top: 148px;
  left: 72px;
  background: rgba(74, 121, 185, 0.36);
  opacity: 0;
  animation: selection-pulse 16s ease-in-out infinite;
}

/* line 692, app/assets/stylesheets/marketing.scss */
.participant-pointer {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

/* line 699, app/assets/stylesheets/marketing.scss */
.participant-pointer svg {
  width: 14px;
  height: 18px;
  flex: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
}

/* line 706, app/assets/stylesheets/marketing.scss */
.participant-pointer span {
  margin: 12px 0 0 -2px;
  padding: 4px 6px;
  color: #0a0b0a;
  background: var(--pink);
  font-size: 5px;
  white-space: nowrap;
}

/* line 716, app/assets/stylesheets/marketing.scss */
.candidate-pointer {
  top: 44px;
  left: 8px;
  color: var(--pink-hot);
  animation: candidate-type 16s linear infinite;
}

/* line 722, app/assets/stylesheets/marketing.scss */
.candidate-pointer svg {
  fill: var(--pink-hot);
}

/* line 727, app/assets/stylesheets/marketing.scss */
.interviewer-pointer {
  top: 38px;
  left: 210px;
  color: #f2f2f2;
  animation: interviewer-observe 16s ease-in-out infinite;
}

/* line 733, app/assets/stylesheets/marketing.scss */
.interviewer-pointer svg {
  fill: #f2f2f2;
}

/* line 737, app/assets/stylesheets/marketing.scss */
.interviewer-pointer span {
  color: #0a0b0a;
  background: #f2f2f2;
}

/* line 743, app/assets/stylesheets/marketing.scss */
.hero-output {
  min-width: 0;
  border-left: 2px solid #181818;
  color: #bcbcbc;
  background: #1e1e1e;
}

/* line 750, app/assets/stylesheets/marketing.scss */
.hero-output-tabs {
  height: 27px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #303030;
  color: #777;
  font-size: 5px;
}

/* line 760, app/assets/stylesheets/marketing.scss */
.hero-output-tabs b {
  height: 27px;
  padding-top: 10px;
  border-bottom: 1px solid var(--pink-hot);
  color: #d6d6d6;
  font-weight: 400;
}

/* line 769, app/assets/stylesheets/marketing.scss */
.hero-output code {
  padding: 15px 10px;
  display: block;
  font: 400 6px/1.8 "DM Mono", monospace;
}

/* line 774, app/assets/stylesheets/marketing.scss */
.hero-output code span {
  color: var(--pink-hot);
}

/* line 775, app/assets/stylesheets/marketing.scss */
.hero-output code em {
  color: var(--pink-hot);
  font-style: normal;
}

/* line 776, app/assets/stylesheets/marketing.scss */
.hero-output code strong {
  color: var(--pink-hot);
  font-weight: 400;
}

/* line 779, app/assets/stylesheets/marketing.scss */
.hero-ide-status {
  height: 18px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dcecff;
  background: #0a7131;
  font-size: 5px;
}

/* line 790, app/assets/stylesheets/marketing.scss */
.hero-note {
  position: absolute;
  right: 4%;
  bottom: 2%;
  padding: 6px 8px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: var(--pink);
  font: 500 6px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

@keyframes hero-type-1 {
  0%, 3% {
    max-width: 0;
    animation-timing-function: steps(24, end);
  }
  9% {
    max-width: calc(21px + 20ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 20ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-2 {
  0%, 10% {
    max-width: 0;
    animation-timing-function: steps(22, end);
  }
  15% {
    max-width: calc(21px + 18ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 18ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-3 {
  0%, 16% {
    max-width: 0;
    animation-timing-function: steps(20, end);
  }
  21% {
    max-width: calc(21px + 16ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 16ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-4 {
  0%, 22% {
    max-width: 0;
    animation-timing-function: steps(11, end);
  }
  25% {
    max-width: calc(21px + 7ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 7ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-5 {
  0%, 26% {
    max-width: 0;
  }
  27%, 86% {
    max-width: calc(21px + 1ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-6 {
  0%, 28% {
    max-width: 0;
    animation-timing-function: steps(24, end);
  }
  34% {
    max-width: calc(21px + 20ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 20ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-7 {
  0%, 35% {
    max-width: 0;
    animation-timing-function: steps(25, end);
  }
  41% {
    max-width: calc(21px + 21ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 21ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-8 {
  0%, 42% {
    max-width: 0;
    animation-timing-function: steps(25, end);
  }
  48% {
    max-width: calc(21px + 21ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 21ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-9 {
  0%, 49% {
    max-width: 0;
    animation-timing-function: steps(38, end);
  }
  60% {
    max-width: calc(21px + 34ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 34ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-10 {
  0%, 61% {
    max-width: 0;
    animation-timing-function: steps(11, end);
  }
  64% {
    max-width: calc(21px + 7ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 7ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes hero-type-11 {
  0%, 65% {
    max-width: 0;
    animation-timing-function: steps(9, end);
  }
  68% {
    max-width: calc(21px + 5ch);
    animation-timing-function: linear;
  }
  86% {
    max-width: calc(21px + 5ch);
  }
  92%, 100% {
    max-width: 0;
  }
}

@keyframes candidate-type {
  0%, 3% {
    transform: translate(0, 0);
  }
  9% {
    transform: translate(112px, 0);
  }
  10% {
    transform: translate(0, 13px);
  }
  15% {
    transform: translate(104px, 13px);
  }
  16% {
    transform: translate(0, 26px);
  }
  21% {
    transform: translate(98px, 26px);
  }
  22% {
    transform: translate(0, 39px);
  }
  25% {
    transform: translate(60px, 39px);
  }
  28% {
    transform: translate(0, 64px);
  }
  34% {
    transform: translate(116px, 64px);
  }
  35% {
    transform: translate(0, 77px);
  }
  41% {
    transform: translate(120px, 77px);
  }
  42% {
    transform: translate(0, 90px);
  }
  48% {
    transform: translate(120px, 90px);
  }
  49% {
    transform: translate(0, 103px);
  }
  60% {
    transform: translate(188px, 103px);
  }
  61% {
    transform: translate(0, 116px);
  }
  64% {
    transform: translate(60px, 116px);
  }
  65% {
    transform: translate(0, 129px);
  }
  68%, 88% {
    transform: translate(48px, 129px);
  }
  92%, 100% {
    transform: translate(0, 0);
  }
}

@keyframes hero-caret-follow {
  0%, 3% {
    transform: translate(0, 0);
    visibility: visible;
  }
  9% {
    transform: translate(112px, 0);
  }
  10% {
    transform: translate(0, 13px);
  }
  15% {
    transform: translate(104px, 13px);
  }
  16% {
    transform: translate(0, 26px);
  }
  21% {
    transform: translate(98px, 26px);
  }
  22% {
    transform: translate(0, 39px);
  }
  25% {
    transform: translate(60px, 39px);
  }
  28% {
    transform: translate(0, 64px);
  }
  34% {
    transform: translate(116px, 64px);
  }
  35% {
    transform: translate(0, 77px);
  }
  41% {
    transform: translate(120px, 77px);
  }
  42% {
    transform: translate(0, 90px);
  }
  48% {
    transform: translate(120px, 90px);
  }
  49% {
    transform: translate(0, 103px);
  }
  60% {
    transform: translate(188px, 103px);
  }
  61% {
    transform: translate(0, 116px);
  }
  64% {
    transform: translate(60px, 116px);
  }
  65% {
    transform: translate(0, 129px);
  }
  68%, 86% {
    transform: translate(48px, 129px);
    visibility: visible;
  }
  88%, 100% {
    transform: translate(48px, 129px);
    visibility: hidden;
  }
}

@keyframes interviewer-observe {
  0%, 20% {
    transform: translate(0, 0);
  }
  28%, 45% {
    transform: translate(-36px, 42px);
  }
  52%, 66% {
    transform: translate(-18px, 78px);
  }
  72%, 86% {
    transform: translate(-92px, 108px);
  }
  92%, 100% {
    transform: translate(0, 0);
  }
}

@keyframes caret-blink {
  0%, 48% {
    opacity: 1;
  }
  49%, 100% {
    opacity: 0;
  }
}

@keyframes selection-pulse {
  0%, 70%, 92%, 100% {
    opacity: 0;
  }
  74%, 86% {
    opacity: 1;
  }
}

/* line 944, app/assets/stylesheets/marketing.scss */
.hero-command {
  grid-column: 1 / -1;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 2.5fr auto;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

/* line 953, app/assets/stylesheets/marketing.scss */
.hero-command code {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
  font: 400 11px "DM Mono", monospace;
  text-transform: none;
}

/* line 964, app/assets/stylesheets/marketing.scss */
.hero-command button {
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font: 500 9px "DM Mono", monospace;
}

/* line 974, app/assets/stylesheets/marketing.scss */
.ticker {
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--navy);
  color: var(--pink);
  background: var(--navy);
  white-space: nowrap;
}

/* line 982, app/assets/stylesheets/marketing.scss */
.ticker div {
  width: max-content;
  font: 400 21px "Instrument Serif", serif;
  letter-spacing: 0.05em;
  animation: ticker 24s linear infinite;
}

/* line 989, app/assets/stylesheets/marketing.scss */
.ticker i {
  margin: 0 20px;
  color: var(--blue);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* line 1000, app/assets/stylesheets/marketing.scss */
.workspace-exhibit {
  padding: 30px 32px 80px;
  background: var(--paper);
}

/* line 1005, app/assets/stylesheets/marketing.scss */
.exhibit-label,
.section-masthead {
  padding: 0 0 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--navy);
}

/* line 1013, app/assets/stylesheets/marketing.scss */
.exhibit-copy {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 60px;
}

/* line 1020, app/assets/stylesheets/marketing.scss */
.exhibit-copy h2 {
  margin: 0;
  font: 400 clamp(62px, 8vw, 122px)/0.83 "Instrument Serif", serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

/* line 1027, app/assets/stylesheets/marketing.scss */
.exhibit-copy h2 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1033, app/assets/stylesheets/marketing.scss */
.exhibit-copy p {
  max-width: 440px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.7;
}

/* line 1041, app/assets/stylesheets/marketing.scss */
.editor-stage {
  min-height: 660px;
  padding: 70px 6vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--navy);
  background: var(--blue-deep);
}

/* line 1053, app/assets/stylesheets/marketing.scss */
.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* line 1063, app/assets/stylesheets/marketing.scss */
.editor-window {
  width: 88%;
  max-width: 900px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--navy);
  background: var(--dark);
  box-shadow: 18px 18px 0 var(--pink);
}

/* line 1073, app/assets/stylesheets/marketing.scss */
.editor-window-bar {
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #394058;
  color: #aeb7d0;
  font: 400 9px "DM Mono", monospace;
  letter-spacing: 0.06em;
}

/* line 1084, app/assets/stylesheets/marketing.scss */
.editor-window-bar span:last-child {
  color: var(--pink-hot);
}

/* line 1089, app/assets/stylesheets/marketing.scss */
.editor-layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: 175px 1fr;
}

/* line 1094, app/assets/stylesheets/marketing.scss */
.editor-layout aside {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid #394058;
  color: #8d96ad;
  font: 400 10px "DM Mono", monospace;
}

/* line 1104, app/assets/stylesheets/marketing.scss */
.editor-layout aside b {
  margin: 0 10px 12px;
  color: #626b81;
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* line 1111, app/assets/stylesheets/marketing.scss */
.editor-layout aside span {
  padding: 7px 9px;
}

/* line 1115, app/assets/stylesheets/marketing.scss */
.editor-layout aside .selected {
  color: #f2f4fa;
  background: #292f40;
}

/* line 1121, app/assets/stylesheets/marketing.scss */
.editor-code {
  position: relative;
  overflow: hidden;
}

/* line 1126, app/assets/stylesheets/marketing.scss */
.editor-tabs {
  width: 150px;
  height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid #394058;
  border-top: 2px solid var(--pink-hot);
  color: #dce0ec;
  font: 400 9px "DM Mono", monospace;
}

/* line 1139, app/assets/stylesheets/marketing.scss */
.editor-code pre {
  margin: 0;
  padding: 27px;
  color: #c8cfe0;
  font: 400 clamp(9px, 1vw, 12px)/1.9 "DM Mono", monospace;
}

/* line 1145, app/assets/stylesheets/marketing.scss */
.editor-code pre i {
  margin-right: 15px;
  color: #4f586e;
  font-style: normal;
}

/* line 1151, app/assets/stylesheets/marketing.scss */
.editor-code pre b {
  color: var(--pink-hot);
  font-weight: 400;
}

/* line 1157, app/assets/stylesheets/marketing.scss */
.live-cursor {
  position: absolute;
  top: 196px;
  right: 20%;
  padding: 5px 7px;
  color: var(--navy);
  background: var(--blue);
  font: 500 8px "DM Mono", monospace;
}

/* line 1166, app/assets/stylesheets/marketing.scss */
.live-cursor::before {
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 1px;
  height: 22px;
  content: "";
  background: var(--blue);
}

/* line 1177, app/assets/stylesheets/marketing.scss */
.floating-terminal {
  width: 55%;
  max-width: 480px;
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 35px;
  border: 1px solid var(--pink-hot);
  color: #dfe4ef;
  background: #111626;
  box-shadow: -12px 12px 0 rgba(0, 0, 0, 0.2);
}

/* line 1189, app/assets/stylesheets/marketing.scss */
.floating-terminal > div {
  height: 33px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #333a4d;
  color: #727d94;
  font: 400 8px "DM Mono", monospace;
}

/* line 1200, app/assets/stylesheets/marketing.scss */
.floating-terminal > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-hot);
}

/* line 1207, app/assets/stylesheets/marketing.scss */
.floating-terminal > div span:nth-child(2) {
  background: #f5d176;
}

/* line 1208, app/assets/stylesheets/marketing.scss */
.floating-terminal > div span:nth-child(3) {
  margin-right: 7px;
  background: var(--pink-hot);
}

/* line 1210, app/assets/stylesheets/marketing.scss */
.floating-terminal code {
  padding: 18px;
  display: block;
  font: 400 10px/1.8 "DM Mono", monospace;
}

/* line 1216, app/assets/stylesheets/marketing.scss */
.floating-terminal code b {
  color: var(--blue);
  font-weight: 400;
}

/* line 1217, app/assets/stylesheets/marketing.scss */
.floating-terminal code em {
  color: var(--pink-hot);
  font-style: normal;
}

/* line 1218, app/assets/stylesheets/marketing.scss */
.floating-terminal code strong {
  color: var(--pink-hot);
  font-weight: 400;
}

/* line 1221, app/assets/stylesheets/marketing.scss */
.process-section {
  padding: 30px 32px 100px;
  background: var(--pink);
}

/* line 1226, app/assets/stylesheets/marketing.scss */
.process-intro {
  padding: 70px 0 65px;
}

/* line 1229, app/assets/stylesheets/marketing.scss */
.process-intro h2 {
  max-width: 1050px;
  margin: 0;
  font: 400 clamp(55px, 7vw, 105px)/0.88 "Instrument Serif", serif;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* line 1237, app/assets/stylesheets/marketing.scss */
.process-intro em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1244, app/assets/stylesheets/marketing.scss */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}

/* line 1250, app/assets/stylesheets/marketing.scss */
.process-grid article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

/* line 1257, app/assets/stylesheets/marketing.scss */
.process-grid h3 {
  margin: 27px 0 12px;
  font: 400 38px "Instrument Serif", serif;
}

/* line 1262, app/assets/stylesheets/marketing.scss */
.process-grid p {
  min-height: 70px;
  margin: 0 0 30px;
  font-size: 13px;
  line-height: 1.65;
}

/* line 1269, app/assets/stylesheets/marketing.scss */
.process-grid article > b {
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 1275, app/assets/stylesheets/marketing.scss */
.process-number {
  font: 500 9px "DM Mono", monospace;
}

/* line 1279, app/assets/stylesheets/marketing.scss */
.process-visual {
  height: 220px;
  margin-top: 22px;
  border: 1px solid var(--navy);
  background: rgba(248, 246, 240, 0.28);
}

/* line 1286, app/assets/stylesheets/marketing.scss */
.launch-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy);
}

/* line 1292, app/assets/stylesheets/marketing.scss */
.launch-visual span {
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--blue);
  font: 400 34px "Instrument Serif", serif;
}

/* line 1300, app/assets/stylesheets/marketing.scss */
.launch-visual span:nth-child(2),
.launch-visual span:nth-child(3) {
  background: var(--paper);
}

/* line 1306, app/assets/stylesheets/marketing.scss */
.collaborate-visual {
  padding: 0 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1312, app/assets/stylesheets/marketing.scss */
.collaborate-visual div {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
  font: 500 10px "DM Mono", monospace;
}

/* line 1324, app/assets/stylesheets/marketing.scss */
.collaborate-visual div:last-child {
  background: var(--paper);
}

/* line 1328, app/assets/stylesheets/marketing.scss */
.collaborate-visual i {
  width: 100%;
  height: 1px;
  background: var(--navy);
}

/* line 1335, app/assets/stylesheets/marketing.scss */
.signal-visual {
  padding: 28px 12%;
  display: flex;
  align-items: flex-end;
  gap: 7%;
}

/* line 1341, app/assets/stylesheets/marketing.scss */
.signal-visual span {
  width: 14%;
  border: 1px solid var(--navy);
  background: var(--blue);
}

/* line 1348, app/assets/stylesheets/marketing.scss */
.manifesto {
  padding: 110px 32px;
  text-align: center;
  background: var(--blue);
}

/* line 1353, app/assets/stylesheets/marketing.scss */
.manifesto p {
  margin: 35px auto 45px;
  font: 400 clamp(72px, 10vw, 160px)/0.78 "Instrument Serif", serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

/* line 1360, app/assets/stylesheets/marketing.scss */
.manifesto em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1367, app/assets/stylesheets/marketing.scss */
.poster-button-dark {
  min-height: 48px;
  padding: 0 24px;
}

/* line 1372, app/assets/stylesheets/marketing.scss */
.wordmark-section {
  height: 210px;
  overflow: hidden;
  color: var(--blue);
  background: var(--navy);
  text-align: center;
}

/* line 1379, app/assets/stylesheets/marketing.scss */
.wordmark-section span {
  display: block;
  font: 400 clamp(150px, 25vw, 360px)/0.78 "Instrument Serif", serif;
  letter-spacing: -0.07em;
}

/* line 1386, app/assets/stylesheets/marketing.scss */
.marketing-footer {
  padding: 55px 0 24px;
  color: var(--blue);
  background: var(--navy);
}

/* line 1392, app/assets/stylesheets/marketing.scss */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* line 1397, app/assets/stylesheets/marketing.scss */
.footer-inner p {
  margin: 13px 0 0;
  color: #939a94;
  font-size: 12px;
}

/* line 1403, app/assets/stylesheets/marketing.scss */
.footer-inner .brand-mark {
  border-color: var(--blue);
}

/* line 1406, app/assets/stylesheets/marketing.scss */
.footer-inner .brand-mark i {
  background: var(--blue);
}

/* line 1412, app/assets/stylesheets/marketing.scss */
.footer-links {
  display: flex;
  gap: 28px;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 1419, app/assets/stylesheets/marketing.scss */
.footer-links a:hover {
  color: var(--pink-hot);
}

/* line 1424, app/assets/stylesheets/marketing.scss */
.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(220, 236, 255, 0.28);
  color: #7f8780;
  font: 400 8px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 1436, app/assets/stylesheets/marketing.scss */
.inner-page {
  background: var(--blue);
}

/* line 1440, app/assets/stylesheets/marketing.scss */
.inner-hero,
.pricing-hero,
.about-hero,
.contact-page {
  padding: 0 32px;
  border-bottom: 1px solid var(--navy);
}

/* line 1448, app/assets/stylesheets/marketing.scss */
.inner-hero-meta {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* line 1458, app/assets/stylesheets/marketing.scss */
.inner-hero-meta span:nth-child(2) {
  text-align: center;
}

/* line 1462, app/assets/stylesheets/marketing.scss */
.inner-hero-meta span:last-child {
  text-align: right;
}

/* line 1466, app/assets/stylesheets/marketing.scss */
.inner-hero-meta i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 7px var(--pink-hot);
}

/* line 1477, app/assets/stylesheets/marketing.scss */
.inner-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.55fr 0.45fr;
  align-items: end;
  gap: 70px;
  padding: 80px 5vw 85px;
}

/* line 1485, app/assets/stylesheets/marketing.scss */
.inner-hero-grid h1 {
  margin: 22px 0 0;
  font: 400 clamp(72px, 8.4vw, 132px)/0.8 "Instrument Serif", serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* line 1492, app/assets/stylesheets/marketing.scss */
.inner-hero-grid h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1499, app/assets/stylesheets/marketing.scss */
.inner-hero-aside {
  padding-bottom: 8px;
}

/* line 1502, app/assets/stylesheets/marketing.scss */
.inner-hero-aside p {
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.75;
}

/* line 1509, app/assets/stylesheets/marketing.scss */
.page-section-label {
  padding: 0 0 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--navy);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* line 1519, app/assets/stylesheets/marketing.scss */
.product-console {
  margin: 90px 6vw;
  border: 1px solid #343834;
  color: #d7ddd8;
  background: #0b0e0c;
  box-shadow: 18px 18px 0 var(--pink);
  font-family: "DM Mono", monospace;
}

/* line 1528, app/assets/stylesheets/marketing.scss */
.console-toolbar {
  height: 45px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #343834;
  color: #818a82;
  font-size: 8px;
  letter-spacing: 0.08em;
}

/* line 1540, app/assets/stylesheets/marketing.scss */
.console-live {
  color: var(--pink-hot);
}

/* line 1544, app/assets/stylesheets/marketing.scss */
.console-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 190px 1fr 32%;
}

/* line 1549, app/assets/stylesheets/marketing.scss */
.console-grid aside {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #343834;
  color: #929a93;
  font-size: 9px;
}

/* line 1558, app/assets/stylesheets/marketing.scss */
.console-grid aside b,
.console-grid aside strong {
  margin: 0 10px 14px;
  color: #69716a;
  font-size: 7px;
  letter-spacing: 0.12em;
}

/* line 1566, app/assets/stylesheets/marketing.scss */
.console-grid aside strong {
  margin-top: 28px;
}

/* line 1570, app/assets/stylesheets/marketing.scss */
.console-grid aside span {
  padding: 7px 10px;
}

/* line 1574, app/assets/stylesheets/marketing.scss */
.console-grid aside .active {
  color: #f6f8f6;
  background: #252a26;
}

/* line 1580, app/assets/stylesheets/marketing.scss */
.console-code {
  position: relative;
  overflow: hidden;
  border-right: 1px solid #343834;
}

/* line 1585, app/assets/stylesheets/marketing.scss */
.console-code pre {
  margin: 0;
  padding: 34px 25px;
  color: #cbd1cc;
  font: 400 12px/2 "DM Mono", monospace;
}

/* line 1592, app/assets/stylesheets/marketing.scss */
.console-code pre i {
  width: 22px;
  margin-right: 16px;
  display: inline-block;
  color: #4f5650;
  font-style: normal;
  text-align: right;
}

/* line 1601, app/assets/stylesheets/marketing.scss */
.console-code pre b {
  color: var(--pink-hot);
  font-weight: 400;
}

/* line 1607, app/assets/stylesheets/marketing.scss */
.console-tab {
  width: 150px;
  height: 37px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-top: 2px solid var(--pink-hot);
  border-right: 1px solid #343834;
  color: #dfe3df;
  font-size: 9px;
}

/* line 1619, app/assets/stylesheets/marketing.scss */
.console-cursor {
  position: absolute;
  padding: 5px 7px;
  color: #071008;
  background: var(--pink-hot);
  font-size: 6px;
}

/* line 1627, app/assets/stylesheets/marketing.scss */
.cursor-green {
  top: 205px;
  left: 48%;
}

/* line 1632, app/assets/stylesheets/marketing.scss */
.cursor-white {
  top: 310px;
  left: 28%;
  background: #f1f3f1;
}

/* line 1638, app/assets/stylesheets/marketing.scss */
.console-panel {
  min-width: 0;
}

/* line 1642, app/assets/stylesheets/marketing.scss */
.console-panel-tabs {
  height: 37px;
  padding: 14px 12px 0;
  border-bottom: 1px solid #343834;
  color: #818a82;
  font-size: 7px;
}

/* line 1650, app/assets/stylesheets/marketing.scss */
.console-panel code {
  padding: 28px 18px;
  display: block;
  color: #c2c8c3;
  font: 400 10px/1.8 "DM Mono", monospace;
}

/* line 1656, app/assets/stylesheets/marketing.scss */
.console-panel code em,
.console-panel code strong {
  color: var(--pink-hot);
  font-style: normal;
  font-weight: 400;
}

/* line 1663, app/assets/stylesheets/marketing.scss */
.console-panel code span {
  color: #646d65;
}

/* line 1668, app/assets/stylesheets/marketing.scss */
.capability-section,
.team-principles,
.beliefs-section,
.faq-section {
  padding: 90px 32px 110px;
  border-top: 1px solid var(--navy);
  background: var(--paper);
}

/* line 1677, app/assets/stylesheets/marketing.scss */
.capability-rows {
  border-left: 1px solid var(--line);
}

/* line 1680, app/assets/stylesheets/marketing.scss */
.capability-rows article {
  min-height: 185px;
  display: grid;
  grid-template-columns: 70px 1fr 1fr 0.7fr;
  align-items: center;
  gap: 30px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* line 1691, app/assets/stylesheets/marketing.scss */
.capability-rows article > span,
.capability-rows article > b {
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 1697, app/assets/stylesheets/marketing.scss */
.capability-rows h2 {
  margin: 0;
  font: 400 clamp(36px, 4vw, 61px) "Instrument Serif", serif;
}

/* line 1702, app/assets/stylesheets/marketing.scss */
.capability-rows p {
  margin: 0;
  max-width: 430px;
  font-size: 13px;
  line-height: 1.7;
}

/* line 1709, app/assets/stylesheets/marketing.scss */
.capability-rows article > b {
  color: var(--pink-hot);
  text-align: right;
}

/* line 1715, app/assets/stylesheets/marketing.scss */
.page-cta {
  min-height: 530px;
  padding: 90px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px), var(--blue);
  background-size: 38px 38px;
}

/* line 1729, app/assets/stylesheets/marketing.scss */
.page-cta > span {
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.12em;
}

/* line 1734, app/assets/stylesheets/marketing.scss */
.page-cta h2 {
  margin: 28px 0 42px;
  font: 400 clamp(66px, 8vw, 122px)/0.83 "Instrument Serif", serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

/* line 1741, app/assets/stylesheets/marketing.scss */
.page-cta h2 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1748, app/assets/stylesheets/marketing.scss */
.team-map {
  padding: 70px 6vw 100px;
  background: var(--paper);
}

/* line 1753, app/assets/stylesheets/marketing.scss */
.team-map-title {
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 1761, app/assets/stylesheets/marketing.scss */
.team-map-canvas {
  height: 630px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--navy);
  background: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px), var(--blue);
  background-size: 42px 42px;
}

/* line 1773, app/assets/stylesheets/marketing.scss */
.team-node {
  width: 170px;
  height: 82px;
  position: absolute;
  z-index: 2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--navy);
  background: var(--blue);
  font-family: "DM Mono", monospace;
}

/* line 1786, app/assets/stylesheets/marketing.scss */
.team-node b {
  font-size: 9px;
  letter-spacing: 0.08em;
}

/* line 1791, app/assets/stylesheets/marketing.scss */
.team-node small {
  margin-top: 8px;
  font-size: 7px;
}

/* line 1797, app/assets/stylesheets/marketing.scss */
.team-node-main {
  width: 190px;
  height: 100px;
  top: calc(50% - 50px);
  left: calc(50% - 95px);
  color: #071008;
  background: var(--pink-hot);
}

/* line 1806, app/assets/stylesheets/marketing.scss */
.team-node-one {
  top: 70px;
  left: 10%;
}

/* line 1807, app/assets/stylesheets/marketing.scss */
.team-node-two {
  top: 90px;
  right: 9%;
}

/* line 1808, app/assets/stylesheets/marketing.scss */
.team-node-three {
  right: 14%;
  bottom: 65px;
}

/* line 1810, app/assets/stylesheets/marketing.scss */
.team-connector {
  height: 1px;
  position: absolute;
  z-index: 1;
  background: var(--navy);
  transform-origin: left;
}

/* line 1818, app/assets/stylesheets/marketing.scss */
.connector-one {
  width: 31%;
  top: 45%;
  left: 20%;
  transform: rotate(22deg);
}

/* line 1819, app/assets/stylesheets/marketing.scss */
.connector-two {
  width: 29%;
  top: 48%;
  left: 51%;
  transform: rotate(-27deg);
}

/* line 1820, app/assets/stylesheets/marketing.scss */
.connector-three {
  width: 28%;
  top: 56%;
  left: 51%;
  transform: rotate(25deg);
}

/* line 1822, app/assets/stylesheets/marketing.scss */
.team-pulse {
  width: 260px;
  height: 260px;
  position: absolute;
  top: calc(50% - 130px);
  left: calc(50% - 130px);
  border: 1px solid var(--pink-hot);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(0, 200, 83, 0.06), 0 0 0 80px rgba(0, 200, 83, 0.03);
}

/* line 1833, app/assets/stylesheets/marketing.scss */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

/* line 1838, app/assets/stylesheets/marketing.scss */
.principle-grid article {
  min-height: 440px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* line 1845, app/assets/stylesheets/marketing.scss */
.principle-grid article > span {
  color: var(--pink-hot);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.11em;
}

/* line 1851, app/assets/stylesheets/marketing.scss */
.principle-grid h2 {
  margin: 100px 0 24px;
  font: 400 clamp(40px, 4vw, 61px)/0.95 "Instrument Serif", serif;
}

/* line 1856, app/assets/stylesheets/marketing.scss */
.principle-grid p {
  max-width: 340px;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

/* line 1864, app/assets/stylesheets/marketing.scss */
.quote-section {
  min-height: 640px;
  padding: 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #071008;
  background: var(--pink-hot);
  text-align: center;
}

/* line 1874, app/assets/stylesheets/marketing.scss */
.quote-section > span,
.quote-section > p {
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.11em;
}

/* line 1880, app/assets/stylesheets/marketing.scss */
.quote-section blockquote {
  max-width: 1180px;
  margin: 60px auto;
  font: 400 clamp(55px, 7vw, 102px)/0.92 "Instrument Serif", serif;
}

/* line 1887, app/assets/stylesheets/marketing.scss */
.page-cta-inverse {
  color: var(--blue);
  background: var(--navy);
}

/* line 1891, app/assets/stylesheets/marketing.scss */
.page-cta-inverse .poster-button {
  border-color: var(--blue);
  color: var(--navy);
  background: var(--blue);
}

/* line 1898, app/assets/stylesheets/marketing.scss */
.pricing-heading {
  min-height: 570px;
  padding: 80px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* line 1907, app/assets/stylesheets/marketing.scss */
.pricing-heading h1 {
  margin: 20px 0 28px;
  font: 400 clamp(78px, 10vw, 150px)/0.75 "Instrument Serif", serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* line 1914, app/assets/stylesheets/marketing.scss */
.pricing-heading h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 1920, app/assets/stylesheets/marketing.scss */
.pricing-heading > p:last-child {
  max-width: 600px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* line 1928, app/assets/stylesheets/marketing.scss */
.pricing-plans {
  padding: 0 32px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue);
}

/* line 1935, app/assets/stylesheets/marketing.scss */
.price-card {
  min-height: 610px;
  padding: 28px;
  border-top: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

/* line 1942, app/assets/stylesheets/marketing.scss */
.price-card:first-child {
  border-left: 1px solid var(--navy);
}

/* line 1946, app/assets/stylesheets/marketing.scss */
.price-card > h2 {
  min-height: 82px;
  margin: 65px 0 20px;
  font: 400 clamp(48px, 5vw, 78px) "Instrument Serif", serif;
}

/* line 1952, app/assets/stylesheets/marketing.scss */
.price-card h2 small {
  font: 400 11px "DM Mono", monospace;
}

/* line 1956, app/assets/stylesheets/marketing.scss */
.price-card > p {
  min-height: 66px;
  max-width: 330px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.6;
}

/* line 1964, app/assets/stylesheets/marketing.scss */
.price-card ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

/* line 1971, app/assets/stylesheets/marketing.scss */
.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

/* line 1976, app/assets/stylesheets/marketing.scss */
.price-card li::before {
  margin-right: 10px;
  color: var(--pink-hot);
  content: "✓";
}

/* line 1983, app/assets/stylesheets/marketing.scss */
.price-card-featured {
  color: var(--blue);
  background: var(--navy);
}

/* line 1987, app/assets/stylesheets/marketing.scss */
.price-card-featured .price-card-top b {
  color: var(--pink-hot);
}

/* line 1991, app/assets/stylesheets/marketing.scss */
.price-card-featured .price-button {
  border-color: var(--blue);
  color: var(--navy);
  background: var(--blue);
}

/* line 1998, app/assets/stylesheets/marketing.scss */
.price-card-top {
  display: flex;
  justify-content: space-between;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.09em;
}

/* line 2005, app/assets/stylesheets/marketing.scss */
.price-button {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* line 2016, app/assets/stylesheets/marketing.scss */
.price-button:hover {
  color: #071008;
  background: var(--pink-hot);
}

/* line 2022, app/assets/stylesheets/marketing.scss */
.pricing-note {
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: var(--pink);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.07em;
}

/* line 2032, app/assets/stylesheets/marketing.scss */
.pricing-note p {
  margin: 0;
}

/* line 2036, app/assets/stylesheets/marketing.scss */
.pricing-note a {
  border-bottom: 1px solid var(--navy);
}

/* line 2041, app/assets/stylesheets/marketing.scss */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
}

/* line 2046, app/assets/stylesheets/marketing.scss */
.faq-grid details {
  min-height: 155px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* line 2053, app/assets/stylesheets/marketing.scss */
.faq-grid summary {
  cursor: pointer;
  font: 400 24px "Instrument Serif", serif;
}

/* line 2058, app/assets/stylesheets/marketing.scss */
.faq-grid p {
  max-width: 540px;
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.7;
}

/* line 2066, app/assets/stylesheets/marketing.scss */
.about-statement {
  min-height: 680px;
  padding: 90px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 2073, app/assets/stylesheets/marketing.scss */
.about-statement h1 {
  max-width: 1300px;
  margin: 25px 0 0;
  font: 400 clamp(71px, 8.8vw, 136px)/0.82 "Instrument Serif", serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

/* line 2081, app/assets/stylesheets/marketing.scss */
.about-statement h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 2088, app/assets/stylesheets/marketing.scss */
.about-story {
  padding: 110px 8vw;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  border-bottom: 1px solid var(--navy);
  background: var(--paper);
}

/* line 2096, app/assets/stylesheets/marketing.scss */
.story-index {
  font: 500 8px/1.7 "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 2101, app/assets/stylesheets/marketing.scss */
.story-lead {
  max-width: 1000px;
  margin: 0 0 70px;
  font: 400 clamp(42px, 5vw, 75px)/1.02 "Instrument Serif", serif;
}

/* line 2107, app/assets/stylesheets/marketing.scss */
.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* line 2112, app/assets/stylesheets/marketing.scss */
.story-columns p {
  max-width: 470px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* line 2120, app/assets/stylesheets/marketing.scss */
.belief-list {
  border-left: 1px solid var(--line);
}

/* line 2123, app/assets/stylesheets/marketing.scss */
.belief-list article {
  min-height: 160px;
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* line 2134, app/assets/stylesheets/marketing.scss */
.belief-list article > span {
  font: 500 8px "DM Mono", monospace;
}

/* line 2138, app/assets/stylesheets/marketing.scss */
.belief-list h2 {
  margin: 0;
  font: 400 clamp(35px, 4vw, 58px) "Instrument Serif", serif;
}

/* line 2143, app/assets/stylesheets/marketing.scss */
.belief-list p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

/* line 2151, app/assets/stylesheets/marketing.scss */
.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #071008;
  background: var(--pink-hot);
}

/* line 2157, app/assets/stylesheets/marketing.scss */
.about-numbers div {
  min-height: 310px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #071008;
}

/* line 2166, app/assets/stylesheets/marketing.scss */
.about-numbers div:last-child {
  border-right: 0;
}

/* line 2170, app/assets/stylesheets/marketing.scss */
.about-numbers strong {
  font: 400 120px/0.8 "Instrument Serif", serif;
}

/* line 2174, app/assets/stylesheets/marketing.scss */
.about-numbers span {
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* line 2181, app/assets/stylesheets/marketing.scss */
.contact-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  padding: 90px 5vw;
}

/* line 2190, app/assets/stylesheets/marketing.scss */
.contact-intro h1 {
  margin: 25px 0 35px;
  font: 400 clamp(71px, 8vw, 120px)/0.8 "Instrument Serif", serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

/* line 2197, app/assets/stylesheets/marketing.scss */
.contact-intro h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 2203, app/assets/stylesheets/marketing.scss */
.contact-intro > p {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.75;
}

/* line 2210, app/assets/stylesheets/marketing.scss */
.contact-email {
  margin-top: 45px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--navy);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 2220, app/assets/stylesheets/marketing.scss */
.contact-form {
  padding: 34px;
  border: 1px solid var(--navy);
  background: var(--paper);
}

/* line 2225, app/assets/stylesheets/marketing.scss */
.contact-form label {
  margin-bottom: 26px;
  display: block;
}

/* line 2230, app/assets/stylesheets/marketing.scss */
.contact-form label > span {
  margin-bottom: 9px;
  display: block;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 2237, app/assets/stylesheets/marketing.scss */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--navy);
  background: transparent;
  font: 400 14px "DM Sans", sans-serif;
}

/* line 2251, app/assets/stylesheets/marketing.scss */
.contact-form textarea {
  resize: vertical;
}

/* line 2255, app/assets/stylesheets/marketing.scss */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink-hot);
}

/* line 2262, app/assets/stylesheets/marketing.scss */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* line 2268, app/assets/stylesheets/marketing.scss */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* line 2274, app/assets/stylesheets/marketing.scss */
.form-submit button {
  min-height: 45px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  color: var(--blue);
  background: var(--navy);
  cursor: pointer;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* line 2286, app/assets/stylesheets/marketing.scss */
.form-submit button:hover {
  color: #071008;
  background: var(--pink-hot);
}

/* line 2291, app/assets/stylesheets/marketing.scss */
.form-submit small {
  max-width: 220px;
  font: 400 7px/1.5 "DM Mono", monospace;
  letter-spacing: 0.07em;
}

/* line 2298, app/assets/stylesheets/marketing.scss */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--navy);
  background: var(--paper);
}

/* line 2304, app/assets/stylesheets/marketing.scss */
.contact-options article {
  min-height: 340px;
  padding: 36px 32px;
  border-right: 1px solid var(--navy);
}

/* line 2310, app/assets/stylesheets/marketing.scss */
.contact-options article:last-child {
  border-right: 0;
}

/* line 2314, app/assets/stylesheets/marketing.scss */
.contact-options article > span {
  color: var(--pink-hot);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 2320, app/assets/stylesheets/marketing.scss */
.contact-options h2 {
  margin: 75px 0 18px;
  font: 400 38px/1 "Instrument Serif", serif;
}

/* line 2325, app/assets/stylesheets/marketing.scss */
.contact-options p {
  max-width: 330px;
  min-height: 58px;
  font-size: 12px;
  line-height: 1.65;
}

/* line 2332, app/assets/stylesheets/marketing.scss */
.contact-options a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* line 2342, app/assets/stylesheets/marketing.scss */
.api-docs-hero .inner-hero-aside p {
  max-width: 420px;
}

/* line 2347, app/assets/stylesheets/marketing.scss */
.api-base-pill {
  margin-top: 28px;
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: 500 11px/1.4 "DM Mono", monospace;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* line 2358, app/assets/stylesheets/marketing.scss */
.api-docs-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 18px 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* line 2372, app/assets/stylesheets/marketing.scss */
.api-docs-toc a {
  opacity: 0.55;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* line 2377, app/assets/stylesheets/marketing.scss */
.api-docs-toc a:hover {
  opacity: 1;
  color: var(--pink-hot);
}

/* line 2383, app/assets/stylesheets/marketing.scss */
.api-docs-section {
  padding: 90px 5vw 100px;
  border-bottom: 1px solid var(--line);
}

/* line 2388, app/assets/stylesheets/marketing.scss */
.api-docs-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4vw;
  align-items: start;
}

/* line 2394, app/assets/stylesheets/marketing.scss */
.api-docs-split h2 {
  margin: 0 0 18px;
  font: 400 clamp(36px, 4vw, 54px)/0.95 "Instrument Serif", serif;
  letter-spacing: -0.03em;
}

/* line 2400, app/assets/stylesheets/marketing.scss */
.api-docs-split > div > p,
.api-docs-split .api-docs-note {
  max-width: 520px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
}

/* line 2408, app/assets/stylesheets/marketing.scss */
.api-docs-split code {
  font-family: "DM Mono", monospace;
  font-size: 0.92em;
}

/* line 2414, app/assets/stylesheets/marketing.scss */
.api-docs-note {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  color: color-mix(in srgb, var(--navy) 72%, transparent);
  font-size: 13px !important;
}

/* line 2421, app/assets/stylesheets/marketing.scss */
.api-endpoint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}

/* line 2428, app/assets/stylesheets/marketing.scss */
.api-endpoint code {
  font: 500 13px/1.4 "DM Mono", monospace;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* line 2435, app/assets/stylesheets/marketing.scss */
.api-endpoint-alt {
  margin: -14px 0 28px;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* line 2443, app/assets/stylesheets/marketing.scss */
.api-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 10px;
  border: 1px solid var(--navy);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

/* line 2454, app/assets/stylesheets/marketing.scss */
.api-method-get {
  background: transparent;
}

/* line 2458, app/assets/stylesheets/marketing.scss */
.api-method-post {
  background: var(--pink-hot);
  border-color: var(--pink-hot);
  color: #041008;
}

/* line 2464, app/assets/stylesheets/marketing.scss */
.api-method-put {
  background: var(--paper);
}

/* line 2468, app/assets/stylesheets/marketing.scss */
.api-method-delete {
  background: var(--navy);
  color: var(--blue);
}

/* line 2473, app/assets/stylesheets/marketing.scss */
.api-params {
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

/* line 2478, app/assets/stylesheets/marketing.scss */
.api-params div {
  display: grid;
  grid-template-columns: minmax(110px, 160px) 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* line 2486, app/assets/stylesheets/marketing.scss */
.api-params dt {
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 0.06em;
}

/* line 2491, app/assets/stylesheets/marketing.scss */
.api-params dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

/* line 2498, app/assets/stylesheets/marketing.scss */
.api-bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

/* line 2503, app/assets/stylesheets/marketing.scss */
.api-bullets li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font: 500 11px/1.5 "DM Mono", monospace;
  letter-spacing: 0.04em;
}

/* line 2511, app/assets/stylesheets/marketing.scss */
.api-code {
  margin: 0;
  padding: 28px 26px 30px;
  border: 1px solid var(--navy);
  background: var(--dark);
  color: #d8e0d8;
  overflow-x: auto;
  font: 400 12.5px/1.65 "DM Mono", monospace;
  white-space: pre;
}

/* line 2522, app/assets/stylesheets/marketing.scss */
.api-code-label {
  display: block;
  margin-bottom: 18px;
  color: var(--pink-hot);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.12em;
}

@media (max-width: 1050px) {
  /* line 2531, app/assets/stylesheets/marketing.scss */
  .api-docs-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* line 2536, app/assets/stylesheets/marketing.scss */
  .poster-grid {
    grid-template-columns: 64px 1fr;
    grid-template-rows: 64px auto 560px 90px;
  }
  /* line 2541, app/assets/stylesheets/marketing.scss */
  .hero-status {
    display: none;
  }
  /* line 2545, app/assets/stylesheets/marketing.scss */
  .hero-statement {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  /* line 2551, app/assets/stylesheets/marketing.scss */
  .hero-art {
    grid-column: 1 / -1;
  }
  /* line 2555, app/assets/stylesheets/marketing.scss */
  .hero-command {
    grid-row: 4;
  }
  /* line 2559, app/assets/stylesheets/marketing.scss */
  .orbit-one {
    width: 360px;
    height: 360px;
  }
  /* line 2564, app/assets/stylesheets/marketing.scss */
  .orbit-two,
.orbit-three {
    width: 270px;
    height: 470px;
  }
  /* line 2570, app/assets/stylesheets/marketing.scss */
  .exhibit-copy {
    grid-template-columns: 1fr;
  }
  /* line 2574, app/assets/stylesheets/marketing.scss */
  .process-grid h3 {
    font-size: 31px;
  }
}

@media (max-width: 760px) {
  /* line 2580, app/assets/stylesheets/marketing.scss */
  .marketing-container {
    width: calc(100% - 32px);
  }
  /* line 2584, app/assets/stylesheets/marketing.scss */
  .nav-inner {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
  }
  /* line 2590, app/assets/stylesheets/marketing.scss */
  .nav-links,
.nav-login {
    display: none;
  }
  /* line 2595, app/assets/stylesheets/marketing.scss */
  .editorial-hero {
    min-height: auto;
    padding: 0 16px 16px;
  }
  /* line 2600, app/assets/stylesheets/marketing.scss */
  .poster-grid {
    min-height: auto;
    grid-template-columns: 46px 1fr;
    grid-template-rows: 52px auto 430px auto;
  }
  /* line 2606, app/assets/stylesheets/marketing.scss */
  .hero-index,
.hero-kicker {
    padding: 12px 10px;
  }
  /* line 2611, app/assets/stylesheets/marketing.scss */
  .hero-statement {
    padding: 60px 20px;
  }
  /* line 2615, app/assets/stylesheets/marketing.scss */
  .hero-statement h1 {
    font-size: clamp(45px, 14vw, 68px);
    line-height: 0.88;
  }
  /* line 2620, app/assets/stylesheets/marketing.scss */
  .hero-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  /* line 2625, app/assets/stylesheets/marketing.scss */
  .hero-art {
    min-height: 430px;
  }
  /* line 2629, app/assets/stylesheets/marketing.scss */
  .hero-ide {
    width: 94%;
    height: 82%;
    min-height: 350px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.22);
  }
  /* line 2636, app/assets/stylesheets/marketing.scss */
  .hero-ide-body {
    grid-template-columns: 78px minmax(0, 1fr);
  }
  /* line 2640, app/assets/stylesheets/marketing.scss */
  .hero-output {
    display: none;
  }
  /* line 2644, app/assets/stylesheets/marketing.scss */
  .hero-file-tree {
    font-size: 5px;
  }
  /* line 2647, app/assets/stylesheets/marketing.scss */
  .hero-file-tree span {
    padding-left: 5px;
  }
  /* line 2652, app/assets/stylesheets/marketing.scss */
  .hero-typed-code {
    font-size: 6px;
  }
  /* line 2656, app/assets/stylesheets/marketing.scss */
  .orbit-one {
    width: 290px;
    height: 290px;
  }
  /* line 2661, app/assets/stylesheets/marketing.scss */
  .orbit-two,
.orbit-three {
    width: 210px;
    height: 360px;
  }
  /* line 2667, app/assets/stylesheets/marketing.scss */
  .code-sun {
    width: 120px;
    height: 120px;
  }
  /* line 2672, app/assets/stylesheets/marketing.scss */
  .hero-command {
    padding: 15px;
    grid-template-columns: 1fr auto;
  }
  /* line 2676, app/assets/stylesheets/marketing.scss */
  .hero-command > span {
    grid-column: 1 / -1;
  }
  /* line 2681, app/assets/stylesheets/marketing.scss */
  .workspace-exhibit,
.process-section {
    padding-right: 16px;
    padding-left: 16px;
  }
  /* line 2687, app/assets/stylesheets/marketing.scss */
  .exhibit-copy {
    padding: 45px 0;
  }
  /* line 2691, app/assets/stylesheets/marketing.scss */
  .exhibit-copy h2,
.process-intro h2 {
    font-size: 56px;
  }
  /* line 2696, app/assets/stylesheets/marketing.scss */
  .editor-stage {
    min-height: 520px;
    padding: 40px 18px 110px;
  }
  /* line 2701, app/assets/stylesheets/marketing.scss */
  .editor-window {
    width: 100%;
    box-shadow: 8px 8px 0 var(--pink);
  }
  /* line 2706, app/assets/stylesheets/marketing.scss */
  .editor-layout {
    min-height: 340px;
    grid-template-columns: 1fr;
  }
  /* line 2710, app/assets/stylesheets/marketing.scss */
  .editor-layout aside {
    display: none;
  }
  /* line 2715, app/assets/stylesheets/marketing.scss */
  .editor-code pre {
    padding: 22px 12px;
    font-size: 8px;
  }
  /* line 2720, app/assets/stylesheets/marketing.scss */
  .floating-terminal {
    width: calc(100% - 55px);
    right: 18px;
    bottom: 22px;
  }
  /* line 2726, app/assets/stylesheets/marketing.scss */
  .process-grid {
    grid-template-columns: 1fr;
  }
  /* line 2730, app/assets/stylesheets/marketing.scss */
  .process-grid p {
    min-height: auto;
  }
  /* line 2734, app/assets/stylesheets/marketing.scss */
  .manifesto {
    padding: 80px 16px;
  }
  /* line 2737, app/assets/stylesheets/marketing.scss */
  .manifesto p {
    font-size: 66px;
  }
  /* line 2742, app/assets/stylesheets/marketing.scss */
  .wordmark-section {
    height: 120px;
  }
  /* line 2745, app/assets/stylesheets/marketing.scss */
  .wordmark-section span {
    font-size: 130px;
  }
  /* line 2750, app/assets/stylesheets/marketing.scss */
  .footer-inner {
    flex-direction: column;
    gap: 35px;
  }
  /* line 2755, app/assets/stylesheets/marketing.scss */
  .footer-links {
    flex-wrap: wrap;
  }
}

/* line 2760, app/assets/stylesheets/marketing.scss */
.auth-body {
  min-height: 100vh;
  margin: 0;
  background: var(--blue);
}

/* line 2766, app/assets/stylesheets/marketing.scss */
.auth-nav {
  height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--blue);
}

/* line 2775, app/assets/stylesheets/marketing.scss */
.auth-nav > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* line 2782, app/assets/stylesheets/marketing.scss */
.auth-nav-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font: 500 7px "DM Mono", monospace;
  letter-spacing: 0.09em;
}

/* line 2790, app/assets/stylesheets/marketing.scss */
.auth-nav-status i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 7px var(--pink-hot);
}

/* line 2800, app/assets/stylesheets/marketing.scss */
.auth-shell {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

/* line 2806, app/assets/stylesheets/marketing.scss */
.auth-flash {
  position: fixed;
  z-index: 20;
  top: 84px;
  left: 50%;
  padding: 10px 15px;
  border: 1px solid var(--navy);
  color: #071008;
  background: var(--pink-hot);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
}

/* line 2819, app/assets/stylesheets/marketing.scss */
.auth-flash.is-alert {
  color: #fff;
  background: #b92f2f;
}

/* line 2825, app/assets/stylesheets/marketing.scss */
.auth-copy {
  padding: 40px 6vw 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px), var(--blue);
  background-size: 40px 40px;
}

/* line 2837, app/assets/stylesheets/marketing.scss */
.auth-copy h1 {
  margin: 22px 0 28px;
  font: 400 clamp(67px, 8vw, 120px)/0.78 "Instrument Serif", serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* line 2844, app/assets/stylesheets/marketing.scss */
.auth-copy h1 em {
  color: var(--pink-hot);
  font-weight: 400;
  text-transform: none;
}

/* line 2850, app/assets/stylesheets/marketing.scss */
.auth-copy > div > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

/* line 2858, app/assets/stylesheets/marketing.scss */
.auth-index {
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.11em;
}

/* line 2863, app/assets/stylesheets/marketing.scss */
.auth-terminal {
  max-width: 510px;
  border: 1px solid #333a34;
  color: #dce2dd;
  background: #090c0a;
  font-family: "DM Mono", monospace;
  box-shadow: 9px 9px 0 var(--pink);
}

/* line 2871, app/assets/stylesheets/marketing.scss */
.auth-terminal > span {
  padding: 10px 12px;
  display: block;
  border-bottom: 1px solid #333a34;
  color: #6d766e;
  font-size: 7px;
  letter-spacing: 0.1em;
}

/* line 2880, app/assets/stylesheets/marketing.scss */
.auth-terminal code {
  padding: 22px 15px;
  display: block;
  font-size: 11px;
}

/* line 2886, app/assets/stylesheets/marketing.scss */
.auth-terminal code i {
  color: var(--pink-hot);
  font-style: normal;
}

/* line 2891, app/assets/stylesheets/marketing.scss */
.auth-terminal code b {
  width: 7px;
  height: 13px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: -2px;
  background: var(--pink-hot);
  animation: caret-blink 0.8s steps(1) infinite;
}

/* line 2902, app/assets/stylesheets/marketing.scss */
.auth-benefits {
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}

/* line 2909, app/assets/stylesheets/marketing.scss */
.auth-benefits span {
  min-height: 65px;
  padding: 12px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  font: 500 7px/1.5 "DM Mono", monospace;
  letter-spacing: 0.07em;
}

/* line 2921, app/assets/stylesheets/marketing.scss */
.auth-back-link {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

/* line 2929, app/assets/stylesheets/marketing.scss */
.auth-panel {
  padding: 65px clamp(35px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

/* line 2937, app/assets/stylesheets/marketing.scss */
.auth-form-heading {
  margin-bottom: 42px;
}

/* line 2940, app/assets/stylesheets/marketing.scss */
.auth-form-heading > span {
  color: var(--pink-hot);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.11em;
}

/* line 2946, app/assets/stylesheets/marketing.scss */
.auth-form-heading h2 {
  margin: 13px 0 10px;
  font: 400 48px/1 "Instrument Serif", serif;
}

/* line 2951, app/assets/stylesheets/marketing.scss */
.auth-form-heading p {
  margin: 0;
  color: var(--navy);
  opacity: 0.65;
  font-size: 12px;
  line-height: 1.6;
}

/* line 2961, app/assets/stylesheets/marketing.scss */
.auth-form label {
  margin-bottom: 25px;
  display: block;
}

/* line 2966, app/assets/stylesheets/marketing.scss */
.auth-form label > span {
  margin-bottom: 8px;
  display: block;
  font: 500 7px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 2973, app/assets/stylesheets/marketing.scss */
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font: 400 14px "DM Sans", sans-serif;
}

/* line 2986, app/assets/stylesheets/marketing.scss */
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="text"]:focus {
  border-color: var(--pink-hot);
}

/* line 2992, app/assets/stylesheets/marketing.scss */
.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* line 2998, app/assets/stylesheets/marketing.scss */
.auth-check {
  display: flex !important;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  cursor: pointer;
}

/* line 3005, app/assets/stylesheets/marketing.scss */
.auth-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--pink-hot);
}

/* line 3011, app/assets/stylesheets/marketing.scss */
.auth-check span {
  margin: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none;
}

/* line 3021, app/assets/stylesheets/marketing.scss */
.auth-submit {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--navy);
  color: var(--blue);
  background: var(--navy);
  cursor: pointer;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 3031, app/assets/stylesheets/marketing.scss */
.auth-submit:hover {
  border-color: var(--pink-hot);
  color: #071008;
  background: var(--pink-hot);
}

/* line 3038, app/assets/stylesheets/marketing.scss */
.auth-links {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* line 3043, app/assets/stylesheets/marketing.scss */
.auth-links p {
  margin: 0 0 8px;
  color: var(--navy);
  opacity: 0.65;
  font-size: 10px;
}

/* line 3050, app/assets/stylesheets/marketing.scss */
.auth-links a {
  opacity: 1;
  color: var(--navy);
  font-weight: 600;
}

/* line 3056, app/assets/stylesheets/marketing.scss */
.auth-links a:hover {
  color: var(--pink-hot);
}

/* line 3061, app/assets/stylesheets/marketing.scss */
.auth-provider {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

/* line 3070, app/assets/stylesheets/marketing.scss */
#error_explanation {
  margin-bottom: 25px;
  padding: 14px;
  border: 1px solid var(--pink-hot);
  color: var(--navy);
  background: var(--pink);
}

/* line 3077, app/assets/stylesheets/marketing.scss */
#error_explanation h2 {
  margin: 0 0 8px;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: 0.05em;
}

/* line 3083, app/assets/stylesheets/marketing.scss */
#error_explanation ul {
  margin: 0;
  padding-left: 18px;
  font-size: 10px;
  line-height: 1.6;
}

/* line 3091, app/assets/stylesheets/marketing.scss */
.auth-danger {
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

/* line 3100, app/assets/stylesheets/marketing.scss */
.auth-danger span {
  color: #d13c3c;
  font: 500 7px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

/* line 3106, app/assets/stylesheets/marketing.scss */
.auth-danger p {
  margin: 6px 0 0;
  color: var(--navy);
  opacity: 0.6;
  font-size: 9px;
}

/* line 3113, app/assets/stylesheets/marketing.scss */
.auth-danger button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d13c3c;
  color: #d13c3c;
  background: transparent;
  cursor: pointer;
  font: 500 7px "DM Mono", monospace;
}

/* line 3124, app/assets/stylesheets/marketing.scss */
.auth-shell-profile .auth-panel {
  padding-top: 45px;
  padding-bottom: 45px;
}

@media (max-width: 900px) {
  /* line 3130, app/assets/stylesheets/marketing.scss */
  .auth-shell {
    grid-template-columns: 1fr;
  }
  /* line 3134, app/assets/stylesheets/marketing.scss */
  .auth-copy {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  /* line 3140, app/assets/stylesheets/marketing.scss */
  .auth-panel {
    min-height: 650px;
  }
}

@media (max-width: 560px) {
  /* line 3146, app/assets/stylesheets/marketing.scss */
  .auth-nav {
    padding: 0 16px;
  }
  /* line 3150, app/assets/stylesheets/marketing.scss */
  .auth-nav-status,
.theme-toggle [data-theme-label] {
    display: none;
  }
  /* line 3155, app/assets/stylesheets/marketing.scss */
  .auth-copy {
    min-height: 500px;
    padding: 32px 20px;
  }
  /* line 3159, app/assets/stylesheets/marketing.scss */
  .auth-copy h1 {
    font-size: 58px;
  }
  /* line 3164, app/assets/stylesheets/marketing.scss */
  .auth-benefits {
    grid-template-columns: 1fr;
  }
  /* line 3167, app/assets/stylesheets/marketing.scss */
  .auth-benefits span {
    min-height: 42px;
  }
  /* line 3172, app/assets/stylesheets/marketing.scss */
  .auth-panel {
    min-height: auto;
    padding: 60px 20px;
  }
  /* line 3177, app/assets/stylesheets/marketing.scss */
  .auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* line 3182, app/assets/stylesheets/marketing.scss */
  .auth-danger {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 3189, app/assets/stylesheets/marketing.scss */
  .ticker div,
.candidate-pointer,
.interviewer-pointer,
.hero-typing-caret,
.selection-block,
.hero-code-chars {
    animation: none;
  }
  /* line 3198, app/assets/stylesheets/marketing.scss */
  .hero-code-chars {
    max-width: none;
  }
  /* line 3202, app/assets/stylesheets/marketing.scss */
  .hero-typing-caret {
    top: 148px;
    left: 200px;
    visibility: visible;
  }
  /* line 3207, app/assets/stylesheets/marketing.scss */
  .hero-typing-caret i {
    animation: none;
  }
  /* line 3212, app/assets/stylesheets/marketing.scss */
  .candidate-pointer {
    top: 146px;
    left: 198px;
  }
  /* line 3217, app/assets/stylesheets/marketing.scss */
  .selection-block {
    opacity: 0;
  }
}

@media (max-width: 440px) {
  /* line 3223, app/assets/stylesheets/marketing.scss */
  .hero-kicker {
    font-size: 7px;
  }
  /* line 3227, app/assets/stylesheets/marketing.scss */
  .hero-command {
    display: block;
  }
  /* line 3230, app/assets/stylesheets/marketing.scss */
  .hero-command code {
    margin: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 8px;
  }
  /* line 3237, app/assets/stylesheets/marketing.scss */
  .hero-command button {
    width: 100%;
  }
  /* line 3242, app/assets/stylesheets/marketing.scss */
  .art-cursor-two {
    right: 4%;
  }
  /* line 3246, app/assets/stylesheets/marketing.scss */
  .exhibit-copy h2,
.process-intro h2 {
    font-size: 46px;
  }
  /* line 3251, app/assets/stylesheets/marketing.scss */
  .exhibit-copy p {
    font-size: 13px;
  }
  /* line 3255, app/assets/stylesheets/marketing.scss */
  .manifesto p {
    font-size: 50px;
  }
  /* line 3259, app/assets/stylesheets/marketing.scss */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 1050px) {
  /* line 3266, app/assets/stylesheets/marketing.scss */
  .nav-links {
    gap: 22px;
  }
  /* line 3270, app/assets/stylesheets/marketing.scss */
  .theme-toggle [data-theme-label] {
    display: none;
  }
  /* line 3274, app/assets/stylesheets/marketing.scss */
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  /* line 3279, app/assets/stylesheets/marketing.scss */
  .inner-hero-aside {
    max-width: 560px;
  }
  /* line 3283, app/assets/stylesheets/marketing.scss */
  .console-grid {
    grid-template-columns: 150px 1fr;
  }
  /* line 3287, app/assets/stylesheets/marketing.scss */
  .console-panel {
    display: none;
  }
  /* line 3291, app/assets/stylesheets/marketing.scss */
  .capability-rows article {
    grid-template-columns: 45px 1fr 1fr;
  }
  /* line 3294, app/assets/stylesheets/marketing.scss */
  .capability-rows article > b {
    display: none;
  }
  /* line 3299, app/assets/stylesheets/marketing.scss */
  .principle-grid h2 {
    font-size: 42px;
  }
  /* line 3303, app/assets/stylesheets/marketing.scss */
  .contact-grid {
    gap: 5vw;
  }
}

@media (max-width: 760px) {
  /* line 3309, app/assets/stylesheets/marketing.scss */
  .inner-hero,
.pricing-hero,
.about-hero,
.contact-page {
    padding: 0 16px;
  }
  /* line 3316, app/assets/stylesheets/marketing.scss */
  .inner-hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  /* line 3319, app/assets/stylesheets/marketing.scss */
  .inner-hero-meta span:nth-child(2) {
    display: none;
  }
  /* line 3324, app/assets/stylesheets/marketing.scss */
  .inner-hero-grid {
    min-height: 590px;
    padding: 65px 12px;
  }
  /* line 3328, app/assets/stylesheets/marketing.scss */
  .inner-hero-grid h1 {
    font-size: 64px;
  }
  /* line 3333, app/assets/stylesheets/marketing.scss */
  .product-console {
    margin: 55px 16px;
    box-shadow: 8px 8px 0 var(--pink);
  }
  /* line 3338, app/assets/stylesheets/marketing.scss */
  .console-grid {
    min-height: 430px;
    grid-template-columns: 1fr;
  }
  /* line 3342, app/assets/stylesheets/marketing.scss */
  .console-grid aside {
    display: none;
  }
  /* line 3347, app/assets/stylesheets/marketing.scss */
  .console-code {
    border-right: 0;
  }
  /* line 3350, app/assets/stylesheets/marketing.scss */
  .console-code pre {
    padding: 25px 10px;
    font-size: 8px;
  }
  /* line 3356, app/assets/stylesheets/marketing.scss */
  .capability-section,
.team-principles,
.beliefs-section,
.faq-section {
    padding: 65px 16px 80px;
  }
  /* line 3363, app/assets/stylesheets/marketing.scss */
  .capability-rows article,
.belief-list article {
    grid-template-columns: 35px 1fr;
    gap: 16px;
  }
  /* line 3368, app/assets/stylesheets/marketing.scss */
  .capability-rows article p,
.belief-list article p {
    grid-column: 2;
  }
  /* line 3373, app/assets/stylesheets/marketing.scss */
  .page-cta {
    min-height: 450px;
    padding: 70px 16px;
  }
  /* line 3377, app/assets/stylesheets/marketing.scss */
  .page-cta h2 {
    font-size: 61px;
  }
  /* line 3382, app/assets/stylesheets/marketing.scss */
  .team-map {
    padding: 55px 16px;
  }
  /* line 3386, app/assets/stylesheets/marketing.scss */
  .team-map-canvas {
    height: 560px;
  }
  /* line 3390, app/assets/stylesheets/marketing.scss */
  .team-node {
    width: 125px;
    height: 72px;
    padding: 12px;
  }
  /* line 3396, app/assets/stylesheets/marketing.scss */
  .team-node-main {
    width: 150px;
    left: calc(50% - 75px);
  }
  /* line 3401, app/assets/stylesheets/marketing.scss */
  .team-node-one {
    top: 45px;
    left: 4%;
  }
  /* line 3402, app/assets/stylesheets/marketing.scss */
  .team-node-two {
    top: 70px;
    right: 4%;
  }
  /* line 3403, app/assets/stylesheets/marketing.scss */
  .team-node-three {
    right: 7%;
    bottom: 45px;
  }
  /* line 3405, app/assets/stylesheets/marketing.scss */
  .principle-grid,
.pricing-plans,
.about-numbers,
.contact-options {
    grid-template-columns: 1fr;
  }
  /* line 3412, app/assets/stylesheets/marketing.scss */
  .principle-grid article {
    min-height: 340px;
  }
  /* line 3415, app/assets/stylesheets/marketing.scss */
  .principle-grid article h2 {
    margin-top: 65px;
  }
  /* line 3420, app/assets/stylesheets/marketing.scss */
  .quote-section {
    min-height: 510px;
    padding: 70px 20px;
  }
  /* line 3424, app/assets/stylesheets/marketing.scss */
  .quote-section blockquote {
    font-size: 53px;
  }
  /* line 3429, app/assets/stylesheets/marketing.scss */
  .pricing-heading {
    min-height: 510px;
    padding: 65px 12px;
  }
  /* line 3433, app/assets/stylesheets/marketing.scss */
  .pricing-heading h1 {
    font-size: 75px;
  }
  /* line 3438, app/assets/stylesheets/marketing.scss */
  .pricing-plans {
    padding: 0 16px 70px;
  }
  /* line 3442, app/assets/stylesheets/marketing.scss */
  .price-card {
    min-height: 550px;
    border-left: 1px solid var(--navy);
    border-top: 0;
  }
  /* line 3447, app/assets/stylesheets/marketing.scss */
  .price-card:first-child {
    border-top: 1px solid var(--navy);
  }
  /* line 3451, app/assets/stylesheets/marketing.scss */
  .price-card > h2 {
    font-size: 70px;
  }
  /* line 3456, app/assets/stylesheets/marketing.scss */
  .pricing-note {
    padding: 18px 16px;
    flex-direction: column;
    gap: 14px;
    line-height: 1.6;
  }
  /* line 3463, app/assets/stylesheets/marketing.scss */
  .faq-grid {
    grid-template-columns: 1fr;
  }
  /* line 3467, app/assets/stylesheets/marketing.scss */
  .about-statement {
    min-height: 600px;
    padding: 65px 12px;
  }
  /* line 3471, app/assets/stylesheets/marketing.scss */
  .about-statement h1 {
    font-size: 61px;
  }
  /* line 3476, app/assets/stylesheets/marketing.scss */
  .about-story {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  /* line 3482, app/assets/stylesheets/marketing.scss */
  .story-lead {
    font-size: 43px;
  }
  /* line 3486, app/assets/stylesheets/marketing.scss */
  .story-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* line 3491, app/assets/stylesheets/marketing.scss */
  .about-numbers div {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #071008;
  }
  /* line 3497, app/assets/stylesheets/marketing.scss */
  .contact-grid {
    min-height: auto;
    padding: 65px 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  /* line 3504, app/assets/stylesheets/marketing.scss */
  .contact-intro h1 {
    font-size: 63px;
  }
  /* line 3508, app/assets/stylesheets/marketing.scss */
  .contact-form {
    padding: 24px 18px;
  }
  /* line 3512, app/assets/stylesheets/marketing.scss */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* line 3517, app/assets/stylesheets/marketing.scss */
  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }
  /* line 3522, app/assets/stylesheets/marketing.scss */
  .contact-options article {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--navy);
  }
  /* line 3528, app/assets/stylesheets/marketing.scss */
  .api-docs-toc {
    overflow-x: auto;
    gap: 22px;
    padding: 16px 20px;
  }
  /* line 3534, app/assets/stylesheets/marketing.scss */
  .api-docs-section {
    padding: 70px 20px 80px;
  }
  /* line 3538, app/assets/stylesheets/marketing.scss */
  .api-docs-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* line 3543, app/assets/stylesheets/marketing.scss */
  .api-docs-split h2 {
    font-size: 42px;
  }
  /* line 3547, app/assets/stylesheets/marketing.scss */
  .api-code {
    padding: 22px 18px 24px;
    font-size: 11.5px;
  }
}
