@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/assets/fonts/geist-mono-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #fcfaf5;
  --ink: #343b30;
  --muted: #626b57;
  --coral: #b94d34;
  --coral-bright: #db6d4e;
  --peach: #f5dfd1;
  --sage: #eef0e5;
  --line: #e5e4d9;
  --mono: "Geist Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Geist,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
  border-radius: 5px;
}
button {
  border: 0;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #f2c6b4;
  color: #343b30;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  z-index: 10;
  left: 20px;
  top: -70px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -1.2px;
  line-height: 1;
}
.brand img {
  transform: rotate(-10deg);
}
.brand-dot {
  color: var(--coral-bright);
}
.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav {
  font-size: 13px;
  font-weight: 500;
}
.nav a,
.sign-in,
.footer nav a {
  transition: color 0.18s;
}
.nav a:hover,
.sign-in:hover,
.footer nav a:hover {
  color: var(--coral);
}
.header-actions {
  gap: 24px;
  font-size: 13px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 51px;
  border: 1px solid var(--coral);
  border-radius: 8px;
  background: var(--coral);
  color: #fffdf9;
  font-size: 14px;
  font-weight: 550;
  padding: 13px 23px;
  box-shadow: 0 3px 0 #953b2520;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: #a2402b;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #953b2520;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-small {
  font-size: 13px;
  min-height: 42px;
  padding: 9px 17px;
  gap: 20px;
}
.button-outline {
  background: transparent;
  border-color: #c6c8b8;
  color: var(--ink);
  box-shadow: none;
}
.button-outline:hover {
  background: var(--sage);
  box-shadow: none;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
}
.text-button:hover {
  color: var(--coral);
}
.play-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding-left: 2px;
  border: 1px solid #c7c8bb;
  border-radius: 50%;
  font-size: 9px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 24px;
  padding-block: 45px 40px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #626b57;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.35px;
  font-weight: 500;
  line-height: 1.6;
}
.hero .eyebrow {
  font-family: Geist, sans-serif;
  font-size: 12px;
  letter-spacing: 0.25px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78895f;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 530;
  line-height: 1.045;
  letter-spacing: -4.5px;
  margin: 24px 0 30px;
}
.keys-word {
  position: relative;
  display: inline-block;
  color: var(--coral);
}
.keys-word svg {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 104%;
  height: 18px;
  color: #df9a72;
}
.hero-description {
  font-size: 16px;
  max-width: 410px;
  line-height: 1.8;
  color: #6d7063;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #626b57;
  margin-top: 21px;
}
.hero-note .icon {
  width: 15px;
  height: 15px;
}
.demo {
  position: relative;
  min-width: 0;
  isolation: isolate;
  padding: 78px 0 0 14px;
  scroll-margin-top: 28px;
}
.demo:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1%;
  right: -1%;
  top: 7%;
  height: 83%;
  background-color: #f1eee2;
  background-image: radial-gradient(#d7d6c6 0.8px, transparent 0.8px);
  background-size: 17px 17px;
  border-radius: 48% 45% 43% 44%;
  transform: rotate(-3deg);
}
.demo-handnote {
  position: absolute;
  top: 2px;
  right: 53px;
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
  transform: rotate(4deg);
  color: #626b57;
}
.demo-handnote svg {
  position: absolute;
  right: 2px;
  top: 25px;
  width: 48px;
  height: 40px;
  transform: rotate(-8deg);
}
.demo-doodle {
  position: absolute;
  font-size: 48px;
  color: #a1a882;
  z-index: -1;
  line-height: 1;
}
.doodle-one {
  right: -18px;
  top: 52px;
  transform: rotate(12deg);
}
.doodle-two {
  left: -4px;
  top: 360px;
  font-size: 42px;
  color: #bb9069;
}
.browser-window {
  background: #fffefa;
  border: 1px solid #d4d7c8;
  border-radius: 13px;
  box-shadow:
    0 16px 35px #51583b12,
    6px 6px 0 #e2e4d750;
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f4f3ec;
  border-bottom: 1px solid var(--line);
  height: 43px;
  padding: 0 16px;
  font-size: 15px;
  color: #626b57;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots i {
  display: block;
  width: 7px;
  height: 7px;
  background: #e0a392;
  border-radius: 50%;
}
.browser-dots i:nth-child(2) {
  background: #ddc68e;
}
.browser-dots i:nth-child(3) {
  background: #a8b991;
}
.browser-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: -0.1px;
  background: #fffef9;
  border: 1px solid #e8e8df;
  flex: 1;
  height: 25px;
  border-radius: 5px;
}
.browser-address .icon {
  width: 10px;
  height: 10px;
}
.console-top {
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #edeee6;
}
.console-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
}
.console-brand > span {
  font-size: 25px;
  color: #a2ac84;
}
.console-avatar,
.mini-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8e6da;
  font-size: 10px;
  color: #727661;
}
.console-body {
  display: grid;
  grid-template-columns: 117px 1fr;
  min-height: 270px;
}
.console-sidebar {
  position: relative;
  padding: 18px 10px;
  background: #fafaf5;
  border-right: 1px solid #edeee6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.console-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 7px 8px;
  color: #929784;
  border-radius: 5px;
}
.console-nav > span {
  font-size: 10px;
}
.console-sidebar-bottom {
  position: absolute;
  bottom: 16px;
  left: 17px;
  font-size: 8px;
  color: #939780;
  display: flex;
  gap: 8px;
}
.console-content {
  padding: 22px;
  position: relative;
  min-width: 0;
}
.console-breadcrumb {
  font: 8px var(--mono);
  letter-spacing: 0.7px;
  color: #626b57;
}
.console-content h2 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-top: 14px;
  font-weight: 550;
}
.console-content > p {
  font-size: 10px;
  color: #626b57;
  margin-top: 7px;
}
.console-task {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 23px 0 16px;
  padding: 11px 9px;
  border: 1px solid #e8e9df;
  border-radius: 6px;
}
.console-task-icon {
  font-size: 16px;
  display: grid;
  place-items: center;
  background: #f0f1e7;
  color: #7b8861;
  width: 29px;
  height: 29px;
  border-radius: 6px;
}
.console-task > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.console-task strong {
  font-size: 10px;
  font-weight: 500;
}
.console-task > div > span {
  font-size: 8px;
  color: #626b57;
}
.console-task-check {
  color: #7a8c5a;
  font-size: 12px;
  margin-left: auto;
}
.console-create {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
  border: 1px solid #ddd9c6;
  background: #f5f0df;
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 10px;
  color: #6e725b;
}
.agent-cursor {
  position: absolute;
  right: 52px;
  bottom: 34px;
  width: 29px;
  height: 35px;
  filter: drop-shadow(1px 2px 1px #7c3f301a);
  transition: transform 0.45s;
}
.browser-status {
  height: 35px;
  border-top: 1px solid #eceee2;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  color: #626b57;
  background: #f7f8f0;
}
.browser-status > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-status .status-dot {
  width: 4px;
  height: 4px;
}
.console-key {
  display: none;
  margin: 15px 0 10px;
  padding: 12px;
  border: 1px dashed #97aa7f;
  border-radius: 7px;
  background: #f6f8ee;
}
.console-key > span:first-child {
  display: block;
  font: 8px var(--mono);
  color: #626b57;
}
.console-key code {
  display: block;
  font: 11px var(--mono);
  margin-top: 8px;
}
.key-label {
  font-size: 8px;
  color: #626b57;
}
.agent-bubble {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 89px;
  background: #fffdfa;
  border: 1px solid #dfdcd0;
  border-radius: 13px;
  margin: -33px 76px 0 -23px;
  padding: 15px 18px 15px 12px;
  box-shadow: 0 6px 16px #4549350a;
  transform: rotate(1.5deg);
}
.agent-bubble img {
  flex-shrink: 0;
  transform: rotate(-12deg);
}
.agent-name {
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #626b57;
}
.agent-bubble p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 4px;
}
.demo-approve {
  font-size: 10px;
  background: #b94d34;
  color: #fff;
  border-radius: 4px;
  padding: 7px 10px;
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo-approve:hover {
  background: #9c3e29;
}
.vault-ticket {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 16px -8px 0 auto;
  width: 276px;
  padding: 14px 15px;
  background: #edf2df;
  border: 1px solid #cfd8b8;
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: 0 5px 12px #45493507;
}
.vault-ticket-icon {
  font-size: 26px;
  color: #819a5c;
  line-height: 1;
}
.vault-ticket > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vault-ticket strong {
  font-size: 11px;
  font-weight: 550;
}
.vault-ticket > div > span {
  font-size: 9px;
  color: #626b57;
}
.vault-check {
  margin-left: auto;
  color: #7f945e;
  font-size: 15px;
}
.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 33px;
  min-height: 40px;
}
.demo-controls button {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 5px;
  background: transparent;
  font-size: 10px;
  color: #626b57;
}
.demo-controls button > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #eceee1;
  border: 1px solid #dde0d1;
  border-radius: 50%;
  font: 9px var(--mono);
}
.demo-controls button[aria-pressed="true"] {
  color: var(--coral);
}
.demo-controls button[aria-pressed="true"] > span {
  color: #a3412e;
  background: #f7e2d7;
  border-color: #ddb49f;
}
.step-line {
  width: 17px;
  height: 1px;
  background: #dce0d1;
}
.demo-caption {
  font-size: 9px;
  color: #626b57;
  text-align: center;
  margin-top: 3px;
}
.demo[data-step="0"] [data-console-nav="overview"],
.demo[data-step="1"] [data-console-nav="settings"],
.demo[data-step="2"] [data-console-nav="keys"],
.demo[data-step="3"] [data-console-nav="keys"] {
  background: #e9eddc;
  color: #586747;
}
.demo[data-step="1"] .agent-cursor {
  transform: translate(-128px, -84px);
}
.demo[data-step="2"] .console-create {
  background: #fbe5d8;
  outline: 2px dashed #df9f7e;
  outline-offset: 3px;
  color: #a1563b;
}
.demo[data-step="2"] .agent-cursor {
  transform: translate(-66px, -9px);
}
.demo[data-step="3"] .console-task {
  display: none;
}
.demo[data-step="3"] .console-key {
  display: block;
}
.demo[data-step="3"] .console-create {
  background: #eaf0df;
  color: #657a4e;
}
.demo[data-step="3"] .agent-cursor {
  opacity: 0;
}
.demo[data-step="3"] .vault-ticket {
  background: #e5efd6;
  border-color: #a4bb85;
}
.providers {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 15px 25px;
}
.providers > p:first-child {
  font-size: 12px;
  font-weight: 500;
}
.providers > p > span {
  color: #626b57;
  font-weight: 400;
  margin-left: 4px;
}
.provider-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  margin-top: 21px;
  color: #6d7462;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.7px;
}
.provider-logos > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.provider-x {
  font-size: 29px;
  line-height: 1;
}
.provider-threads > span {
  font-size: 29px;
  line-height: 1;
  font-weight: 600;
}
.provider-linkedin {
  gap: 1px !important;
}
.provider-linkedin > span {
  border-radius: 2px;
  background: #6d7462;
  color: var(--paper);
  font-size: 18px;
  line-height: 20px;
  padding: 0 2px;
}
.provider-bluesky svg {
  width: 26px;
  height: 26px;
}
.provider-mastodon > span {
  background: #6d7462;
  color: var(--paper);
  border-radius: 6px;
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
  padding: 0 4px;
}
.provider-footnote {
  font-size: 10px;
  color: #626b57;
  margin-top: 20px;
}
.section {
  padding-block: 94px;
}
.section-heading {
  text-align: center;
  margin-bottom: 44px;
}
.section-heading .eyebrow {
  justify-content: center;
}
.section-heading h2,
h2 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -1.5px;
}
.section-heading h2 {
  margin-top: 15px;
}
.section-heading > p:last-child {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 17px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.workflow-card {
  min-width: 0;
}
.mini-scene {
  height: 167px;
  border-radius: 11px;
  background: #f2efe6;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 22px 16px;
  overflow: hidden;
}
.scene-ask {
  background: #f5eae1;
}
.mini-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 9px;
  background: #fffdf7;
  border: 1px solid #e2dcd0;
  border-radius: 7px;
  font-size: 10px;
  transform: rotate(-3deg);
  box-shadow: 0 5px 8px #726c5210;
  white-space: nowrap;
}
.mini-avatar {
  width: 20px;
  height: 20px;
  font-size: 8px;
  flex-shrink: 0;
}
.mini-send {
  margin-left: auto;
  background: #d88160;
  color: #fff;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-size: 12px;
}
.mini-answer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  margin-top: 18px;
  margin-left: 11px;
}
.mini-spark {
  position: absolute;
  right: 25px;
  bottom: 22px;
  font-size: 30px;
  color: #c3996b;
}
.scene-navigate {
  background: #eceee3;
}
.mini-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
}
.mini-path > span:nth-child(odd) {
  background: #fffef7;
  border: 1px solid #d9ddce;
  border-radius: 5px;
  padding: 9px 10px;
}
.mini-path .mini-path-key {
  background: #e5ecd4 !important;
  border: 1px dashed #9ba77d !important;
}
.mini-agent-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #fffdf8;
  border: 1px solid #d6dcc9;
  border-radius: 6px;
  transform: rotate(2deg);
  margin: 21px 7px 0;
  padding: 5px;
  font-size: 9px;
}
.mini-agent-tag > span {
  font-size: 18px;
  margin-left: 5px;
  color: #cf7a5b;
}
.scene-save {
  background: #f2eddd;
}
.mini-saved {
  display: flex;
  align-items: center;
  gap: 9px;
  transform: rotate(-3deg);
  background: #fffdf7;
  border: 1px solid #dbddca;
  border-radius: 7px;
  padding: 15px 11px;
  box-shadow: 0 4px 10px #6667430a;
}
.mini-saved-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e7eed9;
  color: #718853;
}
.mini-saved strong {
  font-size: 10px;
  font-weight: 500;
  display: block;
}
.mini-saved code {
  font-size: 10px;
  color: #8e987b;
  display: block;
  margin-top: 6px;
}
.mini-saved > span:last-child {
  margin-left: auto;
  color: #c0955b;
  font-size: 20px;
}
.mini-approval {
  margin-top: 14px;
  text-align: center;
  font-size: 9px;
  color: #898975;
}
.step-number {
  font: 9px var(--mono);
  letter-spacing: 1.2px;
  color: #626b57;
}
.workflow-card h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
  font-weight: 550;
  margin-top: 10px;
  line-height: 1.5;
}
.workflow-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 10px;
  padding-right: 13px;
}
.parallel-note {
  text-align: center;
  margin-top: 38px;
  font-size: 12px;
  color: #626b57;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.parallel-note > span {
  color: #9b9f78;
  font-size: 22px;
  margin-right: 4px;
}
.parallel-note strong {
  font-weight: 500;
  color: #565e4d;
}
.security {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 95px;
  background: #eef0e4;
  border: 1px solid #e1e5d4;
  border-radius: 17px;
  padding: 60px 66px;
}
.security-copy .eyebrow {
  font-size: 9px;
}
.security-copy h2 {
  font-size: 49px;
  margin-top: 20px;
  line-height: 1.09;
  letter-spacing: -2px;
}
.security-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #626b57;
  margin-top: 23px;
  max-width: 330px;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  font-size: 12px;
  border-bottom: 1px solid #a5af93;
  padding-bottom: 3px;
  margin-top: 22px;
}
.inline-link:hover {
  color: var(--coral);
}
.security-sticker {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 26px;
  transform: rotate(-7deg);
}
.security-sticker img {
  transform: rotate(-10deg);
}
.security-sticker > span {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #838969;
  line-height: 1.2;
}
.security-details {
  padding-top: 4px;
}
.security-feature {
  display: flex;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid #dbe1ce;
}
.security-feature:first-child {
  padding-top: 0;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #d0d9bf;
  background: #f6f7ed;
  border-radius: 8px;
  color: #75895a;
  flex-shrink: 0;
}
.feature-icon .icon {
  width: 19px;
  height: 19px;
}
.security-feature h3 {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.4px;
}
.security-feature p {
  font-size: 12px;
  line-height: 1.85;
  color: #626b57;
  margin-top: 7px;
}
.security-disclosure {
  font-size: 10px;
  color: #626b57;
  line-height: 1.8;
  margin-top: 18px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: auto;
}
.price-card {
  border: 1px solid #dedfd2;
  border-radius: 12px;
  padding: 29px 31px;
  display: flex;
  flex-direction: column;
  background: #fdfcf7;
}
.plan-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #626b57;
  min-height: 21px;
}
.plan-tag > span {
  font-size: 24px;
  line-height: 1;
  color: #c9855a;
}
.price-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-top: 18px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 8px;
}
.price strong {
  font-size: 49px;
  letter-spacing: -2.2px;
  line-height: 1.3;
  font-weight: 500;
}
.price > span {
  font-size: 12px;
  color: #626b57;
}
.price-card > p {
  font-size: 12px;
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  padding: 25px 0;
  margin: 19px 0 3px;
  display: grid;
  gap: 13px;
  border-top: 1px solid #e5e3d6;
  font-size: 12px;
}
.price-card li {
  position: relative;
  padding-left: 20px;
}
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #839063;
}
.price-card .button {
  margin-top: auto;
  justify-content: space-between;
}
.price-card .price-footnote {
  font-size: 9px;
  line-height: 1.7;
  text-align: center;
  margin-top: 14px;
}
.price-card-pro {
  background: #f9eee4;
  border-color: #e5cdb8;
}
.price-card-pro .plan-tag {
  color: #865c3e;
}
.price-card-pro ul {
  border-color: #e8d7c6;
}
.beta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  font-size: 10px;
  color: #626b57;
  margin: 25px auto 0;
  max-width: 740px;
}
.beta-note .status-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 95px;
  border-top: 1px solid var(--line);
  padding-top: 72px;
}
.faq .eyebrow {
  font-size: 9px;
  letter-spacing: 0.7px;
}
.faq h2 {
  font-size: 36px;
  margin-top: 18px;
}
.faq > div > p:last-child {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 0;
  font-size: 14px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  color: #a0a48c;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 24px 20px 0;
}
.final-cta {
  text-align: center;
  background: #f5e6d8;
  border: 1px solid #eedcca;
  border-radius: 17px;
  padding: 46px 24px 47px;
  position: relative;
}
.final-mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  height: 101px;
  margin-bottom: 17px;
}
.final-mascot img {
  transform: rotate(-13deg);
}
.final-mascot > span {
  font-size: 29px;
  color: #b69660;
  transform: rotate(-10deg);
}
.final-mascot > span:last-child {
  font-size: 24px;
  align-self: flex-start;
  margin-top: 20px;
  color: #9da175;
}
.final-cta .eyebrow {
  justify-content: center;
  font-size: 9px;
  color: #795d48;
}
.final-cta h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 16px 0 25px;
  letter-spacing: -1.8px;
}
.final-cta > p:last-child {
  font-size: 10px;
  color: #795d48;
  margin-top: 15px;
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding-block: 47px 29px;
}
.footer .brand {
  font-size: 24px;
}
.footer p {
  font-size: 10px;
  color: #626b57;
  margin-top: 12px;
}
.footer nav {
  display: flex;
  gap: 25px;
  font-size: 11px;
  color: #626b57;
}
.footer-note {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  font-size: 9px;
  color: #626b57;
  display: flex;
  justify-content: space-between;
}
.footer-note > span {
  font-size: 19px;
  line-height: 1;
  color: #a5ac89;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 55px 45px;
  }
  .hero h1 {
    font-size: 80px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 20px;
  }
  .hero {
    gap: 25px;
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 62px;
    letter-spacing: -3.6px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding-inline: 17px;
  }
  .text-button {
    font-size: 12px;
  }
  .console-body {
    grid-template-columns: 95px 1fr;
  }
  .console-content {
    padding: 20px 16px;
  }
  .console-sidebar {
    padding: 18px 5px;
  }
  .console-sidebar-bottom {
    left: 10px;
    font-size: 7px;
  }
  .console-content h2 {
    font-size: 17px;
  }
  .console-task > div > span {
    font-size: 7px;
  }
  .agent-bubble {
    margin-right: 36px;
  }
  .agent-bubble p {
    font-size: 12px;
  }
  .provider-logos {
    gap: 45px;
  }
  .security {
    gap: 55px;
    padding: 48px;
  }
  .mini-path {
    gap: 5px;
    font-size: 8px;
  }
  .mini-path > span:nth-child(odd) {
    padding: 8px;
  }
  .mini-prompt {
    font-size: 8px;
  }
  .mini-saved strong {
    font-size: 9px;
  }
  .mini-saved-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .workflow-card h3 {
    font-size: 17px;
  }
  .faq {
    gap: 45px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
}
@media (max-width: 900px) {
  .header {
    height: 89px;
    gap: 22px;
  }
  .nav a:nth-child(2) {
    display: none;
  }
  .header-actions {
    gap: 17px;
  }
  .hero {
    grid-template-columns: 1fr;
    max-width: 640px;
    padding-top: 52px;
    gap: 15px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
  }
  .hero h1 {
    font-size: 69px;
    letter-spacing: -3.8px;
  }
  .hero-description {
    max-width: 440px;
    margin: auto;
  }
  .hero-actions,
  .hero-note {
    justify-content: center;
  }
  .demo {
    width: 100%;
    max-width: 520px;
    margin: 20px auto 0;
  }
  .demo:before {
    right: -3%;
    left: -3%;
  }
  .demo-handnote {
    right: 62px;
  }
  .console-body {
    grid-template-columns: 115px 1fr;
    min-height: 275px;
  }
  .console-content {
    padding: 22px;
  }
  .console-content h2 {
    font-size: 20px;
  }
  .console-task > div > span {
    font-size: 9px;
  }
  .agent-bubble {
    margin-right: 80px;
  }
  .agent-bubble p {
    font-size: 13px;
  }
  .provider-logos {
    gap: 28px;
    font-size: 19px;
  }
  .section {
    padding-block: 70px;
  }
  .workflow-grid {
    gap: 18px;
  }
  .mini-scene {
    height: 145px;
    padding-inline: 10px;
  }
  .mini-prompt {
    font-size: 7px;
    gap: 3px;
    padding: 9px 6px;
  }
  .mini-answer {
    font-size: 7px;
    margin-left: 0;
  }
  .mini-agent-tag {
    font-size: 7px;
    margin-inline: 0;
  }
  .mini-path {
    font-size: 7px;
    gap: 4px;
  }
  .mini-path > span:nth-child(odd) {
    padding: 8px 5px;
  }
  .mini-saved {
    padding: 10px 7px;
    gap: 5px;
  }
  .mini-saved strong {
    font-size: 8px;
  }
  .mini-saved code {
    font-size: 8px;
  }
  .mini-saved > span:last-child {
    display: none;
  }
  .workflow-card h3 {
    font-size: 16px;
  }
  .workflow-card > p {
    font-size: 12px;
  }
  .security {
    gap: 32px;
    padding: 37px 30px;
    grid-template-columns: 0.9fr 1fr;
  }
  .security-copy h2 {
    font-size: 43px;
  }
  .security-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .security-feature {
    gap: 12px;
  }
  .security-feature h3 {
    font-size: 15px;
  }
  .security-feature p {
    font-size: 11px;
  }
  .security-disclosure {
    font-size: 9px;
  }
  .price-card {
    padding: 25px;
  }
  .faq {
    grid-template-columns: 1fr 1.2fr;
  }
  .faq h2 {
    font-size: 31px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .footer nav {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 80px;
    gap: 10px;
  }
  .brand {
    font-size: 25px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .nav {
    display: none;
  }
  .header-actions {
    gap: 15px;
  }
  .sign-in {
    font-size: 12px;
  }
  .button-small {
    min-height: 39px;
    font-size: 11px;
    padding: 8px 12px;
    gap: 8px;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 37px;
  }
  .hero h1 {
    font-size: 60px;
    line-height: 1.07;
    letter-spacing: -3.4px;
    margin-top: 19px;
    margin-bottom: 29px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.85;
    max-width: 340px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
  }
  .hero-actions > .button {
    width: 235px;
  }
  .hero-note {
    margin-top: 12px;
    font-size: 10px;
  }
  .demo {
    padding: 68px 4px 0;
    margin-top: 26px;
    max-width: 460px;
  }
  .demo:before {
    left: 0;
    right: 0;
    top: 7%;
    height: 81%;
    border-radius: 40%;
    transform: none;
  }
  .demo-handnote {
    right: 38px;
    font-size: 13px;
    top: 0;
  }
  .demo-handnote svg {
    width: 39px;
    top: 22px;
  }
  .doodle-one {
    right: 0;
    font-size: 36px;
    top: 44px;
  }
  .doodle-two {
    left: 0;
    font-size: 33px;
    top: 336px;
  }
  .browser-toolbar {
    height: 37px;
    padding: 0 11px;
    gap: 12px;
  }
  .browser-address {
    font-size: 7px;
  }
  .browser-dots {
    gap: 4px;
  }
  .browser-dots i {
    width: 5px;
    height: 5px;
  }
  .console-top {
    height: 47px;
    padding-inline: 15px;
  }
  .console-brand {
    font-size: 11px;
  }
  .console-body {
    grid-template-columns: 83px 1fr;
    min-height: 252px;
  }
  .console-sidebar {
    padding: 13px 5px;
  }
  .console-nav {
    padding: 6px 5px;
    gap: 5px;
    font-size: 13px;
  }
  .console-nav > span {
    font-size: 8px;
  }
  .console-sidebar-bottom {
    left: 9px;
    font-size: 6px;
    gap: 3px;
  }
  .console-content {
    padding: 19px 12px;
  }
  .console-breadcrumb {
    font-size: 6px;
  }
  .console-content h2 {
    font-size: 16px;
    margin-top: 12px;
  }
  .console-content > p {
    font-size: 9px;
  }
  .console-task {
    gap: 6px;
    padding: 10px 7px;
    margin-block: 21px 15px;
  }
  .console-task-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .console-task strong {
    font-size: 9px;
  }
  .console-task > div > span {
    font-size: 7px;
    line-height: 1.5;
  }
  .console-create {
    font-size: 9px;
    max-width: 127px;
  }
  .agent-cursor {
    width: 23px;
    right: 31px;
    bottom: 40px;
  }
  .browser-status {
    font-size: 7px;
    padding: 0 10px;
  }
  .browser-status > span:last-child {
    font-size: 6px;
  }
  .agent-bubble {
    margin: -19px 20px 0 -2px;
    padding: 12px 9px 12px 6px;
    gap: 3px;
    min-height: 80px;
  }
  .agent-bubble img {
    width: 44px;
    height: 44px;
  }
  .agent-bubble p {
    font-size: 11px;
  }
  .agent-name {
    font-size: 7px;
  }
  .vault-ticket {
    width: 250px;
    margin: 13px 0 0 auto;
    padding: 11px 14px;
  }
  .vault-ticket strong {
    font-size: 10px;
  }
  .demo-controls {
    gap: 1px;
    margin-top: 24px;
  }
  .demo-controls button {
    font-size: 9px;
    gap: 4px;
    min-height: 44px;
  }
  .step-line {
    width: 10px;
  }
  .demo-caption {
    font-size: 8px;
    margin-top: 1px;
  }
  .demo[data-step="1"] .agent-cursor {
    transform: translate(-95px, -78px);
  }
  .demo[data-step="2"] .agent-cursor {
    transform: translate(-36px, -3px);
  }
  .providers {
    padding: 23px 3px;
  }
  .providers > p:first-child {
    font-size: 10px;
  }
  .provider-logos {
    gap: 18px 26px;
    flex-wrap: wrap;
    margin: 22px auto 0;
    max-width: 360px;
    font-size: 18px;
  }
  .provider-x {
    font-size: 26px;
  }
  .provider-bluesky svg {
    width: 23px;
  }
  .provider-threads > span {
    font-size: 25px;
  }
  .provider-footnote {
    font-size: 8px;
    line-height: 1.8;
    max-width: 265px;
    margin: 20px auto 0;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 29px;
    letter-spacing: -1px;
    max-width: 340px;
    margin-inline: auto;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
    max-width: 350px;
    margin-inline: auto;
    margin-top: 13px;
  }
  .desktop-break {
    display: none;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .mini-scene {
    height: 173px;
    margin-bottom: 19px;
    padding-inline: 25px;
  }
  .mini-prompt {
    font-size: 11px;
    padding: 12px;
    gap: 8px;
  }
  .mini-answer {
    font-size: 10px;
    margin-top: 20px;
  }
  .mini-spark {
    bottom: 22px;
    right: 32px;
  }
  .mini-path {
    font-size: 10px;
    gap: 8px;
  }
  .mini-path > span:nth-child(odd) {
    padding: 10px;
  }
  .mini-agent-tag {
    font-size: 10px;
    margin-top: 23px;
    padding: 6px;
  }
  .mini-saved {
    padding: 18px 13px;
    gap: 10px;
  }
  .mini-saved strong,
  .mini-saved code {
    font-size: 11px;
  }
  .mini-saved-icon {
    width: 30px;
    height: 30px;
  }
  .mini-saved > span:last-child {
    display: inline;
  }
  .mini-approval {
    font-size: 10px;
  }
  .workflow-card h3 {
    font-size: 20px;
    margin-top: 6px;
  }
  .workflow-card > p {
    font-size: 13px;
    padding-right: 0;
    margin-top: 7px;
  }
  .parallel-note {
    font-size: 10px;
    margin-top: 26px;
    gap: 2px 4px;
    line-height: 1.8;
  }
  .parallel-note strong {
    display: block;
  }
  .security {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 31px 25px;
    border-radius: 12px;
  }
  .security-copy h2 {
    font-size: 42px;
  }
  .security-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .security-copy .eyebrow {
    font-size: 8px;
  }
  .security-sticker {
    display: none;
  }
  .security-feature h3 {
    font-size: 16px;
  }
  .security-feature p {
    font-size: 12px;
  }
  .security-disclosure {
    font-size: 10px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price-card {
    padding: 26px;
  }
  .price-card h3 {
    font-size: 22px;
  }
  .price-card ul {
    font-size: 12px;
  }
  .price-card .price-footnote {
    font-size: 9px;
  }
  .beta-note {
    font-size: 9px;
    align-items: baseline;
    padding-inline: 5px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .faq h2 {
    font-size: 33px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .faq-list details > p {
    font-size: 12px;
  }
  .final-cta {
    padding: 32px 18px;
    border-radius: 12px;
  }
  .final-cta h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .final-cta .eyebrow {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .final-mascot {
    height: 86px;
    margin-bottom: 17px;
  }
  .final-mascot img {
    width: 82px;
    height: 82px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding-top: 33px;
    gap: 24px;
  }
  .footer nav {
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }
  .footer-note {
    font-size: 8px;
    padding-top: 21px;
  }
  .footer p {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 30px);
  }
  .hero h1 {
    font-size: 52px;
  }
  .sign-in {
    display: none;
  }
  .hero-description {
    font-size: 13px;
  }
  .console-body {
    grid-template-columns: 70px 1fr;
  }
  .console-nav {
    gap: 3px;
  }
  .console-nav > span {
    font-size: 7px;
  }
  .console-sidebar-bottom {
    font-size: 5px;
  }
  .console-content h2 {
    font-size: 14px;
  }
  .console-task > div > span {
    font-size: 6px;
  }
  .browser-status {
    font-size: 6px;
  }
  .demo-controls button {
    font-size: 8px;
    padding: 4px;
  }
  .step-line {
    width: 6px;
  }
  .demo-caption {
    font-size: 7px;
  }
  .mini-prompt {
    font-size: 9px;
  }
  .mini-path {
    font-size: 9px;
    gap: 5px;
  }
  .mini-agent-tag {
    font-size: 9px;
  }
  .mini-saved strong {
    font-size: 10px;
  }
  .security {
    padding: 27px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media (forced-colors: active) {
  .button,
  .browser-window,
  .agent-bubble,
  .vault-ticket,
  .price-card,
  .security,
  .final-cta {
    border: 1px solid CanvasText;
  }
  .status-dot {
    background: CanvasText;
  }
  .console-nav {
    border: 1px solid transparent;
  }
  .demo-controls button[aria-pressed="true"] {
    outline: 1px solid Highlight;
  }
  .console-create {
    border: 1px solid CanvasText;
  }
  .console-key {
    border-color: CanvasText;
  }
}
