/* ============================================================
   WEBSITE BULLDOZER — account / checkout / dashboard
   Layered on top of styles.css. Palette inherited:
     INK #0a0a0a · STEEL #1a1a1a · CHALK #f4f1ea
     YELLOW #FFCD00 · EMERALD #1fb47e
============================================================ */

.acct {
  --panel: #141414;
  --panel-2: #1b1b1b;
  --line: #272727;
  --muted: #9a958c;
  --emerald: #1fb47e;
  min-height: 100vh;
  padding: 120px 20px 80px;
  max-width: 1080px;
  margin: 0 auto;
}
.acct--narrow { max-width: 520px; }
.acct--mid { max-width: 760px; }

.acct__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .14em; color: #FFCD00;
  text-transform: uppercase; margin-bottom: 14px;
}
.acct__h1 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 12px;
}
.acct__lede { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 60ch; }

/* ---- cards ---- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.card + .card { margin-top: 18px; }
.card__h { font-family: 'Archivo Black', sans-serif; font-size: 18px; margin-bottom: 6px; }
.card__sub { color: var(--muted); font-size: 14px; line-height: 1.55; }

.grid-2 { display: grid; grid-template-columns: 1.3fr .9fr; gap: 20px; align-items: start; }
@media (max-width: 820px){ .grid-2 { grid-template-columns: 1fr; } }

/* ---- forms ---- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #cfcabf; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; background: #0e0e0e; color: #f4f1ea;
  border: 1px solid #333; border-radius: 9px;
  padding: 13px 14px; font: inherit; font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: #FFCD00; box-shadow: 0 0 0 3px rgba(255,205,0,.14);
}
.field textarea { resize: vertical; min-height: 84px; }
.field__hint { font-size: 12px; color: #6f6a61; margin-top: 6px; }

.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---- order summary rail ---- */
.summary { position: sticky; top: 110px; }
.summary__pkg { font-family: 'Archivo Black', sans-serif; font-size: 20px; color: #FFCD00; }
.summary__tag { color: var(--muted); font-size: 13px; margin-top: 2px; }
.summary__rows { margin: 18px 0; border-top: 1px solid var(--line); padding-top: 16px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 7px 0; color: #cfcabf; }
.summary__row strong { color: #f4f1ea; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; }
.summary__total span { color: var(--muted); font-size: 13px; }
.summary__total b { font-family: 'Archivo Black', sans-serif; font-size: 30px; color: #fff; }
.summary__note { font-size: 12px; color: #6f6a61; margin-top: 12px; line-height: 1.5; }
.summary__feat { list-style: none; margin: 16px 0 0; padding: 0; }
.summary__feat li { font-size: 13px; color: #cfcabf; padding: 6px 0 6px 24px; position: relative; }
.summary__feat li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }

/* ---- package picker (buy page) ---- */
.picker { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
@media (max-width: 700px){ .picker { grid-template-columns: 1fr; } }
.pick {
  text-align: left; background: var(--panel); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 16px; cursor: pointer; transition: border-color .15s, transform .12s;
}
.pick:hover { transform: translateY(-2px); border-color: #4a4a4a; }
.pick.is-active { border-color: #FFCD00; box-shadow: 0 0 0 3px rgba(255,205,0,.12); }
.pick__name { font-family: 'Archivo Black', sans-serif; font-size: 14px; }
.pick__dep { color: #FFCD00; font-weight: 800; font-size: 20px; margin-top: 6px; }
.pick__full { color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ---- badges / pills ---- */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; letter-spacing: .02em; }
.pill--paid { background: rgba(31,180,126,.16); color: #34d399; }
.pill--due { background: rgba(255,205,0,.15); color: #FFCD00; }
.pill--muted { background: #222; color: #b9b4aa; }

/* ---- progress tracker ---- */
.track { display: flex; align-items: center; margin: 22px 0 6px; }
.track__step { flex: 1; text-align: center; position: relative; }
.track__dot {
  width: 30px; height: 30px; border-radius: 50%; margin: 0 auto 8px;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  background: #1d1d1d; color: #6f6a61; border: 2px solid #333; position: relative; z-index: 2;
}
.track__step.done .track__dot { background: var(--emerald); color: #052e20; border-color: var(--emerald); }
.track__step.current .track__dot { background: #FFCD00; color: #0a0a0a; border-color: #FFCD00;
  box-shadow: 0 0 0 5px rgba(255,205,0,.16); }
.track__label { font-size: 12px; color: #8a857c; }
.track__step.done .track__label, .track__step.current .track__label { color: #f4f1ea; font-weight: 600; }
.track__step::before {
  content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 2px;
  background: #2c2c2c; z-index: 1;
}
.track__step:first-child::before { display: none; }
.track__step.done::before, .track__step.current::before { background: var(--emerald); }

/* ---- upsell cards ---- */
.ups { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px){ .ups { grid-template-columns: 1fr; } }
.ups__card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; }
.ups__name { font-family: 'Archivo Black', sans-serif; font-size: 17px; }
.ups__price { margin: 6px 0 12px; }
.ups__price b { font-size: 26px; }
.ups__price span { color: var(--muted); font-size: 13px; }
.ups__blurb { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
.ups__feat { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.ups__feat li { font-size: 13px; color: #cfcabf; padding: 5px 0 5px 22px; position: relative; }
.ups__feat li::before { content: "+"; position: absolute; left: 0; color: #FFCD00; font-weight: 800; }
.ups__card.is-active { border-color: var(--emerald); }

/* ---- misc ---- */
.note { padding: 12px 14px; border-radius: 10px; font-size: 13.5px; line-height: 1.5; margin-bottom: 18px; }
.note--ok { background: rgba(31,180,126,.12); border: 1px solid rgba(31,180,126,.3); color: #6ee7b7; }
.note--warn { background: rgba(255,205,0,.1); border: 1px solid rgba(255,205,0,.28); color: #ffdf6b; }
.note--err { background: rgba(255,80,80,.1); border: 1px solid rgba(255,80,80,.3); color: #ff9b9b; }
.muted { color: var(--muted); }
.center { text-align: center; }
.spin { display:inline-block; width:18px; height:18px; border:2px solid rgba(255,255,255,.25); border-top-color:#FFCD00; border-radius:50%; animation: spin .7s linear infinite; vertical-align:-3px; }
@keyframes spin { to { transform: rotate(360deg); } }
.dash__top { display:flex; justify-content:space-between; align-items:flex-end; gap:16px; flex-wrap:wrap; margin-bottom:26px; }
.linkbtn { background:none; border:0; color:#FFCD00; cursor:pointer; font:inherit; font-size:14px; }
.linkbtn:hover { text-decoration:underline; }
.row-between { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.hide { display:none !important; }
