/* rent-find-variants/sections.css — the furniture EVERY rent variant shares: the hero shell,
 * the problem quote, the 0–8 step timeline, the factor chips, the share card and the
 * close. base.css is the generic Ting page skeleton; this is the rent page's own
 * repeated structure, factored out so each vN-*.css carries ONLY its centrepiece.
 *
 * (The shipped city-belongs/rent/redesign variants each inline this because only one of
 * each survived the port. Six rent prototypes copying it six times would guarantee they
 * drift apart while you are comparing them, which is the one thing a variant set must
 * not do.)
 * Loaded AFTER common.css, BEFORE the variant's own file. */

/* hero shell */
.hero{min-height:100svh;display:flex;align-items:center;padding-top:90px;overflow:hidden}
.stars{position:absolute;inset:0;pointer-events:none}
.stars i{position:absolute;width:2px;height:2px;border-radius:50%;background:var(--y);opacity:.5;animation:tw 3s ease-in-out infinite}
@keyframes tw{0%,100%{opacity:.15}50%{opacity:.85}}
.heroGrid{position:relative;display:grid;gap:40px;align-items:center}
@media(min-width:992px){.heroGrid{grid-template-columns:1.05fr .95fr}}
.trust{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.scrollCue{position:absolute;bottom:26px;left:50%;transform:translateX(-50%);font-size:12px;color:rgba(255,255,255,.5);display:flex;flex-direction:column;align-items:center;gap:5px;animation:bob 2s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,8px)}}

/* problem quote */
.quote{font-size:32px;font-weight:600;line-height:1.25;letter-spacing:-.02em;max-width:840px}
@media(min-width:992px){.quote{font-size:40px}}

/* the 0–8 timeline */
.tl{position:relative;margin-top:40px;display:grid;gap:15px}
.step{display:grid;grid-template-columns:60px 1fr;gap:20px;align-items:start;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:20px;transition:border-color .15s,background .15s}
.step:hover{border-color:rgba(255,204,0,.4);background:rgba(255,204,0,.05)}
.num{width:60px;height:60px;border-radius:15px;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;color:var(--ink);background:var(--y);box-shadow:inset 0 0 10px rgba(0,0,0,.05);font-variant-numeric:tabular-nums}
.step.last .num{background:rgba(255,255,255,.08);color:var(--y);border:1px solid rgba(255,204,0,.35)}
.step h3{margin-bottom:5px}
.step p{font-size:14px;color:rgba(255,255,255,.6)}
.tag{display:inline-block;font-size:9px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--ink);background:var(--ys);padding:3px 8px;border-radius:9999px;margin-left:10px;vertical-align:middle}

/* factor chips */
.factors{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
.fchip{display:inline-flex;align-items:center;gap:7px;font-size:14px;color:rgba(255,255,255,.85);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);padding:8px 14px;border-radius:9999px}

/* share + close */
.shareCard{max-width:410px;margin:0 auto;background:linear-gradient(160deg,#15151c,#0a0a0f);border:1px solid rgba(255,204,0,.25);border-radius:20px;padding:30px 24px;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.6)}
.shareCard .big{font-size:34px;font-weight:800;line-height:1.1;letter-spacing:-.02em;margin-top:10px;color:var(--y)}
.socials{display:flex;gap:10px;justify-content:center;margin-top:20px;flex-wrap:wrap}
.soc{width:40px;height:40px;border-radius:9999px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:16px}
.final{text-align:center;padding:96px 0}

/* the glassy centrepiece shell each variant fills differently */
.card{background:linear-gradient(165deg,rgba(24,24,32,.85),rgba(10,10,15,.9));border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:24px;backdrop-filter:blur(20px);box-shadow:0 20px 60px rgba(0,0,0,.55);position:relative;overflow:hidden}
.card::before{content:"";position:absolute;top:-40%;left:-20%;width:140%;height:80%;background:radial-gradient(circle,rgba(255,204,0,.14),transparent 60%);pointer-events:none}
.cardhead{display:flex;align-items:center;justify-content:space-between;position:relative;margin-bottom:20px}
.unlockhint{font-size:12px;color:rgba(255,255,255,.5);text-align:center;margin-top:16px}
.locked{filter:blur(9px);opacity:.7;transition:filter .5s,opacity .5s}
