/* ThinqShift: Rewire page. Tokens in tokens.css, shared nav/footer/layout in base.css. */

/* ─── TWO WAYS IN ─── */
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.way-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; }
.way-card.featured { background: linear-gradient(165deg, rgba(136,39,171,0.2), rgba(136,39,171,0.05)); border-color: var(--border2); }
.way-card .eyebrow { display: block; margin-bottom: 10px; }
.way-card h3 { margin-bottom: 10px; }
.way-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }
@media (max-width: 760px) { .ways-grid { grid-template-columns: 1fr; } }

/* ─── CIRCLE OF SUCK DIAGRAM ─── */
.suck-diagram-wrap { display: flex; justify-content: center; margin-top: 36px; }
.suck-diagram { width: 100%; max-width: 680px; height: auto; }
.suck-node-label { font: 600 13px 'Inter', system-ui, sans-serif; fill: #ede4f7; text-anchor: middle; }
.suck-node-sub { font: 400 10.5px 'Inter', system-ui, sans-serif; fill: #b39ecf; text-anchor: middle; }
.suck-gap-label { font: 700 11px 'Inter', system-ui, sans-serif; fill: #e0ab3f; text-anchor: middle; letter-spacing: 0.03em; }
.suck-gap-sub { font: 400 9.5px 'Inter', system-ui, sans-serif; fill: #b39ecf; text-anchor: middle; }

/* ─── AMPLIFIED BY THINQEE: session handoff ─── */
.session-flow { width: 100%; max-width: 380px; }
.session-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.session-node { text-align: center; }
.session-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 10px;
  background: var(--card-solid); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(136,39,171,0.18);
}
.session-icon svg { width: 26px; height: 26px; }
.session-label { font-size: 0.8rem; color: var(--text); font-weight: 600; }
.session-sub { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.session-arrow { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border2), var(--purple-200), var(--border2)); position: relative; top: -18px; min-width: 20px; }
