:root {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #292a2b;
  background: #fff;
  --red: #e53946;
  --line: #e2e5e1;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
textarea {
  font: inherit;
}
button,
a,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
textarea:focus-visible {
  outline: 3px solid #a82132;
  outline-offset: 4px;
}
svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.navigation {
  height: 76px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.brand {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 32px;
  font-weight: 850;
  color: var(--red);
  white-space: nowrap;
}
.brand span {
  font-size: 20px;
  color: #292a2b;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
nav > a:first-child:hover {
  color: var(--red);
}
.start-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: white;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
}
.start-link:hover {
  background: #c92b3a;
}
.hero {
  height: calc(100svh - 118px);
  min-height: 530px;
  max-height: 1050px;
  position: relative;
  isolation: isolate;
  background: #f9e9eb;
  overflow: hidden;
}
.hero-copy {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 28px 20px 0;
  pointer-events: none;
}
.hero-copy > * {
  pointer-events: auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #b73744;
}
.hero h1 {
  font-size: 48px;
  font-weight: 750;
  line-height: 1.12;
  margin: 12px 0 9px;
}
.hero-copy > p {
  font-size: 17px;
  color: #68716a;
  margin: 0 0 20px;
}
#start-form {
  width: min(650px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 12px;
  background: #fff;
  border: 1px solid #d8ded8;
  border-radius: 8px;
  box-shadow: 0 6px 24px #27362909;
}
#idea {
  border: 0;
  outline: 0;
  background: transparent;
  resize: none;
  min-width: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  padding: 4px 8px;
  color: #333c35;
}
#idea::placeholder {
  color: #7b847e;
}
#start-form:focus-within {
  border-color: var(--red);
}
#start-form button {
  background: var(--red);
  color: white;
  border: 0;
  border-radius: 5px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}
#start-form button:hover {
  background: #c92b3a;
}
#draft-error {
  background: #fff0f1;
  color: #a02535;
  font-size: 12px;
  padding: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 8px auto;
}
.scene {
  position: absolute;
  inset: 248px 0 44px;
  z-index: 0;
}
.scene canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}
.scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scene-caption {
  position: absolute;
  bottom: 12px;
  left: 5%;
  font-size: 10px;
  color: #657269;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43895d;
}
.caption-divider {
  color: #a4afa6;
}
.scene-tools {
  position: absolute;
  bottom: 4px;
  right: 5%;
  display: flex;
  gap: 6px;
}
.scene-tools button {
  width: 34px;
  height: 34px;
  background: #ffffffdc;
  border: 1px solid #d4ddd5;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #53685a;
}
.discover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 650;
  color: #596c60;
}
.discover svg {
  width: 14px;
}
.proof,
.workflow {
  padding: 64px 6%;
  scroll-margin-top: 24px;
}
.proof { padding-top: 24px; }
.section-heading {
  max-width: 1180px;
  margin: auto;
}
.section-heading h2 {
  font-size: 32px;
  font-weight: 650;
  line-height: 1.2;
  margin: 12px 0;
}
.section-heading p {
  color: #737d75;
  font-size: 15px;
}
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 64px;
  max-width: 1180px;
  margin: 36px auto 0;
  align-items: center;
}
.proof-layout > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.project-label {
  font-size: 10px;
  color: #797f79;
}
.proof-copy h3 {
  font-size: 27px;
  font-weight: 600;
  margin: 18px 0;
}
.proof-copy blockquote {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 20px;
  color: #38473c;
}
.proof-copy p {
  font-size: 14px;
  color: #717c73;
  line-height: 1.75;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #bc3040;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}
.workflow {
  background: #f3f7f3;
  border-top: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1180px;
  margin: 40px auto 60px;
}
.steps article {
  border-top: 1px solid #cdd9cd;
  padding-top: 22px;
  position: relative;
}
.steps article > span {
  font-size: 11px;
  color: #7d8c7d;
}
.steps article > svg {
  position: absolute;
  right: 0;
  top: 20px;
  color: #357c54;
}
.steps h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}
.steps p {
  font-size: 14px;
  line-height: 1.75;
  color: #657369;
  margin: 0;
}
.closing {
  border-top: 1px solid #cdd9cd;
  padding-top: 32px;
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.closing h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 5%;
  font-size: 11px;
  color: #788079;
}
footer p {
  line-height: 1.5;
}
footer .brand {
  font-size: 24px;
}
footer .brand span {
  font-size: 16px;
}
footer > a:last-child {
  color: #465849;
}
@media (min-width: 1700px) {
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy {
    padding-top: 40px;
  }
  .scene {
    top: 270px;
  }
}
@media (max-width: 700px) {
  .navigation {
    height: 64px;
    padding: 0 18px;
  }
  .brand {
    font-size: 26px;
  }
  .brand span {
    font-size: 16px;
  }
  nav > a:first-child {
    display: none;
  }
  nav {
    gap: 0;
  }
  .start-link {
    font-size: 11px;
    padding: 11px 12px;
  }
  .hero {
    height: calc(100svh - 102px);
    min-height: 450px;
  }
  .hero-copy {
    padding: 24px 16px 0;
  }
  .hero h1 {
    font-size: 32px;
    max-width: 350px;
    margin: 12px auto;
    line-height: 1.15;
  }
  .hero-copy > p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .eyebrow {
    font-size: 9px;
  }
  #start-form {
    gap: 4px;
    padding: 8px;
  }
  #idea {
    font-size: 12px;
    padding: 4px;
  }
  #start-form button {
    font-size: 11px;
    padding: 10px;
    gap: 4px;
  }
  .scene {
    top: 250px;
    bottom: 44px;
  }
  .scene-caption {
    left: 16px;
    bottom: 6px;
    font-size: 9px;
    gap: 5px;
    max-width: calc(100% - 100px);
    flex-wrap: wrap;
  }
  .scene-tools {
    right: 16px;
    bottom: 0;
  }
  .scene-tools button {
    width: 30px;
    height: 30px;
  }
  .proof,
  .workflow {
    padding: 38px 20px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }
  .proof-copy h3 {
    font-size: 23px;
    margin-top: 12px;
  }
  .proof-copy blockquote {
    font-size: 18px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 28px auto 36px;
  }
  .steps h3 {
    margin: 16px 0 10px;
  }
  .closing {
    align-items: flex-start;
    flex-direction: column;
  }
  .closing h2 {
    font-size: 24px;
  }
  footer {
    flex-wrap: wrap;
    padding: 24px 20px;
    gap: 18px;
  }
  footer p {
    order: 3;
    width: 100%;
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 700px) { .proof { padding-top: 16px; } }
