:root {
  --ink: #201913;
  --muted: #766a5d;
  --paper: #f6ecdc;
  --paper-deep: #ead8bf;
  --cream: #fff8ed;
  --emerald: #0f5b50;
  --emerald-deep: #0b3f38;
  --sage: #9bb8a0;
  --gold: #c9964c;
  --copper: #a65f3c;
  --wine: #63372d;
  --line: rgba(32, 25, 19, 0.12);
  --line-strong: rgba(32, 25, 19, 0.22);
  --glass: rgba(255, 248, 237, 0.72);
  --shadow: 0 30px 90px rgba(60, 38, 19, 0.18);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 150, 76, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(15, 91, 80, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--paper), #f9f1e5 42%, #ead7bb);
  overflow-x: hidden;
}

body::before,
body::after,
.grain {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background-image:
    linear-gradient(rgba(32, 25, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 25, 19, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 0 56%, transparent 92%);
}

body::after {
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(15, 91, 80, 0.07) 48% 54%, transparent 54%),
    radial-gradient(circle at 50% 100%, rgba(166, 95, 60, 0.18), transparent 34rem);
}

.grain {
  z-index: 50;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100vw - 32px));
  min-height: 78px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 248, 237, 0.76);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.68);
  box-shadow: 0 18px 70px rgba(77, 50, 25, 0.12);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent 40%),
    linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(32, 25, 19, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a,
.header-cta,
.button {
  text-decoration: none;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--emerald);
  transition: transform 0.24s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.header-cta,
.button-primary {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  box-shadow: 0 16px 38px rgba(15, 91, 80, 0.24);
}

.button-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 248, 237, 0.46);
}

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

.section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--copper);
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.8;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.86;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.feature-card p,
.module-copy,
.journey-map p,
.owner-panel p,
.ai-copy p,
.plan-card p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-lead {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-stats article {
  padding: 18px;
  border: 1px solid rgba(255, 248, 237, 0.68);
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.48);
  box-shadow: 0 20px 60px rgba(78, 47, 16, 0.08);
}

.hero-stats strong,
.floating-card strong,
.owner-dashboard strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-stats strong {
  color: var(--emerald);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-showcase {
  position: relative;
  min-height: 650px;
  perspective: 1400px;
}

.showcase-card {
  position: absolute;
  inset: 36px 24px 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.72);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 248, 237, 0.08)),
    linear-gradient(160deg, #72513a, #173f3a 48%, #081f1d);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.36), transparent 14rem),
    radial-gradient(circle at 80% 45%, rgba(201, 150, 76, 0.32), transparent 16rem);
  opacity: 0.86;
}

.tour-sphere {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(82%, 440px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 248, 237, 0.82), transparent 11%),
    radial-gradient(circle at 42% 36%, rgba(201, 150, 76, 0.36), transparent 22%),
    radial-gradient(circle at 60% 60%, rgba(10, 55, 49, 0.72), rgba(5, 24, 22, 0.92) 66%);
  box-shadow:
    inset -42px -58px 100px rgba(0, 0, 0, 0.28),
    0 38px 120px rgba(0, 0, 0, 0.32);
  animation: floatOrb 6s ease-in-out infinite;
}

.tour-sphere::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 248, 237, 0.38);
  animation: spin 18s linear infinite;
}

.sphere-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 50%;
}

.ring-one {
  transform: rotateX(68deg);
}

.ring-two {
  transform: rotateY(68deg);
}

.ring-three {
  inset: 26%;
  transform: rotate(28deg);
}

.property-outline {
  position: absolute;
  right: 18%;
  bottom: 23%;
  width: 34%;
  height: 24%;
  border: 1px solid rgba(255, 248, 237, 0.48);
  border-radius: 8px 8px 28px 28px;
  background: rgba(255, 248, 237, 0.08);
  transform: skewX(-12deg) rotate(-4deg);
}

.property-outline::before {
  content: "";
  position: absolute;
  top: -34%;
  left: -8%;
  width: 116%;
  height: 42%;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: rgba(255, 248, 237, 0.18);
  border: 1px solid rgba(255, 248, 237, 0.38);
}

.property-outline span {
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 28%;
  height: 42%;
  border-radius: 999px 999px 0 0;
  background: rgba(201, 150, 76, 0.56);
}

.hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 248, 237, 0.3);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(9, 34, 31, 0.62);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  white-space: nowrap;
  animation: pulseHotspot 2.8s ease-in-out infinite;
}

.hotspot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 150, 76, 0.14);
}

.hotspot-one {
  top: 31%;
  left: -4%;
}

.hotspot-two {
  top: 18%;
  right: -8%;
  animation-delay: 0.4s;
}

.hotspot-three {
  right: 1%;
  bottom: 28%;
  animation-delay: 0.8s;
}

.showcase-footer {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 28px;
  color: var(--cream);
  background: rgba(8, 29, 27, 0.7);
  backdrop-filter: blur(18px);
}

.showcase-footer span,
.showcase-footer small,
.floating-card span,
.feed-title,
.module-kicker,
.live-pill,
.feature-index,
.journey-map span,
.plan-card span,
.site-footer,
.demo-logo,
.module-button,
.metric-stack span,
.owner-dashboard span {
  font-family: "IBM Plex Mono", monospace;
}

.showcase-footer span,
.showcase-footer small {
  display: block;
  color: rgba(255, 248, 237, 0.68);
}

.showcase-footer strong {
  display: block;
  margin: 5px 0;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 248, 237, 0.72);
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.82);
  box-shadow: 0 22px 58px rgba(47, 29, 12, 0.18);
  backdrop-filter: blur(18px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 6px;
  color: var(--emerald);
  font-size: 2rem;
  line-height: 1;
}

.card-a {
  top: 8%;
  left: -2%;
}

.card-b {
  right: 0;
  bottom: 24%;
  animation-delay: 0.5s;
}

.card-c {
  bottom: 10%;
  left: 7%;
  animation-delay: 1s;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.38);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 34s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(32, 25, 19, 0.12);
  border-radius: 999px;
  color: var(--emerald-deep);
  background: rgba(255, 248, 237, 0.58);
  font-weight: 700;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.feature-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.plan-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.72);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.78), rgba(255, 248, 237, 0.38)),
    radial-gradient(circle at 100% 0, rgba(15, 91, 80, 0.12), transparent 14rem);
  box-shadow: 0 18px 54px rgba(57, 35, 13, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.feature-card::after,
.plan-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 150, 76, 0.14);
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 150, 76, 0.42);
  box-shadow: 0 28px 70px rgba(57, 35, 13, 0.14);
}

.feature-index,
.plan-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3,
.plan-card h3 {
  font-size: 1.35rem;
}

.demo-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 10% 0, rgba(201, 150, 76, 0.16), transparent 26rem),
    linear-gradient(155deg, #123e38, #0b2825 46%, #081715);
  color: var(--cream);
}

.demo-section .section-head {
  width: min(1180px, 100%);
}

.demo-section .section-head p,
.demo-section .eyebrow {
  color: rgba(255, 248, 237, 0.72);
}

.demo-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 280px;
  gap: 16px;
  width: min(1180px, 100%);
  min-height: 620px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 36px;
  background: rgba(255, 248, 237, 0.08);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
}

.demo-sidebar,
.demo-main,
.demo-feed {
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 26px;
  background: rgba(255, 248, 237, 0.08);
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.demo-logo {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-button {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: rgba(255, 248, 237, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.module-button:hover,
.module-button.is-active {
  color: var(--cream);
  border-color: rgba(255, 248, 237, 0.18);
  background: rgba(255, 248, 237, 0.1);
  transform: translateX(3px);
}

.demo-main {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 24px;
}

.demo-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.module-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-topbar h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.96;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #97e6ac;
  box-shadow: 0 0 0 8px rgba(151, 230, 172, 0.1);
}

.module-copy {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 248, 237, 0.68);
}

.demo-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.module-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 248, 237, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.02));
}

.visual-glow {
  position: absolute;
  inset: 14%;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(201, 150, 76, 0.34), transparent 48%),
    conic-gradient(from 180deg, rgba(255, 248, 237, 0.05), rgba(155, 184, 160, 0.26), rgba(201, 150, 76, 0.2), rgba(255, 248, 237, 0.05));
  filter: blur(6px);
  animation: breathe 4s ease-in-out infinite;
}

.visual-path {
  position: absolute;
  top: 22%;
  right: 16%;
  bottom: 22%;
  left: 16%;
  border: 1px dashed rgba(255, 248, 237, 0.3);
  border-radius: 44% 56% 48% 52%;
  animation: spin 24s linear infinite;
}

.visual-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 248, 237, 0.82);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 14px rgba(201, 150, 76, 0.12);
}

.node-one {
  top: 25%;
  left: 24%;
}

.node-two {
  top: 44%;
  right: 18%;
}

.node-three {
  bottom: 22%;
  left: 42%;
}

.visual-site .visual-path {
  border-radius: 26px;
  transform: none;
}

.visual-social .visual-node {
  border-radius: 8px;
}

.visual-traffic .visual-path {
  border-style: solid;
  animation-duration: 10s;
}

.visual-ai .visual-glow {
  border-radius: 50%;
}

.visual-owner .visual-path {
  border-radius: 18px;
  border-style: solid;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-stack article {
  padding: 18px;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.08);
}

.metric-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 1.5rem;
}

.metric-stack span {
  color: rgba(255, 248, 237, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-feed {
  padding: 18px;
}

.feed-title {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 248, 237, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feed-item {
  position: relative;
  padding: 0 0 18px 20px;
  color: rgba(255, 248, 237, 0.74);
  line-height: 1.5;
}

.feed-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feed-item::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 5px;
  left: 3px;
  width: 1px;
  background: rgba(255, 248, 237, 0.14);
}

.feed-item:last-child::after {
  display: none;
}

.chat-site-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 85% 8%, rgba(15, 91, 80, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 248, 237, 0.42), rgba(255, 248, 237, 0.1));
}

.chat-site-section .section-head {
  width: min(1180px, 100%);
}

.site-chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  width: min(1180px, 100%);
}

.site-stage,
.chat-strategy {
  border: 1px solid rgba(255, 248, 237, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.76), rgba(255, 248, 237, 0.4)),
    radial-gradient(circle at 100% 0, rgba(15, 91, 80, 0.12), transparent 16rem);
  box-shadow: 0 22px 70px rgba(57, 35, 13, 0.1);
}

.site-stage {
  position: relative;
  padding: 18px;
}

.site-window {
  overflow: hidden;
  border: 1px solid rgba(32, 25, 19, 0.08);
  border-radius: 28px;
  background: linear-gradient(150deg, #143e39, #0d2725 55%, #081514);
  color: var(--cream);
}

.site-window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
  background: rgba(255, 248, 237, 0.05);
}

.site-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.3);
}

.site-window-bar strong {
  margin-left: 8px;
  font-size: 0.84rem;
  font-weight: 600;
}

.site-window-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  min-height: 390px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 100% 100%, rgba(201, 150, 76, 0.16), transparent 16rem);
}

.site-copy h3,
.chat-strategy h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.92;
}

.site-copy p,
.chat-strategy p {
  color: rgba(255, 248, 237, 0.74);
}

.site-badge-row,
.ai-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-badge-row span,
.ai-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.site-preview-card {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 26px;
  background: rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(16px);
}

.site-preview-card span,
.site-preview-card small,
.widget-kicker,
.chat-scenario,
.thread-role,
.chat-insight-grid span {
  font-family: "IBM Plex Mono", monospace;
}

.site-preview-card span,
.site-preview-card small {
  display: block;
  color: rgba(255, 248, 237, 0.66);
}

.site-preview-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.chat-widget {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: min(390px, calc(100% - 52px));
  padding: 16px;
  border: 1px solid rgba(255, 248, 237, 0.7);
  border-radius: 28px;
  background: rgba(255, 248, 237, 0.92);
  box-shadow: 0 24px 72px rgba(31, 23, 15, 0.22);
}

.chat-widget-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.widget-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-widget-head strong {
  display: block;
  font-size: 1.1rem;
}

.chat-widget-head small {
  color: var(--emerald);
  font-size: 0.76rem;
}

.chat-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 14px;
}

.chat-scenario {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(32, 25, 19, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(246, 236, 220, 0.94);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.chat-scenario.is-active,
.chat-scenario:hover {
  color: var(--cream);
  border-color: var(--emerald);
  background: var(--emerald);
  transform: translateY(-1px);
}

.chat-thread {
  display: grid;
  gap: 10px;
}

.thread-bubble {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(57, 35, 13, 0.08);
}

.thread-bubble.guest {
  justify-self: end;
  color: var(--cream);
  border-bottom-right-radius: 6px;
  background: var(--emerald);
}

.thread-bubble.ai {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: #fff8ef;
}

.thread-role {
  display: block;
  margin-bottom: 6px;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.chat-strategy {
  padding: 28px;
}

.chat-strategy p {
  color: var(--muted);
}

.chat-insight-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.chat-insight-grid article {
  padding: 18px;
  border: 1px solid rgba(32, 25, 19, 0.08);
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.62);
}

.chat-insight-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-insight-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--emerald);
  font-size: 1.5rem;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.journey-map article {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 237, 0.72);
  border-radius: 28px;
  background: rgba(255, 248, 237, 0.58);
  box-shadow: 0 20px 58px rgba(57, 35, 13, 0.08);
}

.journey-map article::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -20px;
  z-index: 2;
  width: 30px;
  height: 1px;
  background: rgba(15, 91, 80, 0.38);
}

.journey-map article:last-child::after {
  display: none;
}

.journey-map span {
  display: inline-flex;
  margin-bottom: 92px;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 600;
}

.owner-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 32px;
  width: min(1180px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 248, 237, 0.7);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(15, 91, 80, 0.15), transparent 22rem),
    rgba(255, 248, 237, 0.58);
  box-shadow: var(--shadow);
}

.owner-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.owner-dashboard article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(32, 25, 19, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.82), rgba(255, 248, 237, 0.36)),
    radial-gradient(circle at 100% 0, rgba(201, 150, 76, 0.12), transparent 12rem);
}

.owner-dashboard span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-dashboard strong {
  margin: 18px 0 4px;
  color: var(--emerald);
  font-size: 3.4rem;
  line-height: 0.9;
}

.owner-dashboard small {
  color: var(--muted);
}

.ai-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, transparent, rgba(15, 91, 80, 0.08) 22%, transparent);
}

.ai-chat {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.chat-phone {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 620px;
  padding: 18px;
  border: 10px solid #201913;
  border-radius: 44px;
  background:
    radial-gradient(circle at 70% 0, rgba(201, 150, 76, 0.18), transparent 16rem),
    #fdf7ed;
  box-shadow: var(--shadow);
}

.chat-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 110px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #201913;
}

.phone-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(15, 91, 80, 0.08);
}

.phone-header span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, #fff, transparent 24%),
    linear-gradient(135deg, var(--emerald), var(--gold));
}

.phone-header strong {
  line-height: 1.1;
}

.phone-header small {
  color: var(--emerald);
}

.message {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(47, 29, 12, 0.08);
}

.message-client {
  justify-self: end;
  color: var(--cream);
  border-bottom-right-radius: 5px;
  background: var(--emerald);
}

.message-ai {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: var(--cream);
}

.message.short {
  max-width: 48%;
}

.typing {
  display: flex;
  gap: 5px;
  width: max-content;
  padding: 13px 15px;
  border-radius: 18px;
  background: var(--cream);
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.typing span:nth-child(3) {
  animation-delay: 0.32s;
}

.ai-benefits span {
  color: var(--ink);
  border-color: rgba(32, 25, 19, 0.08);
  background: rgba(255, 248, 237, 0.72);
}

.plan-card {
  min-height: 250px;
}

.final-cta {
  width: min(1040px, calc(100vw - 32px));
  margin: 18px auto 104px;
  padding: clamp(34px, 7vw, 76px);
  text-align: center;
  border: 1px solid rgba(255, 248, 237, 0.72);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 150, 76, 0.24), transparent 20rem),
    linear-gradient(145deg, rgba(255, 248, 237, 0.84), rgba(255, 248, 237, 0.5));
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: rgba(32, 25, 19, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.feature-card:nth-child(2),
.plan-card:nth-child(2) {
  transition-delay: 0.06s;
}

.feature-card:nth-child(3),
.plan-card:nth-child(3) {
  transition-delay: 0.12s;
}

.feature-card:nth-child(4),
.plan-card:nth-child(4) {
  transition-delay: 0.18s;
}

.feature-card:nth-child(5) {
  transition-delay: 0.24s;
}

.feature-card:nth-child(6) {
  transition-delay: 0.3s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateX(-50%) translateY(-16px) rotate(2deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseHotspot {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .hero,
  .owner-panel,
  .ai-chat,
  .site-chat-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 580px;
  }

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

  .demo-shell {
    grid-template-columns: 1fr;
  }

  .site-window-body {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

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

  .demo-logo {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .demo-feed {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    margin-top: 10px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .plan-grid,
  .owner-dashboard,
  .demo-canvas,
  .demo-sidebar,
  .site-chat-layout {
    grid-template-columns: 1fr;
  }

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

  .showcase-card {
    inset: 18px 0 70px;
    border-radius: 34px;
  }

  .tour-sphere {
    width: 86%;
  }

  .floating-card {
    min-width: 124px;
    padding: 13px 14px;
  }

  .card-a {
    left: 0;
  }

  .card-b {
    right: 0;
    bottom: 18%;
  }

  .card-c {
    bottom: 4%;
    left: 2%;
  }

  .demo-section,
  .chat-site-section,
  .owner-section,
  .ai-section {
    padding-inline: 12px;
  }

  .demo-shell {
    padding: 10px;
    border-radius: 28px;
  }

  .demo-main,
  .demo-sidebar {
    padding: 14px;
  }

  .demo-topbar {
    display: grid;
  }

  .live-pill {
    width: max-content;
  }

  .owner-panel {
    padding: 24px;
    border-radius: 32px;
  }

  .chat-phone {
    min-height: 560px;
    border-width: 7px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
