:root {
  --bg: #faf7f2;
  --bg-alt: #ffffff;
  --ink: #2b2420;
  --ink-soft: #5c534b;
  --accent: #a45c3c;
  --accent-dark: #7c4128;
  --line: #e7ded2;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--accent-dark); }

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

/* Header */
header.site {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.brand-text .studio {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
  display: block;
}

.brand-text .app {
  font-size: 19px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

nav.site a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

nav.site a:hover { color: var(--accent-dark); }

/* Hero */
.hero {
  padding: 64px 0 48px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero .wrap > * {
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3e6;
  border: 1px solid #f0d5b8;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 46ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(124, 65, 40, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

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

.hero-shot picture {
  width: 100%;
  max-width: 260px;
  display: block;
}

.hero-shot img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* Sections */
section {
  padding: 56px 0;
}

section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.section-lead {
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 60ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.about-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

section.alt .about-card { background: var(--bg); }

.about-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.about-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f4e9dd;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 15.5px;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.feature.premium {
  border-color: #e9cfa8;
  background: #fffaf3;
}

.premium-heading {
  margin: 32px 0 18px;
  font-size: 16px;
  color: var(--accent-dark);
}

/* Changelog */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.changelog-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.changelog-item:first-child { border-top: none; }

.changelog-version {
  flex-shrink: 0;
  width: 64px;
  font-weight: 700;
  color: var(--accent-dark);
}

.changelog-item h3 {
  margin: 0 0 4px;
  font-size: 15.5px;
}

.changelog-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* Screenshots */
.shot-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
}

.shot-scroll picture {
  scroll-snap-align: start;
  width: 200px;
  flex-shrink: 0;
  display: block;
}

.shot-scroll img {
  width: 200px;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Status / testing */
.status-box {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.status-box h3 {
  margin-top: 0;
  font-size: 17px;
}

.status-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.status-steps li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.status-steps li:first-child { border-top: none; }

.status-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-steps a { font-weight: 600; }

.note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: #f4efe6;
  border-radius: 10px;
  padding: 12px 14px;
}

/* Contact */
.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.contact-box h3 { margin: 0 0 6px; font-size: 18px; }
.contact-box p { margin: 0; color: var(--ink-soft); }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-alt);
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

footer.site a { color: var(--ink-soft); }

/* Privacy page */
.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.policy h1 { font-size: 30px; }
.policy .effective { color: var(--ink-soft); margin-bottom: 32px; }
.policy h2 { font-size: 20px; margin-top: 36px; }
.policy p { color: var(--ink-soft); }
.policy hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* Responsive */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-shot { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  nav.site { display: none; }
}
