/*
 * The front door.
 *
 * Same palette and the same chunky-pastel grammar as the app, but laid out to be read rather
 * than used. One rule does most of the work: nothing on this page claims anything about price.
 * Every line is about what the team DOES and what you can check, because a landing page for a
 * memecoin that promises returns is the thing that gets the whole project taken down.
 */

.wrap { max-width: 940px; margin: 0 auto; padding: 0 20px; }

/* ── nav ─────────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 12px;
  padding: calc(var(--safe-t) + 14px) 20px 14px;
  background: color-mix(in oklab, var(--bg) 78%, white);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .mark { width: 38px; height: 38px; border-radius: 13px; object-fit: cover; box-shadow: var(--shadow-sm); transform: rotate(-3deg); }
.nav b { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.nav .spacer { flex: 1; }

/* ── hero ────────────────────────────────────────────────────────────────────── */

.hero { padding: 54px 0 40px; text-align: center; }
.hero .kicker {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--card); border-radius: 999px; padding: 7px 15px; box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero h1 {
  margin: 0 0 18px; font-size: clamp(34px, 7vw, 60px); line-height: 1.04;
  font-weight: 850; letter-spacing: -0.035em;
}
.hero h1 em { font-style: normal; background: var(--brand); border-radius: 12px; padding: 0 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero p { margin: 0 auto 28px; max-width: 30em; font-size: clamp(15px, 2.4vw, 18px); color: var(--ink-2); }

.cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .big {
  font-size: 17px; font-weight: 850; padding: 15px 30px; border-radius: 999px;
  background: var(--brand); border: 1px solid rgba(59,50,32,0.2); box-shadow: var(--shadow);
  text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 9px;
  transition: transform .1s ease;
}
.cta .big:active { transform: translateY(2px); }
.cta .quiet {
  font-size: 15px; font-weight: 750; padding: 15px 24px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--ink);
}

/* ── the contract address ────────────────────────────────────────────────────── */

.ca-row { display: flex; justify-content: center; margin-top: 26px; }
.ca-big {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 11px 11px 20px; box-shadow: var(--shadow-sm); max-width: 100%;
}
.ca-big .lbl { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.ca-big .val {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-big .btn { background: var(--brand); border-radius: 999px; padding: 6px 13px; font-size: 12px; font-weight: 800; }
.ca-big.copied .btn { background: var(--mint); }

/* ── the team ────────────────────────────────────────────────────────────────── */

.crew { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 16px 0 46px; }
.crew .who {
  background: var(--card); border-radius: var(--r); padding: 18px 12px; text-align: center;
  box-shadow: var(--shadow);
}
.crew .who svg { width: 62px; height: 62px; display: block; margin: 0 auto 10px; }
.crew .who b { display: block; font-size: 15px; font-weight: 800; }
.crew .who span { display: block; font-size: 11.5px; font-weight: 650; color: var(--ink-2); margin-top: 1px; }
/* A different tilt each, so five cards do not read as a spreadsheet. */
.crew .who:nth-child(1) { transform: rotate(-2deg); }
.crew .who:nth-child(2) { transform: rotate(1.4deg); }
.crew .who:nth-child(3) { transform: rotate(-1deg); }
.crew .who:nth-child(4) { transform: rotate(2deg); }
.crew .who:nth-child(5) { transform: rotate(-1.6deg); }

/* ── how it works ────────────────────────────────────────────────────────────── */

.how { padding: 8px 0 56px; }
.how h2 { text-align: center; font-size: clamp(24px, 4.4vw, 34px); font-weight: 850; letter-spacing: -0.03em; margin: 0 0 28px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: var(--card); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); }
.step .n {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px;
  font-weight: 850; font-size: 15px; margin-bottom: 12px;
}
.step:nth-child(1) .n { background: var(--pink); }
.step:nth-child(2) .n { background: var(--mint); }
.step:nth-child(3) .n { background: var(--lav); }
.step h3 { margin: 0 0 7px; font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.step p { margin: 0; font-size: 14px; color: var(--ink-2); }

/* ── receipts strip ──────────────────────────────────────────────────────────── */

.receipts { background: var(--card); border-radius: 26px; padding: 30px; box-shadow: var(--shadow); margin-bottom: 56px; }
.receipts h2 { margin: 0 0 10px; font-size: clamp(21px, 3.6vw, 28px); font-weight: 850; letter-spacing: -0.03em; }
.receipts p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; max-width: 46em; }
.fake {
  border: 2px solid var(--brand); border-radius: var(--r); padding: 14px 16px;
  background: linear-gradient(170deg, #fffdf5, var(--card-2));
}
.fake .h { font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #a8760a; margin-bottom: 6px; }
.fake .l { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--ink-2); }
.fake .tag { display: inline-block; margin-top: 11px; background: var(--brand); border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 800; }

/* ── footer ──────────────────────────────────────────────────────────────────── */

.foot { padding: 0 0 calc(var(--safe-b) + 44px); text-align: center; color: var(--ink-2); font-size: 13px; }
.foot .links { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.foot .links a {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 17px; font-weight: 750; font-size: 14px; box-shadow: var(--shadow-sm);
}
.foot .links a svg { width: 16px; height: 16px; }
.foot .links a[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.foot .small { font-size: 12px; color: var(--ink-3); max-width: 40em; margin: 0 auto; }

@media (max-width: 760px) {
  .crew { grid-template-columns: repeat(2, 1fr); }
  .crew .who:last-child { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 34px 0 26px; }
  .receipts { padding: 22px; border-radius: 20px; }
}

/* ── docs ────────────────────────────────────────────────────────────────────── */

.doc { max-width: 780px; margin: 0 auto; padding: 0 20px 80px; }
.doc .lede { font-size: clamp(16px, 2.6vw, 19px); color: var(--ink-2); max-width: 34em; }

.doc h2 {
  margin: 52px 0 14px; font-size: clamp(23px, 4vw, 31px);
  font-weight: 850; letter-spacing: -0.03em; scroll-margin-top: 84px;
}
.doc h3 { margin: 28px 0 8px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.doc p { margin: 0 0 15px; }
.doc ul { margin: 0 0 15px; padding-left: 20px; }
.doc li { margin-bottom: 7px; }
.doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.88em;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 1px 5px;
}
.doc strong { font-weight: 800; }

/* Contents. Sticky on a wide screen, inline on a phone. */
.toc {
  background: var(--card); border-radius: var(--r); padding: 18px 20px;
  box-shadow: var(--shadow); margin: 28px 0 8px;
}
.toc b { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 9px; }
.toc a { display: block; padding: 4px 0; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14.5px; }
.toc a:hover { color: #a8760a; }

.card { background: var(--card); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); margin: 0 0 16px; }

/* A person: face, name, and everything about them in one block. */
.person { display: flex; gap: 18px; align-items: flex-start; }
.person .pic { width: 78px; height: 78px; flex: none; }
.person .pic svg { width: 100%; height: 100%; display: block; }
.person .txt { min-width: 0; flex: 1; }
.person h3 { margin: 0 0 1px; font-size: 21px; }
.person .role { font-size: 13px; font-weight: 750; color: var(--ink-2); margin-bottom: 12px; }
.person .line { margin-bottom: 11px; }
.person .line b {
  display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px;
}
.person .line p { margin: 0; font-size: 14.5px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span {
  font-size: 12px; font-weight: 700; background: var(--card-2);
  border: 1px solid var(--line-soft); border-radius: 999px; padding: 4px 10px;
}
.chips.warn span { background: color-mix(in oklab, var(--tomato) 20%, var(--card)); }

.note {
  border-left: 3px solid var(--brand); background: var(--card-2);
  padding: 14px 18px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 0 0 16px;
}
.note p:last-child { margin-bottom: 0; }

table.t { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-bottom: 16px; }
table.t th, table.t td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.t th { font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-3); }
table.t tr:last-child td { border-bottom: 0; }
.scroller { overflow-x: auto; }

@media (max-width: 640px) {
  .person { flex-direction: column; gap: 12px; }
  .person .pic { width: 62px; height: 62px; }
}
