:root {
  --bg: #171210; --panel: #211a16; --ink: #f3ece1; --muted: #b8a894;
  --gold: #e8a33d; --line: #3a2f27;
  --hero-img: radial-gradient(ellipse at 30% 20%, #4a2f18, #171210 70%);
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font: 17px/1.6 Georgia, 'Times New Roman', serif; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { line-height: 1.15; font-weight: normal; }
h2 { font-size: 2rem; margin: 0 0 1rem; color: var(--gold); }
p { margin: 0 0 1rem; }
a { color: var(--gold); }
section { padding: 72px 0; border-top: 1px solid var(--line); }

.hero { min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  background: var(--hero-img) center/cover no-repeat; border-top: none; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,18,16,.55), rgba(23,18,16,.85)); }
.hero .wrap { position: relative; z-index: 1; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 1rem; }
.hero .lead { max-width: 42rem; font-size: 1.15rem; color: var(--ink); margin-bottom: 2rem; }

.btn { display: inline-block; background: var(--gold); color: #1c1712; padding: 14px 28px;
  text-decoration: none; font-family: inherit; font-size: 1rem; border: none; cursor: pointer; }
.btn:hover { filter: brightness(1.1); }
.ghost { margin-left: 16px; color: var(--muted); }

.benefits { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 1.5rem 0; }
.benefits li { background: var(--panel); padding: 20px; border-left: 3px solid var(--gold); }

.steps { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; counter-reset: step; margin: 1rem 0 1.5rem; }
.steps li { counter-increment: step; background: var(--panel); padding: 12px 16px; }
.steps li::before { content: counter(step) ' · '; color: var(--gold); }

.funding { background: var(--panel); border: 1px solid var(--gold); padding: 20px 24px; max-width: 46rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--panel); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #241c17; }
.card figcaption { padding: 14px 16px; color: var(--muted); font-size: .95rem; }
.card b { color: var(--ink); }

form { display: grid; gap: 14px; max-width: 40rem; }
label { display: grid; gap: 6px; font-size: .95rem; color: var(--muted); }
input, textarea { background: var(--panel); border: 1px solid var(--line); color: var(--ink);
  padding: 12px; font: inherit; }
input:focus, textarea:focus { outline: 1px solid var(--gold); }

.pdf-row { margin-top: 2rem; }
.pdf-row a { margin-right: 18px; }
footer { padding: 40px 0 60px; color: var(--muted); border-top: 1px solid var(--line); }
.lang { position: absolute; top: 24px; right: 24px; z-index: 3; }
.brand { position: absolute; top: 16px; left: 24px; z-index: 3; line-height: 0; }
.brand img { height: 92px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)); }

.feature { grid-column: 1 / -1; }
.feature > img { aspect-ratio: 21/9; }
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 4px; }
.feature-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.badge { display: inline-block; background: var(--gold); color: #1c1712; font-size: .8rem;
  padding: 2px 10px; letter-spacing: .08em; text-transform: uppercase; margin-right: 8px; }
.about-flex { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.portrait { width: 180px; border-radius: 4px; }
.about-flex > div { flex: 1; min-width: 260px; }

@media (max-width: 600px) {
  section { padding: 48px 0; }
  .ghost { display: block; margin: 12px 0 0; }
  .brand img { height: 64px; }
  .feature-row { grid-template-columns: 1fr 1fr; }
}
