:root {
  --paper: #f4f3ef;
  --ink: #20211f;
  --muted: #656861;
  --line: #d6d4ca;
  --wine: #8b1638;
  --wine-dark: #641027;
  --green: #0e6b59;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.landing-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--white);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.landing-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: var(--wine);
  font-size: 14px;
  font-weight: 800;
}

.landing-brand strong,
.landing-brand small {
  display: block;
}

.landing-brand strong {
  font-size: 15px;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white);
}

.landing-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.nav-cta:hover {
  border-color: #a41b43;
  background: #a41b43;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(78svh, 780px);
  align-items: flex-end;
  overflow: hidden;
  background: #181a18;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 24%;
  opacity: 0.2;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(18, 20, 18, 0.98) 0%, rgba(18, 20, 18, 0.92) 50%, rgba(18, 20, 18, 0.7) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 150px clamp(20px, 7vw, 112px) clamp(44px, 7vh, 76px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ad3c3;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.94;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button.primary {
  background: var(--wine);
  color: var(--white);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-guide-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.hero-guide-link:hover {
  color: var(--white);
}

.hero-guide-link span {
  font-size: 19px;
  transition: transform 160ms ease;
}

.hero-guide-link:hover span {
  transform: translateX(3px);
}

.demo-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 0 clamp(20px, 4vw, 64px);
}

.value-band div {
  min-height: 126px;
  border-right: 1px solid var(--line);
  padding: 30px clamp(18px, 3vw, 42px);
}

.value-band div:first-child {
  border-left: 1px solid var(--line);
}

.value-band strong,
.value-band span {
  display: block;
}

.value-band strong {
  margin-bottom: 7px;
  font-size: 14px;
}

.value-band span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(54px, 7vw, 90px);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading > p:last-child,
.access-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.demo-block {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  margin-bottom: clamp(76px, 10vw, 140px);
}

.demo-block.reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.demo-block.reverse .demo-copy {
  order: 2;
}

.demo-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.demo-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.demo-block video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #bcbab1;
  border-radius: 6px;
  background: #171817;
  box-shadow: 0 22px 54px rgba(29, 31, 29, 0.16);
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: clamp(56px, 7vw, 92px) clamp(20px, 7vw, 112px);
}

.access-section > div:first-child {
  max-width: 760px;
}

.access-section h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.text-link {
  color: var(--green);
  font-weight: 750;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #343632;
  background: #20211f;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px clamp(20px, 7vw, 112px);
  font-size: 13px;
}

/* Onboarding */

.onboarding-page {
  background: #f7f6f2;
}

.onboarding-nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #343632;
  background: #20211f;
  color: var(--white);
  padding: 16px clamp(20px, 7vw, 112px);
}

.onboarding-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.onboarding-back {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.onboarding-back:hover {
  color: var(--white);
}

.onboarding-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 620px;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 76px clamp(20px, 7vw, 112px);
}

.onboarding-hero-copy {
  max-width: 790px;
}

.onboarding-hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 66px;
  line-height: 0.98;
}

.onboarding-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.button.outline {
  border-color: #aaa9a1;
  background: transparent;
  color: var(--ink);
}

.button.outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.onboarding-timeline {
  margin: 0;
  border-top: 1px solid var(--ink);
  padding: 0;
  list-style: none;
}

.onboarding-timeline li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}

.onboarding-timeline span,
.workflow-steps > article > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.onboarding-timeline strong {
  font-size: 15px;
}

.onboarding-timeline small {
  color: var(--muted);
  font-size: 12px;
}

.onboarding-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 82px clamp(20px, 7vw, 112px);
}

.onboarding-intro h2,
.workflow-heading h2,
.video-guide h2,
.downloads-heading h2,
.pilot-checklist h2 {
  font-size: 46px;
}

.onboarding-intro-copy {
  max-width: 700px;
}

.onboarding-intro-copy > p:first-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.privacy-note {
  border-left: 3px solid var(--green);
  margin: 28px 0 0;
  background: #f1f8f5;
  padding: 15px 18px;
  font-size: 14px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(46px, 8vw, 130px);
  padding: 110px clamp(20px, 7vw, 112px);
}

.workflow-heading {
  max-width: 590px;
}

.workflow-heading > p:last-child,
.video-guide-copy > p:last-child,
.downloads-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.workflow-steps {
  border-top: 1px solid var(--ink);
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.workflow-steps h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

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

.screenshot-walkthrough,
.dd-screenshot-guide {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 100px clamp(20px, 7vw, 112px);
}

.walkthrough-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.walkthrough-heading h2 {
  margin-bottom: 16px;
  font-size: 46px;
}

.walkthrough-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.walkthrough-shot {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  margin: 0 0 90px;
}

.walkthrough-shot:last-child {
  margin-bottom: 0;
}

.walkthrough-shot.reverse {
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
}

.walkthrough-shot.reverse .annotated-image {
  order: 2;
}

.annotated-image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #bcbab1;
  border-radius: 6px;
  background: #e9e8e2;
  box-shadow: 0 18px 46px rgba(29, 31, 29, 0.15);
}

.annotated-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.annotation-marker {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 3px 12px rgba(20, 20, 18, 0.34);
  transform: translate(-50%, -50%);
}

.annotation-marker i {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 30px;
  display: block;
  width: var(--length);
  height: 3px;
  background: var(--wine);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: rotate(var(--angle));
  transform-origin: left center;
}

.annotation-marker i::after {
  position: absolute;
  top: -5px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--wine);
  border-right: 3px solid var(--wine);
  content: "";
  transform: rotate(45deg);
}

.walkthrough-shot figcaption {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}

.walkthrough-shot figcaption > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.walkthrough-shot figcaption strong,
.dd-shot-grid figcaption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.walkthrough-shot figcaption p,
.dd-shot-grid figcaption p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.video-guide {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(42px, 7vw, 105px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 88px clamp(20px, 7vw, 112px);
}

.video-guide-copy {
  max-width: 560px;
}

.video-guide video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #bcbab1;
  border-radius: 6px;
  background: #171817;
  box-shadow: 0 22px 54px rgba(29, 31, 29, 0.16);
}

.workflow-section-dark {
  display: block;
  background: #20211f;
  color: var(--white);
}

.dd-screenshot-guide {
  background: #efeee9;
}

.dd-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px);
}

.dd-shot-grid figure {
  margin: 0;
}

.dd-shot-grid figcaption {
  border-top: 1px solid var(--ink);
  margin-top: 22px;
  padding-top: 17px;
}

.workflow-section-dark .workflow-heading {
  max-width: 850px;
  margin-bottom: 58px;
}

.workflow-section-dark .workflow-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.dd-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.dd-path div {
  min-height: 210px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
}

.dd-path div:last-child {
  border-right: 0;
}

.dd-path span,
.download-list a > span {
  display: block;
  margin-bottom: 28px;
  color: #8ad3c3;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dd-path strong {
  display: block;
  margin-bottom: 11px;
  font-size: 21px;
}

.dd-path p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.video-guide-light {
  background: #efeee9;
}

.downloads-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(46px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 100px clamp(20px, 7vw, 112px);
}

.download-list {
  border-top: 1px solid var(--ink);
}

.download-list a {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 28px 150px 28px 0;
  text-decoration: none;
}

.download-list a:hover strong,
.download-list a:hover b {
  color: var(--wine);
}

.download-list a > span {
  margin-bottom: 8px;
  color: var(--green);
}

.download-list strong,
.download-list small {
  display: block;
}

.download-list strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.download-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.download-list b {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--green);
  font-size: 13px;
  transform: translateY(-50%);
}

.pilot-checklist {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 8vw, 130px);
  padding: 100px clamp(20px, 7vw, 112px);
}

.pilot-checklist ul {
  margin: 0;
  border-top: 1px solid var(--ink);
  padding: 0;
  list-style: none;
}

.pilot-checklist li {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.pilot-checklist li::before {
  display: inline-block;
  width: 22px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.pilot-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: -34px;
}

@media (max-width: 760px) {
  .landing-nav {
    padding: 16px;
  }

  .landing-brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .landing-nav-actions {
    gap: 10px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-guide-link {
    min-height: 34px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-shade {
    background: rgba(18, 20, 18, 0.9);
  }

  .hero-copy {
    padding: 126px 20px 40px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 70px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .value-band,
  .demo-block,
  .demo-block.reverse,
  .access-section {
    grid-template-columns: 1fr;
  }

  .value-band {
    padding: 0 20px;
  }

  .value-band div,
  .value-band div:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    padding: 22px 0;
  }

  .value-band div:last-child {
    border-bottom: 0;
  }

  .demo-block.reverse .demo-copy {
    order: 0;
  }

  .demo-block,
  .demo-block.reverse {
    gap: 22px;
  }

  .access-section {
    align-items: start;
  }

  .access-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }

  .onboarding-nav {
    min-height: 70px;
    padding: 13px 16px;
  }

  .onboarding-nav .landing-brand small,
  .onboarding-back {
    display: none;
  }

  .onboarding-nav-actions {
    gap: 8px;
  }

  .onboarding-nav .button {
    min-height: 40px;
    padding: 0 13px;
  }

  .onboarding-hero,
  .onboarding-intro,
  .workflow-section,
  .video-guide,
  .downloads-section,
  .pilot-checklist {
    grid-template-columns: 1fr;
  }

  .onboarding-hero {
    min-height: 0;
    gap: 44px;
    padding: 58px 20px 52px;
  }

  .onboarding-hero h1 {
    font-size: 48px;
  }

  .onboarding-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .onboarding-timeline li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .onboarding-timeline small {
    grid-column: 2;
    margin-top: -10px;
  }

  .onboarding-intro,
  .workflow-section,
  .video-guide,
  .downloads-section,
  .pilot-checklist,
  .screenshot-walkthrough,
  .dd-screenshot-guide {
    gap: 34px;
    padding: 64px 20px;
  }

  .onboarding-intro h2,
  .workflow-heading h2,
  .video-guide h2,
  .downloads-heading h2,
  .pilot-checklist h2,
  .walkthrough-heading h2 {
    font-size: 36px;
  }

  .walkthrough-heading {
    margin-bottom: 38px;
  }

  .walkthrough-shot,
  .walkthrough-shot.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 58px;
  }

  .walkthrough-shot.reverse .annotated-image {
    order: 0;
  }

  .annotation-marker {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .annotation-marker i {
    top: 13px;
    left: 26px;
    width: var(--mobile-length, 52px);
  }

  .dd-shot-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .workflow-steps article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .dd-path {
    grid-template-columns: 1fr;
  }

  .dd-path div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 0;
  }

  .dd-path div:last-child {
    border-bottom: 0;
  }

  .dd-path span {
    margin-bottom: 9px;
  }

  .download-list a {
    padding: 24px 0;
  }

  .download-list b {
    position: static;
    display: block;
    margin-top: 16px;
    transform: none;
  }

  .pilot-actions {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

}
