:root {
  --bg: #f6efe7;
  --panel: rgba(255,255,255,.9);
  --text: #1f2521;
  --muted: #5e6962;
  --line: rgba(31,37,33,.12);
  --accent: #b85c38;
  --accent-dark: #924224;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  font: 16px/1.6 Georgia, "Times New Roman", serif;
  background:
    linear-gradient(180deg, rgba(184,92,56,.08), transparent 180px),
    linear-gradient(180deg, #faf6f1 0%, var(--bg) 100%);
}
a { color: inherit; }
.page { max-width: 1140px; margin: 0 auto; padding: 24px 22px 72px; }
.nav, .hero, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 50px rgba(31,37,33,.07);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 14px 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand a {
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(31,37,33,.08);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-title {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.links { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-switch { display: inline-flex; gap: 4px; }
.lang-switch .link {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
}
.link, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
}
.link:hover { background: rgba(184,92,56,.08); }
.link.active {
  background: rgba(184,92,56,.12);
  border-color: rgba(184,92,56,.24);
  color: var(--accent-dark);
  font-weight: 700;
}
.btn { border-color: var(--line); background: #fff; font-weight: 700; }
.btn.active {
  border-color: rgba(184,92,56,.32);
  color: var(--accent-dark);
  background: rgba(255,255,255,.94);
}
.btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.hero { padding: 34px; margin-bottom: 18px; }
.hero h1 { margin: 0 0 10px; font-size: 48px; line-height: 1.05; }
.lead { margin: 0; font-size: 20px; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.panel { padding: 24px; }
.panel h2 { margin: 0 0 10px; font-size: 26px; }
.panel p { margin: 0 0 10px; color: var(--muted); }
.mini { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); }
.shot-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, .9fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.shot-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
}
.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(31,37,33,.08);
}
.shot-card.is-phone img {
  max-width: 280px;
  margin: 0 auto;
}
.shot-caption {
  margin: 10px 4px 0;
  font-size: 15px;
  color: var(--muted);
}
.shot-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 20px;
  align-items: start;
}
.feature-copy ul {
  margin-top: 0;
}
.feature-shot {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
}
.feature-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(31,37,33,.08);
}
.downloads-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.download-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
}
.download-block-wide {
  grid-column: 1 / -1;
}
.download-block h2 { margin: 0 0 8px; font-size: 28px; }
.download-copy { margin: 0 0 14px; color: var(--muted); }
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.download-item:first-of-type { border-top: 0; padding-top: 6px; }
.download-item h3 { margin: 0 0 6px; font-size: 19px; }
.download-item p { margin: 0; }
.download-missing {
  color: var(--muted);
  white-space: nowrap;
}
.pro-gate { margin-top: 10px; }
.pro-gate-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.pro-gate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pro-gate-row input {
  flex: 1 1 240px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}
.download-actions { margin: 12px 0 6px; }
.status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.status-ok {
  background: #ecfdf3;
  border-color: #a7f3d0;
}
.status-warn {
  background: #fff7ed;
  border-color: #fdba74;
}
.download-hint {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  color: var(--muted);
}
.download-hint code {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.guide-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.guide-toc a:hover { background: rgba(184,92,56,.08); }
.guide-steps {
  display: grid;
  gap: 12px;
  margin: 16px 0 28px;
}
.guide-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
}
.guide-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.guide-step h3,
.guide-card h3 {
  margin: 0 0 6px;
  color: var(--text);
}
.guide-step p,
.guide-card p {
  margin: 0;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 16px 0 26px;
}
.guide-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
}
.guide-list {
  margin: 10px 0 24px;
  padding-left: 22px;
}
.guide-list li {
  margin-bottom: 8px;
  color: var(--muted);
}
.guide-list b,
.guide-card b,
.guide-step b {
  color: var(--text);
}
.guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  min-width: 1.35em;
  height: 1.35em;
  color: var(--accent-dark);
  vertical-align: -.22em;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.12em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}
@media (max-width: 720px) {
  .hero h1 { font-size: 38px; }
  .nav { padding: 14px; }
      .brand { width: 100%; }
      .links { width: 100%; }
      .link, .btn { flex: 1 1 auto; }
      .shot-showcase { grid-template-columns: 1fr; }
      .feature-showcase { grid-template-columns: 1fr; }
  .download-item { align-items: flex-start; flex-direction: column; }
  .download-missing { white-space: normal; }
  .guide-step { grid-template-columns: 34px minmax(0, 1fr); padding: 14px; }
  .guide-step-num { width: 30px; height: 30px; }
}
