:root {
  --ink: #171c1b;
  --muted: #66706d;
  --line: #dce2dc;
  --paper: #f8f5ef;
  --surface: #ffffff;
  --accent: #0c6f5a;
  --accent-2: #dd553a;
  --accent-3: #263e7c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

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

.demo-shell {
  min-height: 100vh;
}

.demo-header {
  align-items: center;
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid rgba(23, 28, 27, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.demo-brand {
  font-weight: 900;
}

.demo-nav {
  align-items: center;
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.demo-nav .demo-button {
  color: white;
}

.demo-button {
  background: var(--accent-2);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
}

.demo-hero {
  display: grid;
  gap: clamp(28px, 5vw, 74px);
  grid-template-columns: 1fr 0.85fr;
  padding: clamp(54px, 8vw, 106px) clamp(18px, 6vw, 82px);
}

.demo-eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 1.05;
}

.demo-lead {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 620px;
}

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

.demo-secondary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  min-height: 44px;
  padding: 12px 16px;
}

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

.demo-proof div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.demo-proof strong {
  display: block;
  font-size: 1.08rem;
}

.demo-proof span {
  color: var(--muted);
  font-size: 0.85rem;
}

.demo-visual {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(12, 111, 90, 0.1), rgba(221, 85, 58, 0.1)),
    var(--surface);
  border: 1px solid rgba(23, 28, 27, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(23, 28, 27, 0.16);
  overflow: hidden;
}

.visual-photo {
  background:
    linear-gradient(135deg, rgba(38, 62, 124, 0.75), rgba(12, 111, 90, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 18px);
  min-height: 220px;
}

.landscape-demo {
  --accent: #2f6d3d;
  --accent-2: #c96a34;
  --accent-3: #245c79;
}

.landscape-visual .visual-photo {
  background:
    linear-gradient(180deg, #9fd3e7 0 44%, #7cad57 45% 100%);
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.landscape-visual .visual-photo span {
  position: absolute;
}

.sun {
  background: #ffd25a;
  border-radius: 999px;
  box-shadow: 0 0 0 18px rgba(255, 210, 90, 0.16);
  height: 54px;
  right: 34px;
  top: 30px;
  width: 54px;
}

.yard-line {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  height: 10px;
  transform: rotate(-8deg);
}

.line-a {
  bottom: 74px;
  left: -20px;
  width: 72%;
}

.line-b {
  bottom: 108px;
  left: 14px;
  width: 62%;
}

.line-c {
  bottom: 42px;
  right: -16px;
  width: 70%;
}

.plant {
  background: #285b39;
  border-radius: 999px 999px 10px 10px;
  bottom: 82px;
  height: 64px;
  width: 42px;
}

.plant-a {
  left: 48px;
}

.plant-b {
  left: 104px;
  transform: scale(0.82);
}

.path-stone {
  background: #d8d0bd;
  border: 2px solid rgba(23, 28, 27, 0.12);
  border-radius: 45% 55% 48% 52%;
  height: 40px;
  width: 72px;
}

.stone-a {
  bottom: 28px;
  left: 44%;
}

.stone-b {
  bottom: 54px;
  left: 58%;
  transform: rotate(-8deg) scale(0.9);
}

.stone-c {
  bottom: 86px;
  left: 70%;
  transform: rotate(10deg) scale(0.78);
}

.visual-body {
  padding: 22px;
}

.visual-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.visual-list div {
  align-items: center;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.demo-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 6vw, 82px);
}

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

.card,
.quote-panel {
  background: white;
  border: 1px solid rgba(23, 28, 27, 0.1);
  border-radius: 8px;
  padding: 22px;
}

.card p,
.quote-panel p {
  color: var(--muted);
}

.split-section {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.92fr 1.08fr;
}

.quote-panel {
  align-self: start;
  background: #17201c;
  color: white;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.field-grid {
  display: grid;
  gap: 10px;
}

.field-grid input,
.field-grid textarea {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  padding: 12px 14px;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.demo-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px clamp(18px, 6vw, 82px);
}

@media (max-width: 860px) {
  .demo-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .cards,
  .demo-proof {
    grid-template-columns: 1fr;
  }

  .demo-nav a:not(.demo-button) {
    display: none;
  }
}
