body { background: #0D0E0A !important; }

/* ================================================================
   NatureJAB - /account page
   Colors: #0D0E0A bg, #14150F panel, #5DBA63 green, #FF5B1F orange
   Fonts: Archivo Black / JetBrains Mono / Bitter
   Border-radius: 0 everywhere
   ================================================================ */

/* ── Reset & base ─────────────────────────────────────────────── */
#account-root *,
#account-root *::before,
#account-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

#account-root {
  font-family: Bitter, serif;
  color: #F3EFE3;
  background: #0D0E0A;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   LOGIN SCREEN - Premium redesign
   ================================================================ */

/* ── Hero section with canvas ────────────────────────────────── */
.acct-login-hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0D0E0A;
}

.acct-login-hero-canvas-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.acct-login-hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.acct-login-hero-label,
.acct-login-hero-sublabel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F3EFE3;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.acct-login-hero-label {
  bottom: 68px;
  font-size: 13px;
  letter-spacing: 2.5px;
}

.acct-login-hero-sublabel {
  bottom: 48px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #A8A393;
}

.acct-login-hero-label.show,
.acct-login-hero-sublabel.show {
  opacity: 1;
}

.acct-login-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,14,10,0) 0%,
    rgba(13,14,10,0.15) 50%,
    rgba(13,14,10,0.85) 85%,
    rgba(13,14,10,1) 100%
  );
  pointer-events: none;
}

.acct-login-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.acct-login-hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5DBA63;
  margin-bottom: 6px;
}

.acct-login-hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #F3EFE3;
  letter-spacing: 1px;
}

/* ── Two-column body ─────────────────────────────────────────── */
.acct-login-body {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 32px 0;
}

.acct-login-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Left column - Login form ────────────────────────────────── */
.acct-login-left {
  display: flex;
  flex-direction: column;
}

.acct-login-logo {
  height: 44px;
  margin-bottom: 28px;
  align-self: flex-start;
}

.acct-login-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: #F3EFE3;
  margin-bottom: 12px;
  line-height: 1.15;
}

.acct-login-sub {
  font-family: Bitter, serif;
  font-size: 15px;
  line-height: 1.65;
  color: #A8A393;
  margin-bottom: 32px;
}

.acct-login-field {
  width: 100%;
  margin-bottom: 16px;
}

.acct-login-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
  margin-bottom: 6px;
}

.acct-login-field input {
  width: 100%;
  padding: 14px 16px;
  background: #14150F;
  border: 1px solid #2A2B24;
  border-left: 2px solid #2A2B24;
  color: #F3EFE3;
  font-family: Bitter, serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.acct-login-field input:focus {
  border-color: #5DBA63;
  border-left-color: #5DBA63;
}

.acct-login-field input::placeholder {
  color: #54524A;
}

.acct-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #5DBA63;
  color: #0D0E0A;
  border: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.acct-login-btn:hover {
  background: #4da854;
}

.acct-login-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.acct-login-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  animation: acct-fade-in 0.3s ease;
}

.acct-login-success-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #5DBA63;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5DBA63;
}

.acct-login-success-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5DBA63;
}

.acct-login-success-sub {
  font-size: 14px;
  color: #A8A393;
  max-width: 360px;
  line-height: 1.6;
}

.acct-login-error {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #FF5B1F;
  margin-top: 12px;
}

/* ── Right column - Feature tabs ─────────────────────────────── */
.acct-login-right {
  display: flex;
  flex-direction: column;
}

.acct-login-features-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #54524A;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2A2B24;
}

.acct-login-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acct-login-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #14150F;
  border: 1px solid #2A2B24;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.acct-login-feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.acct-login-feature-card:hover {
  border-color: #3A3B34;
  background: #181a13;
}

.acct-login-feature-card:hover::before {
  background: #5DBA63;
}

.acct-login-feature-card.active {
  border-color: #5DBA63;
  background: #181a13;
}

.acct-login-feature-card.active::before {
  background: #5DBA63;
}

.acct-login-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(93,186,99,0.08);
  border: 1px solid rgba(93,186,99,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.acct-login-feature-card.active .acct-login-feature-icon {
  background: rgba(93,186,99,0.15);
  border-color: rgba(93,186,99,0.3);
}

.acct-login-feature-content {
  flex: 1;
  min-width: 0;
}

.acct-login-feature-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F3EFE3;
  margin-bottom: 6px;
}

.acct-login-feature-desc {
  font-family: Bitter, serif;
  font-size: 13px;
  line-height: 1.55;
  color: #54524A;
  transition: color 0.2s ease;
}

.acct-login-feature-card.active .acct-login-feature-desc {
  color: #A8A393;
}

.acct-login-feature-card:hover .acct-login-feature-desc {
  color: #A8A393;
}

.acct-login-feature-arrow {
  flex-shrink: 0;
  color: #2A2B24;
  margin-top: 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.acct-login-feature-card:hover .acct-login-feature-arrow,
.acct-login-feature-card.active .acct-login-feature-arrow {
  color: #5DBA63;
  transform: translateX(2px);
}

/* ── Bottom CTA ──────────────────────────────────────────────── */
.acct-login-bottom {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 32px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid #2A2B24;
  margin-top: 48px;
}

.acct-login-bottom-text {
  font-family: Bitter, serif;
  font-size: 14px;
  color: #54524A;
}

.acct-login-bottom-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5DBA63;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.acct-login-bottom-link:hover {
  color: #4da854;
}

/* ── Login responsive (mobile < 768px) ───────────────────────── */
@media (max-width: 768px) {
  .acct-login-hero {
    height: 200px;
  }

  .acct-login-hero-content {
    padding: 0 20px 20px;
  }

  .acct-login-hero-title {
    font-size: 18px;
  }

  .acct-login-hero-eyebrow {
    font-size: 9px;
  }

  .acct-login-body {
    padding: 32px 20px 0;
  }

  .acct-login-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .acct-login-title {
    font-size: 22px;
  }

  .acct-login-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .acct-login-logo {
    height: 36px;
    margin-bottom: 20px;
  }

  .acct-login-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 20px 48px;
    margin-top: 32px;
  }

  .acct-login-feature-card {
    padding: 14px 16px;
  }
}

/* ================================================================
   AUTHENTICATED LAYOUT - Premium Dashboard Redesign
   ================================================================ */

/* ── Webflow override - scope all account styles ─────────────── */
#account-root *, #account-root *::before, #account-root *::after {
  box-sizing: border-box;
}
#account-root button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
#account-root a {
  text-decoration: none;
  color: inherit;
}

/* ── Account bar (header) ────────────────────────────────────── */
#account-root .acct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 52px;
  background: #14150F;
  border-bottom: 1px solid #2A2B24;
}

#account-root .acct-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#account-root .acct-header-dot {
  width: 7px;
  height: 7px;
  background: #5DBA63;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(93,186,99,0.4);
}

#account-root .acct-header-email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #A8A393;
}

#account-root .acct-header-right {
  display: flex;
  align-items: center;
}

#account-root .acct-sign-out-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #2A2B24;
  color: #54524A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

#account-root .acct-sign-out-btn:hover {
  border-color: #FF5B1F;
  color: #FF5B1F;
}

/* ── Tab navigation ──────────────────────────────────────────── */
#account-root .acct-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #0D0E0A;
  border-bottom: 1px solid #2A2B24;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#account-root .acct-tabs::-webkit-scrollbar { display: none; }

#account-root .acct-tabs-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

#account-root .acct-tab {
  position: relative;
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #54524A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#account-root .acct-tab:hover {
  color: #A8A393;
}

#account-root .acct-tab.active {
  color: #F3EFE3;
  border-bottom-color: #5DBA63;
}

#account-root .acct-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

#account-root .acct-tab.active .acct-tab-icon {
  opacity: 1;
}

#account-root .acct-tab:hover .acct-tab-icon {
  opacity: 0.7;
}

/* ── Tab content container ───────────────────────────────────── */
#account-root .acct-content {
  padding: 40px 32px 56px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

#account-root .acct-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #54524A;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2A2B24;
}

/* ── Loading state ───────────────────────────────────────────── */
#account-root .acct-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 16px;
}

#account-root .acct-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #2A2B24;
  border-top-color: #5DBA63;
  animation: acct-spin 0.8s linear infinite;
}

#account-root .acct-loading-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

/* ── Empty states ────────────────────────────────────────────── */
#account-root .acct-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px;
  background: #14150F;
  border: 1px solid #2A2B24;
}

#account-root .acct-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border: 1px solid #2A2B24;
  background: #1A1B15;
  color: #54524A;
}

#account-root .acct-empty-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F3EFE3;
  margin-bottom: 8px;
}

#account-root .acct-empty-text {
  font-family: Bitter, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #54524A;
  max-width: 320px;
  margin-bottom: 24px;
}

#account-root .acct-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #5DBA63;
  color: #5DBA63;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

#account-root .acct-empty-cta:hover {
  background: #5DBA63;
  color: #0D0E0A;
}

/* ── Event cards ─────────────────────────────────────────────── */
#account-root .acct-event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

#account-root .acct-event-card {
  background: #1A1B15;
  border: 1px solid #2A2B24;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s ease;
}

#account-root .acct-event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

#account-root .acct-event-card:hover {
  border-color: #3A3B34;
}

#account-root .acct-event-card:hover::before {
  background: #5DBA63;
}

#account-root .acct-event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

#account-root .acct-event-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F3EFE3;
  margin-bottom: 4px;
}

#account-root .acct-event-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #2A2B24;
  flex-shrink: 0;
}

#account-root .acct-event-status.confirmed {
  color: #5DBA63;
  border-color: rgba(93,186,99,0.3);
  background: rgba(93,186,99,0.06);
}

#account-root .acct-event-status.cancelled {
  color: #FF5B1F;
  border-color: rgba(255,91,31,0.3);
  background: rgba(255,91,31,0.06);
}

#account-root .acct-event-status.pending {
  color: #A8A393;
  border-color: #2A2B24;
}

#account-root .acct-event-status-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}

#account-root .acct-event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

#account-root .acct-event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#account-root .acct-event-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

#account-root .acct-event-meta-value {
  font-family: Bitter, serif;
  font-size: 14px;
  color: #A8A393;
}

#account-root .acct-event-ticket-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

#account-root .acct-event-ticket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #0D0E0A;
  border: 1px solid #2A2B24;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  color: #5DBA63;
}

#account-root .acct-event-ticket-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: #54524A;
  text-transform: uppercase;
}

#account-root .acct-event-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2A2B24;
}

#account-root .acct-cancel-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid #2A2B24;
  color: #54524A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

#account-root .acct-cancel-btn:hover {
  border-color: #FF5B1F;
  color: #FF5B1F;
}

/* ── Profile form ────────────────────────────────────────────── */
#account-root .acct-profile-card {
  background: #1A1B15;
  border: 1px solid #2A2B24;
  padding: 32px;
}

#account-root .acct-profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
}

#account-root .acct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#account-root .acct-field.full-width {
  grid-column: 1 / -1;
}

#account-root .acct-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

#account-root .acct-field input {
  padding: 13px 16px;
  background: #14150F;
  border: 1px solid #2A2B24;
  border-left: 2px solid #2A2B24;
  color: #F3EFE3;
  font-family: Bitter, serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

#account-root .acct-field input:focus {
  border-color: #5DBA63;
  border-left-color: #5DBA63;
}

#account-root .acct-field input::placeholder {
  color: #54524A;
}

#account-root .acct-field input:read-only {
  color: #54524A;
  cursor: not-allowed;
  background: #111210;
}

#account-root .acct-profile-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

#account-root .acct-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #5DBA63;
  color: #0D0E0A;
  border: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

#account-root .acct-save-btn:hover {
  background: #4da854;
}

#account-root .acct-save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#account-root .acct-save-msg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
}

#account-root .acct-save-msg.success {
  color: #5DBA63;
}

#account-root .acct-save-msg.error {
  color: #FF5B1F;
}

/* ── Profile stats ───────────────────────────────────────────── */
#account-root .acct-profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

#account-root .acct-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: #14150F;
  border: 1px solid #2A2B24;
}

#account-root .acct-stat-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #5DBA63;
  line-height: 1;
}

#account-root .acct-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

/* ── JAB Army toggles ────────────────────────────────────────── */
#account-root .acct-army-card {
  background: #1A1B15;
  border: 1px solid #2A2B24;
  padding: 32px;
}

#account-root .acct-army-header {
  margin-bottom: 28px;
}

#account-root .acct-army-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F3EFE3;
  margin-bottom: 8px;
}

#account-root .acct-army-desc {
  font-family: Bitter, serif;
  font-size: 14px;
  color: #54524A;
  line-height: 1.6;
}

#account-root .acct-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#account-root .acct-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #14150F;
  border: 1px solid #2A2B24;
  transition: border-color 0.2s ease;
}

#account-root .acct-toggle-row:hover {
  border-color: #3A3B34;
}

#account-root .acct-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#account-root .acct-toggle-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F3EFE3;
}

#account-root .acct-toggle-desc {
  font-family: Bitter, serif;
  font-size: 13px;
  color: #54524A;
  line-height: 1.5;
}

/* Custom toggle switch */
#account-root .acct-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

#account-root .acct-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#account-root .acct-switch-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2A2B24;
  cursor: pointer;
  transition: background 0.2s ease;
}

#account-root .acct-switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #54524A;
  transition: all 0.2s ease;
}

#account-root .acct-switch input:checked + .acct-switch-track {
  background: #5DBA63;
}

#account-root .acct-switch input:checked + .acct-switch-track::after {
  left: 23px;
  background: #0D0E0A;
}

/* ── Donations tab ───────────────────────────────────────────── */
#account-root .acct-donation-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

#account-root .acct-donation-total {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: #1A1B15;
  border: 1px solid #2A2B24;
}

#account-root .acct-donation-total-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: #5DBA63;
  line-height: 1;
}

#account-root .acct-donation-total-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

#account-root .acct-donation-count {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: #1A1B15;
  border: 1px solid #2A2B24;
}

#account-root .acct-donation-count-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: #F3EFE3;
  line-height: 1;
}

#account-root .acct-donation-count-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #54524A;
}

#account-root .acct-donation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#account-root .acct-donation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #1A1B15;
  border: 1px solid #2A2B24;
  transition: border-color 0.2s ease;
}

#account-root .acct-donation-row:hover {
  border-color: #3A3B34;
}

#account-root .acct-donation-event {
  font-family: Bitter, serif;
  font-size: 14px;
  color: #A8A393;
}

#account-root .acct-donation-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #5DBA63;
  letter-spacing: 0.5px;
}

#account-root .acct-donation-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

#account-root .acct-recurring-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #5DBA63;
  color: #5DBA63;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

#account-root .acct-recurring-link:hover {
  background: #5DBA63;
  color: #0D0E0A;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes acct-spin {
  to { transform: rotate(360deg); }
}

@keyframes acct-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#account-root .acct-fade-in {
  animation: acct-fade-in 0.3s ease;
}

/* ── Responsive (mobile < 768px) - authenticated views ───────── */
@media (max-width: 768px) {
  #account-root .acct-header {
    padding: 0 16px;
    height: 48px;
  }

  #account-root .acct-header-email {
    font-size: 10px;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #account-root .acct-tabs-inner {
    padding: 0 16px;
  }

  #account-root .acct-tab {
    padding: 14px 16px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  #account-root .acct-tab-icon {
    display: none;
  }

  #account-root .acct-content {
    padding: 28px 16px 48px;
  }

  #account-root .acct-profile-card {
    padding: 24px 20px;
  }

  #account-root .acct-profile-form {
    grid-template-columns: 1fr;
  }

  #account-root .acct-profile-stats {
    grid-template-columns: 1fr;
  }

  #account-root .acct-event-card {
    padding: 20px;
  }

  #account-root .acct-event-card-top {
    flex-direction: column;
    gap: 12px;
  }

  #account-root .acct-event-meta-row {
    flex-direction: column;
    gap: 12px;
  }

  #account-root .acct-army-card {
    padding: 24px 20px;
  }

  #account-root .acct-donation-summary {
    grid-template-columns: 1fr;
  }

  #account-root .acct-donation-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 20px;
  }

  #account-root .acct-donation-actions {
    flex-direction: column;
  }

  #account-root .acct-empty {
    padding: 48px 20px;
  }
}
