/* ============================================================
   ARTINO — part 2: For Artists, Waitlist, Footer
   ============================================================ */

/* section header (shared by feature sections) */
.sec-head { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.sec-head .eyebrow { position: relative; display: inline-block; padding-bottom: 6px; }
.sec-head .eyebrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.9s var(--ease) 0.2s;
}
.sec-head.is-in .eyebrow::after, .sec-head .eyebrow.is-in::after { width: 100%; }
.sec-head h2 { font-size: clamp(32px, 4.3vw, 52px); margin: 16px 0 0; max-width: 18ch; }

.feature-sec { padding: 110px 0 40px; position: relative; }

/* alternating feature block */
.fblock {
  max-width: var(--maxw); margin: 0 auto; padding: 70px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.fblock.flip .fb-visual { order: 2; }
.fblock.flip .fb-copy { order: 1; }
.fb-copy h3 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.2vw, 40px); margin: 0 0 18px; letter-spacing: -0.012em; line-height: 1.06; }
.fb-copy p { font-size: 17px; color: var(--grey); margin: 0 0 22px; max-width: 46ch; }
.fb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fb-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; padding: 6px 0; }
.fb-tag:not(:last-child)::after { content: "·"; margin-left: 8px; color: var(--grey); }

/* visual stage holds composited photo + UI fragments */
.fb-visual { position: relative; min-height: 440px; }
.fb-photo {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(0,0,0,0.9);
}
.fb-photo .ph { position: absolute; inset: 0; }
.fb-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,10,8,0.7), transparent 60%); }

/* floating fragment positions */
.frag { position: absolute; will-change: transform; }
.frag-tr { top: -22px; right: -26px; }
.frag-br { bottom: -26px; right: -18px; }
.frag-bl { bottom: -30px; left: -28px; }
.frag-tl { top: -20px; left: -24px; }

/* --- specific fragment internals --- */
.profile-frag { width: 340px; }
.avatar-tile { width: 100%; height: 150px; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 12px; }
.reel-grid .cell { aspect-ratio: 1; border-radius: 7px; overflow: hidden; position: relative; }
.reel-grid .cell .play { position: absolute; inset: 0; display: grid; place-items: center; }
.reel-grid .cell .play::after { content: ""; width: 0; height: 0; border-left: 9px solid rgba(244,238,226,0.85); border-top: 6px solid transparent; border-bottom: 6px solid transparent; margin-left: 2px; }
.reel-grid .cell.big { grid-row: span 2; grid-column: span 2; }
.follower-pill { position: absolute; bottom: -14px; left: 18px; padding: 8px 14px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--gold-line); font-size: 12px; box-shadow: 0 14px 30px -12px rgba(0,0,0,0.8); }
.follower-pill .mono { color: var(--tungsten); }

.pricing-frag { width: 320px; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; }
.toggle { width: 36px; height: 20px; border-radius: 100px; background: rgba(244,238,226,0.12); position: relative; flex: none; transition: background 0.3s; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--cream); transition: transform 0.3s var(--ease); }
.toggle.on { background: var(--tungsten); }
.toggle.on::after { transform: translateX(16px); background: #1a1206; }
.price-total { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--gold-faint); }
.price-total .big { font-family: var(--mono); font-size: 22px; color: var(--tungsten); font-weight: 600; }

.booking-frag { width: 270px; }
.booking-frag .req-head { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--halo); margin-bottom: 12px; }
.event-frag { width: 230px; }
.ticket-bar { height: 6px; border-radius: 100px; background: rgba(244,238,226,0.1); overflow: hidden; margin: 8px 0; }
.ticket-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--tungsten), var(--halo)); border-radius: 100px; }

.pay-frag { width: 300px; }
.pay-frag .ok { display: inline-flex; align-items: center; gap: 7px; color: #8fd49b; font-size: 13px; font-weight: 600; }
.pay-frag .ok .tick { width: 16px; height: 16px; border-radius: 50%; background: rgba(143,212,155,0.16); display: grid; place-items: center; font-size: 10px; }

.chat-frag { width: 320px; }
.chat-ctx { padding: 12px; border-radius: 10px; background: rgba(232,163,61,0.08); border: 1px solid rgba(232,163,61,0.22); margin-bottom: 12px; }
.bubble { padding: 9px 13px; border-radius: 12px; font-size: 13px; max-width: 78%; margin-bottom: 8px; line-height: 1.45; }
.bubble.them { background: var(--surface-2); border: 1px solid rgba(244,238,226,0.07); border-bottom-left-radius: 3px; }
.bubble.me { background: rgba(232,163,61,0.16); border: 1px solid rgba(232,163,61,0.3); color: var(--halo); margin-left: auto; border-bottom-right-radius: 3px; }

.cal-frag { width: 300px; }
.cal-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 12px; }
.cal-strip .day { aspect-ratio: 1; border-radius: 7px; display: grid; place-items: center; font-family: var(--mono); font-size: 12px; background: rgba(244,238,226,0.05); color: var(--grey); position: relative; }
.cal-strip .day.free { background: rgba(143,212,155,0.14); color: #9fd9a9; }
.cal-strip .day.booked { background: rgba(110,26,26,0.4); color: #d99; }
.cal-chip { position: absolute; top: -16px; right: -10px; }

/* dashboard fragment (hero of section) */
.dash-frag { width: min(560px, 100%); position: relative; margin: 0 auto; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.kpi { padding: 14px; border-radius: 11px; background: rgba(12,10,8,0.5); border: 1px solid rgba(244,238,226,0.07); }
.kpi .k-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.kpi .k-val { font-family: var(--mono); font-size: 24px; font-weight: 600; color: var(--cream); margin-top: 4px; }
.kpi .k-val.tung { color: var(--tungsten); }
.dash-lower { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.chart-card, .donut-card { padding: 16px; border-radius: 11px; background: rgba(12,10,8,0.5); border: 1px solid rgba(244,238,226,0.07); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 14px; }
.bars .bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--tungsten), rgba(232,163,61,0.25)); transition: height 1s var(--ease); }
.donut { width: 110px; height: 110px; border-radius: 50%; margin: 12px auto 0; background: conic-gradient(var(--tungsten) 0 52%, var(--gold) 52% 78%, var(--violet) 78% 100%); position: relative; }
.donut::after { content: ""; position: absolute; inset: 22px; border-radius: 50%; background: var(--surface); }
.legend { font-size: 11px; color: var(--grey); margin-top: 12px; display: grid; gap: 6px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 9px; height: 9px; border-radius: 2px; }

/* stat chips row (analytics blocks) */
.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.stat-chips .sc { font-size: 13px; color: var(--cream); padding: 9px 15px; border-radius: 100px; border: 1px solid var(--gold-faint); background: rgba(22,18,13,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   WAITLIST CTA
   ============================================================ */
.waitlist {
  position: relative; overflow: hidden;
  padding: 140px 0 150px; margin-top: 90px;
  text-align: center;
}
.waitlist::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 50% 38%, rgba(232,163,61,0.22), transparent 60%),
    radial-gradient(80% 90% at 50% 50%, rgba(110,26,26,0.5), transparent 62%),
    linear-gradient(180deg, var(--bg), #120b09 50%, var(--bg));
}
.waitlist::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(244,200,121,0.05) 0 2px, transparent 2px 9px);
  mix-blend-mode: screen; opacity: 0.6;
}
.waitlist-spot {
  position: absolute; z-index: 0; width: 620px; height: 620px;
  left: 50%; top: 38%; margin-left: -310px; margin-top: -310px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(244,200,121,0.20), transparent 70%);
  filter: blur(20px); transition: transform 0.5s var(--ease);
}
.waitlist .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 28px; }
.waitlist h2 { font-size: clamp(40px, 6vw, 76px); margin: 0; }
.waitlist .sub { color: var(--cream); opacity: 0.9; font-size: 18px; line-height: 1.55; margin: 22px auto 0; max-width: 46ch; }
.role-toggle { display: inline-flex; gap: 6px; margin: 34px auto 0; padding: 5px; border-radius: 100px; border: 1px solid var(--gold-line); background: rgba(12,10,8,0.5); }
.role-toggle button {
  font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--grey);
  background: transparent; border: 0; padding: 9px 18px; border-radius: 100px; cursor: pointer;
  transition: color 0.3s, background 0.3s;
}
.role-toggle button.active { color: #1a1206; background: var(--tungsten); }
.signup { display: flex; gap: 10px; max-width: 480px; margin: 26px auto 0; }
.signup input {
  flex: 1; font-family: var(--body); font-size: 15px; color: var(--cream);
  background: rgba(12,10,8,0.7); border: 1px solid var(--gold-line); border-radius: 14px;
  padding: 15px 20px; outline: none; box-shadow: 0 0 30px -8px rgba(232,163,61,0.4) inset;
  transition: border-color 0.3s;
}
.signup input::placeholder { color: var(--grey); }
.signup input:focus { border-color: var(--tungsten); }
.signup input.err { border-color: #c0564a; }
.signup .btn-primary { white-space: nowrap; }
.waitlist .fine { font-size: 12.5px; color: var(--grey); margin-top: 18px; }
.signup-done {
  display: none; margin: 26px auto 0; max-width: 480px;
  padding: 18px; border-radius: 16px; border: 1px solid rgba(232,163,61,0.5);
  background: rgba(232,163,61,0.1); color: var(--halo); font-size: 16px; font-weight: 500;
  position: relative; overflow: hidden;
}
.signup-done.show { display: block; }
.signup-done::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  transform: translateX(-130%); animation: shimmer 1.1s var(--ease) 0.1s;
}
@keyframes shimmer { to { transform: translateX(130%); } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--gold-faint); padding: 56px 0 48px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer .brand { margin-bottom: 14px; }
.footer .mission { font-size: 14px; color: var(--grey); max-width: 34ch; }
.footer .fcol h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; font-weight: 600; }
.footer .fcol a { display: block; color: var(--grey); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color 0.3s; }
.footer .fcol a:hover { color: var(--cream); }
.footer-base { max-width: var(--maxw); margin: 44px auto 0; padding: 26px 32px 0; border-top: 1px solid var(--gold-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-base .tag { font-size: 13px; color: var(--gold); }
.footer-base .copy { font-size: 13px; color: var(--grey); }

@media (max-width: 700px) {
  .signup { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer .fbrandcol { grid-column: 1 / -1; }
}
