/* Set 3: warm stacked full-width bands, square buttons, numbered steps */
:root {
  --bg: #faf6f0;
  --ink: #3d2a1b;
  --muted: #6b5340;
  --brand: #c45c26;
  --brand-2: #8d3d12;
  --band: #f0e2d0;
  --deep: #4a2c17;
  --line: #e0cbb3;
  --paper: #fffdf9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.8 "Palatino Linotype", "STSong", "SimSun", "Microsoft YaHei", serif;
}
a { color: var(--brand-2); }
.top {
  background: var(--deep);
  color: #f8eadc;
}
.top-inner, .band-inner, .foot-inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}
.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
}
.brand {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav { display: flex; gap: 4px; }
.nav a {
  color: #f8eadc;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
}
.nav a.current { border-color: #e7b48a; background: #5d381d; }
.hero.band {
  background: #c45c26;
  color: #fffaf4;
  text-align: center;
  padding: 48px 0 52px;
}
h1 { font-size: 34px; margin: 0 0 14px; }
h2 { font-size: 26px; margin: 0 0 14px; color: var(--brand-2); }
.hero h2 { color: #fff; }
.lead { max-width: 46em; margin: 0 auto 22px; font-size: 18px; }
.btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 0;
}
.btn-win { background: #2f6b3a; color: #fff; }
.btn-mac { background: #fff; color: var(--brand-2); }
.btn-ios, .btn-and { background: transparent; color: #fff; border: 1px solid #fff; }
.band { padding: 42px 0; }
.band.cream { background: var(--paper); }
.band.sand { background: var(--band); }
.band.white { background: #fff; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pair {
  border-top: 2px solid var(--brand);
  padding-top: 10px;
}
.steps { counter-reset: step; padding: 0; margin: 0; list-style: none; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.steps li::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid var(--line); padding: 10px; text-align: left; }
th { background: var(--deep); color: #fff; }
.faq-list details { display: block; margin-bottom: 12px; }
.faq-list h3 { font-size: 18px; margin: 0 0 6px; }
.site-footer { background: var(--deep); color: #ecdccb; padding: 28px 0; }
.foot-nav { display: flex; gap: 16px; margin: 8px 0 12px; }
.foot-nav a { color: #ecdccb; text-decoration: none; }
.fine { font-size: 13px; }
@media (max-width: 800px) {
  .top-inner { flex-direction: column; padding: 12px 0; gap: 8px; }
  .split { grid-template-columns: 1fr; }
}
