:root {
  --bg: #fbf7ef;
  --paper: #ffffff;
  --ink: #101014;
  --muted: #6f635c;
  --line: #eadfd2;
  --line-strong: #d8c8b7;
  --primary: #ff5a3d;
  --primary-dark: #db3c24;
  --cyan: #00a6ff;
  --green: #21b573;
  --amber: #c77913;
  --shadow: 0 24px 70px rgba(32, 22, 14, 0.13);
  --radius: 8px;
  --parallax-y: 0px;
  --parallax-soft-y: 0px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(234, 223, 210, 0.88);
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.proof-strip,
.demo-controls,
.chat-form,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #101014, #28201c);
  color: white;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-cta,
.primary-action,
.secondary-action,
.chat-form button,
.waitlist-form button,
.chat-panel-header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.primary-action,
.chat-form button,
.waitlist-form button {
  border: 0;
  background: var(--primary);
  color: white;
}

.nav-cta:hover,
.primary-action:hover,
.chat-form button:hover,
.waitlist-form button:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow:
    0 18px 42px rgba(255, 90, 61, 0.28),
    0 0 0 5px rgba(255, 90, 61, 0.08);
}

.secondary-action:hover,
.chat-panel-header button:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 90, 61, 0.32);
  box-shadow: 0 16px 34px rgba(32, 22, 14, 0.1);
}

.nav-cta {
  padding: 0 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% calc(16% + var(--parallax-soft-y)), rgba(255, 90, 61, 0.18), transparent 32%),
    radial-gradient(circle at 78% calc(18% - var(--parallax-soft-y)), rgba(0, 166, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 232, 195, 0.72), transparent 46%),
    var(--bg);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subcopy,
.section-heading p,
.intro-band p,
.waitlist-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-subcopy {
  max-width: 690px;
  margin: 24px 0 0;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  padding: 0 18px;
}

.secondary-action {
  border: 1px solid var(--line-strong);
  background: white;
}

.proof-strip {
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
}

.proof-strip div {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  font-size: 20px;
  font-weight: 800;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-demo {
  position: relative;
  min-height: 560px;
}

.browser-frame,
.chat-panel,
.lead-card,
.waitlist-form,
.demo-card,
.bundle-grid article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.05);
}

.browser-frame {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfd;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d0dc;
}

.browser-top small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.demo-site-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: #111318;
}

.demo-site-card::before,
.demo-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0), rgba(8, 12, 18, 0.26)),
    linear-gradient(120deg, rgba(8, 12, 18, 0.16), rgba(8, 12, 18, 0));
}

.demo-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.42) contrast(1.08) brightness(1.1);
  transform: scale(1.02);
}

.demo-site-card > :not(.demo-photo),
.demo-preview > :not(.demo-photo) {
  position: relative;
  z-index: 2;
}

.demo-site-card p,
.demo-site-card h2,
.demo-site-card span {
  margin: 0;
}

.demo-site-card p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.demo-site-card h2 {
  max-width: 360px;
  margin-top: 14px;
  font-size: 48px;
  line-height: 1;
}

.demo-site-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.demo-site-card button {
  width: max-content;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.floating-chat {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(330px, 88%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.bubble {
  max-width: 88%;
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.45;
}

.bubble.customer {
  margin-left: auto;
  background: var(--primary);
  color: white;
}

.bubble.assistant {
  background: #eef2f7;
}

.chat-message {
  width: fit-content;
  max-width: min(78%, 620px);
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

.chat-message.customer {
  margin-left: auto;
  background: var(--primary);
  color: white;
}

.chat-message.assistant {
  background: white;
  border: 1px solid var(--line);
}

.quick-replies {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.quick-replies button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.handoff-note {
  margin: 12px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.section {
  scroll-margin-top: 88px;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.waitlist-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-band p {
  margin: 16px 0 0;
}

.bundle-grid,
.process-grid {
  display: grid;
  gap: 12px;
}

.bundle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bundle-grid article,
.process-grid article {
  padding: 20px;
}

.bundle-grid strong,
.process-grid h3,
.lead-card h3,
.demo-meta strong {
  display: block;
  font-size: 18px;
}

.bundle-grid span,
.process-grid p,
.demo-meta p,
.lead-card p,
.lead-card li {
  color: var(--muted);
  line-height: 1.55;
}

.bundle-grid span {
  display: block;
  margin-top: 10px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px 0 0;
}

.demo-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 166, 255, 0.14), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 90, 61, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #fffaf2 36%, #eef9f4 100%);
}

.demo-section .section-heading {
  max-width: 980px;
}

.demo-section .section-heading h2 {
  max-width: 780px;
}

.demo-section .section-heading p {
  max-width: 650px;
  margin-top: 16px;
  font-size: 16px;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.demo-controls {
  gap: 10px;
  overflow-x: auto;
}

.demo-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(32, 22, 14, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(32, 22, 14, 0.05);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.demo-filter:hover {
  transform: translateY(-2px) rotate(-1deg);
  border-color: rgba(255, 90, 61, 0.3);
  box-shadow: 0 16px 34px rgba(32, 22, 14, 0.11);
}

.demo-filter.active {
  border-color: rgba(255, 90, 61, 0.92);
  background: var(--primary);
  color: white;
  box-shadow:
    0 18px 38px rgba(255, 90, 61, 0.24),
    0 0 0 5px rgba(255, 90, 61, 0.08);
}

.carousel-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.carousel-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(16, 16, 20, 0.92);
  border-radius: 999px;
  background: #101014;
  color: white;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 16px 32px rgba(32, 22, 14, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.carousel-controls button:hover {
  background: #2c211d;
  transform: translateY(-2px) rotate(1deg) scale(1.03);
  box-shadow:
    0 22px 44px rgba(32, 22, 14, 0.22),
    0 0 0 5px rgba(0, 166, 255, 0.08);
}

.demo-gallery {
  display: flex;
  gap: 18px;
  margin-inline: calc(clamp(18px, 5vw, 72px) * -1);
  padding: 4px clamp(18px, 5vw, 72px) 34px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.demo-card {
  flex: 0 0 min(72vw, 520px);
  scroll-snap-align: start;
  overflow: hidden;
  border-color: rgba(32, 22, 14, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(32, 22, 14, 0.1);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.demo-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 90, 61, 0.26);
  box-shadow: 0 26px 70px rgba(32, 22, 14, 0.16);
}

.demo-card.hidden {
  display: none;
}

.demo-preview {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: #101014;
}

.demo-preview::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.demo-preview h3,
.demo-preview p {
  margin: 0;
}

.demo-preview h3 {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
}

.demo-preview p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.demo-preview > span {
  align-self: flex-start;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 90, 61, 0.28);
}

.demo-preview-copy {
  display: grid;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 22px;
  max-width: 360px;
  padding: 0;
  background: transparent;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.46);
  backdrop-filter: none;
}

.demo-layout-bottom .demo-preview-copy {
  max-width: 340px;
  margin-bottom: 14px;
  padding-left: 0;
  border-left: 0;
}

.demo-layout-light {
  color: #101014;
}

.demo-layout-light::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 250, 242, 0.76)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.04));
}

.demo-layout-light .demo-preview-copy {
  max-width: 340px;
  margin: auto 0 18px;
  background: transparent;
  color: #101014;
  box-shadow: none;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.74);
}

.demo-layout-light h3,
.demo-layout-light p {
  color: #101014;
}

.demo-layout-split .demo-preview-copy {
  align-self: flex-end;
  width: min(78%, 330px);
  margin-bottom: 14px;
  margin-top: 70px;
  background: transparent;
  color: #101014;
  box-shadow: none;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.8);
}

.demo-layout-split h3,
.demo-layout-split p {
  color: #101014;
}

.demo-layout-minimal {
  justify-content: flex-end;
}

.demo-layout-minimal .mini-nav {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  width: auto;
}

.demo-layout-minimal .demo-preview-copy {
  max-width: 360px;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.46);
  backdrop-filter: none;
}

.demo-layout-card .demo-preview-copy {
  max-width: 340px;
  margin: 36px 0 auto;
  background: transparent;
  box-shadow: none;
}

.demo-layout-review .demo-preview-copy {
  max-width: 380px;
  background: transparent;
  box-shadow: none;
}

.demo-review {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: 310px;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.demo-review strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: white;
  color: #101014;
  font-size: 15px;
}

.demo-review p {
  margin: 0;
  color: #4f3f38;
  font-size: 12px;
  line-height: 1.35;
}

.demo-quote-module,
.demo-property-card,
.demo-photo-intake,
.demo-schedule-strip,
.demo-handoff-alert,
.demo-service-tabs {
  position: relative;
  z-index: 2;
}

.demo-quote-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  width: min(100%, 300px);
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.demo-quote-module strong {
  grid-column: 1 / -1;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary);
  font-size: 13px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.demo-quote-module span {
  min-height: 30px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.demo-service-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.demo-service-tabs span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #101014;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(32, 22, 14, 0.1);
}

.demo-property-card {
  align-self: flex-end;
  display: grid;
  gap: 5px;
  width: max-content;
  max-width: min(88%, 300px);
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: #101014;
  box-shadow: 0 14px 34px rgba(32, 22, 14, 0.1);
  backdrop-filter: blur(12px);
}

.demo-property-card strong {
  color: var(--primary-dark);
  font-size: 13px;
}

.demo-property-card span {
  color: #5f544d;
  font-size: 12px;
  font-weight: 800;
}

.demo-photo-intake {
  align-self: flex-start;
  display: grid;
  gap: 7px;
  width: min(58%, 230px);
  margin-top: auto;
  margin-bottom: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.demo-photo-intake span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 850;
}

.demo-photo-intake span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  color: #7ee3b0;
}

.demo-schedule-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 14px;
}

.demo-schedule-strip span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.demo-handoff-alert {
  display: grid;
  gap: 4px;
  max-width: 320px;
  margin-top: auto;
  margin-bottom: 14px;
  padding: 13px 14px;
  border-left: 4px solid #7ee3b0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #101014;
  box-shadow: 0 16px 42px rgba(32, 22, 14, 0.13);
  backdrop-filter: blur(12px);
}

.demo-handoff-alert small {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-handoff-alert strong {
  font-size: 14px;
}

.demo-handoff-alert span {
  color: #635750;
  font-size: 12px;
  font-weight: 750;
}

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #4f3f38;
  backdrop-filter: blur(12px);
}

.mini-nav span {
  color: #101014;
  font-size: 12px;
  font-weight: 900;
}

.mini-nav small {
  min-width: 0;
  overflow: hidden;
  color: #7a675b;
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-meta {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.demo-meta strong {
  font-size: 17px;
}

.demo-meta p {
  margin: 0;
  font-size: 14px;
}

.chatbot-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 90, 61, 0.18), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(0, 166, 255, 0.16), transparent 28%),
    #101014;
  color: white;
}

.chatbot-section .section-heading p,
.chatbot-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.chatbot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.chat-panel {
  overflow: hidden;
  background: white;
  color: var(--ink);
}

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.chat-panel-header strong,
.chat-panel-header span {
  display: block;
}

.chat-panel-header span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.chat-panel-header button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: white;
}

.chat-log {
  height: 380px;
  overflow-y: auto;
  padding: 18px;
  background: #fff8ef;
}

.chat-form {
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.chat-form button {
  padding: 0 16px;
}

.lead-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
}

.lead-card h3 {
  margin: 0 0 14px;
}

.lead-card ul {
  margin: 0;
  padding-left: 18px;
}

.lead-card li,
.lead-card p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(33, 181, 115, 0.14), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 48%, #f2fbf7 100%);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 8px;
}

.process-grid p {
  margin: 0;
}

.process-highlight {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 166, 255, 0.34), transparent 34%),
    radial-gradient(circle at 14% 90%, rgba(255, 90, 61, 0.28), transparent 32%),
    #101014 !important;
  color: white;
  box-shadow: 0 24px 70px rgba(32, 22, 14, 0.18);
}

.process-highlight span {
  color: #6dd6ff;
}

.process-highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.waitlist-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% calc(16% + var(--parallax-y)), rgba(255, 90, 61, 0.26), transparent 30%),
    radial-gradient(circle at 78% calc(18% - var(--parallax-soft-y)), rgba(0, 166, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% calc(82% + var(--parallax-soft-y)), rgba(33, 181, 115, 0.18), transparent 28%),
    linear-gradient(135deg, #101014 0%, #201714 52%, #18221d 100%);
  border-top: 0;
  color: white;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
  pointer-events: none;
  transform: translateY(calc(var(--parallax-soft-y) * -0.35));
}

.waitlist-copy,
.waitlist-form {
  position: relative;
  z-index: 1;
}

.waitlist-copy .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.waitlist-copy h2 {
  max-width: 680px;
  color: white;
}

.waitlist-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.waitlist-copy p {
  margin: 18px 0 0;
}

.waitlist-steps {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin-top: 30px;
}

.waitlist-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.waitlist-steps article:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-steps span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #6dd6ff;
  font-size: 12px;
  font-weight: 900;
}

.waitlist-steps strong {
  color: white;
  font-size: 15px;
}

.waitlist-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.form-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
}

.form-header strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.form-header p {
  max-width: 430px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-header span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  background: #101014;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #343844;
  font-size: 13px;
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: var(--radius);
  background: #fff8ef;
  color: var(--ink);
  outline: none;
  font-size: 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.waitlist-form input,
.waitlist-form select {
  height: 46px;
  padding: 0 13px;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
  line-height: 1.5;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: rgba(17, 19, 24, 0.72);
  background: white;
  box-shadow: 0 0 0 4px rgba(17, 19, 24, 0.09);
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
  color: #929bad;
}

.full-field,
.form-footer,
.form-status {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
}

.form-footer p {
  max-width: 310px;
  margin: 0;
  color: #6d7482;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-footer button {
  min-width: 190px;
  min-height: 46px;
  padding: 0 18px;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(255, 90, 61, 0.22);
}

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

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  padding: 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.preview {
  color: var(--amber);
}

.site-footer {
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .hero,
  .intro-band,
  .chatbot-layout,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero-demo {
    min-height: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 36px;
  }

  .proof-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .proof-strip div {
    border-right: 0;
    padding-right: 0;
  }

  .floating-chat {
    right: 12px;
  }

  .bundle-grid,
  .process-grid,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .demo-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .carousel-controls button {
    flex: 1;
  }

  .demo-card {
    flex-basis: min(86vw, 420px);
  }

  .demo-preview {
    min-height: 340px;
  }

  .waitlist-section {
    background:
      radial-gradient(circle at 18% calc(12% + var(--parallax-y)), rgba(255, 90, 61, 0.22), transparent 32%),
      radial-gradient(circle at 78% calc(18% - var(--parallax-soft-y)), rgba(0, 166, 255, 0.18), transparent 28%),
      linear-gradient(180deg, #101014 0%, #201714 68%, #18221d 100%);
  }

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

  .form-header,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  :root {
    --parallax-y: 0px;
    --parallax-soft-y: 0px;
  }
}
