.create-wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: start; padding-top: 28px; }

.hero { position: sticky; top: 28px; padding-top: 18px; animation: rise .7s both; }
.hero h1 { font-size: clamp(40px, 5.2vw, 64px); font-weight: 600; }
.hero h1 em { position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -.08em; height: .28em; z-index: -1;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'><path d='M3 14 C 40 4, 80 18, 120 9 S 180 6, 197 12' fill='none' stroke='%23ffab2d' stroke-width='7' stroke-linecap='round'/></svg>") center / 100% 100% no-repeat;
}
.lede { font-size: 20px; color: var(--ink-2); margin: 22px 0 34px; max-width: 30ch; }
.how { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.how li { display: flex; align-items: center; gap: 16px; animation: rise .6s both; }
.how li:nth-child(2) { animation-delay: .1s; }
.how li:nth-child(3) { animation-delay: .2s; }
.how b { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--card); border: 1.5px solid var(--line); font-size: 24px; box-shadow: 0 3px 0 var(--accent); flex: none; }
.how li:nth-child(1) b { transform: rotate(-5deg); }
.how li:nth-child(3) b { transform: rotate(4deg); }
.how span { display: flex; flex-direction: column; color: var(--ink-2); font-size: 15px; }
.how strong { color: var(--ink); font-size: 17px; }

.create { padding: 34px; display: grid; gap: 30px; animation: rise .7s .1s both; }
.q { display: grid; gap: 16px; }
.q + .q { border-top: 1.5px dashed var(--line); padding-top: 28px; }
.q-head { display: flex; gap: 14px; align-items: flex-start; }
.q-head h3 { font-size: 24px; font-weight: 600; }
.q-head p { font-size: 15px; margin-top: 4px; }
.num { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--accent); font: 700 18px/1 var(--display); transform: rotate(-6deg); }
.row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }

.polaroids { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.polaroid { position: relative; margin: 0; width: 118px; padding: 8px 8px 26px; background: #fff; border-radius: 4px; transform: rotate(var(--tilt)); box-shadow: 0 10px 22px -10px rgba(44, 46, 53, .4); animation: drop .45s cubic-bezier(.2, 1.4, .4, 1) both; }
.polaroid::before { content: ""; position: absolute; top: -10px; left: 50%; width: 54px; height: 20px; transform: translateX(-50%) rotate(-4deg); background: rgba(255, 171, 45, .65); border-radius: 2px; }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
.polaroid .x { position: absolute; top: -10px; right: -10px; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--card); background: var(--ink); color: #fff; font: 800 17px/1 var(--body); cursor: pointer; opacity: 0; transition: opacity .2s; }
.polaroid:hover .x, .polaroid .x:focus { opacity: 1; }
@media (hover: none) { .polaroid .x { opacity: 1; } }
@keyframes drop { from { opacity: 0; transform: translateY(-16px) rotate(0) scale(.9); } }

.drop {
  flex: 1 1 100%; min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border: 2.5px dashed #c9bf9f; border-radius: 20px; background: repeating-linear-gradient(-45deg, #fffdf7 0 14px, #f6f2e7 14px 28px);
  cursor: pointer; transition: border-color .2s, transform .2s, background .2s; text-align: center; padding: 16px;
}
.drop:hover, .drop.over { border-color: var(--ink); background: var(--accent-soft); transform: scale(1.01); }
.drop strong { font-size: 18px; }
.drop-icon { font-size: 38px; margin-bottom: 4px; animation: bob 2.6s ease-in-out infinite; }
.drop.small { flex: 0 0 118px; min-height: 146px; }
.drop.small .muted, .drop.small .drop-icon { display: none; }
.drop.small strong::before { content: "+"; display: block; font: 600 40px/1 var(--display); color: var(--accent-text); }
.drop.small strong { font-size: 13px; }
@keyframes bob { 50% { transform: translateY(-5px) rotate(-6deg); } }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 2px solid var(--line); background: #fffefa; font: 700 15px/1 var(--body); color: var(--ink); cursor: pointer; transition: all .18s; }
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--card); box-shadow: 0 3px 0 var(--accent); }
.chip span { font-size: 18px; }

.shelf { margin-top: 72px; }
.shelf h2 { font-size: 30px; margin-bottom: 20px; }
.shelf-row { display: flex; gap: 26px; overflow-x: auto; padding: 8px 4px 20px; }
.mini { flex: 0 0 190px; text-decoration: none; color: var(--ink); display: grid; gap: 8px; transition: transform .2s; }
.mini:hover { transform: translateY(-4px) rotate(-1deg); }
.mini-cover { aspect-ratio: 11.25 / 8.75; border-radius: 6px 14px 14px 6px; background: var(--line) center / cover; box-shadow: inset 7px 0 8px -5px rgba(0, 0, 0, .35), 0 14px 24px -14px rgba(44, 46, 53, .55); }
.mini strong { font-family: var(--display); font-weight: 600; line-height: 1.2; }
.tag { justify-self: start; font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 999px; background: var(--sand); color: var(--ink-2); }
.tag.ready { background: var(--accent-soft); color: #6b4200; }
.tag.failed { background: #f8dccf; color: #8c2f16; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } }

@media (max-width: 920px) {
  .create-wrap { grid-template-columns: 1fr; gap: 28px; padding-top: 8px; }
  .hero { position: static; }
  .how { grid-template-columns: repeat(3, 1fr); }
  .how li { flex-direction: column; align-items: flex-start; }
  .create { padding: 22px; }
}
@media (max-width: 560px) { .how { grid-template-columns: 1fr; } .how li { flex-direction: row; } }
