:root {
  --paper: #f6f5ef;
  --ink: #1c2b22;
  --muted: #69716a;
  --lime: #d4fb53;
  --line: #dddfd4;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #829b26;
  outline-offset: 5px;
}
.wrap {
  max-width: 1220px;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.nav {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -1.8px;
  gap: 8px;
}
.logo-dot {
  margin-left: -8px;
}
nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button {
  display: inline-flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
  padding: 19px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.dark {
  background: var(--ink);
  color: var(--paper);
}
.dark:hover {
  background: #324637;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.small {
  padding: 12px 17px;
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 76px;
}
.eyebrow {
  font:
    10px/1.6 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 1.6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89a541;
  flex-shrink: 0;
}
h1 {
  font-size: clamp(58px, 6.8vw, 88px);
  line-height: 1.01;
  letter-spacing: -6px;
  margin: 25px 0 28px;
  font-weight: 750;
}
.underlined {
  position: relative;
  display: inline-block;
}
.underlined svg {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -13px;
  fill: none;
  stroke: #a7c838;
  stroke-width: 5;
  stroke-linecap: round;
}
.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #647063;
  max-width: 410px;
  margin-bottom: 29px;
}
.small-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 17px;
}
.hero-tags {
  display: flex;
  gap: 8px;
  margin-top: 37px;
  flex-wrap: wrap;
}
.hero-tags span {
  font-size: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.stage {
  height: 515px;
  background: #e7ebde;
  border: 1px solid #e0e4d7;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#a0b196 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
}
.stage-label {
  position: absolute;
  left: 22px;
  top: 22px;
  font: 9px monospace;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.orbit {
  position: absolute;
  border: 1px solid #c9d3bd;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  top: 80px;
  left: 70px;
}
.orbit-two {
  width: 530px;
  height: 530px;
  left: 15px;
  top: 25px;
}
.phone {
  position: absolute;
  top: 57px;
  left: 50%;
  margin-left: -89px;
  width: 220px;
  height: 418px;
  background: #f6f5e9;
  border: 7px solid #223429;
  border-radius: 37px;
  box-shadow:
    13px 17px 0 #b5c0a754,
    0 20px 32px #1c2b2217;
  transform: rotate(8deg);
  padding: 14px;
}
.phone-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #253429;
  border-radius: 50%;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
}
.phone-greeting {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 39px;
}
.phone-greeting strong {
  font-weight: 700;
}
.phone-date {
  font: 7px monospace;
  letter-spacing: 0.5px;
  margin-top: 12px;
  color: #78846d;
}
.apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 26px;
}
.apps > div {
  font-size: 7px;
  text-align: center;
}
.app-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 23px;
  border-radius: 11px;
  margin-bottom: 5px;
}
.messages {
  background: #d4fb53;
}
.browser {
  background: #d0dfec;
}
.mail {
  background: #eed8c1;
}
.calendar {
  background: #e3ddf0;
  font-size: 18px;
}
.phone-task {
  margin-top: 22px;
  background: white;
  border-radius: 10px;
  padding: 12px 9px;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 58px;
}
.task-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #93ab41;
}
.phone-task strong {
  display: block;
  font-size: 9px;
}
.phone-task small {
  display: block;
  font-size: 7px;
  margin-top: 5px;
  color: #6a7565;
}
.phone-dock {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  padding: 9px;
  background: #e5e9d8;
  border-radius: 16px;
  font-size: 20px;
}
.home-bar {
  position: absolute;
  bottom: 8px;
  left: 65px;
  width: 76px;
  height: 3px;
  background: #26392c;
  border-radius: 2px;
}
.command-card {
  position: absolute;
  left: 18px;
  top: 264px;
  width: 252px;
  padding: 18px;
  background: #1b2b22;
  border: 1px solid #405343;
  border-radius: 11px;
  color: #e6ecd9;
  box-shadow: 0 12px 35px #20302825;
  transform: rotate(-4deg);
}
.command-card > div {
  font: 8px monospace;
  display: flex;
  align-items: center;
  gap: 7px;
}
.command-index {
  margin-left: auto;
  color: #9caa90;
}
.command-card code {
  display: block;
  color: var(--lime);
  font-size: 16px;
  margin-top: 22px;
}
.command-card p {
  font-size: 10px;
  color: #b4beab;
}
.command-card button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-top: 1px solid #3c4d3e;
  background: transparent;
  color: #ecf1e4;
  font-size: 9px;
  padding: 11px 0 0;
  margin-top: 18px;
}
.physical-tag {
  position: absolute;
  right: 15px;
  top: 95px;
  font-size: 10px;
  line-height: 1.5;
  transform: rotate(8deg);
}
.physical-tag > span {
  display: block;
  font-size: 27px;
}
.preview-label {
  position: absolute;
  bottom: 16px;
  left: 21px;
  font: 8px monospace;
  letter-spacing: 1px;
  color: #67765c;
}
.ticker {
  background: var(--lime);
  padding: 19px 0;
}
.ticker > .wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font: 9px monospace;
  letter-spacing: 1px;
}
.ticker b {
  margin: 0 17px;
}
.section {
  padding-top: 86px;
  padding-bottom: 88px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
h2 {
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin: 17px 0 0;
}
.section-heading > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid article {
  border: 1px solid var(--line);
  padding: 27px;
  border-radius: 9px;
  position: relative;
}
.feature-number {
  position: absolute;
  right: 22px;
  top: 24px;
  font: 10px monospace;
  color: #8d9689;
}
.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: #e9eddc;
  border-radius: 10px;
  font-size: 28px;
  margin-bottom: 29px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
  margin: 0 0 13px;
}
.feature-grid p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.developer-section {
  background: #1c2b22;
  color: #f3f4e9;
  padding: 76px 0;
}
.developer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  align-items: center;
}
.developer-section .eyebrow {
  color: #a4b28f;
}
.developer-section h2 {
  font-size: 43px;
}
.developer-section h2 span {
  color: var(--lime);
}
.developer-section p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: #b6c1ad;
  margin-top: 24px;
}
.text-link {
  display: inline-flex;
  gap: 45px;
  font-size: 13px;
  margin-top: 14px;
  color: var(--lime);
}
.dev-note {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 34px;
  color: #98a48f;
}
.code-panel {
  background: #142219;
  border: 1px solid #45533e;
  border-radius: 10px;
  overflow: hidden;
}
.code-header {
  height: 58px;
  border-bottom: 1px solid #364632;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.code-header > span {
  font: 8px monospace;
  color: #96a28b;
  letter-spacing: 1px;
}
.code-header button {
  border: 0;
  background: transparent;
  color: #9ca78e;
  font: 11px monospace;
  padding: 20px 13px;
}
.code-header button[aria-selected="true"] {
  color: var(--lime);
  border-bottom: 2px solid var(--lime);
}
pre {
  font:
    12px/1.95 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: #d1e4b6;
  padding: 28px 25px;
  margin: 0;
  min-height: 285px;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.code-footer {
  border-top: 1px solid #364632;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 9px;
  padding: 18px 20px;
  color: #b1bca5;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary span {
  font-size: 22px;
  font-weight: 400;
}
.questions details[open] summary span {
  transform: rotate(45deg);
}
.questions p {
  margin: 0 28px 23px 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.signup-section {
  background: #e8eddc;
  border: 1px solid #dce3ce;
  border-radius: 13px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1140px;
  margin-bottom: 70px;
}
.signup-section h2 {
  font-size: 46px;
}
.signup-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #63715c;
}
.signup-detail {
  font: 9px/1.8 monospace;
  margin-top: 36px;
  color: #647459;
}
form label:not(.consent) {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 9px;
}
form label > span {
  font-weight: 400;
  color: #61705a;
}
input:not([type="checkbox"]),
textarea {
  display: block;
  background: #f8faf2;
  border: 1px solid #ccd5bf;
  width: 100%;
  padding: 13px 14px;
  border-radius: 5px;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 20px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #7f8b73;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.consent input {
  accent-color: #243628;
  margin: 1px 0 0;
}
.signup-section .button {
  width: 100%;
  padding: 15px 18px;
}
.signup-section .privacy-note {
  font-size: 9px;
  line-height: 1.7;
  margin-bottom: 0;
}
.privacy-note button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
}
.signup-section .form-message {
  font-size: 12px;
  margin: 12px 0 0;
  font-weight: 600;
}
.form-message:empty {
  display: none;
}
.form-message.error {
  color: #9a3028;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 35px;
}
footer .logo {
  font-size: 25px;
}
footer > span {
  font-size: 10px;
  color: var(--muted);
}
footer .text-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-arrow {
  margin-left: 20px;
}
.cookie-consent {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  box-shadow: 0 18px 50px #14221955;
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent-copy {
  flex: 1;
  min-width: 0;
}
.cookie-consent-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.cookie-consent-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #c5cebf;
}
.cookie-short {
  display: none;
}
.cookie-consent .text-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--lime);
  font: inherit;
}
.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.cookie-consent .button {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 12px;
  gap: 12px;
}
.cookie-consent .button:not(.dark) {
  background: var(--lime);
  color: var(--ink);
}
.cookie-consent .dark {
  background: transparent;
  color: var(--paper);
  border-color: #45533e;
}
.cookie-consent .dark:hover {
  background: #324637;
}
@media (max-width: 700px) {
  .cookie-consent {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 14px 12px;
    border-radius: 12px;
  }
  .cookie-consent-copy strong {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .cookie-consent-copy p {
    font-size: 11px;
    line-height: 1.45;
  }
  .cookie-long {
    display: none;
  }
  .cookie-short {
    display: inline;
  }
  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-consent .button {
    justify-content: center;
    min-height: 44px;
    padding: 11px 10px;
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .cookie-consent-actions {
    grid-template-columns: 1fr;
  }
}
.skip {
  position: absolute;
  left: 20px;
  top: -80px;
  padding: 15px;
  background: var(--lime);
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
dialog {
  border: 1px solid #d1d9c4;
  border-radius: 12px;
  padding: 35px;
  max-width: 550px;
  width: calc(100% - 32px);
  background: var(--paper);
  color: var(--ink);
}
dialog::backdrop {
  background: #14221999;
}
dialog h2 {
  font-size: 28px;
  margin: 0 0 20px;
}
dialog p {
  font-size: 14px;
  line-height: 1.7;
}
button.dialog-close:not(.button) {
  position: absolute;
  right: 15px;
  top: 9px;
  background: none;
  border: 0;
  font-size: 25px;
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 90px;
  }
}
@media (max-width: 950px) {
  .wrap {
    padding-left: 25px;
    padding-right: 25px;
  }
  .hero {
    gap: 20px;
  }
  h1 {
    font-size: 66px;
    letter-spacing: -4px;
  }
  .hero-description {
    font-size: 15px;
  }
  .physical-tag {
    display: none;
  }
  .command-card {
    width: 210px;
    left: 10px;
  }
  .stage {
    height: 480px;
  }
  .phone {
    margin-left: -90px;
    top: 42px;
  }
  .developer-grid {
    gap: 30px;
  }
  .signup-section {
    margin-left: 25px;
    margin-right: 25px;
    padding: 35px;
    gap: 30px;
  }
  .ticker b {
    margin: 0 8px;
  }
  h2,
  .developer-section h2 {
    font-size: 36px;
  }
  .feature-grid article {
    padding: 22px;
  }
}
@media (max-width: 700px) {
  .nav {
    height: 83px;
    gap: 10px;
  }
  .nav nav {
    display: none;
  }
  .logo {
    font-size: 28px;
  }
  .nav .button {
    font-size: 10px;
    padding: 11px 12px;
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 26px;
    padding-bottom: 35px;
    gap: 32px;
  }
  h1 {
    font-size: 52px;
    letter-spacing: -2.8px;
    line-height: 0.95;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-tags {
    margin-top: 25px;
  }
  .stage {
    height: 460px;
  }
  .phone {
    top: 32px;
  }
  .command-card {
    top: 233px;
    width: 238px;
    left: 15px;
  }
  .physical-tag {
    display: block;
    right: 23px;
    top: 65px;
  }
  .ticker > .wrap {
    flex-direction: column;
    gap: 11px;
    font-size: 8px;
    line-height: 1.7;
  }
  .ticker b {
    margin: 0 5px;
  }
  .section {
    padding-top: 53px;
    padding-bottom: 53px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading > p {
    margin-top: 23px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .feature-grid article {
    padding: 25px;
  }
  .feature-icon {
    margin-bottom: 21px;
  }
  .developer-section {
    padding: 50px 0;
  }
  .developer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .developer-section h2 {
    font-size: 40px;
  }
  .dev-note {
    margin-top: 20px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .signup-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 23px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 38px;
  }
  .signup-section h2 {
    font-size: 40px;
  }
  .signup-detail {
    margin-top: 22px;
  }
  footer {
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
  footer > span:nth-child(2) {
    display: none;
  }
  footer > span:last-child {
    width: 100%;
    order: 3;
  }
  pre {
    font-size: 11px;
    min-height: 270px;
    padding: 22px 18px;
  }
  .code-footer {
    font-size: 8px;
  }
  .code-header {
    padding: 0 12px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 44px;
    letter-spacing: -2.2px;
  }
  .physical-tag {
    display: none;
  }
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-tags {
    gap: 5px;
  }
  .hero-tags span {
    padding: 7px;
    font-size: 9px;
  }
  .nav .button {
    padding: 10px 10px;
  }
  .signup-section {
    margin-left: 12px;
    margin-right: 12px;
    padding: 24px 18px;
  }
  .signup-section h2 {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 700px) {
  .physical-tag {
    display: none;
  }
}

.integrations-section {
  padding-bottom: 35px;
}
.integration-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 660px;
  margin: -15px 0 28px;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.integration-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.integration-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
.integration-number {
  font: 11px monospace;
  color: var(--muted);
}
.integration-status {
  background: #e7edd9;
  color: #52613e;
  padding: 5px 8px;
  border-radius: 4px;
  font: 9px monospace;
}
.integration-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0;
}
.integration-cta {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
@media (max-width: 950px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .integration-note {
    margin-top: 0;
  }
}
