:root{
  --bg: #f6f7f9;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e5e7eb;
  --pill: #eef2ff;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --shadow2: 0 6px 18px rgba(2,6,23,.06);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

.wrap{
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

/* HERO */

.hero{
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.sig{
  font-family: "Yellowtail", cursive;
  font-size: clamp(54px, 6vw, 84px);
  letter-spacing: .5px;
  line-height: 1;
}

.strap{
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111827;
  font-size: 13px;
}

.lede{
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
}

.pill-row{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  background: var(--pill);
  border: 1px solid #dbeafe;
  color: #1e293b;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.notice{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  max-width: 80ch;
  color: var(--muted);
}

/* MAIN CONTENT */

.content{
  padding: 26px 0 60px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: 18px 0;
}

h2{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -.02em;
}

/* OVERVIEW GRID */

.grid-2{
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 18px;
}

@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; }
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li{
  margin: 8px 0;
}

/* META PANEL */

.meta{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fbfbfc;
}

.meta-row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.meta-row:last-child{
  border-bottom: 0;
}

.meta-row span:first-child{
  color:#0f172a;
  font-weight: 700;
}

/* STEPS */

.step{
  padding: 16px 0 6px;
  border-top: 1px dashed var(--line);
}

.step:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.step-head{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  margin-bottom: 12px;
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  flex: 0 0 auto;
}

h3{
  margin: 0;
  font-size: 18px;
}

.step p{
  margin: 6px 0 0;
  color: var(--muted);
}

/* SCREENSHOTS */

.shot{
  margin: 12px 0 18px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow2);
}

.shot img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
  border: 1px solid #eef0f3;
}

figcaption{
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
}

/* FOOTER */

.foot{
  margin-top: 22px;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}