:root {
  --black: #000;
  --panel: #111;
  --line: #2a2a2a;
  --white: #fff;
  --mute: #9ca3af;
  --gold: #eab308;
  --gold-ink: #111;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--black); color: var(--white); }

body {
  font-family: Manrope, system-ui, sans-serif;
  padding-bottom: 5.5rem;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,.92);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.topnav a { color: var(--mute); text-decoration: none; }
.topnav a.is-on, .topnav a:hover { color: var(--white); }

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--gold-ink) !important;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.gold-btn.lg { padding: 0.85rem 1.25rem; font-size: 0.95rem; width: fit-content; }

.ghost-btn {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero.tight { grid-template-columns: 1fr; margin-bottom: 1.5rem; }

.kicker {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 { font-size: 1.7rem; font-weight: 700; line-height: 1.15; }

.lede {
  margin-top: 0.9rem;
  color: var(--mute);
  line-height: 1.65;
  max-width: 36rem;
}

.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-actions.bottom { margin: 2.5rem 0 1rem; }

.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: var(--panel);
}

.hero-photo img { min-height: 420px; }

.hero-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0,0,0,.7);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  color: var(--mute);
}

.section-label { font-weight: 700; margin: 0 0 0.9rem; }

.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.cat {
  position: relative;
  min-height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
}

.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%);
}

.cat span { position: relative; }

.stuck {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
  background: var(--gold);
  color: var(--gold-ink);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.stuck strong { font-size: 1.05rem; }
.stuck span { font-weight: 600; opacity: 0.8; }

.join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}

form label {
  display: block;
  margin: 0.85rem 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--line);
  color: var(--white);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

form button { margin-top: 1.1rem; }
.ok { color: var(--gold); margin-bottom: 0.5rem; }
.bad { color: #f87171; margin-bottom: 0.5rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}

.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse img { order: 2; }
.split img { border-radius: 20px; min-height: 280px; background: var(--panel); }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.chips span {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mute);
}
.chips span.on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}

.flow-ui {
  margin-top: 1rem;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1rem;
}
.flow-ui span { color: var(--gold); font-size: 0.75rem; font-weight: 700; }
.flow-ui strong { display: block; margin-top: 0.35rem; }

.meta-block {
  background: var(--panel);
  border-radius: 20px;
  padding: 1.4rem;
  margin-top: 1rem;
}

.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  padding: 0.45rem 0.4rem 0.7rem;
  z-index: 30;
}
.tabbar a {
  color: var(--mute);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 0;
}
.tabbar a.is-on, .tabbar .tab-shoot { color: var(--gold); }

.foot {
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 0.72rem;
  padding: 0 0 0.5rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.plan.featured {
  border-color: var(--gold);
  background: #16140a;
}
.plan .name { font-weight: 700; font-size: 0.95rem; }
.plan .price { font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; }
.plan .each { color: var(--mute); font-size: 0.82rem; }
.plan ul {
  margin: 0.7rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--mute);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}
.plan .gold-btn { width: 100%; }
.note { color: var(--mute); font-size: 0.85rem; line-height: 1.6; }

@media (max-width: 1100px) {
  .plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .hero, .join, .split, .split.reverse, .plans { grid-template-columns: 1fr; }
  .split.reverse img { order: 0; }
  .cats { grid-template-columns: 1fr 1fr; }
  .topnav { flex-wrap: wrap; justify-content: flex-end; }
  .hero-photo, .hero-photo img { min-height: 280px; }
  .stuck { flex-direction: column; align-items: flex-start; }
}
