:root {
  --bg: #0d1117;
  --bg-2: #161b22;
  --gold: #c9ad7c;
  --gold-soft: #d8c197;
  --white: #ffffff;
  --text: #d8d8e0;
  --muted: #8b909a;
  --border: rgba(201, 173, 124, 0.2);
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ───────────── Profile-style header (banner + PFP + brand) ───────────── */

.profile-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px; /* clean black header, no banner */
  margin-bottom: 16px;
}

.pfp-wrap {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--bg);
  padding: 5px;
  box-shadow: 0 0 0 3px rgba(201, 173, 124, 0.45),
              0 8px 24px rgba(0, 0, 0, 0.6);
}

.pfp-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.brand-block.plain { padding-top: 44px; }
.brand-block {
  text-align: center;
  padding: 18px 22px 0;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.brand-name {
  font-family: "Palatino", "Palatino Linotype", Georgia, serif;
  color: var(--gold);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.bio {
  margin: 22px auto 0;
  max-width: 640px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ───────────── Body container ───────────── */

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 22px 64px;
}

h1 {
  font-family: "Palatino", "Palatino Linotype", Georgia, serif;
  color: var(--white);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
  font-weight: 700;
}

.subhead {
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 32px;
}

ul.bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

ul.bullets li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
ul.bullets li:last-child { border-bottom: none; }
ul.bullets li::before {
  content: "→";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
}

form.capture {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 18px;
}

form.capture label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 6px;
}

form.capture input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.15s;
}
form.capture input:focus { border-color: var(--gold); }

button.cta,
a.cta {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 16px 20px;
  background: var(--gold);
  color: #14110a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
button.cta:hover,
a.cta:hover { background: var(--gold-soft); }
button.cta:active,
a.cta:active { transform: scale(0.99); }

.social-proof {
  text-align: center;
  color: var(--gold);
  font-style: italic;
  font-size: 15px;
  margin-top: 14px;
}

.fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .profile-header { padding-top: 28px; margin-bottom: 12px; }
  .pfp-wrap {
    width: 112px; height: 112px;
    padding: 4px;
  }
  .brand-block.plain { padding-top: 44px; }
.brand-block { padding: 14px 18px 0; }
  .brand-name { font-size: 44px; }
  .bio { font-size: 15px; }
  h1 { font-size: 28px; }
  .container { padding: 0 18px 56px; }
}
