:root {
  color-scheme: light;
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f7f4;
  color: #151714;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  min-height: 100dvh;
}

.logo-wrap {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
  padding-top: 28px;
}

.logo-wrap img {
  display: block;
  width: auto;
  height: 31px;
  margin-inline: auto;
  filter: brightness(.18);
}

.landing {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
  padding: clamp(52px, 7vw, 88px) 0 clamp(64px, 9vw, 112px);
}

.copy {
  max-width: 820px;
  margin: 0 auto clamp(48px, 7vw, 76px);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 54px);
  font-weight: 680;
  letter-spacing: -.058em;
  line-height: 1;
}

h1 span {
  display: block;
}

p {
  max-width: 660px;
  margin: 26px auto 30px;
  color: #656860;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.demo-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #151714;
  border-radius: 10px;
  background: #151714;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.demo-button:hover {
  transform: translateY(-2px);
  background: #2a2d28;
  box-shadow: 0 12px 30px rgba(21, 23, 20, .16);
}

.demo-button:active {
  transform: translateY(0) scale(.98);
}

.demo-button:focus-visible,
.email-link:focus-visible {
  outline: 3px solid rgba(217, 148, 34, .55);
  outline-offset: 4px;
}

.email-link {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: #656860;
  font-size: 14px;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (min-width: 861px) {
  h1 span {
    white-space: nowrap;
  }
}

.demo-frame {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 179;
  overflow: hidden;
  border: 1px solid #dcded7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(43, 47, 38, .12);
  contain: layout paint;
  isolation: isolate;
  transform: translateZ(0);
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (max-width: 640px) {
  .landing {
    width: min(calc(100% - 28px), 1120px);
    padding: 40px 0 32px;
  }

  .logo-wrap {
    width: min(calc(100% - 28px), 1120px);
    padding-top: 20px;
  }

  .logo-wrap img {
    height: 26px;
  }

  .copy {
    margin-bottom: 42px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  p {
    margin-top: 22px;
  }

  .demo-button {
    width: 100%;
  }

  .demo-frame {
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(43, 47, 38, .1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.section-heading { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 46px); font-weight: 680; letter-spacing: -.045em; line-height: 1.05; }
.section-heading > p:last-child { margin: 18px auto 0; font-size: 17px; }
.eyebrow { margin: 0 0 12px; color: #4e514b; font-size: 12px; font-weight: 750; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.pricing-section { width: min(calc(100% - 40px), 1120px); margin: 0 auto; padding: 0 0 clamp(72px, 9vw, 112px); }
.pricing-gate { position: relative; }
.pricing-preview, .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 24px; }
.pricing-preview { min-height: 470px; }
.pricing-placeholder, .pricing-card { min-width: 0; padding: 26px; border: 1px solid #dcded7; border-radius: 14px; background: #fbfbf8; }
.pricing-placeholder span { display: block; font-weight: 700; }
.pricing-placeholder strong { display: block; margin: 24px 0; font-size: 48px; }
.pricing-placeholder i { display: block; width: 84%; height: 12px; margin: 14px 0; border-radius: 99px; background: #dfe1da; }
.pricing-unlock { width: min(calc(100% - 48px), 640px); margin: 20px auto 0; padding: 24px; border-top: 1px solid #d4d6cf; text-align: left; }
.lock-mark { display: inline-grid; width: 36px; height: 36px; place-items: center; margin-bottom: 16px; border-radius: 50%; background: #151714; color: #fff; font-size: 18px; transform: rotate(-45deg); }
.pricing-unlock h3 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
.pricing-unlock > p { margin: 8px 0 20px; font-size: 15px; line-height: 1.5; }
.unlock-form label:not(.consent-option) { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.inline-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.inline-form input { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfd2c9; border-radius: 9px; background: #fff; color: #151714; font: inherit; }
.inline-form button { min-height: 48px; padding: 11px 17px; border: 1px solid #151714; border-radius: 9px; background: #151714; color: #fff; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.inline-form button:disabled { cursor: wait; opacity: .64; }
.consent-option { display: flex; align-items: flex-start; gap: 9px; margin-top: 12px; color: #656860; font-size: 12px; line-height: 1.45; }
.consent-option input { width: 17px; height: 17px; margin: 1px 0 0; }
.text-button { margin-top: 12px; padding: 0; border: 0; background: transparent; color: #4f534b; font: inherit; font-size: 13px; font-weight: 650; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.form-status { min-height: 22px; margin: 13px 0 0 !important; color: #4f534b !important; font-size: 13px !important; font-weight: 650; }
.form-status[data-state="error"] { color: #a33b32 !important; }
.privacy-note { margin: 6px 0 0 !important; color: #777a72 !important; font-size: 11px !important; }
.pricing-grid { align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-card[data-featured="true"] { border-color: #282b25; box-shadow: inset 0 0 0 1px #282b25; }
.plan-kicker { margin: 0 0 8px; color: #656860; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin: 0; font-size: 25px; }
.plan-price { margin: 20px 0 6px; color: #151714; font-size: 44px; font-weight: 720; letter-spacing: -.045em; line-height: 1; }
.plan-price small { color: #656860; font-size: 14px; font-weight: 600; letter-spacing: 0; }
.is-blurred { filter: blur(7px); opacity: .72; pointer-events: none; user-select: none; }
.annual-price { min-height: 22px; margin: 0 0 22px; color: #656860; font-size: 13px; }
.plan-features { display: grid; gap: 11px; margin: 0 0 24px; padding: 0; list-style: none; }
.plan-features li { position: relative; padding-left: 20px; color: #4f534b; font-size: 14px; line-height: 1.45; }
.plan-features li::before { position: absolute; top: 0; left: 0; content: "✓"; color: #20231e; font-weight: 800; }
.plan-cta { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; margin-top: auto; padding: 12px 16px; border: 1px solid #151714; border-radius: 9px; background: #151714; color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.setup-note { grid-column: 1 / -1; margin: 0; padding: 16px 20px; border-radius: 12px; background: #f0f1ec; color: #4f534b; font-size: 14px; text-align: center; }
.landing-footer { display: flex; width: min(calc(100% - 40px), 1120px); align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; padding: 24px 0 38px; border-top: 1px solid #dcded7; }
.landing-footer img { width: auto; height: 25px; filter: brightness(.18); }
.landing-footer a { color: #565951; font-size: 13px; font-weight: 650; }
.inline-form input:focus-visible, .inline-form button:focus-visible, .text-button:focus-visible, .plan-cta:focus-visible { outline: 3px solid rgba(217, 148, 34, .55); outline-offset: 3px; }

@media (max-width: 640px) {
  .pricing-section { width: min(calc(100% - 28px), 1120px); padding-bottom: 64px; }
  .pricing-preview, .pricing-grid { grid-template-columns: 1fr; padding: 14px; }

  .pricing-unlock { width: calc(100% - 28px); padding: 20px 0 0; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form button { width: 100%; }
  .landing-footer { width: min(calc(100% - 28px), 1120px); align-items: flex-start; flex-direction: column; }
}