@font-face {
  font-family: Instrument;
  src: url(/assets/fonts/26d0ba92e140f0dc-s.p.woff2) format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Bricolage;
  src: url(/assets/fonts/9d5a263311222317-s.p.woff2) format("woff2");
  font-weight: 200 900;
  font-display: swap;
}
:root {
  --paper: #f7f0e6;
  --paper-dark: #eee2d2;
  --ink: #2a1d15;
  --muted: #756a5e;
  --pop: #e95526;
  --orange: #fa8f25;
  --deep: #1d1714;
  --line: rgba(42, 29, 21, 0.18);
  --green: #c7d5c0;
  --lilac: #d8cfe3;
  --max: 1240px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Onest, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--deep);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 20px max(28px, calc((100vw - var(--max)) / 2));
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: #f7f0e6e6;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.045em;
  white-space: nowrap;
  line-height: 1;
}
.brand img {
  width: 37px;
  height: 32px;
  object-fit: contain;
  flex: none;
}
.brand:not(.brand-light) img {
  width: 196px;
  height: auto;
}
.brand-light img {
  height: 37px;
}
.brand span {
  color: var(--pop);
  margin-left: -7px;
}
.desktop-nav {
  display: flex;
  gap: 27px;
  font-size: 13px;
  color: #62574d;
}
.desktop-nav a,
.sample-link,
.footer-links a {
  transition: color 0.2s;
}
.desktop-nav a:hover,
.sample-link:hover,
.footer-links a:hover {
  color: var(--pop);
}
.header-actions .sample-link {
  color: var(--pop);
  font-weight: 600;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
  font-size: 13px;
}
.demo-dropdown {
  position: relative;
}
.demo-dropdown summary {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  cursor: pointer;
}
.demo-dropdown summary::-webkit-details-marker {
  display: none;
}
.demo-dropdown summary:focus-visible,
.demo-options a:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: 3px;
}
.header-actions .demo-dropdown summary {
  color: var(--pop);
  font-weight: 600;
  white-space: nowrap;
}
.demo-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.demo-dropdown[open] .demo-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}
.demo-options {
  position: absolute;
  right: 0;
  top: calc(100% + 15px);
  z-index: 40;
  min-width: 152px;
  padding: 7px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px #2a1d1524;
}
.demo-options a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.demo-options a:hover {
  background: #faede3;
  color: var(--pop);
}
.header-actions .language-dropdown summary {
  color: var(--ink);
}
.language-options a[aria-current="page"] {
  background: #faede3;
  color: var(--pop);
}
.language-options a[aria-current="page"]::after {
  content: "✓";
  margin-left: 12px;
  float: right;
}
@media (max-width: 900px) {
  .mobile-menu nav .language-options a[aria-current="page"] {
    background: #ffffff1a;
    color: var(--paper);
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--pop);
  color: #fff;
  box-shadow: 0 7px 18px #b83a1833;
}
.button-primary:hover {
  background: #d9471c;
}
.button-dark {
  background: var(--deep);
  color: #fff;
}
.button-dark:hover {
  background: #4a2e1f;
}
.button-outline {
  border: 1px solid var(--line);
  color: var(--ink);
}
.button-outline:hover {
  border-color: var(--ink);
  background: #ffffff40;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.menu-button {
  display: none;
  background: transparent;
  width: 34px;
  height: 30px;
  position: relative;
}
.menu-button span {
  position: absolute;
  left: 3px;
  width: 25px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s;
}
.menu-button span:first-child {
  top: 9px;
}
.menu-button span:last-child {
  top: 19px;
}
.mobile-menu {
  display: none;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  background: linear-gradient(
    112deg,
    var(--paper) 0%,
    var(--paper) 43%,
    #f9c65f 67%,
    #f47d20 100%
  );
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 53% 49%,
      rgba(255, 237, 156, 0.85),
      transparent 37%
    ),
    linear-gradient(90deg, rgba(247, 240, 230, 0.95) 16%, transparent 67%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 510px;
  padding-bottom: 12px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow span {
  color: var(--pop);
  font-size: 16px;
  margin-right: 6px;
}
h1,
h2,
h3,
h4 {
  font-family: Comfortaa, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 3.2vw, 3.1rem);
  max-width: 100%;
  margin: 28px 0 24px;
}
h1 em {
  font-style: normal;
  color: var(--pop);
}
.hero-lede {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.6;
  color: #63574c;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-proof {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 112px;
  gap: 22px;
  max-width: 480px;
  margin-top: 30px;
}
.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-proof strong {
  font-family: Onest;
  font-size: 25px;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.hero-proof span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-art {
  position: absolute;
  inset: 0 0 0 44%;
  z-index: 1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-sticker {
  position: absolute;
  right: 8%;
  bottom: 17%;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--pop);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  transform: rotate(10deg);
}
.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(42, 29, 21, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
}
.facts-ticker {
  overflow: hidden;
  background: var(--pop);
  color: #fff;
  padding: 23px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-size: 15px;
}
.ticker-track b {
  font-weight: 700;
}
.ticker-track i {
  font-style: normal;
  font-size: 18px;
  color: #ffb08b;
}
@keyframes ticker {
  to {
    transform: translate(-50%);
  }
}
.section-pad {
  padding: clamp(80px, 7vw, 112px) max(28px, calc((100vw - var(--max)) / 2));
}
.problem {
  background: var(--paper-dark);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}
.section-intro {
  max-width: 500px;
}
h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  margin: 16px 0 20px;
}
.section-intro > p:last-child,
.price-copy > p:last-of-type,
.features-heading > p:last-child,
.story-copy > p:last-of-type {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 530px;
}
.chat-stage {
  position: relative;
  min-height: 430px;
  max-width: 550px;
}
.chat-card {
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 38px #442f1f14;
  font-size: 16px;
  line-height: 1.5;
}
.chat-card p {
  margin: 13px 0 22px;
}
.chat-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.chat-label {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-muted {
  background: #b6aa9d;
}
.dot-pop {
  background: var(--pop);
}
.chat-card-old {
  width: 77%;
  background: #fffaf2;
  transform: rotate(-3deg);
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 1;
}
.chat-card-new {
  width: 77%;
  background: #d3e2ce;
  transform: rotate(3deg);
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 2;
}
.chat-card-new strong {
  color: #37523a;
}
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
  background: var(--paper);
}
.price-copy {
  max-width: 600px;
}
.price-copy h2 {
  font-family: Comfortaa, Arial, sans-serif;
  font-size: clamp(2rem, 2.75vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.28;
  margin: 24px 0 20px;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  margin-top: 30px;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}
.text-link span {
  color: var(--pop);
  margin-left: 10px;
}
.price-card {
  background: var(--deep);
  color: var(--paper);
  border-radius: 20px;
  padding: 48px clamp(30px, 4vw, 60px);
  max-width: 480px;
  justify-self: end;
  width: 100%;
  box-shadow: 15px 20px #e9552633;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
}
.price strong {
  font-family: Onest;
  font-size: clamp(3.4rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.price span {
  color: #c7bbb0;
}
.price-card > p {
  color: #c7bbb0;
  font-size: 15px;
}
.price-card ul {
  border-top: 1px solid rgba(247, 240, 230, 0.22);
  border-bottom: 1px solid rgba(247, 240, 230, 0.22);
  margin: 31px 0;
  padding: 19px 0;
}
.price-card li {
  padding: 7px 0;
  color: #ede0d1;
  font-size: 15px;
}
.price-card li:before {
  content: "✓";
  color: #fa8f25;
  font-weight: 700;
  margin-right: 10px;
}
.price-card .price-note {
  font-size: 13px;
  line-height: 1.5;
  margin: -4px 0 25px;
  color: #bfb2a6;
}
.price-card .button {
  width: 100%;
}
.pillars {
  padding: 0;
}
.pillar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 145px);
  padding: clamp(76px, 8vw, 120px) max(28px, calc((100vw - var(--max)) / 2));
}
.pillar.reverse .pillar-image {
  order: 2;
}
.pillar.reverse .pillar-copy {
  order: 1;
}
.pillar-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
}
.pillar-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.pillar:hover .pillar-image img {
  transform: scale(1.035);
}
.pillar-copy {
  padding: 0;
  max-width: 560px;
}
.pillar-copy h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.2;
  margin: 16px 0 20px;
}
.pillar-copy > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.pillar-warm {
  background: #fffaf2;
}
.pillar-green {
  background: #fbf4e5;
}
.pillar-orange {
  background: #fffaf2;
}
.pillar-lilac {
  background: #f5efe9;
}
.features {
  background: var(--paper-dark);
}
.features-heading {
  max-width: 710px;
}
.features-heading h2 {
  max-width: 700px;
}
.base-features {
  margin-top: 65px;
  background: var(--deep);
  color: var(--paper);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 55px);
}
.base-features-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247, 240, 230, 0.22);
}
.plan-label,
.feature-number,
.module-category,
.module-cost {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.plan-label {
  color: #f49b70;
}
.base-features h3 {
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  margin-top: 14px;
}
.base-price {
  white-space: nowrap;
  font-family: Onest;
  font-size: clamp(2.8rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.base-price small {
  font-family: Onest;
  font-size: 14px;
  letter-spacing: 0;
  color: #c7bbb0;
  font-weight: 400;
}
.base-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
}
.base-feature-grid article {
  padding: 32px 0;
  border-bottom: 1px solid rgba(247, 240, 230, 0.18);
}
.base-feature-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.feature-number {
  color: #f49b70;
}
.base-feature-grid h4,
.module-card h4 {
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.base-feature-grid p {
  color: #c9bdb2;
  font-size: 15px;
  line-height: 1.6;
  max-width: 410px;
}
.pillar-copy p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--pop);
  font-weight: 600;
}
.design-demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 15px;
}
.design-demo-links a {
  color: #f49b70;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.pillar-copy p a:hover,
.design-demo-links a:hover {
  text-decoration-thickness: 2px;
}
.modules-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin: 90px 0 32px;
}
.modules-heading h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  margin-top: 16px;
  max-width: 540px;
}
.modules-heading > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 440px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.module-card {
  background: #fbf6ee;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
}
.module-category {
  color: var(--pop);
}
.module-card h4 {
  margin-top: 27px;
}
.module-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.module-cost {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: #8c6b54;
  font-size: 10px;
  letter-spacing: 0.07em;
}
.module-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.migration-card {
  grid-column: 1/-1;
  min-height: 0;
}
.migration-card p {
  max-width: 750px;
}
.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
  background: #f2d18f;
}
.story-image {
  overflow: hidden;
  border-radius: 18px;
}
.story-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.story-copy h2 {
  max-width: 600px;
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  line-height: 1.2;
}
.story-copy .button {
  margin-top: 30px;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 10vw, 150px);
  background: #fbf7f1;
}
.faq-intro h2 {
  max-width: 440px;
  color: #51483f;
  font-size: clamp(1.95rem, 3.1vw, 2.85rem);
  line-height: 1.2;
}
.faq-summary {
  border-top: 1px solid #e4d9ce;
  margin-top: 60px;
  padding-top: 23px;
}
.faq-summary span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--pop);
}
.faq-summary p {
  color: #71675f;
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.7;
}
.accordion-list {
  display: grid;
  gap: 11px;
  align-content: start;
}
.faq details {
  background: #fffdf9;
  border: 1px solid #e9dfd4;
  border-radius: 15px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.faq details[open] {
  background: #fffaf3;
  border-color: #dbcab8;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 23px;
  font-family: Comfortaa, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #51473f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.faq summary:focus-visible {
  outline: 2px solid var(--pop);
  outline-offset: -3px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  display: grid;
  place-items: center;
  flex: none;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #faede3;
  font-family: Onest;
  color: #cb653b;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  max-width: 600px;
  padding: 0 62px 24px 23px;
  color: #71675f;
  line-height: 1.7;
  font-size: 15px;
}
.final-cta {
  text-align: center;
  background: var(--pop);
  color: #fff;
}
.final-cta .eyebrow {
  color: #ffd5bf;
}
.final-cta .eyebrow span {
  color: #fff;
}
.final-cta h2 {
  max-width: 750px;
  margin: 20px auto 22px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
}
.final-cta > p:not(.eyebrow) {
  max-width: 610px;
  margin: auto;
  color: #ffe5d5;
  font-size: 17px;
}
.centered {
  justify-content: center;
}
.final-cta .button-dark {
  background: var(--deep);
}
.final-cta .button-light {
  background: #fff;
  color: var(--ink);
}
.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
}
.brand-light {
  font-size: 22px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.site-footer p {
  grid-column: 1 / 2;
  color: #a69a8e;
  font-size: 14px;
}
.site-footer small {
  grid-column: 2 / 3;
  color: #80746a;
  align-self: end;
  font-size: 11px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: #1d1714a6;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.demo-modal {
  position: relative;
  background: var(--paper);
  max-width: 520px;
  width: 100%;
  padding: 45px;
  border-radius: 20px;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-backdrop.is-open .demo-modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  right: 19px;
  top: 13px;
  background: transparent;
  font-size: 30px;
  color: var(--muted);
}
.demo-modal h2 {
  font-size: 42px;
  margin: 23px 0 15px;
}
.demo-modal > p:not(.eyebrow):not(.form-success) {
  color: var(--muted);
  line-height: 1.55;
}
.demo-modal form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}
.demo-modal label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.demo-modal input,
.demo-modal select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.demo-modal input:focus,
.demo-modal select:focus {
  border-color: var(--pop);
}
.demo-modal form .button {
  margin-top: 6px;
}
.form-success {
  margin-top: 28px;
  background: #d3e2ce;
  padding: 16px;
  border-radius: 10px;
  color: #37523a;
  line-height: 1.5;
}
.demo-modal [hidden] {
  display: none;
}
.demo-modal .form-error {
  color: #a32a17;
  font-size: 14px;
  line-height: 1.5;
}
.demo-modal form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    padding: 18px 24px;
  }
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 31;
    background: var(--deep);
    color: var(--paper);
    transform: translate(100%);
    transition: transform 0.35s ease;
  }
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  .mobile-menu-inner {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-close {
    background: transparent;
    color: var(--paper);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(247, 240, 230, 0.3);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
  }
  .mobile-menu nav {
    display: grid;
    gap: 0;
    margin-top: 44px;
  }
  .mobile-menu nav > a,
  .mobile-menu nav > .demo-dropdown > summary {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(247, 240, 230, 0.16);
  }
  .mobile-menu nav > a {
    font-size: 24px;
    letter-spacing: -0.02em;
  }
  .mobile-menu nav > .language-dropdown {
    margin-top: 14px;
  }
  .mobile-menu-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu-actions a {
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 130px 24px 70px;
  }
  .hero-copy {
    max-width: 620px;
    padding: 40px 0 460px;
  }
  .hero-art {
    inset: auto 0 0;
    height: 460px;
  }
  .hero-art:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--paper) 0%, transparent 30%);
  }
  .hero-art img {
    object-position: center bottom;
  }
  .hero-sticker {
    right: 8%;
    bottom: 23%;
  }
  .scroll-cue {
    display: none;
  }
  .problem,
  .pricing,
  .faq,
  .story {
    grid-template-columns: 1fr;
  }
  .problem {
    gap: 50px;
  }
  .pricing {
    gap: 65px;
  }
  .price-card {
    justify-self: start;
  }
  .faq {
    gap: 70px;
  }
  .pillar {
    min-height: auto;
  }
  .pillar-image {
    min-height: 450px;
  }
  .pillar-copy {
    padding: 65px 32px;
  }
  .pillar.reverse .pillar-image,
  .pillar.reverse .pillar-copy {
    order: initial;
  }
  .story-image {
    max-width: 600px;
  }
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer p,
  .site-footer small {
    grid-column: auto;
  }
  .site-footer small {
    margin-top: 10px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .section-pad,
  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero-copy {
    padding-bottom: 360px;
  }
  .hero-art {
    height: 370px;
  }
  .hero-sticker {
    width: 93px;
    height: 93px;
    font-size: 10px;
    right: 6%;
    bottom: 15%;
  }
  .hero-proof {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-proof strong {
    font-size: 20px;
  }
  .hero-proof span {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .button {
    width: 100%;
  }
  .button-row {
    gap: 10px;
  }
  .chat-stage {
    min-height: 470px;
  }
  .chat-card {
    padding: 21px;
    font-size: 14px;
  }
  .chat-card-old,
  .chat-card-new {
    width: 92%;
  }
  .chat-card-new {
    bottom: 0;
  }
  .base-features {
    margin-top: 48px;
  }
  .base-features-top {
    align-items: start;
    flex-direction: column;
  }
  .base-feature-grid {
    grid-template-columns: 1fr;
  }
  .base-feature-grid article:nth-last-child(2) {
    border-bottom: 1px solid rgba(247, 240, 230, 0.18);
  }
  .modules-heading {
    display: block;
    margin: 70px 0 26px;
  }
  .modules-heading > p {
    margin-top: 22px;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .module-card {
    min-height: 215px;
  }
  .pillar-image {
    min-height: 350px;
  }
  .pillar-copy {
    padding: 58px 22px 70px;
  }
  .story-copy .button {
    width: auto;
  }
  .demo-modal {
    padding: 34px 23px;
  }
  .demo-modal h2 {
    font-size: 34px;
  }
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .footer-links {
    gap: 15px 21px;
  }
}
@media (max-width: 900px) {
  .mobile-menu nav a {
    font-family: Onest, Arial, sans-serif;
    font-weight: 600;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-copy {
    max-width: 365px;
  }
  .hero-art {
    left: 46%;
  }
}
@media (max-width: 900px) {
  .hero {
    background: var(--paper);
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(1.95rem, 7.8vw, 2.35rem);
    line-height: 1.24;
    margin: 24px 0 20px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-copy {
    padding-top: 30px;
  }
}
@media (max-width: 900px) {
  .pillar {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 70px 24px;
  }
  .pillar-image {
    min-height: 0;
  }
  .pillar-copy {
    padding: 0;
    max-width: 620px;
  }
  .pillar.reverse .pillar-image,
  .pillar.reverse .pillar-copy {
    order: initial;
  }
}
@media (max-width: 560px) {
  .pillars {
    padding: 0;
  }
  .pillar {
    padding: 60px 22px;
    gap: 30px;
  }
  .pillar-image {
    min-height: 0;
    border-radius: 18px;
  }
  .pillar-copy {
    padding: 0;
  }
  .pillar-copy h2 {
    font-size: clamp(1.8rem, 7.2vw, 2.2rem);
    margin: 16px 0 20px;
  }
  .pillar-copy > p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .pricing {
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .pricing {
    padding-top: 66px;
    padding-bottom: 78px;
    gap: 32px;
  }
  .price-copy h2 {
    font-size: clamp(1.65rem, 6.7vw, 2.05rem);
    line-height: 1.3;
    margin: 22px 0 17px;
  }
  .price-copy > p:last-of-type {
    font-size: 16px;
    line-height: 1.55;
  }
  .price-copy .text-link {
    margin-top: 22px;
  }
}
@media (max-width: 560px) {
  .mobile-menu-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .mobile-menu-actions a {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .hero-proof {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 10px;
  }
  .hero-proof strong {
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .mobile-menu {
    overflow-y: auto;
  }
  .mobile-menu-inner {
    height: auto;
    min-height: 100%;
  }
  .mobile-menu nav .demo-dropdown summary {
    font-family: Onest, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }
  .mobile-menu nav .language-dropdown summary {
    min-height: 44px;
    border-bottom: 0;
    color: rgba(247, 240, 230, 0.72);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .mobile-menu nav .demo-options {
    position: static;
    margin: 10px 0 0;
    padding: 3px 0 3px 18px;
    min-width: 0;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(247, 240, 230, 0.3);
    border-radius: 0;
    box-shadow: none;
  }
  .mobile-menu nav .demo-options a {
    font-family: Onest, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--paper);
    padding: 10px 12px;
    text-align: left;
  }
  .mobile-menu nav .demo-options a:hover {
    background: #ffffff1a;
    color: var(--paper);
  }
  .mobile-menu-actions {
    padding-top: 24px;
  }
}
