:root {
  --bg: #140d08;
  --bg-2: #1d130c;
  --panel: #241710;
  --line: #3a261a;
  --ink: #f1e6d2;
  --ink-dim: #c4ac8c;
  --ink-faint: #8f7657;
  --flame: #e8902f;
  --flame-2: #f6b024;
  --ember: #c0571f;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: "Pirata One", "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h3 {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--flame); text-decoration: none; }
a:hover { color: var(--flame-2); }

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem clamp(1rem, 4vw, 2rem);
  background: rgba(16, 10, 6, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 1.7rem); }
.nav a { color: var(--ink-dim); font-size: 1rem; }
.nav a:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--small { padding: 0.4rem 0.95rem; font-size: 0.95rem; border-radius: 10px; }
.btn--steam {
  background: linear-gradient(180deg, var(--flame) 0%, var(--ember) 100%);
  color: #1a0f06;
  box-shadow: 0 8px 26px -10px rgba(232, 144, 47, 0.8);
}
.btn--steam:hover { color: #1a0f06; transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(246, 176, 36, 0.9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--ink); border-color: var(--flame); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3rem, 9vw, 7rem) 1.25rem clamp(3.5rem, 8vw, 6rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(232, 144, 47, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(20,13,8,0.35), rgba(20,13,8,0.92) 70%, var(--bg) 100%),
    url("assets/hero.png") center/cover no-repeat;
  filter: saturate(1.05);
}
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero__logo {
  width: min(540px, 86%);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.65));
}
.hero__tagline {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  color: var(--ink);
  margin: 0 auto 2rem;
  max-width: 32ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero__meta {
  margin-top: 1.6rem;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-faint);
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4.5rem) auto;
  padding: 0 1.25rem;
}
.feature {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.feature__icon { display: block; margin-bottom: 0.7rem; color: var(--flame); }
.feature__icon svg { width: 32px; height: 32px; }
.feature h3 { margin: 0 0 0.35rem; font-size: 1.3rem; color: var(--flame-2); }
.feature p { margin: 0; color: var(--ink-dim); font-size: 1.02rem; }

/* ---------- Screens ---------- */
.screens { max-width: var(--maxw); margin: clamp(3rem, 7vw, 5rem) auto; padding: 0 1.25rem; }
.screens h2, .how h2 { text-align: center; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 2rem; color: var(--ink); }
.screens__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.shot:hover { transform: translateY(-3px); border-color: var(--flame); }
.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.shot--wide { grid-column: 1 / -1; }

/* ---------- How ---------- */
.how {
  max-width: 760px;
  margin: clamp(3rem, 7vw, 5rem) auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}
.how__steps {
  counter-reset: step;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
}
.how__steps li {
  position: relative;
  padding: 0.9rem 0 0.9rem 3.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.how__steps li:last-child { border-bottom: 0; }
.how__steps li strong { color: var(--ink); }
.how__steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0.8rem;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  font-weight: 600;
  color: var(--flame-2);
  background: var(--bg);
  border: 1px solid var(--flame);
  border-radius: 50%;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  background: var(--bg-2);
}
.site-footer__logo { height: 34px; width: auto; margin: 0 auto 1rem; opacity: 0.9; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-bottom: 1rem; }
.site-footer__links a { color: var(--ink-dim); font-size: 1rem; }
.site-footer__links a:hover { color: var(--flame); }
.site-footer__copy { color: var(--ink-faint); font-size: 0.92rem; margin: 0; }

/* ---------- Privacy page ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem 4rem;
}
.legal__head { text-align: center; margin-bottom: 2.5rem; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin: 0 0 0.6rem; }
.legal__meta { color: var(--ink-faint); font-size: 0.95rem; font-style: italic; }
.legal__lead {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-left: 3px solid var(--flame);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-size: 1.7rem;
  color: var(--flame-2);
  margin: 2.4rem 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: 0.6rem; color: var(--ink-dim); }
.legal li strong { color: var(--ink); }
.legal p { color: var(--ink-dim); }
.legal .back { display: inline-block; margin-bottom: 1.5rem; font-size: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .screens__grid { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
}
