:root {
  --page: #f5efe8;
  --paper: rgba(255, 253, 249, 0.68);
  --paper-strong: rgba(255, 255, 255, 0.78);
  --ink: #111111;
  --ink-soft: #303033;
  --muted: #6f6c68;
  --muted-light: #9f9a92;
  --line: rgba(21, 19, 17, 0.08);
  --line-strong: rgba(21, 19, 17, 0.13);
  --sun: #f8c85f;
  --sun-soft: #fff0bc;
  --mint: #21c67a;
  --white: #ffffff;
  --shadow:
    0 20px 60px rgba(48, 37, 24, 0.08), 0 2px 8px rgba(48, 37, 24, 0.04);
  --radius: 8px;
  --container: 920px;
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 50% -4%,
      rgba(255, 194, 79, 0.92),
      transparent 19rem
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 191, 63, 0.82),
      transparent 16rem
    ),
    linear-gradient(180deg, #f8f3ed 0%, #f4eee8 42%, #f7f1ea 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(30, 24, 18, 0.08);
  pointer-events: none;
  z-index: 2;
}

body::before {
  left: clamp(18px, 4vw, 52px);
}

body::after {
  right: clamp(18px, 4vw, 52px);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

::selection {
  color: #fffaf2;
  background: var(--ink);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.has-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(40, 31, 22, 0.07);
  background: rgba(248, 243, 237, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--container));
  min-height: 60px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.navbar__logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M9 11h14M9 16h14M9 21h9' stroke='%23fffaf2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
      center / 22px 22px no-repeat,
    #0b0b0b;
}

.navbar__links {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.navbar__links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.navbar__links a:hover {
  color: var(--ink);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 6px;
  background: #101010;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.navbar__cta:hover {
  transform: translateY(-1px);
  background: #242424;
  box-shadow: 0 8px 22px rgba(16, 16, 16, 0.16);
}

.section {
  position: relative;
  padding: clamp(92px, 12vw, 168px) 24px;
  scroll-margin-top: 60px;
}

.section + .section {
  border-top: 1px solid rgba(40, 31, 22, 0.05);
}

.section__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section--hero {
  min-height: 690px;
  padding-top: clamp(120px, 16vw, 188px);
  text-align: center;
}

.hero__inner {
  max-width: 820px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.pill__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(33, 198, 122, 0.12);
}

h1 {
  max-width: 780px;
  margin: 24px auto 18px;
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.05;
}

.hero__copy {
  max-width: 610px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  width: min(100%, 380px);
  min-height: 52px;
  margin: 34px auto 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.waitlist-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.waitlist-form input::placeholder {
  color: #b3ada5;
}

.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: #101010;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.waitlist-form button {
  min-width: 122px;
  padding: 0 18px;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  background: #242424;
  box-shadow: 0 8px 22px rgba(16, 16, 16, 0.16);
}

.form-note {
  margin-top: 16px;
  color: var(--muted-light);
  font-size: 12px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 70px);
  text-align: center;
}

.section-heading--compact {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.cta-panel > p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.price-card,
.cta-panel,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.76),
      rgba(255, 253, 248, 0.56)
    ),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(12px);
}

.benefit-card {
  min-height: 170px;
  padding: 28px 26px 24px;
  text-align: center;
}

.icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 18px rgba(35, 27, 20, 0.08);
}

.icon::before {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.icon--arrow::before {
  content: "->";
  font-family: var(--font-mono);
  font-size: 9px;
}

.icon--target::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.icon--spark::before {
  content: "+";
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.workflow {
  position: relative;
  display: block;
  width: min(100%, 620px);
  min-height: 250vh;
  margin: 0 auto;
}

.workflow__stage {
  position: sticky;
  top: 76px;
  display: grid;
  min-height: calc(100vh - 96px);
  align-content: space-between;
  justify-items: center;
  gap: 28px;
}

.plugin-card {
  width: min(100%, 320px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 250, 239, 0.48)
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(250, 207, 85, 0.55),
      transparent 44%
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 48px rgba(35, 28, 20, 0.12);
}

.plugin-card__visual {
  position: relative;
}

.plugin-screen {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.plugin-screen.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.step-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.steps {
  display: grid;
  grid-template: 1fr / 1fr;
  z-index: 2;
  width: min(100%, 480px);
  min-height: 158px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 18px 48px rgba(35, 28, 20, 0.12);
  backdrop-filter: blur(14px);
}

.step {
  display: block;
  grid-area: 1 / 1;
  align-self: center;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}

.step span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.step h3 {
  color: inherit;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.step p {
  max-width: 390px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.demo-video {
  width: min(100%, 760px);
  margin: 52px auto 0;
  text-align: center;
}

.demo-video__caption {
  margin-bottom: 20px;
}

.demo-video__title {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.demo-video__frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 250, 239, 0.48)
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(250, 207, 85, 0.55),
      transparent 44%
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 48px rgba(35, 28, 20, 0.12);
}

.demo-video__player {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  background: #17120d;
}

.demo-video__player:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 860px);
  margin: 0 auto;
}

.price-card {
  position: relative;
  min-height: 300px;
  padding: 32px 34px;
}

.price-card--pro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 52%;
  height: 58%;
  border-radius: 0 var(--radius) 0 120px;
  background: radial-gradient(
    circle at 70% 18%,
    rgba(248, 200, 95, 0.72),
    transparent 68%
  );
  pointer-events: none;
}

.price-card header {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
  text-align: center;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price span {
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 800;
  line-height: 0.95;
}

.price small {
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-card header > p:last-child {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 12px;
}

.price-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(248, 200, 95, 0.84);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.1 6.8 10.4 11.8 5.7' fill='none' stroke='%23d6a829' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 12px 12px no-repeat,
    rgba(255, 250, 231, 0.88);
}

.section--cta {
  padding-bottom: clamp(86px, 10vw, 140px);
}

.cta-panel {
  width: min(100%, 865px);
  padding: clamp(42px, 6vw, 58px) 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel .waitlist-form {
  margin-top: 30px;
}

.section--legal-page {
  padding-top: clamp(120px, 14vw, 160px);
  padding-bottom: clamp(94px, 10vw, 150px);
}

.legal-page {
  width: min(100%, 680px);
}

.legal-page__title {
  max-width: none;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
}

.legal-card {
  padding: 30px;
}

.legal-card--page {
  padding: clamp(28px, 4vw, 42px);
}

.legal-card h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.legal-card h2 + p {
  margin-top: 10px;
}

.legal-card p + h2 {
  margin-top: 30px;
}

.legal-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(100%, 920px);
  margin: -54px auto 0;
  padding: 0 24px 56px;
  color: var(--muted);
  font-size: 12px;
}

.footer__links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer__links a {
  color: var(--ink-soft);
  font-weight: 600;
}

.footer__links a:hover {
  color: var(--ink);
}

@media (max-width: 820px) {
  body::before,
  body::after {
    display: none;
  }

  .section--hero {
    min-height: 600px;
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(100%, 480px);
    margin-left: auto;
    margin-right: auto;
  }

  .workflow {
    width: min(100%, 390px);
    min-height: 245vh;
  }

  .workflow__stage {
    top: 70px;
    min-height: calc(100svh - 88px);
    gap: 18px;
  }

  .plugin-card {
    width: min(100%, 280px);
  }

  .steps {
    min-height: 164px;
    padding: 22px 20px;
    text-align: center;
  }

  .step {
    align-self: center;
  }

  .step p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .navbar__links {
    display: none;
  }
}

@media (max-width: 560px) {
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar__inner {
    padding: 0 18px;
  }

  .section--hero {
    padding-top: 124px;
  }

  .plugin-card {
    width: min(100%, 236px);
  }

  .steps {
    min-height: 154px;
    padding: 18px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .waitlist-form input {
    min-height: 42px;
    text-align: center;
  }

  .waitlist-form button {
    min-height: 42px;
  }

  .price-card {
    padding: 28px 24px;
  }

  .legal-card {
    padding: 26px 22px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .has-reveal .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
