:root {
  --bg: #FAF7F2;
  --bg-elevated: #F1EAE0;
  --border: #E2D8C7;
  --text: #1F1B16;
  --text-secondary: #6B6053;
  --accent: #C2622A;
  --accent-text: #FFFFFF;
  --success: #2F7D4F;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

nav.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 15px;
}

nav.site-nav a {
  color: var(--text-secondary);
}

nav.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

main {
  padding: 64px 0 96px;
}

.hero {
  text-align: center;
  padding: 24px 0 56px;
}

.hero .icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(31, 27, 22, 0.15);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero p.subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text) !important;
}

.btn-primary:hover {
  opacity: 0.92;
  text-decoration: none;
}

section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shots figure {
  margin: 0;
  text-align: center;
}

.shots img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(31, 27, 22, 0.1);
}

.shots figcaption {
  margin-top: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 15px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.feature p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
}

.pricing-note {
  text-align: center;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.pricing-note strong {
  color: var(--text);
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

footer.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .foot-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}

footer .foot-links a {
  color: var(--text-secondary);
}

footer .copyright {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Legal / support pages */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.doc h1 {
  font-size: 32px;
  margin-bottom: 4px;
}

.doc .updated {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}

.doc h2 {
  font-size: 18px;
  margin-top: 36px;
  margin-bottom: 8px;
}

.doc p, .doc li {
  color: var(--text);
  font-size: 16px;
}

.doc ul {
  padding-left: 20px;
}

.support-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  margin: 32px 0;
}

.support-box .email {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  display: inline-block;
}

@media (max-width: 720px) {
  .shots, .features {
    grid-template-columns: 1fr;
  }
  nav.site-nav {
    gap: 16px;
    font-size: 14px;
  }
}
