/* Lean Cathedral — mobile-first tighter + SEO meta in HTML */
:root{
  --bg:#faf9f6; --ink:#111; --line:#e7e3db; --muted:#444;
}
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--ink);font-family:ui-serif,Georgia,serif;line-height:1.55}
.wrap{max-width:920px;margin:0 auto;padding:10px 12px}

.hero{display:flex;justify-content:center;margin:0 0 6px}
.hero img{width:300px;max-width:82vw;border:1px solid #ddd;border-radius:10px;background:#fff}

.title{text-align:center;font-size:28px;margin:8px 0 8px;text-transform:lowercase;line-height:1.2}

.card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:10px;margin:4px 0 8px}
.phase{display:flex;gap:8px;align-items:center;margin-bottom:2px}
.chain{width:24px;height:24px;color:#222;opacity:.85;flex:0 0 auto}
.phase-label{font-weight:800;font-size:22px;text-align:center;text-transform:lowercase;line-height:1.2}
.phase-copy{text-align:center;color:var(--muted);margin:2px 0 0;font-size:14px}

.contract{margin-top:8px;text-align:center}
.label{font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:#666}
code{display:inline-block;margin-top:6px;padding:6px 8px;background:#f7f5f1;border:1px dashed #dcd6cc;border-radius:8px;word-break:break-all;font-size:13px}
.btn{margin-left:6px;padding:5px 9px;border:1px solid #dcd6cc;border-radius:8px;background:#fff;cursor:pointer;font-size:12px}
.links{margin-top:6px;font-size:13px}
.links a{color:#0b0b0b;text-decoration:none;border-bottom:1px solid #e7e3db}
.links a:hover{border-bottom-color:#bcb7ad}
.dot{margin:0 6px;color:#bcb7ad}

.foot{text-align:center;margin:8px 0 16px}
.footline{display:inline-block;padding:8px 10px;border-radius:8px;background:#fff;border:1px solid var(--line);font-size:13px}
.underline{height:3px;width:200px;margin:6px auto 0;border-radius:2px;background:linear-gradient(90deg,#28F3B7,#7B5CFF,#FF59C7);opacity:.28}

/* Ultra-small phones: keep everything above the fold */
@media (max-width: 390px){
  .hero img{{width:260px;max-width:80vw}}
  .title{{font-size:24px}}
  .phase-label{{font-size:20px}}
  .phase-copy{{font-size:13px}}
  code{{font-size:12px}}
  .btn{{font-size:11px}}
  .footline{{font-size:12px}}
  .underline{{width:180px}}
}
@media (max-width: 340px){
  .hero img{{width:240px}}
  .title{{font-size:22px}}
  .phase-label{{font-size:19px}}
}
