* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --text: #e5e5e5;
  --dim: #6b6b6b;
  --accent: #ff5d8f;
  --line: #1a1a1a;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

header {
  padding: 24px 32px;
}

.logo {
  height: 56px;
  width: auto;
  display: block;
}

main {
  display: flex;
  gap: 64px;
  padding: 64px 32px 96px;
  align-items: flex-start;
}

.content {
  max-width: 480px;
  flex: 1 1 480px;
}

.shot {
  flex: 0 0 auto;
}

.shot img {
  width: 360px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.shot-placeholder {
  width: 360px;
  height: 800px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
}

@media (max-width: 900px) {
  main { flex-direction: column; }
  .shot img, .shot-placeholder { width: 100%; max-width: 360px; }
}

.hero {
  margin-bottom: 48px;
}

h1 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

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

.accent {
  color: var(--accent);
}

.content section {
  margin-bottom: 48px;
}

.screenshot-frame { display: none; }

h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}

.screenshot-frame {
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 80px 24px;
  color: var(--dim);
}

.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  background: #141414;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px;
  border-radius: 4px;
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  color: var(--text);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

button.btn {
  align-self: flex-start;
}

footer {
  max-width: 480px;
  margin: 0;
  padding: 32px;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  color: var(--text);
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--text);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}
