#tholaSplash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #e55437;
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#tholaSplash img {
  width: min(270px, 44vw);
  height: auto;
  display: block;
}
#tholaSplash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #tholaSplash {
    transition: none;
  }
}
@font-face {
  font-family: "Manrope";
  src: url("/thola-assets/manrope-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("/thola-assets/dmmono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("/thola-assets/dmmono-500.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
.lm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(39, 29, 25, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lm-overlay.open {
  display: grid;
}
.lm-card {
  position: relative;
  width: min(400px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--cream);
  color: var(--brown);
  border-radius: 26px;
  padding: 34px 28px 28px;
  text-align: left;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.lm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(39, 29, 25, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--brown);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.lm-close:hover {
  background: var(--brown);
  color: var(--cream);
}
.lm-card h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 6px;
}
.lm-sub {
  font-size: 14px;
  color: var(--soft-ink);
  margin: 0 0 22px;
}
.lm-err {
  display: none;
  background: rgba(239, 75, 35, 0.1);
  border: 1px solid rgba(239, 75, 35, 0.35);
  color: #a62e12;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.lm-err.show {
  display: block;
}
.lm-field {
  margin-bottom: 14px;
}
.lm-field label {
  display: block;
  font:
    600 11px "DM Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soft-ink);
  margin-bottom: 7px;
}
.lm-field input {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid rgba(39, 29, 25, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}
.lm-field input::placeholder {
  color: rgba(39, 29, 25, 0.4);
}
.lm-field input:focus {
  outline: none;
  border-color: var(--tomato);
  box-shadow: 0 0 0 3px rgba(239, 75, 35, 0.14);
}
.lm-pwd {
  position: relative;
}
.lm-pwd input {
  padding-right: 66px;
}
.lm-pwd button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: var(--tomato);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 4px;
}
.lm-forgot {
  text-align: right;
  margin: -2px 0 16px;
}
.lm-forgot a {
  font-size: 13px;
  font-weight: 700;
  color: var(--tomato);
}
.lm-submit {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--brown);
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.lm-submit:hover:not(:disabled) {
  background: var(--tomato);
  transform: translateY(-2px);
}
.lm-submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.lm-foot {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--soft-ink);
}
.lm-foot a {
  color: var(--tomato);
  font-weight: 800;
}
@media (max-width: 600px) {
  .lm-card {
    padding: 28px 20px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lm-submit {
    transition: none;
  }
}
.getapp {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.getapp[hidden] {
  display: none;
}
.getapp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 29, 25, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.getapp.is-open .getapp-backdrop {
  opacity: 1;
}
.getapp-card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--cream);
  color: var(--brown);
  border-radius: 28px;
  padding: 34px 26px 26px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.45s var(--ease);
}
.getapp.is-open .getapp-card {
  opacity: 1;
  transform: none;
}
.getapp-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(39, 29, 25, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--brown);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.getapp-x:hover {
  background: var(--brown);
  color: var(--cream);
}
.getapp-mark {
  display: inline-block;
  width: 44px;
  height: 44px;
}
.getapp-mark img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  display: block;
}
.getapp-card h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 14px 0 8px;
}
.getapp-card > p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--soft-ink);
  max-width: 34ch;
  margin: 0 auto;
}
.getapp-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  text-align: left;
}
.getapp-opt {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid rgba(39, 29, 25, 0.14);
  border-radius: 16px;
  background: #fff;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.getapp-opt:hover {
  border-color: var(--tomato);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(80, 42, 23, 0.13);
}
.getapp-opt svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: var(--brown);
}
.getapp-opt:last-child svg {
  fill: none;
  stroke: var(--brown);
}
.getapp-opt span {
  flex: 1;
  min-width: 0;
}
.getapp-opt b {
  display: block;
  font-size: 15px;
  font-weight: 800;
}
.getapp-opt small {
  display: block;
  font-size: 12px;
  color: var(--soft-ink);
  margin-top: 1px;
}
.getapp-opt i {
  font-style: normal;
  color: var(--tomato);
  font-weight: 800;
}
body.getapp-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .getapp-backdrop,
  .getapp-card,
  .getapp-opt {
    transition: none;
  }
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/thola-assets/instrumentsans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/thola-assets/instrumentsans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/thola-assets/instrumentsans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/thola-assets/instrumentsans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Homepage chrome and product story. 3D styles remain isolated in hero-3d/. */
:root {
  --cream: #fff7ef;
  --brown: #271d19;
  --soft-ink: #6d5144;
  --tomato: #ef4b23;
  --ink: #271d19;
  --paper: #fff7ef;
  --orange: #ef4b23;
  --line: #ead7c9;
  --muted: #6d5144;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #c63a10;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #ef4b23;
  color: white;
}
.wrap,
.home-wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  z-index: 250;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: white;
  color: #111;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  z-index: 200;
  pointer-events: none;
}
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 18px 0;
  background: rgba(255, 247, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}
nav.scrolled {
  border-color: var(--line);
}
.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}
.logo-img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.navlinks,
.navcta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navlinks {
  font-size: 12px;
  font-weight: 600;
}
.navlinks a:hover,
.navlogin:hover {
  color: #b42f0c;
}
.navcta {
  gap: 14px;
  font-size: 12px;
}
.navget {
  background: none;
  border: 0;
  padding: 10px 0;
}
.navbtn,
.navmenu-cta {
  background: var(--ink);
  color: #fff;
  padding: 12px 17px;
  border-radius: 99px;
  font-weight: 700;
  white-space: nowrap;
}
.navtoggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #ead7c9;
  border-radius: 50%;
  padding: 12px;
}
.navtoggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.navmenu {
  display: none;
}
.footer {
  padding: 30px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footerin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footerin a:hover {
  text-decoration: underline;
}
.footer .logo {
  color: var(--ink);
}
.th-home {
  --home-muted: #6d5144;
}
.th-home h2,
.th-home h3,
.th-home p,
.th-home figure {
  margin: 0;
}
.home-section {
  padding: 112px 0;
  position: relative;
  scroll-margin-top: 85px;
}
.home-anchor {
  position: absolute;
  top: 0;
}
.home-kicker {
  font-family: monospace;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 24px !important;
}
.home-heading {
  max-width: 820px;
  margin-bottom: 58px;
}
.home-heading h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.home-heading h2 span {
  color: #ef4b23;
}
.home-heading > p:last-child {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  margin-top: 24px;
  color: var(--home-muted);
}
.home-capture-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 75px;
  align-items: center;
}
.home-photo img {
  display: block;
  width: 100%;
  border-radius: 22px;
  background: #e7e3d8;
}
.home-photo figcaption {
  font-size: 12px;
  color: var(--home-muted);
  line-height: 1.5;
  margin-top: 15px;
}
.home-copy h3 {
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.05em;
}
.home-copy > p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
  color: var(--home-muted);
}
.home-input-list {
  margin: 30px 0;
}
.home-input-list > div {
  display: flex;
  gap: 17px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.home-input-list > div > span {
  font-size: 11px;
  font-family: monospace;
  color: var(--home-muted);
  padding-top: 4px;
}
.home-input-list p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--home-muted);
}
.home-input-list b {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.home-text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  background: none;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}
.home-connected {
  background: #ffecdf;
}
.home-record-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.5;
}
.home-record-header a {
  margin-left: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4b23;
  flex-shrink: 0;
}
.home-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-record {
  padding: 30px;
  background: var(--paper);
  border: 1px solid #efd0bc;
  border-radius: 16px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.home-record > span {
  font-size: 12px;
  color: var(--home-muted);
}
.home-record h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 26px 0 14px;
  overflow-wrap: anywhere;
}
.home-record > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-muted);
  padding-bottom: 30px;
  overflow-wrap: anywhere;
}
.home-record-bottom {
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.1em;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.home-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--home-muted);
  margin-top: 20px !important;
  max-width: 700px;
}
.home-proactive {
  background: #fff0e5;
  color: #fff7ef;
  --home-muted: #6d5144;
}
.home-proactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.home-proactive .home-heading {
  margin: 0;
}
.home-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  font-size: 14px;
  color: #714f3c;
}
.home-steps span {
  border-top: 1px solid #e9cbbb;
  padding-top: 14px;
}
.home-next-card {
  background: #fff7ef;
  color: var(--ink);
  --home-muted: #6d5144;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 16px 50px #0002;
}
.home-tag {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--home-muted);
}
.home-next-context {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0 25px;
}
.home-avatar {
  background: #ffd7c3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.home-next-context h3 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.home-next-context p {
  font-size: 12px;
  margin-top: 7px;
  color: var(--home-muted);
}
.home-next-prompt {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px !important;
}
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  background: var(--ink);
  color: white;
  border: 1px solid transparent;
  border-radius: 99px;
  padding: 14px 23px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.home-button:hover {
  background: #b93413;
  box-shadow: 0 3px 0 #0002;
}
.home-next-card .home-button {
  width: 100%;
}
.home-next-card form {
  display: grid;
  gap: 15px;
}
.home-next-card label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
}
.home-next-card input {
  min-width: 0;
  width: 100%;
  border: 1px solid #dec1ad;
  border-radius: 8px;
  background: white;
  padding: 12px;
  color: var(--ink);
  font-size: 16px;
}
.home-done-label {
  font-size: 13px;
  color: #87502b;
  margin: 20px 0 !important;
  font-weight: 600;
}
#next-result {
  font-size: 22px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  margin-bottom: 16px;
}
.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-industry {
  border-top: 1px solid #e8c8b4;
  padding-top: 20px;
  min-width: 0;
}
.home-industry-number {
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 0.12em;
  color: var(--home-muted);
}
.home-industry h3 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 26px 0 18px;
}
.home-industry > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
  max-width: 300px;
  min-height: 48px;
}
.home-mini-ui {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}
.home-mini-ui > span {
  display: block;
  font-size: 11px;
  color: var(--home-muted);
  padding-bottom: 12px;
}
.home-mini-ui b {
  display: block;
  font-size: 12px;
  font-weight: 500;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.home-faq {
  border-top: 1px solid var(--line);
}
.home-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.home-faq .home-heading {
  margin: 0;
}
.home-questions details {
  border-bottom: 1px solid #ead7c9;
}
.home-questions summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 23px 0;
  list-style: none;
}
.home-questions summary::-webkit-details-marker {
  display: none;
}
.home-questions summary > span {
  font-size: 23px;
  font-weight: 400;
  flex-shrink: 0;
}
.home-questions details[open] summary > span {
  transform: rotate(45deg);
}
.home-questions details > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-muted);
  padding: 0 28px 24px 0;
}
.home-questions p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-final {
  background: var(--orange);
  color: #271d19;
  text-align: center;
  padding: 110px 0 120px;
}
.home-final h2 {
  font-size: clamp(60px, 11vw, 146px);
  letter-spacing: -0.075em;
  line-height: 1;
}
.home-final > .home-wrap > p:not(.home-kicker) {
  margin-top: 32px;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.65;
}
.home-final strong {
  font-weight: 600;
}
.home-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}
@media (min-width: 901px) and (max-width: 1180px) {
  .navlinks {
    gap: 13px;
  }
  .navget {
    display: none;
  }
  .navcta {
    gap: 12px;
  }
  .navin {
    gap: 16px;
  }
  .navlinks a[href*="docs.thola"] {
    display: none;
  }
  .home-proactive-grid {
    gap: 45px;
  }
  .home-capture-grid {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .navlinks,
  .navget,
  .navlogin {
    display: none;
  }
  .navtoggle {
    display: block;
  }
  .navmenu.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    max-height: calc(100dvh - 82px);
    overflow: auto;
  }
  .navmenu > a,
  .navmenu > button {
    padding: 13px 0;
    font-size: 15px;
    text-align: left;
    border: 0;
    background: none;
    color: var(--ink);
  }
  .navmenu > .navmenu-cta {
    background: var(--ink);
    color: white;
    text-align: center;
    margin-top: 10px;
    padding: 13px;
    border-radius: 99px;
  }
  .home-section {
    padding: 80px 0;
  }
  .home-capture-grid,
  .home-proactive-grid,
  .home-faq-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }
  .home-capture-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-heading {
    margin-bottom: 38px;
  }
  .home-industry h3 {
    font-size: 26px;
  }
  .home-record {
    padding: 22px;
  }
  .home-proactive .home-heading {
    max-width: 630px;
  }
  .home-next-card {
    max-width: 640px;
    width: 100%;
    justify-self: center;
  }
  .home-faq-grid {
    gap: 20px;
  }
  .footerin {
    line-height: 1.8;
  }
}
@media (max-width: 640px) {
  .wrap,
  .home-wrap {
    width: calc(100% - 36px);
  }
  nav {
    padding: 12px 0;
  }
  .navin {
    gap: 12px;
  }
  .navcta {
    gap: 9px;
  }
  .navbtn {
    font-size: 11px;
    padding: 11px 14px;
  }
  .logo {
    font-size: 23px;
  }
  .navtoggle {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .home-section {
    padding: 64px 0;
  }
  .home-kicker {
    font-size: 10px;
    margin-bottom: 20px !important;
  }
  .home-heading > p:last-child {
    font-size: 16px;
    margin-top: 20px;
  }
  .home-capture-grid,
  .home-record-grid,
  .home-industry-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-capture-grid {
    gap: 32px;
  }
  .home-photo img {
    border-radius: 14px;
  }
  .home-input-list {
    margin: 24px 0;
  }
  .home-record-header {
    flex-wrap: wrap;
  }
  .home-record-header a {
    margin-left: 17px;
  }
  .home-record {
    padding: 25px;
  }
  .home-record h3 {
    font-size: 28px;
    margin-top: 18px;
  }
  .home-record > p {
    padding-bottom: 22px;
  }
  .home-next-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .home-next-context h3 {
    font-size: 18px;
  }
  .home-industry-grid {
    gap: 35px;
  }
  .home-industry h3 {
    font-size: 32px;
  }
  .home-industry > p {
    max-width: none;
    min-height: 0;
  }
  .home-mini-ui {
    margin-top: 20px;
  }
  .home-faq-grid {
    gap: 20px;
  }
  .home-questions summary {
    font-size: 15px;
  }
  .home-final {
    padding: 75px 0 85px;
  }
  .home-final h2 {
    font-size: clamp(54px, 13.5vw, 86px);
  }
  .home-final-actions {
    gap: 22px;
  }
  .footerin {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .home-heading h2 {
    font-size: clamp(34px, 8.6vw, 48px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  nav,
  .home-button {
    transition: none;
  }
}
#pricing {
  padding: clamp(76px, 8vw, 120px) 0;
  background: var(--cream);
  color: var(--brown);
  scroll-margin-top: 76px;
}
#pricing .wrap {
  width: min(1380px, calc(100% - 64px));
}
#pricing .pricing-head {
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 56px);
}
#pricing .pricing-head h2 {
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-top: 20px;
}
/* Four tiers (Starter / Growth / Pro / Enterprise) sit as a 2x2. A single row
   of four would squeeze each card to ~328px, which the 112px wolf and the 34px
   tier name overflow. The max-width keeps the two columns near the ~445px the
   old three-across layout produced instead of ballooning to half of 1380px. */
#pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
#pricing .tier {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(39, 29, 25, 0.12);
  border-radius: 26px;
  padding: 24px 18px 20px;
  box-shadow: 0 20px 50px rgba(80, 42, 23, 0.07);
}
#pricing .tier-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(39, 29, 25, 0.12);
}
#pricing .tier-wolf {
  flex: none;
  width: clamp(58px, 5vw, 72px);
  height: auto;
  display: block;
  margin-top: -4px;
}
#pricing .tier-head {
  flex: 1;
  min-width: 0;
}
#pricing .tier-name {
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tomato);
  line-height: 1;
}
#pricing .tier-tag {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--soft-ink);
  min-height: 36px;
}
#pricing .tier-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
#pricing .tier-price b {
  font-size: clamp(26px, 2.35vw, 33px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--tomato);
  line-height: 1;
}
#pricing .tier-price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
}
#pricing .tier-price s,
#pricing .tier-was s {
  font-size: 17px;
  font-weight: 600;
  color: #9b938c;
  text-decoration-thickness: 2px;
}
#pricing .tier-was {
  margin-top: 6px;
}
#pricing .tier-badge {
  display: inline-block;
  margin-top: 12px;
  background: #16a34a;
  color: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 800;
}
#pricing .tier-inc {
  margin: 18px 0 13px;
  font-size: 14px;
  font-weight: 800;
  color: var(--tomato);
}
#pricing .tier-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex: 1;
}
#pricing .tier-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
#pricing .tier-list p {
  font-size: 12.5px;
  line-height: 1.48;
  color: var(--soft-ink);
}
#pricing .tier-list b {
  color: var(--brown);
  font-weight: 800;
}
#pricing .ti {
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
#pricing .ti svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#pricing .ti.ai,
#pricing .ti.ai-o {
  background: var(--tomato);
}
#pricing .ti.purple {
  background: #7c3aed;
}
#pricing .ti.blue {
  background: #2563eb;
}
#pricing .ti.green {
  background: #16a34a;
}
#pricing .tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--tomato);
  color: #fff;
  border-radius: 14px;
  padding: 13px;
  font-size: 14.5px;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
#pricing .tier-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(239, 75, 35, 0.32);
}
#pricing .tier-cta i {
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 1199px) {
  #pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 940px;
    margin-inline: auto;
  }
  #pricing .tier {
    padding: 30px 26px 26px;
  }
  #pricing .tier-top {
    gap: 14px;
    padding-bottom: 22px;
  }
  #pricing .tier-wolf {
    width: clamp(80px, 8.5vw, 112px);
  }
  #pricing .tier-name {
    font-size: clamp(26px, 2.5vw, 34px);
  }
  #pricing .tier-tag {
    font-size: 14.5px;
    line-height: 1.45;
  }
  #pricing .tier-price b {
    font-size: clamp(38px, 4.2vw, 52px);
  }
  #pricing .tier-inc {
    margin: 22px 0 16px;
    font-size: 16px;
  }
  #pricing .tier-list {
    gap: 17px;
  }
  #pricing .tier-list p {
    font-size: 14px;
    line-height: 1.5;
  }
  #pricing .ti {
    width: 32px;
    height: 32px;
  }
  #pricing .ti svg {
    width: 17px;
    height: 17px;
  }
  #pricing .tier-cta {
    padding: 16px;
    font-size: 16px;
  }
}
@media (max-width: 950px) {
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  #pricing .tier-tag {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  #pricing .wrap {
    width: calc(100% - 28px);
  }
  #pricing .tier {
    padding: 26px 20px 22px;
  }
}

/* Restore Thola's warm visual language across the replacement sections. */
:root {
  --cream: #fff7ef;
  --brown: #271d19;
  --soft-ink: #5f5048;
  --tomato: #ef4b23;
}
.th-home {
  font-family: Manrope, Arial, sans-serif;
  color: var(--brown);
}
.home-section {
  padding: clamp(76px, 8vw, 120px) 0;
}
.home-heading h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}
.home-heading > p:last-child {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}
.home-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #9c391d;
  font-family: "DM Mono", monospace;
  font-weight: 500;
}
.home-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 5px #ef4b2314;
}
.home-copy h3 {
  color: var(--tomato);
  font-weight: 800;
}
.home-photo {
  padding: 12px;
  background: #fff;
  border: 1px solid #efd8c7;
  border-radius: 30px;
  box-shadow: 0 24px 60px #7836110d;
}
.home-photo img {
  border-radius: 20px;
}
.home-photo figcaption {
  padding: 3px 8px 8px;
}
.home-input-list > div > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 10px;
  background: #ffe3d0;
  color: #aa3416;
  font-weight: 700;
  padding: 0;
}
.home-connected {
  background: #ffecdf;
  border-block: 1px solid #f1d9c6;
}
.home-record-grid {
  gap: 24px;
  position: relative;
}
.home-record {
  position: relative;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px #7836110b;
  padding: 30px;
  min-height: 280px;
}
.home-record:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  right: -28px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #efc9b1;
  border-radius: 50%;
  background: #fff7ef;
  color: #bf3d1c;
  font-size: 19px;
}
.home-record .home-product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffebe0;
  color: #d8441b;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px #f6d4c0;
}
.home-product-icon svg {
  width: 23px;
  height: 23px;
}
.home-record > span[data-record-label] {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #80503a;
}
.home-record h3 {
  font-weight: 800;
  margin-top: 14px;
  font-size: clamp(22px, 2.3vw, 31px);
}
.home-record-bottom {
  color: #9b4a2c;
}
.home-proactive {
  background: #fff7ef;
  color: var(--brown);
  --home-muted: #6d5144;
}
.home-proactive-grid {
  gap: 80px;
}
.home-steps {
  color: #634534;
}
.home-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  border-color: #ecd7c5;
}
.home-steps span::before {
  content: "✓";
  color: #cc3e18;
  font-weight: 800;
}
.home-next-card {
  background: #fff;
  border: 1px solid #edc9b0;
  box-shadow: 0 25px 65px #9c4b1714;
  border-radius: 30px;
  padding: 34px;
}
.home-tag {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid #efcfb8;
  background: #fff1e5;
  color: #a34423;
  border-radius: 99px;
  font-size: 9px;
}
.home-avatar {
  background: #ffdfc9;
  color: #b73b18;
  font-weight: 800;
  width: 50px;
  height: 50px;
  border: 1px solid #f7c5a6;
}
.home-button {
  background: var(--tomato);
  box-shadow: 0 7px 18px #ef4b2314;
  border-radius: 14px;
  font-weight: 800;
}
.home-button:hover {
  background: #c93717;
  box-shadow: 0 9px 24px #ef4b2326;
}
.home-next-context h3 {
  font-weight: 800;
}
.home-next-card input {
  border-color: #e9cdb9;
  background: #fffcf8;
}
.home-done-label {
  color: #92542e;
  background: #fff0e3;
  border: 1px solid #f1d3b9;
  padding: 12px;
  border-radius: 12px;
}
.home-industries {
  background: #fff1e5;
  border-block: 1px solid #efd8c7;
}
.home-industry {
  border: 1px solid #edd5c2;
  border-radius: 26px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 40px #78361108;
}
.home-industry-number {
  color: #a84322;
  background: #fff0e5;
  padding: 7px 10px;
  border-radius: 8px;
  display: inline-block;
  font-size: 10px;
}
.home-industry h3 {
  font-weight: 800;
  font-size: clamp(26px, 2.5vw, 34px);
}
.home-mini-ui {
  background: #fff8f1;
  border-color: #f0dbc9;
  border-radius: 16px;
}
.home-mini-ui b {
  border-color: #efdfd1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #614734;
}
.home-mini-ui b::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tomato);
  flex: none;
}
.home-faq {
  background: #fff7ef;
  border-top: 1px solid #efd8c7;
}
.home-questions details {
  padding: 0 20px;
  border: 1px solid #edd8c7;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
}
.home-questions details[open] {
  border-color: #e9ac87;
  background: #fffcf8;
}
.home-questions summary {
  font-size: 15px;
}
.home-questions summary > span {
  color: var(--tomato);
}
.home-final {
  background: #f05a2a;
  color: #271d19;
  text-align: center;
}
.home-final .home-kicker {
  justify-content: center;
  color: #532817;
}
.home-final .home-kicker::before {
  background: #532817;
  box-shadow: none;
}
.home-final h2 {
  font-weight: 800;
}
.home-final .home-button {
  background: #271d19;
  color: #fff7ef;
  border-radius: 99px;
  box-shadow: none;
}
.footer {
  background: #fff7ef;
  color: #6d5144;
}
#pricing {
  font-family: Manrope, Arial, sans-serif;
  --cream: #fff7ef;
  --brown: #271d19;
  --soft-ink: #5f5048;
  --tomato: #ef4b23;
}
#pricing h2,
#pricing p {
  margin: 0;
}
#pricing .pricing-head h2 {
  margin-top: 20px;
  font-weight: 800;
}
#pricing .tier-tag {
  margin-top: 10px;
}
#pricing .section-no {
  font:
    500 11px "DM Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9c391d;
}
#pricing .reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .home-proactive-grid {
    gap: 38px;
  }
  .home-industry {
    padding: 23px;
  }
  .home-industry-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .home-record {
    padding: 23px;
  }
  .home-proactive-grid {
    grid-template-columns: 1fr;
  }
  .home-industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-industry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
  }
  .home-industry-number {
    justify-self: start;
    grid-column: 1;
  }
  .home-industry h3 {
    grid-column: 1;
    margin: 0;
    font-size: 30px;
  }
  .home-industry > p {
    grid-column: 1;
    min-height: 0;
  }
  .home-industry .home-mini-ui {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .home-section {
    padding: 66px 0;
  }
  .home-record-grid {
    gap: 26px;
  }
  .home-record {
    min-height: 0;
    padding: 26px;
  }
  .home-record:not(:last-child)::after {
    content: "↓";
    right: calc(50% - 16px);
    top: auto;
    bottom: -29px;
  }
  .home-record .home-product-icon {
    margin-bottom: 18px;
  }
  .home-next-card {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .home-photo {
    border-radius: 22px;
    padding: 8px;
  }
  .home-photo img {
    border-radius: 16px;
  }
  .home-questions details {
    padding: 0 16px;
  }
  .home-questions summary {
    padding: 20px 0;
  }
  .home-industry {
    display: block;
    padding: 26px;
  }
  .home-industry h3 {
    margin: 22px 0 16px;
  }
  .home-industry .home-mini-ui {
    margin-top: 24px;
  }
  .home-industry-grid {
    gap: 20px;
  }
  .home-final {
    padding: 80px 0;
  }
  .home-heading h2 {
    font-size: clamp(34px, 8.6vw, 48px);
  }
}
@media (prefers-reduced-motion: reduce) {
  #pricing .tier-cta {
    transition: none;
  }
  #pricing .tier-cta:hover {
    transform: none;
  }
}
/* A compact product workspace groups the connected records. */
.home-workspace {
  border: 1px solid #e8c6ae;
  border-radius: 26px;
  background: #fff9f3;
  box-shadow: 0 20px 55px #7836110c;
  padding: 0 26px 26px;
}
.home-workspace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 -26px 24px;
  padding: 19px 26px;
  border-bottom: 1px solid #efd9c8;
  background: #fff;
  border-radius: 26px 26px 0 0;
}
.home-workspace-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-workspace-brand > span {
  font-weight: 400;
  color: #c8a38b;
}
.home-workspace-brand b {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.home-workspace-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 8px 11px;
  border: 1px solid #edd0ba;
  background: #fff2e7;
  border-radius: 99px;
  color: #97401f;
}
.home-workspace .home-record-header {
  font-size: 11px;
}
.home-workspace .home-record {
  border-radius: 18px;
  padding: 24px;
  min-height: 260px;
  box-shadow: none;
}
.home-workspace .home-record h3 {
  font-size: clamp(21px, 2.2vw, 29px);
}
.home-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.home-input-list {
  margin-bottom: 18px;
}
.home-copy > .home-text-link {
  font-size: 13px;
}
.home-next-card .home-button {
  min-height: 48px;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .home-workspace .home-record {
    padding: 20px;
  }
  .home-capture-grid {
    gap: 36px;
  }
  .home-heading h2 {
    font-size: clamp(42px, 5vw, 56px);
  }
}
@media (max-width: 760px) {
  .home-workspace {
    padding: 0 18px 20px;
    border-radius: 22px;
  }
  .home-workspace-bar {
    padding: 17px 18px;
    margin: 0 -18px 20px;
    border-radius: 22px 22px 0 0;
  }
  .home-workspace .home-record-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-workspace .home-record {
    min-height: 0;
    padding: 22px;
  }
  .home-workspace .home-record:not(:last-child)::after {
    content: "↓";
    right: calc(50% - 16px);
    top: auto;
    bottom: -27px;
  }
  .home-workspace .home-record-header {
    gap: 8px;
    flex-wrap: wrap;
  }
  .home-workspace .home-record-header a {
    margin-left: 0;
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .home-heading h2 {
    text-wrap: balance;
  }
  .home-next-card {
    padding: 24px 20px;
  }
}
@media (max-width: 380px) {
  .home-workspace-brand {
    gap: 10px;
  }
  .home-workspace-badge {
    font-size: 10px;
  }
  .home-final-actions {
    gap: 16px;
  }
  .home-heading h2 {
    letter-spacing: -0.045em;
  }
}
