/* account.walterssentinel.com - sign in, pick an account, and choose services. */

/* ---------------------------------------------------------------- sign-in cards */
.acct-auth{ min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:32px 16px; box-sizing:border-box; }
.acct-card{
  width:100%; max-width:440px; box-sizing:border-box; background:var(--surface); border:1px solid var(--border);
  border-radius:18px; padding:34px 34px 28px; box-shadow:0 30px 70px -40px rgba(0,0,0,.65);
}
.acct-card.wide{ max-width:560px; }
.acct-logo{ display:flex; align-items:center; gap:10px; font-weight:700; margin-bottom:24px; color:var(--text); text-decoration:none; letter-spacing:-.01em; }
.acct-logo img{ width:30px; height:30px; object-fit:contain; }
.acct-card h1{ font-size:1.5rem; margin:0 0 6px; letter-spacing:-.02em; }
.acct-sub{ color:var(--text-dim); margin:0 0 20px; font-size:.92rem; line-height:1.55; }
.acct-links{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-top:18px; font-size:.86rem; }
.acct-links a, .linklike{ color:var(--accent-2); background:none; border:0; padding:0; font:inherit; cursor:pointer; text-decoration:none; }
.acct-links a:hover, .linklike:hover{ text-decoration:underline; }
.acct-code{ letter-spacing:.45em; font-size:1.45rem !important; text-align:center; font-weight:700; }
.acct-foot{ text-align:center; font-size:.76rem; color:var(--text-faint); margin-top:18px; max-width:440px; }
.acct-foot a{ color:inherit; }
.acct-choice{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:16px; }
.acct-choice button{ padding:11px; border-radius:10px; border:1px solid var(--border); background:var(--bg); color:var(--text-dim); font:inherit; font-weight:650; cursor:pointer; }
.acct-choice button.is-active{ border-color:var(--accent); color:var(--text); box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.acct-steps{ display:flex; gap:6px; margin-bottom:18px; }
.acct-steps i{ flex:1; height:4px; border-radius:4px; background:var(--surface-2); }
.acct-steps i.on{ background:var(--accent); }

/* pick an account */
.acct-list{ display:flex; flex-direction:column; gap:8px; margin:4px 0 16px; }
.acct-row{ position:relative; display:flex; align-items:center; gap:12px; padding:11px 12px; border:1px solid var(--border); border-radius:13px; background:var(--bg); }
.acct-row:hover{ border-color:color-mix(in srgb, var(--accent) 55%, var(--border)); }
.acct-row-main{ display:flex; align-items:center; gap:12px; flex:1; min-width:0; border:0; background:none; color:var(--text); font:inherit; text-align:left; cursor:pointer; padding:0; }
.acct-row-main .svc-avatar{ width:40px; height:40px; font-size:.8rem; }
.acct-row-id{ min-width:0; flex:1; }
.acct-row-name{ font-weight:650; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.acct-row-email{ font-size:.8rem; color:var(--text-faint); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.acct-row-state{ font-size:.72rem; font-weight:700; }
.acct-row-state.in{ color:#22c55e; }
.acct-row-state.out{ color:var(--text-faint); }
.acct-row-menu{ position:absolute; right:8px; top:52px; z-index:20; width:190px; background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:6px; box-shadow:0 18px 40px -16px rgba(0,0,0,.55); }
.acct-new{ display:flex; align-items:center; gap:12px; width:100%; padding:12px; border:1px dashed var(--border); border-radius:13px; background:none; color:var(--text-dim); font:inherit; font-weight:600; cursor:pointer; text-decoration:none; box-sizing:border-box; }
.acct-new:hover{ border-color:var(--accent); color:var(--text); }
.acct-new span.circle{ width:40px; height:40px; border-radius:50%; background:var(--surface-2); display:flex; align-items:center; justify-content:center; }

/* ---------------------------------------------------------------- signed-in pages */
.acct-header .svc-brand-service{ color:var(--accent); }
.acct-nav{ display:flex; gap:2px; margin-left:14px; }
.acct-nav a{ padding:8px 12px; border-radius:9px; color:var(--text-faint); text-decoration:none; font-weight:650; font-size:.88rem; }
.acct-nav a:hover{ color:var(--text); background:var(--surface-2); }
.acct-nav a.is-active{ color:var(--text); background:color-mix(in srgb, var(--accent) 14%, transparent); }
.acct-page{ max-width:1140px; margin:0 auto; padding:30px 22px 110px; }
.acct-hero{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:24px; }
.acct-hero .svc-avatar{ width:58px; height:58px; font-size:1.1rem; }
.acct-hero h1{ margin:0; font-size:1.7rem; letter-spacing:-.02em; }
.acct-hero p{ margin:2px 0 0; color:var(--text-faint); }
.acct-section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin:26px 0 12px; }
.acct-section-head h2{ margin:0; font-size:1.15rem; }

.acct-apps{ display:grid; gap:14px; grid-template-columns:repeat(auto-fill, minmax(250px, 1fr)); }
.acct-app{ display:flex; flex-direction:column; gap:10px; background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:18px; text-decoration:none; color:var(--text); transition:transform .15s, border-color .15s; }
.acct-app:hover{ transform:translateY(-2px); border-color:var(--app-color, var(--accent)); }
.acct-app .svc-app-icon{ width:42px; height:42px; border-radius:12px; }
.acct-app h3{ margin:0; font-size:1rem; }
.acct-app p{ margin:0; font-size:.84rem; color:var(--text-faint); flex:1; }
.acct-app-foot{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.acct-app-open{ font-size:.82rem; font-weight:700; color:var(--app-color, var(--accent)); }

/* ---------------------------------------------------------------- service picker */
.pk-controls{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-bottom:18px; }
.pk-controls .svc-field{ margin:0; min-width:220px; }
.pk-bundles{ display:grid; gap:14px; grid-template-columns:repeat(4, minmax(0, 1fr)); margin-bottom:18px; }
.pk-bundle{ position:relative; display:flex; flex-direction:column; gap:10px; background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:22px; }
.pk-bundle.featured{ border-color:color-mix(in srgb, var(--accent) 55%, var(--border)); box-shadow:0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent), 0 24px 50px -32px color-mix(in srgb, var(--accent) 60%, transparent); }
.pk-bundle.is-selected{ border-color:var(--accent); box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 28%, transparent); }
.pk-bundle h3{ margin:0; font-size:1.15rem; }
.pk-bundle .pk-tag{ position:absolute; top:-10px; right:16px; background:var(--accent); color:#04231b; font-size:.68rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:3px 10px; border-radius:999px; }
.pk-price{ font-size:2rem; font-weight:800; letter-spacing:-.03em; }
.pk-price small{ font-size:.85rem; font-weight:600; color:var(--text-faint); letter-spacing:0; }
.pk-was{ font-size:.82rem; color:var(--text-faint); text-decoration:line-through; }
.pk-chips{ display:flex; flex-wrap:wrap; gap:6px; flex:1; align-content:flex-start; }
.pk-chip{ display:inline-flex; align-items:center; gap:6px; font-size:.76rem; font-weight:650; padding:4px 9px; border-radius:999px; background:var(--surface-2); }
.pk-chip i{ width:8px; height:8px; border-radius:50%; display:inline-block; }

.pk-services{ display:grid; gap:12px; grid-template-columns:repeat(auto-fill, minmax(290px, 1fr)); }
.pk-service{ position:relative; display:flex; flex-direction:column; gap:8px; background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:18px; cursor:pointer; }
.pk-service:hover{ border-color:color-mix(in srgb, var(--app-color) 50%, var(--border)); }
.pk-service.is-selected{ border-color:var(--app-color); box-shadow:0 0 0 3px color-mix(in srgb, var(--app-color) 22%, transparent); }
.pk-service input{ position:absolute; top:18px; right:18px; width:20px; height:20px; accent-color:var(--app-color); }
.pk-service-head{ display:flex; align-items:center; gap:12px; padding-right:30px; }
.pk-service-head .svc-app-icon{ width:38px; height:38px; border-radius:11px; }
.pk-service h3{ margin:0; font-size:.98rem; }
.pk-service p{ margin:0; font-size:.84rem; color:var(--text-dim); }
.pk-service ul{ margin:2px 0 0; padding-left:18px; font-size:.8rem; color:var(--text-faint); }
.pk-service-foot{ display:flex; justify-content:space-between; align-items:center; gap:8px; margin-top:auto; padding-top:6px; font-size:.84rem; }

.pk-enterprise{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:10px; }
.pk-tiers{ display:flex; width:100%; }
.pk-tiers button{ flex:1; display:flex; flex-direction:column; align-items:center; gap:1px; padding:7px 4px; }
.pk-tiers button small{ font-size:.72rem; font-weight:600; color:var(--text-faint); }
.pk-tiers button.is-active small{ color:var(--text-dim); }
.pk-tiers button:disabled{ cursor:not-allowed; opacity:.75; }
.pk-service{ cursor:default; }
.pk-summary{
  position:sticky; bottom:14px; z-index:30; margin-top:22px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  background:color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border:1px solid var(--border); border-radius:16px; padding:14px 18px; box-shadow:0 22px 50px -24px rgba(0,0,0,.6);
}
.pk-summary strong.total{ font-size:1.3rem; letter-spacing:-.02em; }
.pk-embed{ min-height:420px; }
.pk-terms{ margin-top:8px; font-size:.84rem; line-height:1.5; color:var(--text-dim); max-width:640px; }
.pk-terms a{ color:var(--accent-2); }

/* getting started */
.acct-setup{ margin-bottom:8px; }
.acct-steps-list{ display:grid; gap:8px; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); }
.acct-step{ display:flex; gap:10px; align-items:flex-start; padding:11px 12px; border:1px solid var(--border); border-radius:12px; background:var(--bg); color:var(--text); text-decoration:none; }
.acct-step:hover{ border-color:var(--accent); }
.acct-step svg{ flex:none; margin-top:2px; color:var(--accent); }
.acct-step strong{ display:block; font-size:.9rem; }
.acct-step small{ display:block; color:var(--text-faint); font-size:.78rem; line-height:1.45; }
.acct-step.done{ opacity:.55; }
.acct-step.done svg{ color:#22c55e; }

@media (max-width:1100px){
  .pk-bundles{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:900px){
  .pk-bundles{ grid-template-columns:1fr; }
  .acct-nav{ margin-left:4px; }
  .acct-nav a{ padding:8px 8px; }
}
@media (max-width:520px){
  .acct-card{ padding:26px 20px 22px; }
  .acct-header .svc-brand-word, .acct-header .svc-brand-sep{ display:none; }
}
