/* Fisher site — keep the water palette, skip the SaaS template look */

:root {
  --bg: #0c1a1a;
  --bg-2: #122424;
  --card: #163030;
  --ink: #e8f0ec;
  --ink-soft: #a8c0b6;
  --muted: #6f8a80;
  --accent: #3d9b7a;
  --accent-bright: #5bc49a;
  --accent-dim: #2a6b55;
  --sand: #d4b896;
  --line: rgba(232, 240, 236, 0.1);
  --max: 640px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  /* system fonts — less “designed product,” more personal page */
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* soft water wash, not a perfect mesh grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 0% 0%, rgba(61, 155, 122, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(61, 155, 122, 0.08), transparent 45%),
    radial-gradient(ellipse 70% 30% at 40% 100%, rgba(212, 184, 150, 0.05), transparent 50%);
}

.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.35rem 3.5rem;
}

/* ── header ── */

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo img {
  border-radius: 50%;
  display: block;
}

.logo:hover {
  color: var(--accent-bright);
}

.top nav {
  display: flex;
  gap: 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
}

.top nav a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.top nav a:hover {
  color: var(--sand);
  border-bottom-color: var(--sand-dim, var(--sand));
}

/* ── hero ── */

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.tag {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.links {
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem 1.25rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.98rem;
}

.invite {
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  /* slightly uneven corners — not a perfect pill */
  border-radius: 4px 10px 5px 9px;
  box-shadow: 2px 3px 0 var(--accent-dim);
}

.invite:hover {
  background: var(--accent-bright);
  color: #041510;
  box-shadow: 3px 4px 0 var(--accent-dim);
}

.skip {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--muted);
}

.skip:hover {
  color: var(--sand);
  border-bottom-color: var(--sand);
}

/* sticky-note style catch preview */
.note {
  margin: 0.5rem 0 0 auto;
  max-width: 20rem;
  padding: 1rem 1.1rem 1.1rem;
  background: var(--card);
  border: 1px solid rgba(61, 155, 122, 0.35);
  border-left: 3px solid var(--accent);
  /* tiny tilt */
  transform: rotate(-1.2deg);
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.note-label {
  margin: 0 0 0.45rem;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sand);
}

.note-cmd {
  margin: 0 0 0.35rem;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: var(--accent-bright);
}

.note-title {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.note-desc {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.note-meta {
  margin: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── wavy rule ── */

hr.wavy {
  border: none;
  height: 12px;
  margin: 2.4rem 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M0 7 Q10 2 20 7 T40 7 T60 7 T80 7 T100 7 T120 7' fill='none' stroke='%233d9b7a' stroke-opacity='0.45' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 120px 12px repeat-x;
  opacity: 0.9;
}

/* ── sections ── */

section h2 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

.aside-text {
  margin: 1.25rem 0 0;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent-dim);
  color: var(--muted);
  font-size: 1rem;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.86em;
  color: var(--accent-bright);
  background: rgba(61, 155, 122, 0.1);
  padding: 0.08em 0.32em;
  border-radius: 3px;
}

/* how-to list — plain numbered, not card grid */

.how {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--ink-soft);
}

.how li {
  margin-bottom: 1rem;
  padding-left: 0.25rem;
}

.how li::marker {
  color: var(--accent);
  font-weight: 700;
}

/* spots — list, not 6 identical cards */

.spots {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spots li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name meta"
    "desc desc";
  gap: 0.15rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(168, 192, 182, 0.18);
}

.spots li:first-child {
  border-top: 1px dashed rgba(168, 192, 182, 0.18);
}

.spots strong {
  grid-area: name;
  font-size: 1.05rem;
  color: var(--ink);
}

.spots .meta {
  grid-area: meta;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--sand);
  white-space: nowrap;
  align-self: center;
}

.spots .desc {
  grid-area: desc;
  color: var(--muted);
  font-size: 0.98rem;
}

.spots li.special strong {
  color: var(--sand);
}

/* rarity — simple stacked lines */

.rarity-block {
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  /* hand-ish corners */
  border-radius: 2px 12px 3px 10px;
}

.rarity-block p {
  margin: 0.4rem 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.rarity-block em {
  font-style: normal;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.c-common { color: #9aa8a0; }
.c-uncommon { color: #5bc49a; }
.c-rare { color: #6aa8d4; }
.c-epic { color: #a88ad4; }
.c-legendary { color: var(--sand); }
.c-mythic { color: #d46a6a; }

/* commands */

.cmds {
  margin: 0;
  padding: 0;
}

.cmds div {
  display: grid;
  grid-template-columns: minmax(9rem, 42%) 1fr;
  gap: 0.4rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.cmds dt {
  margin: 0;
  font-family: system-ui, sans-serif;
}

.cmds dd {
  margin: 0;
  color: var(--ink-soft);
}

/* bottom */

.bottom-cta {
  margin-top: 2.75rem;
  padding: 1.4rem 1.15rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px 14px 4px 11px;
  text-align: left;
}

.bottom-cta p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.bottom-cta p:last-child {
  margin-bottom: 0;
}

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

footer p {
  margin: 0.25rem 0;
}

footer .small {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* mobile */

@media (max-width: 520px) {
  .page {
    padding: 1.15rem 1.1rem 2.75rem;
  }

  .top nav {
    gap: 0.7rem;
    font-size: 0.82rem;
  }

  .note {
    max-width: none;
    margin-right: 0;
    transform: rotate(-0.6deg);
  }

  .cmds div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .spots li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "meta"
      "desc";
  }
}

/* ── legal pages (terms / privacy) ── */

.legal h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-meta {
  margin: 0 0 1.5rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal section {
  margin: 0 0 1.75rem;
}

.legal section h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.legal section h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--sand);
  font-family: system-ui, -apple-system, sans-serif;
}

.legal p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.legal ul {
  margin: 0 0 0.85rem;
  padding: 0 0 0 1.2rem;
  color: var(--ink-soft);
}

.legal li {
  margin-bottom: 0.45rem;
}

.legal li::marker {
  color: var(--accent);
}

.legal a {
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(91, 196, 154, 0.35);
}

.legal a:hover {
  color: var(--sand);
  border-bottom-color: var(--sand);
}

.legal .intro {
  margin-bottom: 1.5rem;
}

.legal-note {
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-dim);
  border-radius: 2px 10px 3px 8px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}

footer a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: var(--sand);
  border-bottom-color: var(--sand);
}

.top nav a[aria-current="page"] {
  color: var(--sand);
  border-bottom-color: var(--sand);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
