/* The Unclaimed Self | Shadow & Authenticity
   Static landing page. No external requests: no web fonts, no scripts,
   no analytics. That is a product claim, so the page has to honour it. */

:root {
  --ink:        #17140f;
  --ink-soft:   #3a342b;
  --muted:      #6a6255;
  --rule:       #d8d0c1;
  --paper:      #f4f1ea;
  --paper-warm: #ebe6da;
  --gold:       #a97d2e;
  --gold-lift:  #c39a4d;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
           Helvetica, Arial, sans-serif;

  --measure: 34rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap.narrow { max-width: 42rem; }

p { margin: 0 0 1.1em; }
a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

h1, h2, h3 { font-weight: 400; line-height: 1.2; margin: 0 0 0.6rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2rem;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-top: 0.85rem;
  opacity: 0.7;
}

/* ---------- hero ---------- */

.hero {
  text-align: center;
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--rule);
}

.mark {
  width: 132px;
  height: auto;
  display: block;
  margin: 0 auto 1.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 2.5rem;
}
.tagline::before, .tagline::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  vertical-align: 0.28em;
  opacity: 0.65;
}
.tagline::before { margin-right: 1rem; }
.tagline::after  { margin-left: 1rem; }

.lede {
  max-width: var(--measure);
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.cta-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border: 1px solid var(--ink);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--paper-warm); }

.btn-lg { padding: 1.15rem 2.4rem; font-size: 0.9rem; }
.btn-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* ---------- video ---------- */

.film {
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem 0;
}
.film .eyebrow { color: #a49a89; }
.film .eyebrow::after { background: var(--gold-lift); }

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d0b09;
  border: 1px solid #2c261d;
}
.player video {
  width: 100%;
  height: 100%;
  display: block;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: #0d0b09;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--paper);
}
.player.is-playing .player-cover { display: none; }

.play-ring {
  width: 76px;
  height: 76px;
  border: 1px solid var(--gold-lift);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, transform .2s ease;
}
.player-cover:hover .play-ring { background: rgba(195,154,77,0.14); transform: scale(1.05); }

.play-tri {
  width: 0; height: 0;
  border-left: 17px solid var(--gold-lift);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}

.play-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9c9282;
}

/* ---------- orientation essay ---------- */

.essay { padding: 5rem 0 4.5rem; }
.essay > .wrap > p { color: var(--ink-soft); }

.essay blockquote {
  margin: 2.5rem 0;
  padding: 0 0 0 1.75rem;
  border-left: 2px solid var(--gold);
  font-size: 1.32rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}

.essay h2 {
  font-size: clamp(1.5rem, 3.4vw, 1.95rem);
  margin-top: 3.25rem;
  margin-bottom: 0.75rem;
}
.essay-lead { color: var(--muted); font-style: italic; margin-bottom: 2rem; }

.tells { list-style: none; margin: 0; padding: 0; }
.tells li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.tells li:last-child { border-bottom: 1px solid var(--rule); }
.tells strong {
  display: block;
  font-weight: 400;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.essay-close { margin-top: 2.5rem; color: var(--ink-soft); }

/* ---------- steps ---------- */

.steps { padding: 5rem 0 4rem; }

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.step-list li { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--rule); }

.num {
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.step-list h2 { font-size: 1.45rem; padding-right: 3rem; }
.step-list p { margin: 0; color: var(--ink-soft); }

.steps-after {
  max-width: var(--measure);
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-style: italic;
}

/* ---------- claims ---------- */

.claims {
  background: var(--paper-warm);
  padding: 4.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.claim-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.claim h3 {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.claim h3::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}
.claim p { margin: 0; color: var(--ink-soft); }

/* ---------- plainly ---------- */

.plainly { padding: 4.5rem 0; text-align: center; }
.plainly .eyebrow { display: inline-block; }
.plainly .eyebrow::after { margin-left: auto; margin-right: auto; }
.plainly h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1.2rem; }
.plainly p { color: var(--ink-soft); }

.crisis {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--rule);
  background: var(--paper-warm);
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.crisis strong { color: var(--ink); }

/* ---------- download ---------- */

.download {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 0;
}
.download .eyebrow { color: #a49a89; }
.download .eyebrow::after { background: var(--gold-lift); }
.download h2 { font-size: clamp(1.8rem, 4vw, 2.3rem); margin-bottom: 1.1rem; }
.download > .wrap > p { color: #c6bdac; }

.warnbox {
  margin: 2.5rem 0;
  padding: 1.75rem 1.9rem;
  border: 1px solid #3a3226;
  border-left: 3px solid var(--gold-lift);
  background: #1f1a14;
}
.warnbox h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lift);
  margin-bottom: 1rem;
}
.warnbox p { color: #c6bdac; font-size: 0.99rem; }
.warnbox p:last-child { margin-bottom: 0; }
.warnbox strong { color: var(--paper); }

.download .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.download .btn-primary:hover { background: var(--gold-lift); border-color: var(--gold-lift); color: var(--ink); }

.dl-row { margin: 0 0 1.4rem; }

.dl-note {
  font-size: 0.92rem;
  color: #a49a89;
  max-width: 36rem;
}
.dl-note a { color: var(--gold-lift); }
.dl-note a:hover { color: var(--paper); }
.dl-note code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.86em;
  background: #241e17;
  padding: 0.12em 0.4em;
  color: #d9d0bf;
  /* A SHA-256 is sixty four characters with nothing to break on, so without
     this it runs straight off the side of a phone and takes the page's
     horizontal scroll with it. */
  overflow-wrap: anywhere;
}

/* ---------- tell ---------- */

.tell { padding: 4.5rem 0; text-align: center; }
.tell h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.tell p { color: var(--ink-soft); }
.known { color: var(--muted); font-size: 0.95rem; font-style: italic; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 3.5rem;
  text-align: center;
}
.foot-mark {
  width: 52px;
  margin: 0 auto 1.25rem;
  display: block;
  opacity: 0.75;
}
.foot-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.foot-title span { color: var(--gold); margin: 0 0.35rem; }
.foot-contact { font-family: var(--sans); font-size: 0.86rem; margin-bottom: 1.6rem; }
.foot-legal {
  font-family: var(--sans);
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}

/* ---------- narrow ---------- */

@media (max-width: 46rem) {
  .step-list, .claim-grid { grid-template-columns: minmax(0, 1fr); }
  .step-list { gap: 2rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .mark { width: 104px; }
  .lede { font-size: 1.08rem; }
  .btn { display: block; text-align: center; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .warnbox { padding: 1.35rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
