/* SN Dot-Walk pages — follows the Cajun Craft Software landing look:
   deep night ground, light weight type, single gold accent. */
:root {
  --ground: #06080f;
  --ground-2: #0b0f1a;
  --ink: #e9ebf1;
  --ink-2: #a3a9b8;
  --ink-3: #6d7384;
  --gold: #cfae66;
  --gold-2: #8e7a4c;
  --line: rgba(233, 235, 241, 0.09);
  --max: 62rem;
}
* { box-sizing: border-box; }
html { background: var(--ground); color: var(--ink); }
body {
  margin: 0;
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, var(--ground-2) 0%, var(--ground) 65%),
    var(--ground);
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.95rem; color: var(--ink-2);
}
.top .brand { color: var(--ink); letter-spacing: 0.02em; }
.top .brand span { color: var(--gold); }
.top nav a { color: var(--ink-2); margin-left: 1.5rem; }

.hero { text-align: center; padding: 5rem 0 3.5rem; }
.hero img { width: 72px; height: 72px; border-radius: 16px; margin-bottom: 1.5rem; }
h1 {
  font-weight: 200; font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 1rem;
}
.hero p { max-width: 34rem; margin: 0 auto; color: var(--ink-2); font-size: 1.2rem; }
.hero .cta { margin-top: 2.25rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.7rem 1.35rem; border-radius: 999px;
  border: 1px solid var(--gold-2); color: var(--gold); font-weight: 400;
}
.btn.solid { background: var(--gold); color: var(--ground); border-color: var(--gold); }
.btn:hover { text-decoration: none; border-color: var(--gold); }
.btn.solid:hover { background: #dcbd78; }
/* Store buttons before the listings exist: visible, not clickable. */
.btn.soon { cursor: default; opacity: 0.55; }
.btn.soon:hover { border-color: var(--gold-2); }
.btn.solid.soon:hover { background: var(--gold); }
.pending { color: var(--ink-3); font-size: 0.9rem; margin-top: 0.75rem; }

h2 { font-weight: 300; font-size: 1.55rem; margin: 0 0 0.5rem; }
h3 { font-weight: 400; font-size: 1.1rem; margin: 0 0 0.25rem; }

/* The story is a real sequence, so it is numbered. */
.story { padding: 3rem 0; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1rem 1.25rem;
  align-items: start; padding: 2.25rem 0;
}
.step + .step { border-top: 1px solid var(--line); }
.step .n { font-weight: 200; font-size: 2rem; color: var(--gold); line-height: 1; }
.step p { margin: 0.25rem 0 1.25rem; color: var(--ink-2); max-width: 40rem; }
.step figure { margin: 0; grid-column: 2; }
.step img {
  display: block; max-width: 100%; width: auto; height: auto;
  border: 1px solid var(--line); border-radius: 8px; background: var(--ground-2);
}
.step figcaption { color: var(--ink-3); font-size: 0.9rem; margin-top: 0.5rem; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--line); }
.two p { color: var(--ink-2); }
.trust ul { list-style: none; padding: 0; margin: 0.75rem 0 1rem; }
.trust li { padding: 0.35rem 0; font-size: 1.15rem; }
.trust li::before { content: "—"; color: var(--gold-2); margin-right: 0.6rem; }
.small { color: var(--ink-3); font-size: 0.95rem; }
ol.plain { padding-left: 1.2rem; color: var(--ink-2); }
ol.plain li { margin: 0.4rem 0; }
code { font-family: Consolas, "SFMono-Regular", Menlo, monospace; font-size: 0.92em; color: var(--ink); background: rgba(233,235,241,0.06); padding: 0.1em 0.35em; border-radius: 4px; }

.prose { max-width: 40rem; padding: 1rem 0 3rem; }
.prose p { color: var(--ink-2); }
.prose h2 { margin-top: 2rem; }

.feedback { padding: 3rem 0; border-top: 1px solid var(--line); max-width: 40rem; }
.feedback p { color: var(--ink-2); }
.feedback .small { color: var(--ink-2); }

footer { border-top: 1px solid var(--line); padding: 2rem 0 3rem; color: var(--ink-3); font-size: 0.9rem; }
footer p { margin: 0.25rem 0; }

@media (max-width: 720px) {
  .two { grid-template-columns: 1fr; gap: 2rem; }
  .step { grid-template-columns: 2.25rem 1fr; }
  .hero { padding: 3.5rem 0 2.5rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: rise 600ms ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
}
