:root {
  --paper: #f4efe7;
  --paper-deep: #e8dfd2;
  --ink: #201711;
  --ink-soft: #6c5d52;
  --espresso: #211610;
  --espresso-2: #38251a;
  --brown: #8b4b2d;
  --brown-bright: #ad6d45;
  --tan: #c8a47f;
  --cream: #fffaf3;
  --white: #fff;
  --line: rgba(32, 23, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

.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;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 4vw;
  color: var(--white);
  transition: min-height 280ms var(--ease-out), color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  color: var(--ink);
  background: rgba(244, 239, 231, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand-symbol {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.brand-copy strong {
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-copy span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.desktop-nav a,
.text-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 250ms var(--ease-out);
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.97);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  font-size: 0.87rem;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  background: var(--white);
}

.site-header.is-scrolled .button-light {
  color: var(--white);
  background: var(--espresso);
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--espresso);
}

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

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroImageIn 1.5s var(--ease-out) forwards;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.9) 0%, rgba(13, 10, 8, 0.71) 38%, rgba(13, 10, 8, 0.08) 70%),
    linear-gradient(0deg, rgba(13, 10, 8, 0.54) 0%, transparent 45%);
}

.hero-content {
  width: min(650px, 88vw);
  margin: 0 0 clamp(5.5rem, 11vh, 8rem) 7vw;
}

.eyebrow,
.section-index {
  margin: 0 0 1.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.section-index {
  color: var(--brown);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.4vw, 6.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-intro {
  max-width: 550px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.inline-link span {
  transition: transform 180ms ease;
}

.inline-link:hover span {
  transform: translateY(3px);
}

.hero-offer {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.hero-caption {
  position: absolute;
  right: 3vw;
  bottom: 2.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroCopyIn 900ms var(--ease-out) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 120ms; }
.hero-reveal:nth-child(2) { animation-delay: 210ms; }
.hero-reveal:nth-child(3) { animation-delay: 310ms; }
.hero-reveal:nth-child(4) { animation-delay: 410ms; }
.hero-reveal:nth-child(5) { animation-delay: 500ms; }

@keyframes heroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageIn {
  to { transform: scale(1); }
}

.section-shell {
  width: min(1240px, calc(100% - 8vw));
  margin-inline: auto;
}

.opening-note {
  padding-block: clamp(6rem, 11vw, 11rem);
  border-bottom: 1px solid var(--line);
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.opening-grid h2,
.product-heading h2,
.workflow-intro h2,
.fit-heading h2,
.pricing-copy h2,
.support-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.lead {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  line-height: 1.52;
}

.quiet {
  margin: 2.1rem 0 0;
  color: var(--ink-soft);
}

.product-story {
  padding-block: clamp(6rem, 10vw, 10rem);
  background: #ebe1d4;
  overflow: hidden;
}

.product-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-heading h2 {
  max-width: 850px;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.product-phone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
}

.product-phone img {
  position: relative;
  z-index: 2;
  width: min(390px, 76vw);
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 38px 44px rgba(55, 35, 23, 0.25));
  transition: opacity 180ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-phone.is-changing img {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.phone-aura {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.78);
  filter: blur(2px);
}

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

.feature-switcher {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.feature-tab {
  flex: 1;
  padding: 1rem 0.3rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.feature-tab:hover,
.feature-tab.is-active {
  color: var(--ink);
}

.feature-tab.is-active {
  border-color: var(--brown);
}

.feature-detail {
  padding-top: 3rem;
}

.feature-kicker {
  margin: 0 0 1.15rem;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-detail h3 {
  max-width: 510px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.feature-detail > p:not(.feature-kicker) {
  max-width: 510px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-detail ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-detail li {
  padding: 0.78rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.workflow {
  padding-block: clamp(7rem, 12vw, 12rem);
}

.workflow-intro {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.55fr;
  gap: 3rem;
  align-items: start;
}

.workflow-intro p:last-child {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.workflow-list {
  margin: clamp(5rem, 9vw, 9rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.workflow-step {
  display: grid;
  grid-template-columns: 0.16fr 1fr 0.3fr;
  gap: 2rem;
  align-items: start;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.step-number,
.step-note {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.workflow-step p {
  max-width: 650px;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.step-note {
  justify-self: end;
}

.location-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: var(--white);
  background: var(--espresso);
}

.location-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 45%, rgba(173, 109, 69, 0.32), transparent 32%),
    linear-gradient(145deg, #4d3020, #211610 64%);
}

.map-line {
  position: absolute;
  width: 76%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.map-line-one { left: 5%; top: 23%; }
.map-line-two { left: 18%; top: 45%; transform: rotate(17deg); }
.map-line-three { left: 2%; top: 64%; transform: rotate(-5deg); }

.location-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 9px rgba(255, 250, 243, 0.13), 0 0 0 20px rgba(255, 250, 243, 0.05);
}

.dot-one { left: 31%; top: 28%; }
.dot-two { right: 25%; top: 51%; }
.dot-three { left: 25%; bottom: 20%; }

.location-label {
  position: absolute;
  padding: 0.68rem 0.9rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(33, 22, 16, 0.48);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
}

.label-one { left: calc(31% + 32px); top: calc(28% - 10px); }
.label-two { right: calc(25% + 28px); top: calc(51% - 10px); }
.label-three { left: calc(25% + 30px); bottom: calc(20% - 9px); }

.location-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.light-index {
  color: var(--tan);
}

.location-copy h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

.location-copy > p:not(.section-index) {
  max-width: 570px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.location-facts {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.location-facts span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.88rem;
}

.fit {
  padding-block: clamp(7rem, 11vw, 11rem);
}

.fit-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 2rem;
}

.industry-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-line span {
  flex: 1 0 auto;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.industry-line span:first-child {
  border-left: 1px solid var(--line);
}

.industry-line span:hover {
  color: var(--white);
  background: var(--brown);
}

.fit-note {
  width: min(620px, 100%);
  margin: 3rem 0 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.pricing {
  color: var(--white);
  background: var(--espresso-2);
}

.pricing-grid {
  min-height: 860px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.pricing-copy h2 {
  max-width: 740px;
}

.pricing-copy > p:not(.section-index) {
  max-width: 570px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
}

.pricing-copy .button {
  margin-top: 2.25rem;
}

.price-lockup {
  padding-left: clamp(2rem, 6vw, 6rem);
  border-left: 1px solid var(--line-light);
}

.plan-name {
  margin: 0;
  color: var(--tan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.price > span {
  margin-top: 0.5rem;
  font-size: 0.28em;
  letter-spacing: 0;
}

.price small {
  align-self: flex-end;
  margin: 0 0 0.7rem 0.6rem;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-body);
  font-size: 0.13em;
  font-weight: 500;
  letter-spacing: 0;
}

.price-rule {
  height: 1px;
  margin: 2.5rem 0 1.25rem;
  background: var(--line-light);
}

.price-lockup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-lockup li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.price-fineprint {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

.support {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(4rem, 11vw, 11rem);
  padding-block: clamp(7rem, 11vw, 11rem);
  border-bottom: 1px solid var(--line);
}

.support-details > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.support-details dl {
  margin: 3rem 0 0;
}

.support-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.support-details dt {
  color: var(--ink-soft);
}

.support-details dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.demo-form-section {
  position: relative;
  padding: 8rem 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 12%, rgba(173, 109, 69, 0.2), transparent 28rem),
    var(--espresso);
  overflow: hidden;
}

.demo-form-section::before {
  content: "";
  position: absolute;
  width: 35rem;
  height: 35rem;
  right: -18rem;
  bottom: -22rem;
  border: 1px solid rgba(255, 250, 243, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgba(255, 250, 243, 0.025),
    0 0 0 12rem rgba(255, 250, 243, 0.018);
  pointer-events: none;
}

.demo-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(4rem, 8vw, 8.5rem);
  align-items: start;
}

.demo-form-intro {
  position: sticky;
  top: 8rem;
}

.demo-form-intro h2 {
  max-width: 650px;
  margin: 1.2rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.demo-form-intro > p:last-of-type {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 243, 0.68);
  font-size: 1.08rem;
}

.form-expectations {
  display: grid;
  margin-top: 4rem;
  border-top: 1px solid var(--line-light);
}

.form-expectations > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.form-expectations span {
  color: var(--tan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.form-expectations p {
  margin: 0;
  color: rgba(255, 250, 243, 0.64);
}

.form-expectations strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--cream);
  font-weight: 600;
}

.demo-form-wrap {
  position: relative;
  min-height: 620px;
  padding: clamp(2rem, 4vw, 4.25rem);
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.26);
}

.form-heading {
  padding-bottom: 2.25rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.form-kicker {
  margin: 0 0 0.8rem;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3,
.form-success h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.form-heading > p:last-child {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.25rem;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 0.48rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(32, 23, 17, 0.2);
  border-radius: 2px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 0.9rem;
}

.form-field select {
  appearance: none;
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 23px,
    calc(100% - 12px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 124px;
  padding: 0.9rem;
  resize: vertical;
}

.form-field textarea::placeholder {
  color: rgba(108, 93, 82, 0.72);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background-color: var(--cream);
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139, 75, 45, 0.13);
}

.form-field [aria-invalid="true"] {
  border-color: #a23a2a;
  box-shadow: 0 0 0 3px rgba(162, 58, 42, 0.1);
}

.character-count {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: right;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  cursor: pointer;
}

.consent-row input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.16rem 0 0;
  accent-color: var(--brown);
}

.consent-row input[aria-invalid="true"] {
  outline: 2px solid #a23a2a;
  outline-offset: 2px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.form-submit-row .button {
  flex: 0 0 auto;
  gap: 1.5rem;
  color: var(--cream);
  background: var(--espresso);
}

.form-submit-row .button:hover {
  background: var(--brown);
}

.form-submit-row > p {
  max-width: 220px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.demo-form.is-submitting {
  pointer-events: none;
}

.demo-form.is-submitting .form-submit {
  opacity: 0.72;
}

.demo-form.is-submitting .form-submit span:last-child {
  animation: submitArrow 650ms ease-in-out infinite alternate;
}

@keyframes submitArrow {
  to { transform: translateX(5px); }
}

.form-status {
  min-height: 1.35rem;
  margin: 1rem 0 0;
  color: #8f2f22;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #37603b;
}

.form-success {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success[hidden] {
  display: none;
}

.form-success svg {
  width: 64px;
  height: 64px;
  margin-bottom: 2.25rem;
  fill: none;
  stroke: var(--brown);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  max-width: 560px;
}

.form-success > p:not(.form-kicker) {
  max-width: 520px;
  margin: 1.35rem 0 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-reset {
  padding: 0 0 0.3rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  cursor: pointer;
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
  padding-block: clamp(7rem, 11vw, 11rem);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading p:last-child {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.55rem 0;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 240ms var(--ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -0.25rem 3rem 0 0;
  padding: 0 0 1.7rem;
  color: var(--ink-soft);
}

.final-cta {
  padding: clamp(2rem, 4vw, 4rem);
}

.final-cta-inner {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2.5rem, 7vw, 7rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.54), transparent 28%),
    linear-gradient(135deg, #d2af88, #e9d7bd 52%, #b77c55);
}

.final-cta .eyebrow {
  color: rgba(32, 23, 17, 0.58);
}

.final-cta h2 {
  max-width: 930px;
}

.dark-link {
  color: var(--ink);
}

.dark-link:hover span {
  transform: translate(3px, -3px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 4rem 4vw 2rem;
  color: var(--white);
  background: var(--espresso);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand .brand-symbol {
  width: 36px;
  height: 36px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--font-display);
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header > .brand,
  .site-header > .header-actions {
    position: relative;
    z-index: 2;
  }

  .desktop-nav,
  .header-actions .text-link,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-button {
    background: rgba(32, 23, 17, 0.07);
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6.5rem 6vw calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    color: var(--ink);
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 250ms ease, transform 350ms var(--ease-out), visibility 250ms;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 6vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 2rem;
  }

  body:has(.mobile-nav.is-open) .site-header {
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body:has(.mobile-nav.is-open) .menu-button {
    background: rgba(32, 23, 17, 0.07);
  }

  .opening-grid,
  .product-heading,
  .workflow-intro,
  .fit-heading,
  .support,
  .demo-form-layout,
  .faq {
    grid-template-columns: 1fr;
  }

  .demo-form-intro {
    position: static;
  }

  .demo-form-intro h2 {
    max-width: 760px;
  }

  .product-stage {
    gap: 4rem;
  }

  .workflow-intro {
    gap: 1.5rem;
  }

  .workflow-intro p:last-child {
    max-width: 580px;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-visual {
    min-height: 540px;
  }

  .location-copy {
    padding: 6rem 6vw;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .price-lockup {
    padding: 4rem 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding-inline: 5vw;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 10, 8, 0.93) 0%, rgba(13, 10, 8, 0.65) 55%, rgba(13, 10, 8, 0.16) 100%),
      linear-gradient(90deg, rgba(13, 10, 8, 0.35), transparent);
  }

  .hero-content {
    width: 90vw;
    margin: 0 auto 4rem;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .hero-caption {
    display: none;
  }

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

  .section-shell {
    width: min(100% - 10vw, 1240px);
  }

  .opening-note,
  .product-story,
  .workflow,
  .fit,
  .support,
  .demo-form-section,
  .faq {
    padding-block: 6rem;
  }

  .demo-form-layout {
    gap: 3.5rem;
  }

  .form-expectations {
    margin-top: 3rem;
  }

  .demo-form-wrap {
    width: calc(100% + 4vw);
    margin-left: -2vw;
    padding: 2.2rem 1.4rem;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-submit-row > p {
    max-width: none;
  }

  .opening-grid {
    gap: 2rem;
  }

  .product-stage {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .product-phone {
    min-height: 570px;
  }

  .product-phone img {
    max-height: 620px;
  }

  .phone-aura {
    width: 95%;
  }

  .product-copy {
    order: -1;
  }

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

  .step-note {
    grid-column: 2;
    justify-self: start;
  }

  .location-section {
    min-height: 0;
  }

  .location-visual {
    min-height: 450px;
  }

  .location-label {
    font-size: 0.65rem;
  }

  .location-copy {
    padding: 5.5rem 5vw;
  }

  .industry-line span {
    flex: 1 0 50%;
  }

  .pricing-grid {
    padding-block: 6rem;
  }

  .price {
    font-size: clamp(6rem, 28vw, 8rem);
  }

  .support {
    gap: 3rem;
  }

  .faq {
    gap: 3.5rem;
  }

  .faq-list summary {
    padding: 1.35rem 0;
  }

  .final-cta {
    padding: 1rem;
  }

  .final-cta-inner {
    min-height: 620px;
    padding: 3rem 1.6rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3.5rem 5vw 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
