@font-face {
  font-family: Inter;
  src: url('/assets/inter-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('/assets/instrument-serif-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #101114;
  --surface-high: #15161a;
  --text: #f1f0ed;
  --muted: #909096;
  --subtle: #64646e;
  --gold: #e8b96b;
  --gold-light: #f4d59c;
  --line: rgba(255, 255, 255, 0.085);
  --serif: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #9e754a;
  color: white;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
}
button,
input,
textarea {
  border-radius: 0;
}
img,
svg {
  display: block;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.container {
  width: min(1120px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 10px 20px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 84px;
  background: rgba(8, 9, 11, 0.7);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s,
    border-color 0.35s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.scrolled {
  background: rgba(8, 9, 11, 0.88);
  border-color: var(--line);
}
.nav-shell {
  width: min(1320px, calc(100% - 80px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -1.1px;
  line-height: 1;
}
.brand img {
  box-shadow: 0 2px 20px #e8b96b0a;
  border-radius: 9px;
}
.brand-dot {
  color: var(--gold);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 7px;
  background: #0c0d0faa;
}
.desktop-nav a {
  padding: 8px 18px;
  font-size: 12px;
  color: #a1a1a8;
  transition:
    color 0.2s,
    background 0.2s;
  border-radius: 30px;
}
.desktop-nav a:hover {
  background: #ffffff08;
  color: var(--text);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 21px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 550;
  border: 1px solid transparent;
  border-radius: 8px;
  position: relative;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease),
    background 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button-gold {
  color: #20190e;
  background: linear-gradient(170deg, #f2cd89, #e8b96b 55%, #d8a454);
  border-color: #f2d29b99;
  box-shadow:
    inset 0 1px 0 #fff5,
    0 4px 18px #0006,
    0 0 24px #e8b96b10;
  overflow: hidden;
}
.button-gold::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, #fff5 40%, transparent 65%);
  transform: translateX(-140%);
  transition: transform 0.8s var(--ease);
}
.button-gold:hover {
  box-shadow:
    inset 0 1px 0 #fff8,
    0 4px 24px #0006,
    0 0 30px #e8b96b25;
}
.button-gold:hover::before {
  transform: translateX(140%);
}
.button-small {
  min-height: 38px;
  padding: 10px 15px;
  font-size: 12px;
  border-radius: 7px;
}
.button-small .icon {
  width: 16px;
  height: 16px;
}
.button-quiet {
  color: #c8c7cb;
  padding-inline: 15px;
  font-weight: 400;
  gap: 9px;
}
.button-quiet:hover {
  color: #fff;
  background: #ffffff04;
}
.button-arrow {
  margin-left: 6px;
}
.play-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff35;
  border-radius: 50%;
}
.play-icon .icon {
  height: 12px;
  width: 12px;
  fill: currentColor;
  stroke-width: 0;
  margin-left: 1px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 12px 7px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--text);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #101114f7;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 13px 6px;
  color: #ccc;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold));
  pointer-events: none;
}
.hero {
  position: relative;
  padding-top: 57px;
  isolation: isolate;
  overflow: clip;
}
.hero-atmosphere {
  position: absolute;
  inset: 0 0 10%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse 33% 26% at 50% 74%, #ab773512, transparent 100%);
}
.orbital {
  position: absolute;
  border: 1px solid #bc8b490c;
  border-radius: 50%;
  left: 50%;
  top: 500px;
  transform: translate(-50%, -50%);
  height: 1200px;
  width: 1200px;
  mask-image: linear-gradient(transparent 25%, black 60%, transparent 100%);
}
.orbital-two {
  height: 1600px;
  width: 1600px;
  opacity: 0.8;
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 27%, #e9bc7470 50%, transparent),
    radial-gradient(1px 1px at 85% 11%, #bfa47b50 50%, transparent),
    radial-gradient(1.5px 1.5px at 87% 42%, #e9bc7470 50%, transparent),
    radial-gradient(1px 1px at 24% 51%, #e9bc7470 50%, transparent),
    radial-gradient(1px 1px at 75% 24%, #e9bc7460 50%, transparent),
    radial-gradient(1px 1px at 9% 70%, #e9bc7470 50%, transparent),
    radial-gradient(1px 1px at 32% 9%, #e9bc7440 50%, transparent);
  animation: star-drift 18s ease-in-out infinite alternate;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #c795542b;
  background: linear-gradient(100deg, #d4a25209, #e7b56203);
  border-radius: 40px;
  padding: 7px 11px 7px 12px;
  color: #c7aa7b;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 1.25px;
  font-weight: 500;
}
.eyebrow-pill .icon {
  width: 13px;
  height: 13px;
  margin-left: 3px;
  color: #bca078;
}
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px #e8b96b66;
  position: relative;
}
.eyebrow-pill .status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #e8b96b30;
  border-radius: 50%;
  animation: beacon 3s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(68px, 6.8vw, 100px);
  line-height: 1.02;
  letter-spacing: -6px;
  margin-top: 27px;
  font-weight: 500;
}
.title-line {
  display: block;
}
.title-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -3.5px;
  color: var(--gold);
  font-size: 1.13em;
  line-height: 1.03;
  margin-top: 0;
  padding-bottom: 9px;
}
.hero-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #929196;
  margin: 20px auto 0;
  max-width: 580px;
  letter-spacing: -0.2px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.waitlist {
  width: min(100%, 390px);
  text-align: left;
  scroll-margin-top: 110px;
}
.waitlist-label {
  display: block;
  margin-bottom: 9px;
  color: #c6bdad;
  font-size: 11px;
  font-weight: 500;
}
.waitlist-form {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 5px;
  border: 1px solid #d7ae6845;
  border-radius: 11px;
  background: #111216;
  box-shadow: 0 4px 24px #0003;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.waitlist-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #e8b96b14;
}
.waitlist-form input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}
.waitlist-form input::placeholder {
  color: #807e88;
}
.waitlist-form .button {
  flex-shrink: 0;
  min-width: 88px;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 7px;
}
.waitlist-form .button:hover {
  transform: none;
}
.waitlist-form .icon {
  width: 16px;
  height: 16px;
}
.waitlist-status {
  margin: 10px 0 0;
  color: #bdb4a5;
  font-size: 11px;
  line-height: 1.6;
}
.hero-actions > .button-quiet {
  margin-top: 26px;
}
.hero-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-size: 10px;
  color: #74737d;
  letter-spacing: 0.1px;
}
.tiny-check {
  color: #baa179;
  font-size: 12px;
}
.note-divider {
  height: 2px;
  width: 2px;
  border-radius: 50%;
  background: #67666e;
  margin: 0 4px;
}
.demo-wrap {
  position: relative;
  margin-top: 47px;
  scroll-margin-top: 20px;
  max-width: 1034px;
}
.demo-halo {
  position: absolute;
  z-index: -1;
  left: 15%;
  right: 15%;
  height: 220px;
  top: 8px;
  background: radial-gradient(ellipse at 50% 50%, #e4ac494a, #e4ac491c 45%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
}
.demo-top-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 8px;
  letter-spacing: 1.9px;
  color: #aca08b;
  margin-bottom: 23px;
  font-weight: 500;
}
.demo-top-label .icon {
  height: 13px;
  width: 13px;
  color: var(--gold);
}
.label-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d5ab6333);
  margin: 0 9px;
}
.label-line:last-child {
  transform: rotate(180deg);
}
.browser-window {
  position: relative;
  border: 1px solid #ffffff17;
  border-radius: 14px;
  overflow: hidden;
  background: #101114;
  box-shadow:
    0 0 0 6px #ffffff02,
    0 25px 80px #0005,
    0 -1px 0 #dbab5f2b;
}
.browser-window::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7a960aa, transparent);
}
.browser-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #141519;
  border-bottom: 1px solid #ffffff06;
  gap: 20px;
}
.window-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 94px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37363c;
}
.window-dots i:first-child {
  background: #80534d;
}
.window-dots i:nth-child(2) {
  background: #8d764b;
}
.window-dots i:last-child {
  background: #536e51;
}
.address {
  font-size: 9px;
  color: #777780;
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid #ffffff05;
  border-radius: 5px;
  background: #0e0f12;
  padding: 4px 56px;
}
.address .icon {
  height: 10px;
  width: 10px;
  color: #7f7d7c;
}
.demo-badge {
  font-size: 7px;
  letter-spacing: 1px;
  color: #82808a;
  white-space: nowrap;
}
.demo-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 482px;
}
.sample-website {
  padding: 22px 36px 24px;
  background: linear-gradient(155deg, #121316, #0e0f12);
}
.sample-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.3px;
  color: #c7c5c5;
}
.sample-logo {
  font-size: 16px;
  font-weight: 750;
  position: relative;
  margin-right: 3px;
}
.sample-logo span {
  font-size: 11px;
  color: var(--gold);
  position: absolute;
  right: -9px;
  top: -1px;
}
.sample-nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 8px;
  font-weight: 400;
  color: #65646e;
  letter-spacing: 0;
}
.sample-nav span {
  color: #aaa5a0;
}
.sample-form-header {
  margin: 32px 0 22px;
}
.overline {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #85818b;
  line-height: 1.6;
}
.sample-form-header h2 {
  font-size: 25px;
  letter-spacing: -1.05px;
  line-height: 1.3;
  margin-top: 6px;
  color: #dedbd9;
}
.sample-form-header p {
  font-size: 10px;
  color: #777680;
  margin-top: 5px;
}
.demo-form {
  display: grid;
  gap: 15px;
}
.field-row label {
  display: flex;
  justify-content: space-between;
  color: #a4a0a5;
  font-size: 9px;
  margin-bottom: 6px;
  align-items: center;
}
.field-row label > span {
  color: #4c4a52;
  font-size: 7px;
  font-variant-numeric: tabular-nums;
}
.field-shell {
  position: relative;
  background: #090a0c;
  border: 1px solid #ffffff0d;
  border-radius: 6px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.field-shell:focus-within {
  border-color: #dcb57770;
  box-shadow: 0 0 0 3px #dcb57709;
}
.field-shell.filled {
  border-color: #d0ac6e38;
  background: linear-gradient(110deg, #e8b96b05, transparent);
}
.field-shell input,
.field-shell textarea {
  display: block;
  width: 100%;
  padding: 10px 43px 10px 11px;
  background: none;
  border: 0;
  color: #d3c6b1;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.05px;
  border-radius: 6px;
  resize: vertical;
  min-height: 36px;
}
.field-shell input::placeholder,
.field-shell textarea::placeholder {
  color: #52515b;
  opacity: 1;
}
.field-shell textarea {
  min-height: 74px;
  max-height: 140px;
  padding-top: 11px;
}
.fill-button {
  position: absolute;
  right: 7px;
  top: 6px;
  background: #b9924b12;
  border: 1px solid #b9924b2e;
  color: var(--gold);
  border-radius: 5px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.fill-button .icon {
  height: 14px;
  width: 14px;
}
.fill-button:hover {
  background: #d5ab632b;
  box-shadow: 0 0 18px #d5ab6330;
  transform: scale(1.06);
}
.fill-button.is-filling {
  animation: fill-pulse 0.8s ease infinite;
}
.fill-button.is-complete {
  color: #a5b197;
}
.sample-form-footer {
  display: flex;
  align-items: center;
  font-size: 8px;
  color: #686771;
  gap: 5px;
  margin-top: 0;
}
.sample-form-footer > .icon {
  height: 11px;
  width: 11px;
}
.sample-submit {
  display: flex;
  margin-left: auto;
  gap: 20px;
  border: 1px solid #ffffff0c;
  border-radius: 4px;
  padding: 7px 10px;
  color: #737179;
  background: #ffffff03;
}
.extension-preview {
  border-left: 1px solid #ffffff09;
  background: linear-gradient(170deg, #18181c, #111215 60%);
  padding: 19px 20px 12px;
  position: relative;
}
.extension-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.extension-title img {
  border-radius: 6px;
}
.extension-menu {
  margin-left: auto;
  font-size: 17px;
  color: #7b777e;
  letter-spacing: 1px;
}
.extension-tabs {
  display: flex;
  gap: 21px;
  align-items: center;
  border-bottom: 1px solid #ffffff08;
  color: #74717c;
  margin-top: 16px;
  font-size: 9px;
}
.extension-tabs span {
  padding-bottom: 10px;
}
.extension-tabs .active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.connected-profile {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
}
.profile-avatar {
  height: 33px;
  width: 33px;
  background: #2a2520;
  color: #dcc39c;
  border: 1px solid #e8b96b20;
  display: grid;
  place-items: center;
  font-size: 15px;
  border-radius: 7px;
  font-weight: 600;
}
.connected-profile strong {
  display: block;
  font-size: 10px;
  font-weight: 550;
}
.connected-profile div > span {
  display: block;
  font-size: 8px;
  color: #7d7983;
  margin-top: 1px;
}
.profile-check {
  margin-left: auto;
  color: #999687;
}
.profile-check .icon {
  width: 13px;
  height: 13px;
}
.ready-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bab298;
  font-size: 8px;
  margin-top: 22px;
}
.ready-status .status-dot {
  width: 4px;
  height: 4px;
  background: #a2b58d;
  box-shadow: 0 0 8px #a2b58d30;
}
.extension-preview h3 {
  font-size: 21px;
  letter-spacing: -0.75px;
  line-height: 1.25;
  color: #e6e1da;
  margin-top: 10px;
}
.extension-description {
  font-size: 9px;
  line-height: 1.7;
  color: #838089;
  margin-top: 8px;
  max-width: 220px;
}
.suggestion-card {
  margin-top: 17px;
  border: 1px solid #c19a5433;
  border-radius: 7px;
  padding: 11px;
  background: linear-gradient(135deg, #bc985610, #bc985603);
}
.suggestion-card > div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 6px;
  letter-spacing: 0.8px;
  color: #c4a570;
}
.suggestion-card > div .icon {
  width: 11px;
  height: 11px;
}
.suggestion-card p {
  font-size: 10px;
  line-height: 1.65;
  color: #c5beb3;
  margin-top: 8px;
}
.source-tag {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 7px;
  color: #817b70;
  margin-top: 10px;
}
.source-tag .icon {
  width: 10px;
  height: 10px;
}
.demo-action {
  width: 100%;
  min-height: 33px;
  padding: 9px 10px;
  font-size: 9px;
  border-radius: 5px;
  margin-top: 13px;
  justify-content: space-between;
}
.demo-action .icon {
  height: 13px;
  width: 13px;
}
.demo-reset {
  background: transparent;
  border: 0;
  font-size: 8px;
  color: #a79c89;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
}
.demo-reset .icon {
  height: 10px;
  width: 10px;
}
.demo-reset:hover {
  color: var(--gold);
}
.extension-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #77717c;
  font-size: 7px;
  gap: 4px;
  margin-top: 11px;
}
.extension-bottom .icon {
  height: 10px;
  width: 10px;
}
.demo-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #a3a0a4;
  font-size: 10px;
  min-height: 46px;
  padding: 15px 0;
}
.hint-spark {
  color: var(--gold);
}
.demo-sample-note {
  font-size: 8px;
  color: #615f68;
  margin-left: 12px;
}
.opportunities {
  padding-top: 57px;
  padding-bottom: 49px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.opportunities > p {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.7px;
  color: #73717c;
}
.opportunity-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 25px 0;
  color: #a4a1a8;
}
.opportunity-list > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: -0.25px;
}
.opportunity-list .icon {
  color: #76737d;
  width: 19px;
  height: 19px;
}
.section {
  padding-top: 112px;
  padding-bottom: 0;
  scroll-margin-top: 0;
}
.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 44px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #baa27c;
  font-weight: 500;
}
.eyebrow > span {
  height: 5px;
  width: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.section-heading .eyebrow {
  justify-content: center;
}
.section h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -1.9px;
  margin-top: 19px;
}
.section h2 .muted {
  color: #85828a;
}
.section h2 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold);
  font-size: 1.14em;
  letter-spacing: -0.9px;
  line-height: 1.15;
}
.section-heading > p {
  color: #85818b;
  font-size: 12px;
  margin-top: 20px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(130deg, #141518, #0e0f11 65%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease);
}
[data-spotlight]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    420px circle at var(--mouse-x, 50%) var(--mouse-y, 0%),
    #e8b96b0d,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
[data-spotlight]:hover::before {
  opacity: 1;
}
.feature-card:hover {
  border-color: #dfbb7733;
  transform: translateY(-3px);
}
.feature-large {
  grid-column: span 3;
  padding: 27px 30px 0;
  min-height: 408px;
}
.card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #d8b27922;
  color: #d6b579;
  background: linear-gradient(140deg, #b98f4217, #b98f4204);
  box-shadow: inset 0 1px 0 #ffffff06;
}
.feature-icon .icon {
  width: 17px;
  height: 17px;
}
.card-index {
  font-size: 7px;
  letter-spacing: 1.2px;
  color: #8a8174;
  font-weight: 500;
}
.feature-card h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.9px;
  margin-top: 18px;
}
.feature-card > p {
  font-size: 11px;
  line-height: 1.8;
  color: #88848e;
  margin-top: 11px;
  max-width: 380px;
}
.profile-visual {
  position: relative;
  margin-top: 20px;
  min-height: 191px;
  isolation: isolate;
}
.profile-core {
  position: absolute;
  width: 85px;
  height: 85px;
  left: 50%;
  top: 64px;
  transform: translate(-50%, -50%);
  border: 1px solid #c4964430;
  border-radius: 22px;
  background: #e7b36205;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 65px #ba884c15,
    0 0 0 10px #e8b96b02;
}
.profile-core img {
  border-radius: 16px;
  box-shadow: 0 7px 35px #e8b96b17;
  transform: rotate(-6deg);
}
.profile-orbit {
  height: 140px;
  width: 340px;
  position: absolute;
  left: 50%;
  top: 62px;
  border-radius: 50%;
  border: 1px solid #d9b56b15;
  transform: translate(-50%, -50%) rotate(-17deg);
  z-index: -1;
}
.orbit-b {
  width: 250px;
  height: 178px;
  transform: translate(-50%, -50%) rotate(27deg);
  border-color: #d9b56b0a;
}
.floating-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  border: 1px solid #ffffff0e;
  border-radius: 5px;
  background: #17181b;
  padding: 7px 9px;
  color: #9e9aa2;
  font-size: 8px;
  box-shadow: 0 8px 22px #0002;
  animation: float 6s ease-in-out infinite;
}
.floating-chip > span:last-child {
  font-size: 8px;
  color: #c4ab83;
  margin-left: 7px;
}
.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: #c9a15b55;
}
.chip-a {
  top: 16px;
  left: 0;
  transform: rotate(-5deg);
  animation-delay: -1s;
}
.chip-b {
  right: -3px;
  top: 34px;
  transform: rotate(5deg);
  animation-delay: -3s;
}
.chip-c {
  left: 12px;
  top: 106px;
  transform: rotate(3deg);
  animation-delay: -2s;
}
.chip-d {
  right: 10px;
  top: 127px;
  transform: rotate(-5deg);
  animation-delay: -4s;
}
.answer-visual {
  margin-top: 21px;
  padding: 0 0 15px;
}
.answer-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: #090a0c;
  border: 1px solid #ffffff0a;
  border-radius: 6px;
  width: fit-content;
}
.answer-tabs button {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 8px;
  color: #8e8a95;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 0.25s,
    color 0.25s;
}
.answer-tabs button[aria-selected='true'] {
  background: #212020;
  color: #d6b77f;
  border-color: #d9b57519;
  box-shadow: 0 1px 3px #0004;
}
.answer-tabs button:hover {
  color: #e1c592;
}
.answer-example {
  border: 1px solid #ffffff0b;
  border-radius: 7px;
  padding: 14px;
  background: linear-gradient(115deg, #a9813e07, #ffffff01);
  margin-top: 10px;
  min-height: 119px;
}
.answer-example > .overline {
  font-size: 6px;
  letter-spacing: 1px;
  color: #807b78;
}
.answer-example > p {
  font-size: 11px;
  line-height: 1.7;
  color: #c6c0b6;
  margin-top: 8px;
  min-height: 38px;
}
.answer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 13px;
  color: #7c705b;
  font-size: 6px;
}
.answer-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
.answer-footer .icon {
  width: 10px;
  height: 10px;
}
.answer-footer > span:last-child {
  font-variant-numeric: tabular-nums;
  color: #77707a;
}
.example-label {
  display: block;
  color: #66616b;
  font-size: 7px;
  text-align: center;
  margin-top: 9px;
}
.feature-small {
  grid-column: span 2;
  padding: 27px 25px 23px;
  min-height: 240px;
}
.feature-small h3 {
  font-size: 17px;
  letter-spacing: -0.55px;
  margin-top: 20px;
}
.feature-small > p {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 10px;
}
.memory-mini,
.click-mini,
.privacy-mini {
  display: flex;
  gap: 7px;
  align-items: center;
  position: relative;
  border: 1px solid #ffffff0a;
  border-radius: 6px;
  background: #08090b66;
  margin-top: 24px;
  padding: 10px;
  font-size: 8px;
  color: #9b95a0;
  min-height: 38px;
}
.memory-mini > .icon {
  width: 12px;
  height: 12px;
  color: #c3aa7c;
}
.memory-mini > span {
  margin-left: auto;
  font-size: 6px;
  color: #998567;
  border: 1px solid #b3955d22;
  padding: 1px 4px;
  border-radius: 3px;
}
.click-mini {
  padding-right: 6px;
  justify-content: space-between;
}
.mini-fill {
  display: grid;
  place-items: center;
  border: 1px solid #b9924b30;
  background: #b9924b10;
  color: var(--gold);
  border-radius: 4px;
  width: 23px;
  height: 23px;
  margin: -4px 0;
}
.mini-fill .icon {
  width: 14px;
  height: 14px;
}
.click-mini .mini-cursor {
  width: 19px;
  height: 19px;
  position: absolute;
  right: 1px;
  bottom: -6px;
  color: #e2d2b5;
  fill: #111;
}
.privacy-mini {
  justify-content: space-between;
}
.privacy-mini > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.privacy-mini .status-dot {
  width: 4px;
  height: 4px;
  background: #acb89c;
  box-shadow: 0 0 7px #acb89c40;
}
.privacy-mini > .icon {
  width: 12px;
  height: 12px;
  color: #7a806f;
}
.process-section {
  margin-top: 108px;
  padding-top: 73px;
  padding-bottom: 72px;
  position: relative;
  border-block: 1px solid var(--line);
  background: linear-gradient(100deg, #15141144, transparent 45%);
}
.process-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.process-heading > p {
  font-size: 12px;
  line-height: 1.8;
  color: #85818b;
  margin-bottom: 6px;
  margin-right: 45px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px;
  margin-top: 47px;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.step-top > span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: #b19975;
  line-height: 1.3;
}
.step-line {
  height: 1px;
  background: linear-gradient(90deg, #a7824630, #ffffff07);
  flex: 1;
}
.step-top > .icon {
  color: #988569;
  width: 20px;
  height: 20px;
}
.step h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-top: 20px;
}
.step > p {
  color: #83808a;
  font-size: 11px;
  line-height: 1.9;
  margin-top: 11px;
}
.step > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #c2aa84;
  font-size: 10px;
}
.step > a:hover {
  color: var(--gold-light);
}
.step > a .icon {
  height: 13px;
  width: 13px;
}
.step-note {
  display: block;
  font-size: 10px;
  color: #5f5c65;
  margin-top: 20px;
}
.founder-note {
  padding-top: 87px;
  padding-bottom: 90px;
  position: relative;
  text-align: center;
}
.quote-mark {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 65px;
  line-height: 0.9;
  height: 45px;
  opacity: 0.6;
}
.founder-note > p {
  font-size: 34px;
  line-height: 1.42;
  letter-spacing: -1.2px;
  color: #c7c3c3;
  font-weight: 400;
}
.founder-note em {
  font-family: var(--serif);
  font-size: 1.25em;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.note-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: #837363;
  font-size: 7px;
  letter-spacing: 1.5px;
}
.signature-line {
  width: 24px;
  height: 1px;
  background: #bd99613d;
}
.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 77px;
}
.pricing-copy > p {
  font-size: 12px;
  line-height: 1.9;
  color: #85818b;
  margin-top: 23px;
}
.pricing-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 10px;
  color: #6e6872;
  max-width: 290px;
  line-height: 1.7;
}
.pricing-detail > .icon {
  width: 18px;
  height: 18px;
  color: #b59b76;
}
.price-card {
  position: relative;
  isolation: isolate;
  border: 1px solid #caa0623b;
  border-radius: 12px;
  background: linear-gradient(140deg, #28221965, #111214 45%);
  padding: 27px 29px;
  box-shadow:
    0 0 55px #b58b4305,
    0 -1px 0 #d9b47717;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  inset: 0 20% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfa76a88, transparent);
}
.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8d1c7;
  font-size: 12px;
}
.pill {
  font-size: 6px;
  line-height: 1.5;
  letter-spacing: 1.05px;
  padding: 5px 7px;
  background: #d9af620c;
  border: 1px solid #d9af6226;
  border-radius: 4px;
  color: #c5a575;
}
.price {
  font-size: 69px;
  font-weight: 500;
  letter-spacing: -3.5px;
  line-height: 1;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.price > span:first-child {
  font-size: 35px;
  color: #c5bcae;
  align-self: flex-start;
  margin-top: 8px;
  letter-spacing: -1px;
}
.price > span:last-child {
  font-size: 10px;
  color: #857d78;
  letter-spacing: 0;
  align-self: flex-end;
  margin-bottom: 9px;
  margin-left: 6px;
  font-weight: 400;
}
.price-card > p {
  font-size: 10px;
  color: #8e8587;
  margin-top: 16px;
  line-height: 1.7;
}
.price-features {
  list-style: none;
  margin: 23px 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #aba3a8;
}
.price-features .icon {
  width: 13px;
  height: 13px;
  color: #caaa78;
}
.price-card .button {
  width: 100%;
  font-size: 10px;
  min-height: 44px;
  padding: 12px;
}
.price-card .button > .icon {
  width: 15px;
  height: 15px;
}
.price-card .button > .icon:last-child {
  margin-left: auto;
}
.price-note {
  display: block;
  text-align: center;
  font-size: 8px;
  color: #726b72;
  margin-top: 11px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 95px;
  padding-top: 121px;
  padding-bottom: 99px;
}
.faq-intro > p {
  font-size: 12px;
  line-height: 1.9;
  color: #85818b;
  margin-top: 20px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #c9b38f;
  margin-top: 24px;
}
.text-link:hover {
  color: var(--gold-light);
}
.text-link > .icon {
  width: 13px;
  height: 13px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  line-height: 1.6;
  color: #c0b9c0;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 14px;
  height: 14px;
  color: #82776c;
  transition: transform 0.3s;
}
.faq-list summary:hover {
  color: var(--gold-light);
}
.faq-list details[open] summary {
  color: #ded5c8;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-answer {
  padding: 0 35px 20px 0;
  font-size: 11px;
  line-height: 1.9;
  color: #88818c;
}
.faq-answer p {
  animation: answer-appear 0.4s var(--ease);
}
.faq-answer a {
  color: #c6ad87;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-section {
  border-top: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  padding: 70px 0 73px;
  overflow: hidden;
  background: radial-gradient(ellipse 50% 90% at 50% 130%, #b58b4722, transparent 100%);
}
.closing-glow {
  position: absolute;
  z-index: -1;
  height: 610px;
  width: 950px;
  left: 50%;
  bottom: -570px;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow:
    0 -8px 85px #bd8a4b25,
    0 -1px 0 #c5995e77;
  background: #e2ad6210;
}
.closing-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: 710px;
  height: 710px;
  border: 1px solid #d0a16508;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.closing-content {
  text-align: center;
  position: relative;
}
.closing-logo {
  margin: 0 auto 22px;
  border-radius: 14px;
  box-shadow: 0 0 45px #e8b96b1a;
  transform: rotate(-6deg);
}
.closing-content .eyebrow {
  justify-content: center;
  font-size: 7px;
}
.closing-content h2 {
  font-size: 53px;
  line-height: 1.14;
  letter-spacing: -2.4px;
  margin-top: 18px;
}
.closing-content h2 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold);
  font-size: 1.18em;
  letter-spacing: -1.5px;
}
.closing-content > p {
  font-size: 12px;
  color: #93888a;
  margin-top: 18px;
}
.closing-content .waitlist {
  margin: 28px auto 0;
}
.closing-note {
  display: block;
  font-size: 9px;
  color: #756c73;
  margin-top: 14px;
}
.footer {
  padding: 31px 0 20px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer-top .brand {
  font-size: 21px;
}
.footer-top > p {
  color: #706a75;
  font-size: 10px;
}
.footer-top > nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 10px;
  color: #a19aa4;
}
.footer-top > nav a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-top > nav .icon {
  width: 12px;
  height: 12px;
}
.footer-top > nav a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #ffffff05;
  margin-top: 27px;
  padding-top: 17px;
  color: #605965;
  font-size: 8px;
}
.footer-bottom > a {
  color: #948791;
  display: flex;
  gap: 10px;
}
code {
  font-size: 0.95em;
  background: #ffffff07;
  border: 1px solid #ffffff08;
  padding: 2px 4px;
  border-radius: 4px;
  color: #c2ab88;
  overflow-wrap: anywhere;
}
.noscript-note {
  padding: 25px;
  background: #282018;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
}
.noscript-note a {
  text-decoration: underline;
}
.privacy-page {
  max-width: 720px;
  padding: 65px 0 95px;
}
.privacy-page h1 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -2.5px;
  margin-top: 20px;
}
.privacy-page .lede {
  font-size: 16px;
  color: #aaa2aa;
  line-height: 1.8;
  margin-top: 24px;
}
.privacy-page h2 {
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-top: 36px;
}
.privacy-page p,
.privacy-page li {
  font-size: 14px;
  color: #a19aa5;
  line-height: 1.9;
  margin-top: 12px;
}
.privacy-page a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-page ul {
  padding-left: 20px;
}
.privacy-page .updated {
  font-size: 10px;
  color: #746a79;
  margin-top: 20px;
}
.entrance {
  animation: entrance 1.05s var(--ease) both;
}
.eyebrow-pill.entrance {
  animation-delay: 0.08s;
}
.title-line:nth-child(1) {
  animation-delay: 0.18s;
}
.title-line:nth-child(2) {
  animation-delay: 0.28s;
}
.hero-description.entrance {
  animation-delay: 0.4s;
}
.hero-actions.entrance {
  animation-delay: 0.5s;
}
.hero-note.entrance {
  animation-delay: 0.6s;
}
.demo-wrap.entrance {
  animation-duration: 1.35s;
  animation-delay: 0.65s;
}
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.9s var(--ease),
    filter 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@keyframes entrance {
  from {
    opacity: 0;
    transform: translateY(23px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes beacon {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.9;
  }
}
@keyframes star-drift {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  to {
    transform: translateY(-17px);
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
@keyframes fill-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 #d5ab6320;
  }
  50% {
    box-shadow: 0 0 20px #d5ab6340;
  }
}
@keyframes answer-appear {
  from {
    opacity: 0.3;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 95px;
  }
  .hero h1 {
    font-size: 108px;
  }
  .hero-description {
    font-size: 16px;
  }
  .demo-wrap {
    margin-top: 72px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-shell {
    width: calc(100% - 48px);
  }
  .desktop-nav a {
    padding-inline: 13px;
  }
  .demo-body {
    grid-template-columns: 1fr 275px;
  }
  .sample-website {
    padding-inline: 27px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .opportunity-list {
    margin-inline: 0;
    gap: 16px;
  }
  .opportunity-list > span {
    font-size: 11px;
    gap: 7px;
  }
  .feature-large {
    padding: 24px 25px 0;
  }
  .feature-small {
    padding: 23px 20px;
  }
  .feature-small h3 {
    font-size: 15px;
  }
  .feature-card > p {
    font-size: 11px;
  }
  .floating-chip {
    font-size: 7px;
    padding: 6px 7px;
  }
  .chip-a {
    left: -5px;
  }
  .chip-b {
    right: -7px;
  }
  .profile-orbit {
    width: 280px;
  }
  .section h2 {
    font-size: 35px;
  }
  .steps {
    gap: 32px;
  }
  .step h3 {
    font-size: 14px;
  }
  .pricing-section {
    gap: 45px;
  }
  .faq-section {
    gap: 65px;
  }
  .price-card {
    padding: 25px;
  }
  .footer-top {
    gap: 18px;
  }
  .footer-top > nav {
    gap: 22px;
  }
}
@media (max-width: 800px) {
  .header {
    height: 74px;
  }
  .nav-shell {
    gap: 15px;
  }
  .desktop-nav {
    gap: 0;
  }
  .desktop-nav a {
    font-size: 10px;
    padding: 7px 10px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .nav-cta {
    font-size: 10px;
    padding: 10px;
    min-height: 36px;
  }
  .nav-cta .icon {
    width: 13px;
    height: 13px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-description {
    font-size: 14px;
  }
  .demo-wrap {
    margin-top: 56px;
  }
  .demo-body {
    grid-template-columns: 1fr 236px;
    min-height: 458px;
  }
  .sample-website {
    padding: 20px;
  }
  .sample-nav {
    gap: 15px;
    font-size: 7px;
  }
  .sample-form-header h2 {
    font-size: 21px;
  }
  .sample-form-header {
    margin-top: 30px;
  }
  .extension-preview {
    padding: 18px 15px 12px;
  }
  .extension-preview h3 {
    font-size: 19px;
  }
  .extension-description {
    font-size: 8px;
  }
  .suggestion-card p {
    font-size: 9px;
  }
  .browser-bar {
    height: 40px;
    padding-inline: 14px;
    gap: 10px;
  }
  .window-dots {
    width: auto;
  }
  .address {
    padding-inline: 25px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .demo-sample-note {
    display: none;
  }
  .opportunities {
    padding-top: 38px;
    padding-bottom: 35px;
  }
  .opportunity-list {
    justify-content: center;
    gap: 20px 35px;
  }
  .opportunity-list > span {
    font-size: 11px;
  }
  .section {
    padding-top: 80px;
  }
  .section h2 {
    font-size: 32px;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .feature-large {
    padding: 23px 20px 0;
    min-height: 418px;
  }
  .feature-card h3 {
    font-size: 23px;
  }
  .card-index {
    font-size: 6px;
    letter-spacing: 0.6px;
  }
  .card-heading {
    gap: 8px;
  }
  .feature-icon {
    width: 29px;
    height: 29px;
  }
  .feature-icon > .icon {
    width: 15px;
    height: 15px;
  }
  .feature-card > p {
    font-size: 10px;
  }
  .feature-small {
    grid-column: span 6;
    min-height: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: 35px 1fr 200px;
    gap: 0 15px;
    align-items: center;
  }
  .feature-small .feature-icon {
    grid-column: 1;
    grid-row: 1/3;
    align-self: start;
    margin-top: 3px;
  }
  .feature-small h3 {
    margin: 0;
    font-size: 16px;
    grid-column: 2;
  }
  .feature-small > p {
    grid-column: 2;
    margin-top: 6px;
    max-width: 300px;
    font-size: 10px;
  }
  .feature-small > div {
    grid-column: 3;
    grid-row: 1/3;
    margin: 0;
  }
  .profile-visual {
    margin-top: 35px;
    min-height: 170px;
  }
  .profile-core {
    width: 71px;
    height: 71px;
  }
  .profile-core img {
    width: 51px;
    height: 51px;
  }
  .floating-chip {
    font-size: 6px;
    padding: 6px;
    gap: 4px;
  }
  .floating-chip > span:last-child {
    margin-left: 2px;
  }
  .chip-a {
    top: 5px;
    left: -4px;
  }
  .chip-b {
    top: 37px;
    right: -8px;
  }
  .chip-c {
    top: 106px;
    left: -5px;
  }
  .chip-d {
    top: 134px;
    right: 0;
  }
  .profile-orbit {
    width: 240px;
    height: 135px;
  }
  .orbit-b {
    width: 180px;
    height: 170px;
  }
  .answer-visual {
    margin-top: 31px;
  }
  .answer-tabs button {
    font-size: 7px;
    padding: 5px 9px;
  }
  .answer-example {
    padding: 10px;
    min-height: 135px;
  }
  .answer-example > p {
    font-size: 10px;
    min-height: 54px;
  }
  .answer-footer {
    font-size: 5px;
  }
  .answer-footer > span:last-child {
    display: none;
  }
  .process-section {
    margin-top: 80px;
    padding: 60px 0;
  }
  .process-heading > p {
    font-size: 10px;
    margin-right: 0;
  }
  .steps {
    gap: 22px;
    margin-top: 35px;
  }
  .step h3 {
    font-size: 14px;
  }
  .step > p {
    font-size: 10px;
  }
  .step > a,
  .step-note {
    font-size: 9px;
  }
  .step-note {
    line-height: 1.8;
  }
  .founder-note {
    padding-top: 72px;
    padding-bottom: 70px;
  }
  .founder-note > p {
    font-size: 29px;
  }
  .pricing-section {
    gap: 32px;
    padding-top: 65px;
  }
  .pricing-copy h2 {
    font-size: 31px;
  }
  .pricing-copy > p {
    font-size: 11px;
  }
  .pricing-detail {
    font-size: 9px;
    gap: 9px;
  }
  .price-card {
    padding: 22px 20px;
  }
  .price-top {
    font-size: 11px;
    gap: 10px;
  }
  .pill {
    font-size: 5px;
    padding: 4px;
  }
  .price {
    font-size: 61px;
  }
  .price-card > p {
    font-size: 9px;
  }
  .price-features li {
    font-size: 9px;
  }
  .price-card .button {
    font-size: 9px;
    gap: 6px;
    white-space: normal;
  }
  .price-card .button > .icon:last-child {
    display: none;
  }
  .faq-section {
    gap: 45px;
    padding-top: 90px;
    padding-bottom: 75px;
  }
  .faq-list summary {
    font-size: 11px;
    padding: 18px 0;
    gap: 15px;
  }
  .faq-answer {
    font-size: 10px;
    padding-right: 10px;
  }
  .closing-content h2 {
    font-size: 47px;
  }
  .closing-section {
    padding: 58px 0;
  }
  .footer-top > p {
    display: none;
  }
  .footer {
    padding-top: 25px;
  }
  .footer-bottom {
    font-size: 7px;
  }
  .hero-atmosphere {
    background: radial-gradient(ellipse 43% 26% at 50% 72%, #ab773512, transparent 100%);
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 85px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header {
    height: 68px;
  }
  .nav-shell {
    width: calc(100% - 36px);
    gap: 10px;
  }
  .brand {
    font-size: 21px;
    gap: 8px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    padding: 8px 11px;
    font-size: 10px;
  }
  .nav-cta .icon {
    display: none;
  }
  .menu-toggle {
    display: block;
    width: 32px;
    height: 36px;
    padding: 7px 4px;
  }
  .hero {
    padding-top: 47px;
  }
  .eyebrow-pill {
    font-size: 7px;
    padding: 7px 10px;
    gap: 8px;
    letter-spacing: 1px;
  }
  .eyebrow-pill > .icon {
    width: 11px;
    height: 11px;
  }
  .hero h1 {
    font-size: clamp(57px, 13.5vw, 77px);
    letter-spacing: -3.7px;
    margin-top: 24px;
    line-height: 1.04;
  }
  .title-serif {
    letter-spacing: -2.2px;
    font-size: 1.07em;
    line-height: 1.15;
    padding-bottom: 0;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.8;
    max-width: 315px;
    margin-top: 19px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 7px;
    margin-top: 26px;
  }
  .waitlist-form input {
    padding-inline: 9px;
    font-size: 16px;
  }
  .waitlist-form .button {
    min-height: 44px;
    padding-inline: 15px;
  }
  .hero-actions > .button-quiet {
    margin-top: 0;
  }
  .hero-actions .button-quiet {
    font-size: 11px;
    min-height: 41px;
    padding: 10px 12px;
  }
  .hero-actions .button-quiet .play-icon {
    width: 19px;
    height: 19px;
  }
  .hero-note {
    margin-top: 9px;
    font-size: 8px;
    gap: 5px;
  }
  .note-divider {
    margin: 0 3px;
  }
  .tiny-check {
    font-size: 10px;
  }
  .demo-wrap {
    margin-top: 39px;
    width: calc(100% - 28px);
  }
  .demo-top-label {
    font-size: 6px;
    letter-spacing: 1.15px;
    gap: 7px;
    margin-bottom: 16px;
  }
  .demo-top-label .icon {
    width: 11px;
    height: 11px;
  }
  .label-line {
    width: 20px;
    margin: 0;
  }
  .browser-window {
    border-radius: 9px;
    box-shadow:
      0 0 0 4px #ffffff02,
      0 25px 60px #0004;
  }
  .browser-bar {
    height: 36px;
    padding: 0 12px;
    gap: 7px;
  }
  .window-dots {
    gap: 4px;
  }
  .window-dots i {
    height: 5px;
    width: 5px;
  }
  .address {
    padding: 3px 10px;
    font-size: 7px;
    gap: 4px;
  }
  .address > .icon {
    height: 8px;
    width: 8px;
  }
  .demo-badge {
    font-size: 5px;
    letter-spacing: 0.4px;
  }
  .demo-body {
    display: flex;
    flex-direction: column;
  }
  .sample-website {
    padding: 17px 20px 21px;
  }
  .sample-brand {
    font-size: 11px;
  }
  .sample-nav {
    font-size: 7px;
    gap: 15px;
  }
  .sample-form-header {
    margin: 27px 0 20px;
  }
  .sample-form-header .overline {
    font-size: 6px;
    letter-spacing: 1.1px;
  }
  .sample-form-header h2 {
    font-size: 24px;
    letter-spacing: -1px;
  }
  .sample-form-header p {
    font-size: 10px;
  }
  .field-row label {
    font-size: 10px;
    margin-bottom: 7px;
  }
  .field-row label > span {
    font-size: 7px;
  }
  .demo-form {
    gap: 15px;
  }
  .field-shell input,
  .field-shell textarea {
    font-size: 11px;
    padding: 11px 52px 11px 12px;
    line-height: 1.7;
    min-height: 44px;
  }
  .field-shell textarea {
    min-height: 88px;
  }
  .fill-button {
    width: 35px;
    height: 33px;
    top: 5px;
    right: 5px;
  }
  .fill-button > .icon {
    height: 18px;
    width: 18px;
  }
  .sample-form-footer {
    font-size: 8px;
    margin-top: 2px;
  }
  .sample-submit {
    font-size: 8px;
    padding: 7px 10px;
  }
  .extension-preview {
    display: grid;
    grid-template-columns: 1fr auto;
    border-left: 0;
    border-top: 1px solid #e8b96b18;
    padding: 16px 18px;
    gap: 5px 16px;
    background: linear-gradient(110deg, #1c1a1680, #121316);
  }
  .extension-title {
    font-size: 11px;
    gap: 6px;
    grid-column: 1;
  }
  .extension-title img {
    width: 20px;
    height: 20px;
  }
  .extension-menu,
  .extension-tabs,
  .connected-profile,
  .extension-preview h3,
  .extension-description,
  .suggestion-card,
  .extension-bottom {
    display: none;
  }
  .ready-status {
    grid-column: 1;
    margin: 2px 0 0;
    font-size: 8px;
    padding-left: 26px;
  }
  .ready-status .status-dot {
    width: 4px;
    height: 4px;
  }
  .demo-action {
    width: auto;
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
    align-self: center;
    min-height: 39px;
    font-size: 9px;
    gap: 12px;
    padding: 11px 13px;
  }
  .demo-reset {
    grid-column: 1/3;
    grid-row: 3;
    font-size: 9px;
    margin: 5px auto 0;
    padding: 5px;
  }
  .demo-hint {
    font-size: 8px;
    gap: 6px;
    padding: 13px 0;
    min-height: 40px;
    flex-wrap: wrap;
  }
  .opportunities {
    padding-top: 33px;
    padding-bottom: 32px;
  }
  .opportunities > p {
    font-size: 6px;
    letter-spacing: 1.35px;
    line-height: 1.8;
  }
  .opportunity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 21px 10px;
    margin: 22px 2px 0;
  }
  .opportunity-list > span {
    font-size: 10px;
    gap: 7px;
    letter-spacing: -0.2px;
  }
  .opportunity-list .icon {
    height: 16px;
    width: 16px;
  }
  .section {
    padding-top: 67px;
  }
  .eyebrow {
    font-size: 6px;
    letter-spacing: 1.3px;
    gap: 7px;
  }
  .eyebrow > span {
    width: 4px;
    height: 4px;
  }
  .section h2 {
    font-size: 29px;
    line-height: 1.25;
    letter-spacing: -1.3px;
    margin-top: 16px;
  }
  .section h2 .muted {
    display: inline-block;
    max-width: 330px;
  }
  .section-heading {
    margin-bottom: 27px;
  }
  .section-heading > p {
    font-size: 11px;
    line-height: 1.8;
    max-width: 290px;
    margin: 16px auto 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .feature-large {
    grid-column: 1;
    min-height: 0;
    padding: 25px 25px 0;
  }
  .card-index {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .feature-icon {
    width: 33px;
    height: 33px;
  }
  .feature-icon > .icon {
    width: 17px;
    height: 17px;
  }
  .feature-card h3 {
    font-size: 26px;
    margin-top: 19px;
    letter-spacing: -0.8px;
  }
  .feature-card > p {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 11px;
    max-width: 310px;
  }
  .profile-visual {
    margin-top: 25px;
    min-height: 196px;
  }
  .profile-core {
    top: 75px;
    width: 85px;
    height: 85px;
  }
  .profile-core > img {
    width: 61px;
    height: 61px;
  }
  .profile-orbit {
    width: 280px;
    top: 75px;
    height: 145px;
  }
  .orbit-b {
    width: 200px;
    height: 190px;
  }
  .floating-chip {
    font-size: 7px;
    padding: 7px;
    gap: 5px;
  }
  .floating-chip > span:last-child {
    margin-left: 5px;
  }
  .chip-a {
    top: 22px;
    left: -2px;
  }
  .chip-b {
    top: 43px;
    right: -2px;
  }
  .chip-c {
    top: 120px;
    left: 0;
  }
  .chip-d {
    top: 145px;
    right: 1px;
  }
  .answer-visual {
    margin-top: 26px;
    padding-bottom: 22px;
  }
  .answer-tabs {
    gap: 3px;
  }
  .answer-tabs button {
    font-size: 9px;
    padding: 7px 12px;
  }
  .answer-example {
    min-height: 134px;
    padding: 13px;
    margin-top: 12px;
  }
  .answer-example > .overline {
    font-size: 6px;
  }
  .answer-example > p {
    font-size: 11px;
    min-height: 40px;
    line-height: 1.8;
  }
  .answer-footer {
    font-size: 6px;
  }
  .answer-footer > span:last-child {
    display: block;
  }
  .example-label {
    font-size: 7px;
    margin-top: 11px;
  }
  .feature-small {
    grid-column: 1;
    display: block;
    padding: 24px 25px;
  }
  .feature-small h3 {
    font-size: 20px;
    margin-top: 17px;
  }
  .feature-small > p {
    margin-top: 10px;
    font-size: 11px;
    max-width: 310px;
  }
  .feature-small > div {
    margin-top: 22px;
    font-size: 9px;
    padding: 11px;
  }
  .memory-mini > span {
    font-size: 7px;
  }
  .mini-fill {
    width: 25px;
    height: 25px;
  }
  .privacy-mini > .icon {
    height: 13px;
    width: 13px;
  }
  .process-section {
    margin-top: 63px;
    padding: 49px 0;
  }
  .process-heading {
    display: block;
  }
  .process-heading h2 {
    font-size: 32px;
  }
  .process-heading > p {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 19px;
  }
  .process-heading > p br {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 33px;
    margin-top: 35px;
  }
  .step-top {
    gap: 17px;
  }
  .step-top > span {
    font-size: 28px;
  }
  .step h3 {
    font-size: 18px;
    margin-top: 14px;
    letter-spacing: -0.6px;
  }
  .step > p {
    font-size: 11px;
    margin-top: 9px;
    max-width: 320px;
  }
  .step > a {
    margin-top: 15px;
    font-size: 10px;
  }
  .step-note {
    font-size: 9px;
    margin-top: 15px;
  }
  .founder-note {
    padding-top: 61px;
    padding-bottom: 59px;
  }
  .quote-mark {
    height: 37px;
    font-size: 55px;
  }
  .founder-note > p {
    font-size: 25px;
    line-height: 1.45;
    letter-spacing: -1px;
  }
  .note-signature {
    font-size: 6px;
    letter-spacing: 1px;
    gap: 10px;
    margin-top: 22px;
  }
  .signature-line {
    width: 18px;
  }
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-top: 48px;
  }
  .pricing-copy h2 {
    font-size: 34px;
  }
  .pricing-copy > p {
    font-size: 11px;
    margin-top: 16px;
  }
  .pricing-detail {
    margin-top: 20px;
    max-width: none;
    font-size: 9px;
  }
  .price-card {
    padding: 25px;
  }
  .price-top {
    font-size: 13px;
  }
  .pill {
    font-size: 6px;
    padding: 5px 6px;
  }
  .price {
    font-size: 75px;
    margin-top: 23px;
  }
  .price > span:first-child {
    font-size: 37px;
  }
  .price > span:last-child {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .price-card > p {
    font-size: 11px;
    margin-top: 15px;
  }
  .price-features {
    gap: 13px;
    padding-top: 21px;
    margin: 22px 0;
  }
  .price-features li {
    font-size: 11px;
    gap: 10px;
  }
  .price-features .icon {
    width: 14px;
    height: 14px;
  }
  .price-card .button {
    font-size: 10px;
    min-height: 46px;
    gap: 8px;
  }
  .price-note {
    font-size: 8px;
    margin-top: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-top: 70px;
    padding-bottom: 57px;
  }
  .faq-intro h2 {
    font-size: 35px;
  }
  .faq-intro > p {
    font-size: 11px;
    margin-top: 17px;
  }
  .faq-intro > p br {
    display: none;
  }
  .text-link {
    margin-top: 16px;
    font-size: 10px;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 21px 0;
    gap: 15px;
  }
  .faq-answer {
    font-size: 11px;
    padding: 0 15px 20px 0;
  }
  .closing-section {
    padding: 48px 0 53px;
  }
  .closing-logo {
    width: 43px;
    height: 43px;
    margin-bottom: 22px;
    border-radius: 12px;
  }
  .closing-content .eyebrow {
    font-size: 6px;
    letter-spacing: 1.25px;
  }
  .closing-content h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
    line-height: 1.14;
    margin-top: 17px;
  }
  .closing-content h2 em {
    letter-spacing: -1px;
    font-size: 1.17em;
  }
  .closing-content > p {
    font-size: 10px;
    margin-top: 17px;
  }
  .closing-note {
    font-size: 8px;
    margin-top: 13px;
  }
  .footer {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .footer-top {
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-top .brand {
    font-size: 20px;
    gap: 8px;
  }
  .footer-top .brand img {
    width: 26px;
    height: 26px;
  }
  .footer-top > nav {
    width: 100%;
    margin: 0;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
    gap: 9px 25px;
    line-height: 1.7;
    margin-top: 22px;
    padding-top: 17px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .privacy-page {
    padding-top: 46px;
    padding-bottom: 65px;
  }
  .privacy-page h1 {
    font-size: 43px;
  }
  .privacy-page .lede {
    font-size: 14px;
  }
  .privacy-page p,
  .privacy-page li {
    font-size: 12px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .nav-shell {
    width: calc(100% - 28px);
    gap: 8px;
  }
  .brand {
    font-size: 19px;
    gap: 7px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .nav-cta {
    font-size: 9px;
    padding: 8px 9px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-note {
    font-size: 7px;
  }
  .hero-description {
    max-width: 282px;
    font-size: 11px;
  }
  .sample-nav {
    gap: 9px;
  }
  .sample-website {
    padding-inline: 16px;
  }
  .sample-form-header h2 {
    font-size: 22px;
  }
  .demo-badge {
    font-size: 4px;
  }
  .extension-preview {
    padding: 15px 13px;
    gap: 5px 10px;
  }
  .demo-action {
    padding: 10px;
    font-size: 8px;
    gap: 7px;
  }
  .extension-title {
    font-size: 10px;
  }
  .demo-top-label {
    font-size: 5px;
    gap: 6px;
  }
  .opportunity-list > span {
    font-size: 9px;
  }
  .opportunity-list .icon {
    width: 14px;
    height: 14px;
  }
  .section h2 {
    font-size: 26px;
  }
  .feature-large,
  .feature-small {
    padding-inline: 22px;
  }
  .profile-orbit {
    width: 244px;
  }
  .orbit-b {
    width: 180px;
  }
  .floating-chip {
    font-size: 6px;
  }
  .chip-a {
    left: -6px;
  }
  .chip-b {
    right: -6px;
  }
  .chip-c {
    left: -7px;
  }
  .chip-d {
    right: -2px;
  }
  .founder-note > p {
    font-size: 23px;
  }
  .price-card {
    padding: 22px;
  }
  .price-features li {
    font-size: 10px;
  }
  .closing-content h2 {
    font-size: 33px;
  }
  .faq-list summary {
    font-size: 11px;
  }
}
@media (min-width: 801px) {
  .desktop-nav a {
    font-size: 13px;
  }
  .hero-description {
    font-size: 16px;
  }
  .section-heading > p,
  .pricing-copy > p,
  .faq-intro > p,
  .process-heading > p {
    font-size: 14px;
  }
  .feature-card > p,
  .step > p {
    font-size: 13px;
  }
  .feature-small > p {
    font-size: 12px;
  }
  .step h3 {
    font-size: 17px;
  }
  .step > a,
  .text-link {
    font-size: 12px;
  }
  .price-features li,
  .price-card > p,
  .price-top {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-answer {
    font-size: 13px;
  }
  .closing-content > p {
    font-size: 14px;
  }
  .footer-top > nav,
  .footer-top > p {
    font-size: 12px;
  }
}
@media (max-width: 620px) {
  .feature-card > p,
  .step > p,
  .faq-answer,
  .pricing-copy > p,
  .faq-intro > p {
    font-size: 12px;
  }
  .section-heading > p,
  .closing-content > p {
    font-size: 12px;
  }
  .field-shell input,
  .field-shell textarea {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .entrance,
  [data-reveal].will-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .feature-card:hover,
  .button:hover {
    transform: none;
  }
}
@media (pointer: coarse) {
  .fill-button {
    min-width: 36px;
    min-height: 34px;
    top: 3px;
    right: 4px;
  }
  .answer-tabs button {
    min-height: 40px;
  }
  .demo-reset {
    min-height: 35px;
  }
}
