@font-face {
  font-family: "Ronzino";
  src: url("https://framerusercontent.com/assets/MTCygdtyFHorav5lKBj6XKyWg.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Departure Mono";
  src: url("https://framerusercontent.com/assets/6xvpVClQT7SKWyqlm4DCB8L8Y.woff2") format("woff2");
  font-display: swap;
}

:root {
  --paper: #faf9f8;
  --ink: #000;
  --muted: #737373;
  --line: #e5e5e5;
  --blue: #001eff;
  --sky: #edf7ff;
  --font-body: "Ronzino", Arial, sans-serif;
  --font-display: "Ronzino", Arial, sans-serif;
  --font-serif: "Libre Bodoni", Georgia, serif;
  --font-mono: "Departure Mono", "Fragment Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 0 39px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 248, 0.92);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: block;
  width: max-content;
}

.wordmark img {
  display: block;
  width: 112px;
  height: auto;
}

.site-footer .wordmark img {
  width: 132px;
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-actions {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  white-space: nowrap;
}

.trial-link {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.menu-button {
  display: block;
  justify-self: end;
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 3px 0;
  background: #9a9a9a;
}

.hero {
  position: relative;
  min-height: 648px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.36), rgba(250, 249, 248, 0.08) 82%),
    url("https://framerusercontent.com/images/uP8ZK0XGglsyf1bRB8PM2knqXk.png?scale-down-to=1024&width=1512&height=900");
  background-color: var(--sky);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 648px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 20px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 1200px;
  margin: 28px auto 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.25vw, 70px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.ai-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}

.ai-row em {
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.2vw, 80px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
}

.ai-logo {
  display: block;
  width: clamp(46px, 5vw, 64px);
  height: clamp(46px, 5vw, 64px);
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
}

.ai-logo,
.ai-row em {
  transition: opacity 180ms ease, transform 180ms ease;
}

.ai-row.is-changing .ai-logo,
.ai-row.is-changing em {
  opacity: 0;
  transform: translateY(8px);
}

.subhead {
  margin: 31px auto 22px;
  font-size: 16px;
  line-height: 1.2;
}

.subhead strong {
  margin-left: 4px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 16px;
}

.feature-section,
.quote-block {
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto 142px;
}

.hero + .feature-section {
  margin-top: 132px;
}

.feature-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.feature-panel {
  position: relative;
  z-index: 1;
  background: #fff;
}

.feature-copy {
  min-height: 252px;
  padding: 42px 38px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.91;
  letter-spacing: 0;
}

.feature-copy h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: #555;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 0;
  background: #fff;
}

.steps article {
  min-height: 184px;
  padding: 31px 38px;
  border-bottom: 1px solid var(--line);
}

.steps article:last-child {
  border-bottom: 0;
}

.steps span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.steps h3 {
  margin: 23px 0 10px;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.product-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background-color: #f5f3fa;
  background-image: radial-gradient(rgba(83, 50, 104, 0.12) 0.8px, transparent 0.8px);
  background-position: 10px 10px;
  background-size: 12px 12px;
}

.product-visual::before {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 78%;
  height: 78%;
  border: 2px solid rgba(64, 41, 87, 0.16);
  border-radius: 48% 48% 0 0;
  content: "";
  transform: rotate(-9deg);
}

.visual-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: #59515f;
  font-family: var(--font-mono);
  font-size: 11px;
}

.visual-toolbar b {
  margin-left: 6px;
  font-weight: 400;
}

.signal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9b2bd;
}

.signal:first-child {
  background: #ff922e;
}

.question-stack,
.answer-card,
.action-score,
.task-list {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(58, 37, 75, 0.1);
}

.question-stack {
  top: 94px;
  left: 8%;
  width: min(365px, 76%);
  padding: 18px;
}

.question-stack p,
.answer-card span,
.action-score span {
  display: block;
  margin-bottom: 13px;
  color: #77707b;
  font-family: var(--font-mono);
  font-size: 11px;
}

.question {
  margin-top: 8px;
  padding: 11px 12px;
  border: 1px solid #ece9ee;
  border-radius: 5px;
  color: #36313a;
  font-size: 13px;
}

.question.active {
  border-color: #bda5ff;
  background: #f4edff;
}

.answer-card {
  right: 7%;
  bottom: 88px;
  width: min(330px, 73%);
  padding: 20px;
}

.answer-card strong {
  display: block;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.answer-meter {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.answer-meter i {
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: #e4dfeb;
}

.answer-meter i:nth-child(-n + 3) {
  background: #8e62e9;
}

.action-visual {
  background-color: #f5f8f1;
  background-image: radial-gradient(rgba(49, 91, 36, 0.1) 0.8px, transparent 0.8px);
}

.action-visual::before {
  border-color: rgba(49, 91, 36, 0.15);
}

.action-score {
  top: 94px;
  left: 9%;
  width: min(310px, 68%);
  padding: 25px;
}

.action-score strong {
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

.action-score small {
  color: var(--muted);
  font-size: 15px;
}

.score-track {
  height: 7px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4e9e0;
}

.score-track i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: #3f9d58;
}

.task-list {
  right: 7%;
  bottom: 78px;
  width: min(390px, 82%);
  overflow: hidden;
}

.task-list div {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eceeea;
}

.task-list div:last-child {
  border-bottom: 0;
}

.task-list span {
  color: #7b8276;
  font-family: var(--font-mono);
  font-size: 10px;
}

.task-list b {
  font-size: 13px;
  font-weight: 400;
}

.task-list em {
  padding: 4px 6px;
  border-radius: 99px;
  background: #e5f4e6;
  color: #47804d;
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
}

.audit-form label {
  margin: 0;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.form-field-wide,
.form-actions {
  grid-column: 1 / -1;
}

.audit-form input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #31763d;
  font-size: 14px;
}

.audit-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.waitlist-modal {
  width: min(580px, calc(100% - 32px));
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #fff;
  background-image: radial-gradient(rgba(0, 0, 0, 0.055) 0.7px, transparent 0.7px);
  background-size: 11px 11px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.waitlist-modal::backdrop {
  background: rgba(20, 23, 25, 0.48);
  backdrop-filter: blur(4px);
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.waitlist-modal h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.modal-heading > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.modal-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.quote-block {
  padding: 92px 40px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.quote-block blockquote {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.08;
}

.quote-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.waitlist-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto 142px;
  padding: 50px 38px;
  border: 1px solid var(--line);
  background: #fff;
}

.waitlist-band .eyebrow {
  margin-bottom: 13px;
}

.waitlist-band h2 {
  max-width: 630px;
  margin-bottom: 0;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 54px max(39px, calc((100vw - 1092px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 1101px) {
  .site-header {
    grid-template-columns: 180px 1fr 230px;
  }

  .desktop-nav,
  .desktop-actions {
    display: flex;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 60px;
  }

  .hero,
  .hero-inner {
    min-height: 600px;
  }

  .hero-inner {
    padding-top: 41px;
  }

  .hero h1 {
    max-width: 920px;
    font-size: 56px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 60px;
    padding: 0 22px;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .ai-row {
    gap: 14px;
  }

  .subhead {
    max-width: 320px;
    line-height: 1.45;
  }

  .subhead strong {
    display: block;
    margin-top: 4px;
  }

  .feature-section,
  .waitlist-band,
  .quote-block {
    width: calc(100% - 32px);
    margin-bottom: 76px;
  }

  .feature-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-section.steps-left .steps,
  .feature-section.steps-left .feature-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-copy {
    min-height: 0;
    padding: 32px 24px 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-section.steps-left .feature-copy {
    border-left: 0;
  }

  .steps article {
    min-height: 0;
    padding: 30px 24px;
  }

  .product-visual {
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .question-stack {
    top: 72px;
    left: 7%;
  }

  .answer-card,
  .task-list {
    bottom: 52px;
  }

  .action-score {
    top: 72px;
  }

  .kicker {
    font-size: 42px;
  }

  .audit-form {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 22px;
  }

  .waitlist-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 24px;
  }

  .waitlist-modal {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 43px;
  }

  .ai-row em {
    font-size: 52px;
  }

  .ai-logo {
    width: 46px;
    height: 46px;
  }

  .audit-form button {
    width: 100%;
  }

  .product-visual {
    min-height: 470px;
  }

  .question-stack {
    width: 86%;
    padding: 14px;
  }

  .question {
    padding: 9px;
    font-size: 12px;
  }

  .answer-card {
    width: 84%;
    padding: 16px;
  }

  .answer-card strong {
    font-size: 17px;
  }

  .action-score {
    width: 74%;
    padding: 20px;
  }

  .task-list {
    width: 90%;
  }

  .task-list div {
    padding: 13px;
  }
}
