* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #14110e;
  --bg2: #1b1713;
  --panel: #221d18;
  --line: #38312a;
  --text: #ece5db;
  --muted: #a99e8f;
  --brick: #cf7f52;
  --brick-deep: #b4633a;
  --leaf: #7ba648;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(20, 17, 14, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 22px; font-size: 14.5px; }
.nav__links a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav__links a:hover { color: var(--text); }

.btn {
  display: inline-block;
  border: 1px solid var(--brick-deep);
  background: var(--brick-deep);
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
}
.btn:hover { background: var(--brick); border-color: var(--brick); }
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 7px 14px; }
.btn--lg { padding: 13px 26px; font-size: 16px; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--panel); border-color: var(--muted); }

main { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.hero {
  text-align: center;
  padding: 84px 0 40px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% 0 auto 0;
  height: 460px;
  background: radial-gradient(60% 70% at 50% 0%, rgba(207, 127, 82, 0.16), transparent 70%),
    radial-gradient(40% 60% at 70% 10%, rgba(123, 166, 72, 0.1), transparent 70%);
  z-index: -1;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid rgba(123, 166, 72, 0.35);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 750;
  margin: 0 auto 20px;
  max-width: 16ch;
}
.hero h1 .accent { color: var(--brick); }
.lead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 30px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }

.shot { margin-top: 46px; }
.shot img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.section { padding: 68px 0; border-top: 1px solid var(--line); }
.section h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 10px;
}
.section__sub { text-align: center; color: var(--muted); max-width: 56ch; margin: 0 auto 40px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.feature h3 { font-size: 17px; margin-bottom: 8px; color: var(--brick); }
.feature p { color: var(--muted); font-size: 15px; }

.how { text-align: center; }
.steps {
  list-style: none;
  counter-reset: step;
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 18px 14px 58px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
}
.steps li b { color: var(--text); font-weight: 600; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--brick-deep);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 28px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.footer__brand { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14.5px; }
.footer__brand a { color: var(--brick); text-decoration: none; }
.footer__brand a:hover { text-decoration: underline; }
.footer__links { display: flex; gap: 20px; font-size: 14px; }
.footer__links a { color: var(--muted); text-decoration: none; }
.footer__links a:hover { color: var(--text); }

@media (max-width: 620px) {
  .nav { padding: 12px 16px; }
  .nav__links { gap: 14px; }
  .nav__links a:not(.btn) { display: none; }
  .hero { padding-top: 54px; }
  .footer { flex-direction: column; text-align: center; }
}
