:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --muted: #66686c;
  --line: #dedfdf;
  --paper: #f8f8f5;
  --white: #ffffff;
  --accent: #2f6968;
  --soft-accent: #e8f1ef;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(47, 105, 104, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.announcement-action {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header,
main,
footer {
  width: min(1520px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
}

.header-note {
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
}

.button-small {
  justify-self: end;
  min-height: 48px;
}

.button-label-short {
  display: none;
}

.button-large {
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
  gap: clamp(64px, 10vw, 180px);
  align-items: center;
  padding: 96px 0 80px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(64px, 7.7vw, 132px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero-copy {
  align-self: center;
}

.hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.45;
}

.proof-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.proof-list li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.workflow {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.workflow h2,
.closing-cta h2,
.dialog-intro h2,
.success-panel h2 {
  margin: 0;
  font-size: clamp(44px, 4.3vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.workflow-steps li > span {
  display: block;
  margin-bottom: 62px;
  color: #afb1b3;
  font-size: 24px;
  font-weight: 650;
}

.workflow-steps strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
}

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

.closing-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  padding: 64px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
}

.closing-cta h2 {
  max-width: 780px;
}

.button-light {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

footer {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p:last-child {
  justify-self: end;
}

.brand-footer {
  font-size: 19px;
}

.waitlist-dialog {
  width: min(1060px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.24);
  overflow: auto;
}

.waitlist-dialog::backdrop {
  background: rgba(9, 12, 12, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

.dialog-layout {
  min-height: 630px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.dialog-intro {
  position: relative;
  padding: 64px 48px;
  background: var(--soft-accent);
  overflow: hidden;
}

.dialog-intro h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.dialog-intro > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 26px 0 0;
  color: #4f5e5d;
  font-size: 17px;
  line-height: 1.55;
}

.dialog-marker {
  position: absolute;
  right: -24px;
  bottom: -54px;
  color: rgba(47, 105, 104, 0.08);
  font-size: 260px;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

#waitlist-form,
.success-panel {
  padding: 64px 56px 48px;
}

.form-grid {
  display: grid;
  gap: 22px;
}

.form-grid label {
  display: grid;
  gap: 9px;
  color: #343536;
  font-size: 14px;
  font-weight: 650;
}

.form-grid input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #cfd1d2;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.form-grid input::placeholder {
  color: #9a9c9e;
}

.form-grid input:user-invalid {
  border-color: #a33b31;
}

.honeypot {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  min-height: 22px;
  margin: 18px 0 0;
  color: #9b2f26;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.privacy-note {
  margin: 14px 0 0;
  color: #858789;
  font-size: 12px;
  line-height: 1.45;
}

.success-panel {
  align-self: center;
}

.success-panel .success-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 0 36px;
  border-radius: 50%;
  background: var(--soft-accent);
  color: var(--accent);
  font-size: 27px;
  font-weight: 700;
}

.success-panel h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.success-panel > p:not(.eyebrow, .success-mark, .privacy-note) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .site-header,
  main,
  footer {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-note {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 84px 0;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(64px, 13vw, 110px);
  }

  .hero-copy {
    max-width: 600px;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    min-height: 220px;
  }

  .closing-cta {
    align-items: start;
    flex-direction: column;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-intro {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .announcement {
    justify-content: space-between;
    padding-inline: 16px;
  }

  .announcement > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    min-height: 84px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
    gap: 10px;
  }

  .button-label-full {
    display: none;
  }

  .button-label-short {
    display: inline;
  }

  .hero {
    gap: 42px;
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .hero-copy > p {
    font-size: 19px;
  }

  .workflow {
    gap: 44px;
    padding: 72px 0;
  }

  .workflow-steps li {
    min-height: 210px;
  }

  .closing-cta {
    margin-bottom: 44px;
    padding: 40px 28px;
  }

  .button-light {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    min-height: 170px;
    grid-template-columns: 1fr auto;
  }

  footer > p:nth-child(2) {
    display: none;
  }

  .dialog-layout {
    min-height: 0;
  }

  .dialog-intro {
    min-height: 260px;
    padding: 44px 28px;
  }

  .dialog-intro h2,
  .success-panel h2 {
    font-size: 45px;
  }

  #waitlist-form,
  .success-panel {
    padding: 36px 28px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
