/* Robot Toes home. Layers on top of /styles.css (tokens, type, header,
   buttons, eyebrows, hero, footer) and adds the "what's here" grid and the
   two announced-but-unbuilt sections. No inline styles anywhere: the CSP is
   style-src 'self'. */

/* ---------- what's here ---------- */
.explore-section { background: var(--band-light); }
/* Three across at full width, so the row break falls between the three open
   doors and the two that are not. */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.3rem; }
.explore-card { position: relative; display: flex; flex-direction: column; gap: .85rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease; }
.explore-card:hover { transform: translateY(-4px); border-color: rgba(79, 242, 255, .45); box-shadow: 0 24px 70px -30px rgba(79, 242, 255, .5); }
.explore-card.soon, .explore-card.soon:hover { transform: none; border-color: var(--line); box-shadow: var(--shadow); background: var(--panel-2); }
.explore-card h3 { margin: 0; font: 700 1.35rem/1.05 var(--display); letter-spacing: -.02em; }
.explore-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.explore-card p strong { color: var(--ink-2); font-weight: 700; }
.explore-card .card-link { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; width: max-content; color: var(--foil-1); text-decoration: none; font: 600 .66rem/1 var(--label); letter-spacing: .18em; text-transform: uppercase; }
.explore-card .card-link:hover { color: var(--foil-3); }

.tag { display: inline-flex; align-items: center; gap: .5rem; width: max-content; color: var(--foil-1); font: 600 .56rem/1 var(--label); letter-spacing: .24em; text-transform: uppercase; }
.tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--foil-1); box-shadow: 0 0 10px var(--foil-1); }
.tag.soon { color: var(--foil-3); }
.tag.soon i { background: var(--foil-3); box-shadow: 0 0 10px var(--foil-3); }

/* ---------- announced, not built: the catalog and the news desk ---------- */
.upcoming-section { background: var(--band-dark); }
.upcoming-section.alt { background: var(--band-light); }
.upcoming { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.upcoming-copy h2 { margin-bottom: 1rem; }
.upcoming-copy > p { color: var(--muted); max-width: 46ch; }
.upcoming-note { margin-top: 1.6rem; padding: .8rem 1rem; border-left: 3px solid var(--foil-3); border-radius: 0 10px 10px 0; background: rgba(255, 255, 255, .04); color: var(--ink-2); font: 600 .72rem/1.6 var(--label); letter-spacing: .03em; }

.spec-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.spec-card > p { margin: 0 0 1.1rem; color: var(--dim); font: 600 .58rem/1 var(--label); letter-spacing: .24em; text-transform: uppercase; }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--foil-1); font: 600 .6rem/1.5 var(--label); letter-spacing: .16em; text-transform: uppercase; }
.spec-list dd { margin: 0; color: var(--ink-2); font-size: .84rem; line-height: 1.55; }

.news-preview { display: grid; gap: .8rem; padding: 0; margin: 0; list-style: none; }
.news-preview li { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 1rem; align-items: start; padding: 1rem 1.15rem; border: 1px dashed var(--line-2); border-radius: 14px; background: var(--panel-2); }
.news-preview .news-kind { color: var(--foil-2); font: 600 .56rem/1.5 var(--label); letter-spacing: .16em; text-transform: uppercase; }
.news-preview p { margin: 0; color: var(--muted); font-size: .84rem; }
.news-preview strong { display: block; margin-bottom: .2rem; color: var(--ink); font: 700 .9rem/1.3 var(--body); }

@media (max-width: 860px) {
  .upcoming { grid-template-columns: 1fr; }
  .spec-list div { grid-template-columns: 1fr; gap: .2rem; }
  .news-preview li { grid-template-columns: 1fr; gap: .35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .explore-card:hover { transform: none; }
}
body.reduce-motion .explore-card:hover { transform: none; }
