.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #10140f;
  font-weight: 800;
}

.button-secondary {
  border-color: var(--border);
  color: var(--cream);
  background: rgba(255,255,255,.02);
}

.full-width {
  width: 100%;
}

.hero-machine {
  display: flex;
  justify-content: center;
}

.computer {
  width: 330px;
}

.computer-top {
  position: relative;
  padding: 36px 28px 72px;
  background: linear-gradient(145deg, #eadfbe, #c6b58e);
  border-radius: 28px 28px 20px 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}

.computer-screen-frame {
  padding: 16px;
  background: #262b27;
  border-radius: 16px;
}

.computer-screen {
  min-height: 220px;
  padding: 22px;
  border-radius: 10px;
  background: radial-gradient(circle, #17351a, #071009 70%);
  box-shadow: inset 0 0 50px rgba(141,240,109,.14);
}

.terminal {
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.8;
  text-shadow: 0 0 8px rgba(141,240,109,.4);
}

.terminal-line {
  margin: 0;
}

.terminal-line.muted {
  color: #76916f;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-top: 5px;
  background: var(--green);
}

.computer-logo {
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
  color: #504c43;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: bold;
}

.computer-slot {
  position: absolute;
  right: 35px;
  bottom: 25px;
  width: 55px;
  height: 5px;
  background: rgba(0,0,0,.25);
  border-radius: 10px;
}

.computer-base {
  width: 86%;
  height: 48px;
  margin: 0 auto;
  background: #bdae8d;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
}

.visi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.visi-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--border-green);
  font-weight: 800;
}

.visi-header strong {
  display: block;
}

.visi-header span {
  color: var(--text-muted);
  font-size: 11px;
}

.visi-online {
  margin-left: auto;
  color: var(--green);
  font-family: monospace;
  font-size: 10px;
}

.visi-message {
  margin: 28px 0;
}

.muted {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 47px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #0b0e0b;
  color: var(--text);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
}

.preview-toolbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #0b0e0b;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  background: #4d544b;
  border-radius: 50%;
}

.preview-url {
  margin: 0 auto;
  color: var(--text-muted);
  font-family: monospace;
  font-size: 10px;
}

.preview-live {
  color: var(--green);
  font-family: monospace;
  font-size: 10px;
}

.website-preview {
  min-height: 520px;
  background: linear-gradient(180deg, #f4efdf, #e7dcc0);
  color: #171813;
}

.demo-nav {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.demo-logo {
  font-weight: 800;
}

.demo-links {
  display: flex;
  gap: 24px;
  color: #555;
  font-size: 12px;
}

.demo-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 55px;
  background: linear-gradient(125deg, #ece7dc, #d9cfb9);
}

.demo-hero > div {
  max-width: 500px;
}

.demo-tag {
  font-size: 10px;
  letter-spacing: .14em;
  color: #62665e;
}

.demo-hero h3 {
  margin: 10px 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.05em;
}

.demo-hero p {
  color: #5e625a;
  line-height: 1.6;
}

.demo-button {
  margin-top: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: #171917;
  color: white;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 28px 40px;
}

.demo-stats div {
  display: flex;
  flex-direction: column;
}

.demo-stats strong {
  font-size: 22px;
}

.demo-stats span {
  margin-top: 4px;
  color: #777;
  font-size: 11px;
}
